/* ═══════════════════════════════════════════════════════════
   IRIS HERBALS — Design System
   Palette: Forest Herb (deep greens, saffron gold, cream parchment)
   Typography: Cormorant Garamond + Plus Jakarta Sans
═══════════════════════════════════════════════════════════ */

/* ── CSS Variables ── */
:root {
  /* Colors */
  --forest-deep:    #0A1F02;
  --forest-dark:    #1A3A0A;
  --forest-mid:     #2D6A1E;
  --forest-light:   #4A8C35;
  --forest-pale:    #E8F5E0;
  --forest-mist:    #F2FAF0;

  --gold-deep:      #8B6914;
  --gold-mid:       #C9A84C;
  --gold-light:     #E8C96A;
  --gold-pale:      #FDF6E3;

  --bark-dark:      #3D2B1F;
  --bark-mid:       #6B4C3B;
  --bark-light:     #A07850;

  --cream:          #FAF7F2;
  --cream-warm:     #F5EFE6;
  --parchment:      #EDE4D4;

  --text-dark:      #1A1A1A;
  --text-mid:       #3D3D3D;
  --text-muted:     #6B6B6B;
  --text-light:     #9A9A9A;

  --white:          #FFFFFF;
  --shadow-sm:      0 2px 8px rgba(10, 31, 2, 0.08);
  --shadow-md:      0 8px 24px rgba(10, 31, 2, 0.12);
  --shadow-lg:      0 20px 60px rgba(10, 31, 2, 0.16);
  --shadow-gold:    0 8px 32px rgba(201, 168, 76, 0.25);

  /* Typography */
  --font-display:   'Cormorant Garamond', Georgia, serif;
  --font-body:      'Plus Jakarta Sans', system-ui, sans-serif;

  /* Spacing */
  --space-xs:       0.5rem;
  --space-sm:       1rem;
  --space-md:       1.5rem;
  --space-lg:       2.5rem;
  --space-xl:       4rem;
  --space-2xl:      6rem;
  --space-3xl:      8rem;

  /* Layout */
  --max-width:      1200px;
  --nav-height:     72px;
  --radius-sm:      6px;
  --radius-md:      12px;
  --radius-lg:      20px;
  --radius-xl:      32px;
  --radius-full:    9999px;

  /* Transitions */
  --ease-out:       cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:    cubic-bezier(0.4, 0, 0.2, 1);
  --duration-fast:  150ms;
  --duration-mid:   300ms;
  --duration-slow:  600ms;
}

/* ── Reset & Base ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--cream);
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
}

/* ── Typography Scale ── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 600;
  color: var(--forest-deep);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }

em {
  font-style: italic;
  color: var(--forest-mid);
}

/* ── Utility Classes ── */
.section-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--space-xl);
}

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest-mid);
  background: var(--forest-pale);
  border: 1px solid rgba(45, 106, 30, 0.2);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-sm);
}

.section-title {
  margin-bottom: var(--space-sm);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-full);
  transition: all var(--duration-mid) var(--ease-out);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--forest-mid);
  color: var(--white);
  border-color: var(--forest-mid);
  box-shadow: 0 4px 16px rgba(45, 106, 30, 0.3);
}

.btn-primary:hover {
  background: var(--forest-dark);
  border-color: var(--forest-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45, 106, 30, 0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--forest-deep);
  border-color: rgba(45, 106, 30, 0.3);
}

.btn-ghost:hover {
  background: var(--forest-pale);
  border-color: var(--forest-mid);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold-mid);
  color: var(--forest-deep);
  border-color: var(--gold-mid);
  font-weight: 700;
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201, 168, 76, 0.4);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ════════════════════════════════════════════
   NAVIGATION
════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(45, 106, 30, 0.1);
  transition: all var(--duration-mid) var(--ease-in-out);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(250, 247, 242, 0.98);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.logo-icon {
  display: flex;
  align-items: center;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--forest-deep);
  letter-spacing: -0.01em;
}

.logo-text em {
  color: var(--forest-mid);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: all var(--duration-fast);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 2px;
  background: var(--forest-mid);
  border-radius: 2px;
  transition: transform var(--duration-mid) var(--ease-out);
}

.nav-link:hover {
  color: var(--forest-mid);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
}

.nav-cta {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  background: var(--forest-mid);
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius-full);
  margin-left: 0.5rem;
  transition: all var(--duration-mid) var(--ease-out);
  box-shadow: 0 2px 8px rgba(45, 106, 30, 0.25);
}

