/* ===== VitalTé — Premium Weight Loss Tea Site ===== */

:root {
  --green-dark: #1a3a1a;
  --green-mid: #2d5a27;
  --green-light: #6b8f3c;
  --green-pale: #e8f0e0;
  --gold: #c9a84c;
  --gold-light: #e8d5a0;
  --cream: #faf8f3;
  --white: #ffffff;
  --text: #2c2c2c;
  --text-light: #6b6b6b;
  --shadow: 0 4px 30px rgba(26, 58, 26, 0.12);
  --shadow-lg: 0 20px 60px rgba(26, 58, 26, 0.18);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Loader ===== */
.loader {
  position: fixed;
  inset: 0;
  background: var(--green-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-leaf {
  width: 48px;
  height: 48px;
  border: 3px solid var(--gold);
  border-radius: 50% 0 50% 50%;
  animation: spinLeaf 1.2s ease-in-out infinite;
}

.loader span {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold-light);
  letter-spacing: 0.1em;
}

@keyframes spinLeaf {
  0%, 100% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.1); }
}

/* ===== Navigation ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(250, 248, 243, 0.95);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: var(--shadow);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition);
}

.nav.scrolled .logo {
  color: var(--green-dark);
}

.logo span {
  color: var(--gold);
}

.logo-icon {
  font-size: 1.2rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  transition: color var(--transition);
  position: relative;
}

.nav.scrolled .nav-links a {
  color: var(--text);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--green-dark) !important;
  padding: 10px 24px !important;
  border-radius: 50px;
  font-weight: 600 !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

.nav.scrolled .nav-toggle span {
  background: var(--green-dark);
}

/* ===== Hero Carousel ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease, visibility 1s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero-slide.active img {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 58, 26, 0.75) 0%,
    rgba(26, 58, 26, 0.3) 50%,
    rgba(0, 0, 0, 0.2) 100%
  );
}

.hero-content {
  position: absolute;
  bottom: 20%;
  left: 8%;
  max-width: 600px;
  z-index: 2;
}

.hero-tag {
  display: inline-block;
  background: rgba(201, 168, 76, 0.2);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-content h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  line-height: 1.7;
}

/* Animate-in classes */
.animate-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero-slide.active .animate-in {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: var(--gold);
  color: var(--green-dark);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(201, 168, 76, 0.4);
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.85rem;
  background: var(--green-mid);
  color: var(--white);
}

.btn-sm:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

a.btn-sm {
  display: inline-flex;
}

/* Hero Controls */
.hero-controls {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 24px;
  z-index: 10;
}

.hero-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--green-dark);
}

.hero-dots {
  display: flex;
  gap: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.dot.active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.3);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 10;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ===== Stats Bar ===== */
.stats-bar {
  background: var(--green-dark);
  padding: 48px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item {
  color: var(--white);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  display: inline;
}

.stat-suffix {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
}

.stat-label {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 8px;
  letter-spacing: 0.03em;
}

/* ===== Section Headers ===== */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  color: var(--green-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-header h2 em {
  font-style: italic;
  color: var(--green-light);
}

.section-header p {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto;
}

/* ===== Products ===== */
.products {
  padding: 100px 0;
  background: var(--cream);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.product-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.08);
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--green-dark);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-badge.new {
  background: var(--green-mid);
  color: var(--white);
}

.product-badge.hot {
  background: #e74c3c;
  color: var(--white);
}

.product-info {
  padding: 24px;
}

.product-info h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.product-info p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.5;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-mid);
}

/* ===== Stories ===== */
.stories {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--green-pale) 0%, var(--cream) 100%);
}

.stories-slider {
  position: relative;
  min-height: 400px;
  margin-bottom: 40px;
}

.story-slide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  inset: 0;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.story-slide.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.story-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-product {
  display: inline-block;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.story-content blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-style: italic;
  color: var(--green-dark);
  line-height: 1.5;
  margin-bottom: 24px;
  border: none;
}

.story-author strong {
  display: block;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 4px;
}

.story-author span {
  font-size: 0.85rem;
  color: var(--text-light);
}