.nav-cta:hover {
  background: var(--forest-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(45, 106, 30, 0.35);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--forest-deep);
  border-radius: 2px;
  transition: all var(--duration-mid) var(--ease-out);
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ════════════════════════════════════════════
   HERO SECTION
════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  padding-top: var(--nav-height);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--space-xl);
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: var(--space-md);
  padding-right: var(--space-md);
  padding-bottom: var(--space-xl);
  position: relative;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(45, 106, 30, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(201, 168, 76, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(45, 106, 30, 0.04) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
}

.hero-floating-leaves {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.leaf {
  position: absolute;
  font-size: 1.5rem;
  opacity: 0.15;
  animation: floatLeaf 8s ease-in-out infinite;
}

.leaf-1 { top: 15%; left: 5%;  animation-delay: 0s;    font-size: 2rem; }
.leaf-2 { top: 60%; left: 2%;  animation-delay: 1.5s;  font-size: 1.2rem; }
.leaf-3 { top: 30%; right: 8%; animation-delay: 3s;    font-size: 1.8rem; }
.leaf-4 { top: 75%; right: 5%; animation-delay: 4.5s;  font-size: 1rem; }
.leaf-5 { top: 50%; left: 48%; animation-delay: 2s;    font-size: 1.4rem; }

@keyframes floatLeaf {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33%       { transform: translateY(-12px) rotate(5deg); }
  66%       { transform: translateY(6px) rotate(-3deg); }
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: var(--space-xl);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest-mid);
  background: var(--forest-pale);
  border: 1px solid rgba(45, 106, 30, 0.25);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
  animation: fadeInUp 0.6s var(--ease-out) both;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--forest-mid);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: var(--space-md);
  animation: fadeInUp 0.6s var(--ease-out) 0.1s both;
}

.hero-highlight {
  color: var(--gold-mid);
  position: relative;
  display: inline-block;
}

.hero-highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-mid), var(--gold-light));
  border-radius: 2px;
  animation: expandWidth 0.8s var(--ease-out) 0.8s both;
}

@keyframes expandWidth {
  from { transform: scaleX(0); transform-origin: left; }
  to   { transform: scaleX(1); transform-origin: left; }
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: var(--space-lg);
  animation: fadeInUp 0.6s var(--ease-out) 0.2s both;
}

.hero-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
  animation: fadeInUp 0.6s var(--ease-out) 0.3s both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  animation: fadeInUp 0.6s var(--ease-out) 0.4s both;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--forest-deep);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 2px;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(45, 106, 30, 0.2);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: var(--space-xl);
  animation: fadeInRight 0.8s var(--ease-out) 0.2s both;
}

.hero-image-frame {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.hero-image-inner {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
  border: 3px solid rgba(255,255,255,0.8);
  position: relative;
}

.hero-image-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 60%,
    rgba(10, 31, 2, 0.3) 100%
  );
  z-index: 1;
}

.hero-image-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.hero-image-inner:hover img {
  transform: scale(1.04);
}

.hero-image-badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--white);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: var(--radius-md);
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--forest-deep);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}

.hero-accent-circle {
  position: absolute;
  top: 10%;
  right: -5%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-scroll-hint {
  position: absolute;
  bottom: var(--space-md);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
  animation: fadeIn 1s var(--ease-out) 1s both;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--text-light);
  border-bottom: 2px solid var(--text-light);
  transform: rotate(45deg);
  animation: bounceDown 1.5s ease-in-out infinite;
}

@keyframes bounceDown {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50%       { transform: rotate(45deg) translateY(4px); }
}

/* ════════════════════════════════════════════
   TRUST STRIP
════════════════════════════════════════════ */
.trust-strip {
  background: var(--forest-deep);
  padding: var(--space-md) 0;
  overflow: hidden;
}

.trust-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
}

.trust-icon {
  font-size: 1rem;
}

.trust-sep {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.2);
}

/* ════════════════════════════════════════════
   FEATURES SECTION
════════════════════════════════════════════ */
.features {
  padding: var(--space-3xl) 0;
  background: var(--cream);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.feature-card {
  background: var(--white);
  border: 1px solid rgba(45, 106, 30, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all var(--duration-mid) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--forest-mid), var(--forest-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-mid) var(--ease-out);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(45, 106, 30, 0.2);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card--accent {
  background: var(--forest-pale);
  border-color: rgba(45, 106, 30, 0.2);
}

.feature-card--accent::before {
  background: linear-gradient(90deg, var(--gold-mid), var(--gold-light));
}

.feature-icon-wrap {
  margin-bottom: var(--space-md);
  display: inline-flex;
  padding: 0.75rem;
  background: var(--forest-mist);
  border-radius: var(--radius-md);
}

.feature-card--accent .feature-icon-wrap {
  background: rgba(201, 168, 76, 0.1);
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--forest-deep);
}

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

/* ════════════════════════════════════════════
   PRODUCTS SECTION
════════════════════════════════════════════ */
.products {
  padding: var(--space-3xl) 0;
  background: var(--cream-warm);
  position: relative;
  overflow: hidden;
}

.products-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(45, 106, 30, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(201, 168, 76, 0.06) 0%, transparent 40%);
  pointer-events: none;
}

/* Filter Buttons */
.product-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: var(--space-xl);
}

.filter-btn {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-mid);
  background: var(--white);
  border: 1.5px solid rgba(45, 106, 30, 0.15);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  transition: all var(--duration-mid) var(--ease-out);
  cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--forest-mid);
  color: var(--white);
  border-color: var(--forest-mid);
  box-shadow: 0 4px 12px rgba(45, 106, 30, 0.25);
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

/* Product Card */
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(45, 106, 30, 0.08);
  transition: all var(--duration-mid) var(--ease-out);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(45, 106, 30, 0.15);
}

.product-card.hidden {
  display: none;
}

/* Product Image / Placeholder */
.product-image-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--forest-mist);
}

/* ─── IMAGE PLACEHOLDER STYLES ─── */
/* To replace: swap .product-img-placeholder with an <img> tag */
.product-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--forest-mist) 0%, var(--forest-pale) 100%);
  border-bottom: 2px dashed rgba(45, 106, 30, 0.2);
  transition: background var(--duration-mid);
  cursor: pointer;
  position: relative;
}

.product-img-placeholder::after {
  content: attr(data-product);
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--forest-mid);
  opacity: 0.6;
  letter-spacing: 0.04em;
}

.product-card:hover .product-img-placeholder {
  background: linear-gradient(135deg, var(--forest-pale) 0%, rgba(184, 243, 105, 0.2) 100%);
}

.placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 1rem;
}

.placeholder-icon {
  opacity: 0.5;
  transition: opacity var(--duration-mid), transform var(--duration-mid);
}

.product-card:hover .placeholder-icon {
  opacity: 0.8;
  transform: scale(1.05);
}

.placeholder-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--forest-mid);
  opacity: 0.7;
}

.placeholder-hint {
  font-size: 0.68rem;
  color: var(--text-light);
  background: rgba(45, 106, 30, 0.08);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  border: 1px dashed rgba(45, 106, 30, 0.25);
}

/* Product Badge */
.product-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  z-index: 2;
}

.product-badge--bestseller {
  background: var(--gold-mid);
  color: var(--forest-deep);
}

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

/* Product Info */
.product-info {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-category {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest-mid);
  margin-bottom: 0.4rem;
}

.product-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--forest-deep);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.product-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: var(--space-sm);
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(45, 106, 30, 0.08);
}

.product-price {
  display: flex;
  flex-direction: column;
}

.price-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.price-value {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--forest-deep);
}

.product-btn {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--forest-mid);
  background: var(--forest-pale);
  border: 1.5px solid rgba(45, 106, 30, 0.2);
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  transition: all var(--duration-mid) var(--ease-out);
  white-space: nowrap;
}

.product-btn:hover {
  background: var(--forest-mid);
  color: var(--white);
  border-color: var(--forest-mid);
  transform: translateY(-1px);
}

/* Products CTA */
.products-cta {
  text-align: center;
  padding: var(--space-xl);
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(45, 106, 30, 0.1);
}

.products-cta p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

/* ════════════════════════════════════════════
   PRICE PROMISE BANNER
════════════════════════════════════════════ */
.price-banner {
  background: linear-gradient(135deg, var(--forest-deep) 0%, var(--forest-dark) 60%, #0D2E05 100%);
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}

.price-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.price-banner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 106, 30, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.price-banner-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.price-banner-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-mid);
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-sm);
}

.price-banner-content h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: var(--space-md);
  line-height: 1.1;
}

.price-banner-content h2 em {
  color: var(--gold-mid);
}

.price-banner-content p {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: var(--space-lg);
  max-width: 480px;
}

.price-banner-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
}

.price-circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 2px solid rgba(201, 168, 76, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(201, 168, 76, 0.08);
  position: relative;
  animation: rotateSlow 20s linear infinite;
}

.price-circle::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px dashed rgba(201, 168, 76, 0.2);
}