.stories-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.story-tab {
  padding: 10px 24px;
  border-radius: 50px;
  border: 2px solid var(--green-light);
  background: transparent;
  color: var(--green-mid);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.story-tab:hover,
.story-tab.active {
  background: var(--green-mid);
  border-color: var(--green-mid);
  color: var(--white);
}

/* ===== Articles ===== */
.articles {
  padding: 100px 0;
  background: var(--white);
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.article-card {
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.article-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.article-card.featured {
  grid-column: span 1;
}

.article-image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.article-card:hover .article-image img {
  transform: scale(1.05);
}

.article-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  transition: transform 0.6s ease;
}

.article-card:hover .article-img-placeholder {
  transform: scale(1.05);
}

.article-category {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.9);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green-dark);
}

.article-body {
  padding: 24px;
}

.article-body time {
  font-size: 0.8rem;
  color: var(--text-light);
}

.article-body h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--green-dark);
  margin: 8px 0 12px;
  line-height: 1.3;
}

.article-body p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.6;
}

.read-more {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-mid);
  transition: color var(--transition);
}

.read-more:hover {
  color: var(--gold);
}

/* ===== Recipes ===== */
.recipes {
  padding: 100px 0;
  background: var(--green-dark);
  color: var(--white);
}

.recipes .section-tag {
  color: var(--gold-light);
}

.recipes .section-header h2 {
  color: var(--white);
}

.recipes .section-header h2 em {
  color: var(--gold);
}

.recipes .section-header p {
  color: rgba(255, 255, 255, 0.7);
}

.recipes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.recipe-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 28px;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.recipe-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
  border-color: var(--gold);
}

.recipe-header {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.recipe-time,
.recipe-difficulty {
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 50px;
  background: rgba(201, 168, 76, 0.2);
  color: var(--gold-light);
}

.recipe-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--gold-light);
}

.recipe-card > p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 16px;
  line-height: 1.5;
}

.recipe-ingredients {
  margin-bottom: 16px;
}

.recipe-ingredients li {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
}

.recipe-ingredients li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.recipe-steps {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.recipe-steps strong {
  color: var(--gold-light);
}

/* ===== CTA Section ===== */
.cta-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--green-pale) 0%, var(--gold-light) 50%, var(--green-pale) 100%);
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.cta-content {
  position: relative;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-content h2 em {
  font-style: italic;
  color: var(--green-light);
}

.cta-content > p {
  color: var(--text-light);
  margin-bottom: 32px;
  font-size: 1.05rem;
}

.cta-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto 16px;
}

.cta-form input {
  flex: 1;
  padding: 14px 20px;
  border: 2px solid rgba(45, 90, 39, 0.2);
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--white);
  outline: none;
  transition: border-color var(--transition);
}

.cta-form input:focus {
  border-color: var(--green-mid);
}

.cta-note {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ===== Footer ===== */
.footer {
  background: var(--green-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo {
  font-size: 1.5rem;
  margin-bottom: 16px;
  display: inline-block;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-links h4 {
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--gold);
  transform: translateY(-3px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a:hover {
  color: var(--gold);
}

/* ===== Reveal Animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .products-grid,
  .articles-grid,
  .recipes-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--green-dark);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    transition: right var(--transition);
    padding: 40px;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    color: var(--white) !important;
    font-size: 1.1rem;
  }

  .nav-toggle {
    display: flex;
    z-index: 1001;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero-content {
    left: 5%;
    right: 5%;
    bottom: 25%;
  }

  .hero-scroll {
    display: none;
  }

  .products-grid,
  .articles-grid,
  .recipes-grid {
    grid-template-columns: 1fr;
  }

  .story-slide {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .story-image {
    aspect-ratio: 16/10;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-form {
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* ===== Subpages (Legal & Contact) ===== */
.page-sub {
  background: var(--cream);
}

.nav-page {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: var(--shadow);
}

.nav-page .logo {
  color: var(--green-dark);
}

.nav-page .nav-links a {
  color: var(--text);
}

.nav-page .nav-toggle span {
  background: var(--green-dark);
}

.page-hero {
  padding: 140px 0 64px;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  color: var(--white);
  text-align: center;
}

.page-hero .section-tag {
  color: var(--gold-light);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin: 16px 0 12px;
  line-height: 1.15;
}

.page-hero h1 em {
  color: var(--gold-light);
  font-style: italic;
}

.page-hero-meta {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
}

.legal-content {
  padding: 64px 0 80px;
}

.legal-body {
  max-width: 820px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px 56px;
  box-shadow: var(--shadow);
}

.legal-section {
  margin-bottom: 40px;
}

.legal-section:last-of-type {
  margin-bottom: 0;
}

.legal-section h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--green-dark);
  margin-bottom: 16px;
}

.legal-section h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--green-mid);
  margin: 24px 0 12px;
}

.legal-section p {
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 12px;
}

.legal-section a {
  color: var(--green-mid);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-section a:hover {
  color: var(--gold);
}

.legal-info-box {
  background: var(--green-pale);
  border-left: 4px solid var(--gold);
  padding: 20px 24px;
  border-radius: var(--radius-sm);
}

.legal-info-box p {
  margin-bottom: 8px;
  color: var(--text);
}

.legal-info-box p:last-child {
  margin-bottom: 0;
}

.legal-list {
  list-style: disc;
  padding-left: 24px;
  color: var(--text-light);
  line-height: 1.8;
}

.legal-table-wrap {
  overflow-x: auto;
  margin: 16px 0;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.legal-table th,
.legal-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--green-pale);
}

.legal-table th {
  background: var(--green-pale);
  color: var(--green-dark);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.legal-table td {
  color: var(--text-light);
}

.legal-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--green-pale);
}