@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.price-circle-text {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-mid);
  animation: rotateSlowReverse 20s linear infinite;
}

.price-circle-big {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  animation: rotateSlowReverse 20s linear infinite;
}

.price-circle-sub {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.08em;
  animation: rotateSlowReverse 20s linear infinite;
}

@keyframes rotateSlowReverse {
  from { transform: rotate(0deg); }
  to   { transform: rotate(-360deg); }
}

.price-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  max-width: 280px;
}

.price-feat {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

/* ════════════════════════════════════════════
   ABOUT SECTION
════════════════════════════════════════════ */
.about {
  padding: var(--space-3xl) 0;
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-image-stack {
  position: relative;
  height: 520px;
}

.about-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 85%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.about-img-main:hover img {
  transform: scale(1.04);
}

.about-img-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 55%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--cream);
}

.about-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-badge {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: var(--gold-mid);
  color: var(--forest-deep);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-gold);
  z-index: 2;
}

.badge-year {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

/* About Content */
.about-content .section-title {
  text-align: left;
  margin-bottom: var(--space-md);
}

.about-lead {
  font-size: 1.1rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: var(--space-md);
  font-weight: 500;
}

.about-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.about-owner {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: var(--forest-pale);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--forest-mid);
  margin-bottom: var(--space-lg);
}

.owner-avatar {
  flex-shrink: 0;
}

.owner-info {
  display: flex;
  flex-direction: column;
}

.owner-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--forest-deep);
}

.owner-title {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.value-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.75rem var(--space-sm);
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(45, 106, 30, 0.08);
}

.value-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.value-item div {
  display: flex;
  flex-direction: column;
}

.value-item strong {
  font-size: 0.9rem;
  color: var(--forest-deep);
}

.value-item span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ════════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════════ */
.testimonials {
  padding: var(--space-3xl) 0;
  background: var(--forest-mist);
  overflow: hidden;
}

.testimonials-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  transition: transform var(--duration-slow) var(--ease-out);
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid rgba(45, 106, 30, 0.08);
  box-shadow: var(--shadow-sm);
  transition: all var(--duration-mid) var(--ease-out);
}

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

.testimonial-stars {
  color: var(--gold-mid);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: var(--space-sm);
}

.testimonial-text {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: var(--space-md);
  position: relative;
}

.testimonial-text::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--forest-pale);
  position: absolute;
  top: -1.5rem;
  left: -0.5rem;
  line-height: 1;
  z-index: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(45, 106, 30, 0.08);
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--forest-mid);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.875rem;
  color: var(--forest-deep);
}

.testimonial-author span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
}

.t-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(45, 106, 30, 0.2);
  background: var(--white);
  color: var(--forest-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration-mid) var(--ease-out);
}

.t-nav-btn:hover {
  background: var(--forest-mid);
  color: var(--white);
  border-color: var(--forest-mid);
}

.t-dots {
  display: flex;
  gap: 6px;
}

.t-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(45, 106, 30, 0.2);
  transition: all var(--duration-mid);
  cursor: pointer;
}

.t-dot.active {
  background: var(--forest-mid);
  width: 24px;
  border-radius: 4px;
}

/* ════════════════════════════════════════════
   CONTACT SECTION
════════════════════════════════════════════ */
.contact {
  padding: var(--space-3xl) 0;
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(45, 106, 30, 0.08);
  transition: all var(--duration-mid) var(--ease-out);
}

.contact-card:hover {
  border-color: rgba(45, 106, 30, 0.2);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--forest-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-card strong {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-card a,
.contact-card span {
  font-size: 0.95rem;
  color: var(--forest-deep);
  font-weight: 500;
  transition: color var(--duration-fast);
}

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

.contact-owner-note {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: var(--space-sm) var(--space-md);
  background: var(--gold-pale);
  border-radius: var(--radius-md);
  border: 1px solid rgba(201, 168, 76, 0.25);
  font-size: 0.85rem;
  color: var(--bark-dark);
  line-height: 1.5;
}

/* Contact Form */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  border: 1px solid rgba(45, 106, 30, 0.08);
  box-shadow: var(--shadow-sm);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: var(--space-sm);
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-mid);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(45, 106, 30, 0.15);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: all var(--duration-mid) var(--ease-out);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--forest-mid);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(45, 106, 30, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1L6 7L11 1' stroke='%232D6A1E' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-success {
  margin-top: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 500;
  display: none;
}

.form-success.show {
  display: block;
  background: var(--forest-pale);
  color: var(--forest-mid);
  border: 1px solid rgba(45, 106, 30, 0.2);
}

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
.site-footer {
  background: var(--forest-deep);
  color: rgba(255,255,255,0.75);
}

.footer-top {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-3xl) var(--space-md) var(--space-xl);
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: var(--space-3xl);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.75;
  margin-top: var(--space-md);
  margin-bottom: var(--space-lg);
  max-width: 320px;
}

.footer-logo .logo-text {
  color: var(--white);
}

.footer-logo .logo-text em {
  color: var(--gold-mid);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all var(--duration-mid) var(--ease-out);
}

.social-link:hover {
  background: var(--forest-mid);
  border-color: var(--forest-mid);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--space-md);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col li a,
.footer-col li span {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--duration-fast);
}

.footer-col li a:hover {
  color: var(--gold-mid);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: var(--space-md);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.25rem;
}

.footer-disclaimer {
  font-size: 0.72rem !important;
  color: rgba(255,255,255,0.25) !important;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ════════════════════════════════════════════
   BACK TO TOP
════════════════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: var(--space-md);
  right: var(--space-md);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--forest-mid);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(16px);
  transition: all var(--duration-mid) var(--ease-out);
  pointer-events: none;
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--forest-dark);
  transform: translateY(-2px);
}

/* ════════════════════════════════════════════
   ANIMATIONS
════════════════════════════════════════════ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(32px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

[data-animate].in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ════════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 1024px)
════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: calc(var(--nav-height) + var(--space-xl));
    padding-bottom: var(--space-xl);
    text-align: center;
  }

  .hero-content {
    padding-top: 0;
    order: 1;
  }

  .hero-visual {
    order: 2;
    padding-top: 0;
  }

  .hero-subtitle,
  .hero-actions,
  .hero-stats {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-image-frame {
    max-width: 380px;
  }

  .hero-scroll-hint {
    display: none;
  }

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

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

  .price-banner-inner {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    text-align: center;
  }

  .price-banner-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .price-banner-visual {
    flex-direction: row;
    justify-content: center;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .about-image-stack {
    height: 380px;
    max-width: 500px;
    margin: 0 auto;
  }

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

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

  .footer-top {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

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

/* ════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 768px)
════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root {
    --space-xl:  2.5rem;
    --space-2xl: 4rem;
    --space-3xl: 5rem;
  }

  /* Nav Mobile */
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(250, 247, 242, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: stretch;
    padding: var(--space-md);
    gap: 0.25rem;
    border-bottom: 1px solid rgba(45, 106, 30, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all var(--duration-mid) var(--ease-out);
    z-index: 999;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-link {
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    font-size: 1rem;
  }

  .nav-link::after {
    display: none;
  }

  .nav-cta {
    margin-left: 0;
    text-align: center;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    margin-top: 0.25rem;
  }

  /* Hero Mobile */
  .hero-image-frame {
    max-width: 300px;
  }

  .hero-image-inner {
    aspect-ratio: 3/4;
  }

  /* Trust Strip */
  .trust-container {
    gap: var(--space-sm);
  }

  .trust-sep {
    display: none;
  }

  .trust-item {
    font-size: 0.78rem;
  }

  /* Features */
  .features-grid {
    grid-template-columns: 1fr;
  }

  /* Products */
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-filters {
    gap: 0.4rem;
  }

  .filter-btn {
    font-size: 0.75rem;
    padding: 0.4rem 0.9rem;
  }

  /* Price Banner */
  .price-banner-visual {
    flex-direction: column;
    align-items: center;
  }

  /* About */
  .about-image-stack {
    height: 300px;
  }

  .about-img-main {
    width: 80%;
    height: 80%;
  }

  .about-img-secondary {
    width: 50%;
    height: 50%;
  }

  /* Testimonials */
  .testimonials-track {
    grid-template-columns: 1fr;
  }

  /* Contact Form */
  .form-row {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-links {
    grid-template-columns: 1fr 1fr;
  }
}

/* ════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (≤ 480px)
════════════════════════════════════════════ */
@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: var(--space-sm);
  }

  .stat-divider {
    display: none;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .price-circle {
    width: 160px;
    height: 160px;
  }

  .price-circle-big {
    font-size: 2.2rem;
  }
}

/* ════════════════════════════════════════════
   PRINT STYLES
════════════════════════════════════════════ */
@media print {
  .site-header,
  .back-to-top,
  .hero-floating-leaves,
  .nav-toggle {
    display: none !important;
  }

  body {
    font-size: 12pt;
    color: #000;
  }
}