.legal-back {
  font-size: 0.9rem;
  color: var(--text-light);
  transition: color var(--transition);
}

.legal-back:hover {
  color: var(--green-mid);
}

/* Contact Page */
.contact-page {
  padding: 64px 0 80px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 64px;
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.contact-icon {
  font-size: 1.75rem;
  display: block;
  margin-bottom: 12px;
}

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--green-dark);
  margin-bottom: 12px;
}

.contact-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

.contact-card a {
  color: var(--green-mid);
  transition: color var(--transition);
}

.contact-card a:hover {
  color: var(--gold);
}

.contact-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-mid) !important;
  text-decoration: none !important;
}

.contact-link:hover {
  color: var(--gold) !important;
}

.contact-note {
  display: block;
  margin-top: 12px;
  font-size: 0.8rem;
  color: var(--gold);
  font-style: italic;
}

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}

.contact-form-wrap h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.contact-form-intro {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 28px;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--green-pale);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--cream);
  outline: none;
  transition: border-color var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--green-mid);
  background: var(--white);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.form-checkbox input {
  width: auto;
  margin-top: 4px;
  accent-color: var(--green-mid);
}

.form-checkbox label {
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 0;
}

.form-checkbox a {
  color: var(--green-mid);
  text-decoration: underline;
}

.form-success {
  margin-top: 16px;
  padding: 12px 16px;
  background: var(--green-pale);
  color: var(--green-mid);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
}

.contact-map-section {
  margin-bottom: 64px;
}

.contact-map-section h2,
.contact-company-info h2,
.contact-faq h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--green-dark);
  margin-bottom: 24px;
  text-align: center;
}

.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 360px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-map-caption {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 12px;
}

.contact-company-info {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  margin-bottom: 64px;
}

.company-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.company-info-grid strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 8px;
}

.company-info-grid p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

.contact-faq {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-item summary {
  padding: 20px 24px;
  font-weight: 600;
  color: var(--green-dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--gold);
  transition: transform var(--transition);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .company-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .legal-body {
    padding: 32px 24px;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }

  .contact-form .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap {
    padding: 28px 24px;
  }

  .company-info-grid {
    grid-template-columns: 1fr;
  }

  .legal-nav {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ===== Article Pages ===== */
.article-hero {
  position: relative;
  height: 420px;
  min-height: 320px;
  margin-top: 60px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.article-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 58, 26, 0.92) 0%, rgba(26, 58, 26, 0.4) 60%, rgba(26, 58, 26, 0.2) 100%);
}

.article-hero-content {
  position: relative;
  z-index: 1;
  padding: 48px 24px;
  color: var(--white);
}

.article-breadcrumb {
  display: inline-block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 16px;
  transition: color var(--transition);
}

.article-breadcrumb:hover {
  color: var(--gold-light);
}

.article-category-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--green-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.article-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  max-width: 800px;
  margin-bottom: 16px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.article-page {
  padding: 64px 0 80px;
}

.article-content {
  max-width: 720px;
  margin: 0 auto 64px;
}

.article-lead {
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.6;
  color: var(--green-dark);
  margin-bottom: 32px;
}

.article-content h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--green-dark);
  margin: 40px 0 16px;
}

.article-content p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.article-content ul {
  list-style: disc;
  padding-left: 24px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.article-content a {
  color: var(--green-mid);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-content a:hover {
  color: var(--gold);
}

.article-content blockquote {
  border-left: 4px solid var(--gold);
  padding: 20px 24px;
  margin: 32px 0;
  background: var(--green-pale);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--green-dark);
  line-height: 1.6;
}

.myth-block {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
}

.myth-block h2 {
  font-size: 1.25rem !important;
  margin-top: 0 !important;
}

.myth-verdict {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 12px !important;
}

.myth-verdict.false {
  color: #c0392b;
}

.myth-verdict.partial {
  color: #d68910;
}

.guide-schedule {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 24px 0 32px;
}

.guide-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 32px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--gold);
}

.guide-time {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 8px;
}

.guide-item h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.guide-item p {
  margin-bottom: 0;
}

.article-related {
  max-width: 720px;
  margin: 0 auto;
  padding-top: 48px;
  border-top: 1px solid var(--green-pale);
}

.article-related h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--green-dark);
  margin-bottom: 24px;
}

.article-related-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.article-related-card {
  display: block;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.article-related-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.article-related-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.article-related-card span {
  display: block;
  padding: 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green-dark);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .article-hero {
    height: 360px;
  }

  .article-related-grid {
    grid-template-columns: 1fr;
  }

  .myth-block,
  .guide-item {
    padding: 20px 24px;
  }

  .order-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .order-product-image {
    max-width: 400px;
    margin: 0 auto;
  }
}

/* ===== Order Page ===== */
.order-page {
  padding: 100px 0 80px;
  min-height: 80vh;
}

.order-back {
  display: inline-block;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 32px;
  transition: color var(--transition);
}

.order-back:hover {
  color: var(--green-mid);
}

.order-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.order-product {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: sticky;
  top: 100px;
}

.order-product-image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}

.order-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.order-product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--green-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
}

.order-product-info {
  padding: 32px;
}

.order-product-info h1 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--green-dark);
  margin-bottom: 12px;
}

.order-product-desc {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.order-product-details {
  list-style: none;
  margin-bottom: 24px;
}

.order-product-details li {
  font-size: 0.85rem;
  color: var(--text-light);
  padding: 8px 0;
  border-bottom: 1px solid var(--green-pale);
  padding-left: 20px;
  position: relative;
}

.order-product-details li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green-mid);
  font-weight: 700;
}

.order-product-price .price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--green-dark);
}

.order-price-note {
  display: block;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 4px;
}

.order-form-section {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}

.order-form-section h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.order-form-intro {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 28px;
  line-height: 1.6;
}

.order-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.order-form .form-group {
  margin-bottom: 20px;
}

.order-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.order-form input,
.order-form select,
.order-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--green-pale);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--cream);
  outline: none;
  transition: border-color var(--transition);
}

.order-form input:focus,
.order-form select:focus,
.order-form textarea:focus {
  border-color: var(--green-mid);
  background: var(--white);
}

.order-form textarea {
  resize: vertical;
  min-height: 80px;
}

.btn-order {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
  margin-top: 8px;
}

.order-success {
  text-align: center;
  max-width: 520px;
  margin: 40px auto 0;
  padding: 56px 40px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.order-success-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  background: var(--green-pale);
  color: var(--green-mid);
  font-size: 2rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.order-success h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--green-dark);
  margin-bottom: 16px;
}

.order-success-message {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 12px;
}

.order-success-message strong {
  color: var(--green-mid);
}

.order-success-note {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 32px;
}

@media (max-width: 768px) {
  .order-form .form-row {
    grid-template-columns: 1fr;
  }

  .order-form-section {
    padding: 28px 24px;
  }

  .order-product {
    position: static;
  }
}

@media (max-width: 480px) {
  .hero-controls {
    bottom: 24px;
  }

  .hero-arrow {
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
  }

  .stat-number {
    font-size: 2.2rem;
  }
}
