/* ============================================
   MAMA MARY'S GLUTEN-FREE BAKERY

   Color Palette:
   - Background:     #faf7f3 (warm cream)
   - Background Alt:  #f3ede5 (oat)
   - Sage Primary:    #8fa882 (soft sage green)
   - Sage Dark:       #6b8660 (deep sage)
   - Sage Darkest:    #4a6340 (forest sage)
   - Wheat:           #c4a77d (warm wheat)
   - Wheat Light:     #d9c9a8 (light wheat)
   - Rose:            #d4a0a0 (dusty rose)
   - Rose Dark:       #b8787a (deep rose)
   - Text:            #3b3229 (warm brown)
   - Text Light:      #6b6056 (muted brown)
   - Cream White:     #fffcf8 (near white)

   Typography:
   - Display: Lora (serif, warm/trustworthy)
   - Body:    Nunito Sans (clean, friendly)
   - Accent:  Caveat (handwritten warmth)
   ============================================ */

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

:root {
  --bg: #faf7f3;
  --bg-alt: #f3ede5;
  --bg-white: #fffcf8;
  --sage: #8fa882;
  --sage-light: #c5d4be;
  --sage-lighter: #e4ece0;
  --sage-dark: #6b8660;
  --sage-darkest: #4a6340;
  --wheat: #c4a77d;
  --wheat-light: #d9c9a8;
  --wheat-lighter: #ede4d6;
  --rose: #d4a0a0;
  --rose-light: #ecd4d4;
  --rose-dark: #b8787a;
  --text: #3b3229;
  --text-light: #6b6056;
  --text-lighter: #9a8f84;
  --cream: #fffcf8;
  --card-bg: #ffffff;
  --shadow-sm: 0 1px 3px rgba(59, 50, 41, 0.06);
  --shadow-md: 0 4px 12px rgba(59, 50, 41, 0.08);
  --shadow-lg: 0 8px 32px rgba(59, 50, 41, 0.1);
  --shadow-xl: 0 16px 48px rgba(59, 50, 41, 0.12);
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 9999px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Lora', Georgia, serif;
  --font-body: 'Nunito Sans', 'Segoe UI', sans-serif;
  --font-accent: 'Caveat', cursive;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background-color: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

/* Focus visible for accessibility */
:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 3px;
  border-radius: 4px;
}

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


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

h1 { font-size: clamp(2.5rem, 5vw, 3.75rem); }
h2 { font-size: clamp(2rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }

em {
  font-family: var(--font-accent);
  font-style: normal;
  font-weight: 500;
  color: var(--sage-dark);
  font-size: 1.15em;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--sage-dark);
  margin-bottom: 12px;
}

.section-tag::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--sage);
  border-radius: 2px;
}

.section-title {
  margin-bottom: 16px;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.section-description {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-top: 8px;
}


/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1.4;
}

.btn--primary {
  background: var(--sage);
  color: #fff;
  border-color: var(--sage);
}
.btn--primary:hover {
  background: var(--sage-dark);
  border-color: var(--sage-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(143, 168, 130, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--sage-dark);
  border-color: var(--sage);
}
.btn--outline:hover {
  background: var(--sage);
  color: #fff;
  transform: translateY(-1px);
}

.btn--white {
  background: #fff;
  color: var(--sage-darkest);
  border-color: #fff;
}
.btn--white:hover {
  background: var(--bg);
  border-color: var(--bg);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.3);
}

.btn--outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}
.btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  transform: translateY(-1px);
}

.btn--lg {
  padding: 16px 36px;
  font-size: 1rem;
}

.btn--full {
  width: 100%;
}


/* ── Animations ── */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes gentlePulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.05); }
}

@keyframes sparkleFloat {
  0%, 100% { opacity: 0.4; transform: scale(0.8); }
  50% { opacity: 0.9; transform: scale(1.2); }
}

@keyframes scrollDot {
  0% { top: 4px; opacity: 1; }
  100% { top: 20px; opacity: 0; }
}

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

.fade-up {
  opacity: 0;
  transform: translateY(28px);
}

.fade-up.is-visible {
  animation: fadeSlideUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.sparkle {
  animation: sparkleFloat 2.5s ease-in-out infinite;
}
.sparkle--delay {
  animation-delay: 0.8s;
}
.sparkle--delay-2 {
  animation-delay: 1.6s;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .fade-up {
    opacity: 1;
    transform: none;
  }
  html {
    scroll-behavior: auto;
  }
}


/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 72px;
  background: rgba(250, 247, 243, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}

.nav--scrolled {
  height: 64px;
  background: rgba(250, 247, 243, 0.95);
  border-bottom-color: var(--wheat-lighter);
  box-shadow: var(--shadow-sm);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo__mark {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.logo__icon {
  width: 100%;
  height: 100%;
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
}

.logo__sub {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  color: var(--sage-dark);
  letter-spacing: 0.02em;
}

.logo--light .logo__name { color: var(--cream); }
.logo--light .logo__sub { color: var(--sage-light); }

/* Nav links */
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
  transition: color var(--transition);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--sage);
  border-radius: 2px;
  transition: width var(--transition);
}

.nav__link:hover {
  color: var(--sage-dark);
}

.nav__link:hover::after {
  width: 100%;
}

/* Nav actions */
.nav__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav__cta {
  padding: 10px 24px;
  font-size: 0.85rem;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.nav__hamburger:hover {
  background: var(--sage-lighter);
}

.nav__hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
  transform-origin: center;
}

.nav__hamburger[aria-expanded="true"] .nav__hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav__hamburger[aria-expanded="true"] .nav__hamburger-line:nth-child(2) {
  opacity: 0;
}
.nav__hamburger[aria-expanded="true"] .nav__hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(250, 247, 243, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 24px;
  border-bottom: 1px solid var(--wheat-lighter);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(-12px);
  pointer-events: none;
  transition: all var(--transition);
  z-index: 999;
}

.mobile-menu.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-menu__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-menu__link {
  display: block;
  padding: 12px 16px;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.mobile-menu__link:hover {
  background: var(--sage-lighter);
  color: var(--sage-dark);
}

.mobile-menu__cta {
  margin-top: 8px;
  text-align: center;
}


/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 0 0;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 60%, var(--sage-lighter) 100%);
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  will-change: transform;
}

.hero__orb--1 {
  width: 400px;
  height: 400px;
  top: 5%;
  right: -5%;
  background: radial-gradient(circle, rgba(143, 168, 130, 0.2), transparent 70%);
  animation: gentlePulse 8s ease-in-out infinite;
}

.hero__orb--2 {
  width: 350px;
  height: 350px;
  bottom: 20%;
  left: -8%;
  background: radial-gradient(circle, rgba(212, 160, 160, 0.18), transparent 70%);
  animation: gentlePulse 10s ease-in-out infinite 2s;
}

.hero__orb--3 {
  width: 250px;
  height: 250px;
  top: 30%;
  left: 40%;
  background: radial-gradient(circle, rgba(196, 167, 125, 0.15), transparent 70%);
  animation: gentlePulse 7s ease-in-out infinite 4s;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero__content {
  max-width: 560px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(143, 168, 130, 0.12);
  color: var(--sage-dark);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(143, 168, 130, 0.2);
  margin-bottom: 24px;
}

.hero__badge svg {
  color: var(--sage);
}

.hero__title {
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero__title em {
  font-size: 1.1em;
  color: var(--sage-dark);
}

.hero__description {
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 500px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero visual */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__illustration {
  width: 100%;
  max-width: 400px;
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(59, 50, 41, 0.1));
}

/* Floating cards around hero illustration */
.hero__float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--card-bg);
  padding: 10px 16px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  z-index: 3;
}

.hero__float-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  flex-shrink: 0;
}

.hero__float-card--1 {
  top: 10%;
  left: -5%;
  animation: float 5s ease-in-out infinite;
}
.hero__float-card--1 .hero__float-icon {
  background: var(--wheat-lighter);
  color: var(--wheat);
}

.hero__float-card--2 {
  bottom: 30%;
  right: -8%;
  animation: float 6s ease-in-out infinite 1s;
}
.hero__float-card--2 .hero__float-icon {
  background: var(--rose-light);
  color: var(--rose-dark);
}

.hero__float-card--3 {
  bottom: 10%;
  left: 5%;
  animation: float 5.5s ease-in-out infinite 2s;
}
.hero__float-card--3 .hero__float-icon {
  background: var(--sage-lighter);
  color: var(--sage-dark);
}

/* Trust bar */
.hero__trust {
  position: relative;
  z-index: 2;
  margin-top: 60px;
  padding-bottom: 40px;
}

.hero__trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  background: var(--card-bg);
  padding: 24px 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.hero__trust-item {
  text-align: center;
}

.hero__trust-number {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--sage-dark);
}

.hero__trust-symbol {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--sage-dark);
}

.hero__trust-text {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--sage-dark);
}

.hero__trust-label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 500;
  margin-top: 2px;
}

.hero__trust-divider {
  width: 1px;
  height: 36px;
  background: var(--wheat-lighter);
  flex-shrink: 0;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero__scroll-line {
  position: relative;
  width: 2px;
  height: 32px;
  background: var(--wheat-lighter);
  border-radius: 2px;
  overflow: hidden;
}

.hero__scroll-dot {
  position: absolute;
  width: 4px;
  height: 8px;
  left: -1px;
  background: var(--sage);
  border-radius: 4px;
  animation: scrollDot 1.8s ease-in-out infinite;
}


/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: 100px 0;
  background: var(--bg);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--sage-darkest);
  padding: 20px 0 20px 24px;
  border-left: 3px solid var(--sage);
  margin-bottom: 24px;
}

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

.about__text:last-child {
  margin-bottom: 0;
}

/* Founder card */
.about__founder-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
  margin-bottom: 24px;
}

.about__founder-photo {
  width: 100%;
  height: 200px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--sage-lighter) 0%, var(--wheat-lighter) 50%, var(--rose-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__founder-initials {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--sage-darkest);
  opacity: 0.6;
}

.about__founder-initials span {
  color: var(--sage-dark);
}

.about__founder-info {
  text-align: center;
}

.about__founder-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.about__founder-role {
  font-family: var(--font-accent);
  font-size: 1rem;
  color: var(--sage-dark);
  margin-bottom: 8px;
}

.about__founder-location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-light);
}

.about__founder-location svg {
  color: var(--rose);
}

/* Values */
.about__values {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about__value {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.about__value:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.about__value-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: var(--sage-lighter);
  color: var(--sage-dark);
  flex-shrink: 0;
  transition: all var(--transition);
}

.about__value:hover .about__value-icon {
  background: var(--sage);
  color: #fff;
}

.about__value h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.about__value p {
  font-size: 0.82rem;
  color: var(--text-light);
}


/* ============================================
   PRODUCTS
   ============================================ */
.products {
  padding: 100px 0;
  background: var(--bg-alt);
}

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

.product-card {
  position: relative;
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid transparent;
}

.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--sage-light);
}

.product-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--sage);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  z-index: 2;
}

.product-card--featured {
  border-color: var(--sage-light);
  box-shadow: var(--shadow-md);
}

.product-card__image {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--card-bg);
}

.product-card__image--bread {
  background: linear-gradient(135deg, #c4a77d 0%, #d9c9a8 50%, #e8dbc5 100%);
}
.product-card__image--cake {
  background: linear-gradient(135deg, #d4a0a0 0%, #ecd4d4 50%, #f5e8e8 100%);
}
.product-card__image--cookies {
  background: linear-gradient(135deg, #c4a77d 0%, #b8956e 40%, #d4b896 100%);
}
.product-card__image--pastries {
  background: linear-gradient(135deg, #d9c9a8 0%, #ede4d6 50%, #f5efe5 100%);
  color: var(--wheat);
}
.product-card__image--custom {
  background: linear-gradient(135deg, #8fa882 0%, #a8b89c 50%, #c5d4be 100%);
}
.product-card__image--wedding {
  background: linear-gradient(135deg, #d4a0a0 0%, #c48b8b 30%, #ecd4d4 100%);
}
.product-card__image--allergy {
  background: linear-gradient(135deg, #a8b89c 0%, #c5d4be 50%, #e4ece0 100%);
  color: var(--sage-dark);
}

.product-card__image svg {
  opacity: 0.7;
  transition: all var(--transition);
}

.product-card:hover .product-card__image svg {
  opacity: 0.9;
  transform: scale(1.08);
}

.product-card__content {
  padding: 24px;
}

.product-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 8px;
}

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

.product-card__features {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.product-card__features li {
  font-size: 0.82rem;
  color: var(--text-light);
  padding-left: 18px;
  position: relative;
}

.product-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage);
}

.product-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--sage-dark);
  transition: all var(--transition);
}

.product-card__link svg {
  transition: transform var(--transition);
}

.product-card__link:hover {
  color: var(--sage-darkest);
}

.product-card__link:hover svg {
  transform: translateX(4px);
}


/* ============================================
   WHY US
   ============================================ */
.why-us {
  padding: 100px 0;
  background: var(--sage-darkest);
  color: var(--cream);
}

.why-us .section-tag {
  color: var(--sage-light);
}
.why-us .section-tag::before {
  background: var(--sage-light);
}

.why-us .section-title {
  color: var(--cream);
}

.why-us .section-title em {
  color: var(--sage-light);
}

.why-us .section-description {
  color: rgba(255, 252, 248, 0.7);
}

.why-us__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-us__card {
  padding: 32px 28px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.why-us__card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(143, 168, 130, 0.3);
  transform: translateY(-4px);
}

.why-us__number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--sage-light);
  opacity: 0.5;
  display: block;
  margin-bottom: 16px;
}

.why-us__card:hover .why-us__number {
  opacity: 0.8;
}

.why-us__card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--cream);
  margin-bottom: 8px;
}

.why-us__card-text {
  font-size: 0.9rem;
  color: rgba(255, 252, 248, 0.65);
  line-height: 1.65;
}


/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: 100px 0;
  background: var(--bg);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.testimonial-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid transparent;
  transition: all var(--transition);
}

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

.testimonial-card--featured {
  background: var(--sage-darkest);
  color: var(--cream);
  border-color: transparent;
}

.testimonial-card__stars {
  display: flex;
  gap: 2px;
  color: var(--wheat);
  margin-bottom: 16px;
}

.testimonial-card--featured .testimonial-card__stars {
  color: var(--sage-light);
}

.testimonial-card__text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-card--featured .testimonial-card__text {
  color: rgba(255, 252, 248, 0.8);
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--sage-lighter);
  color: var(--sage-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.testimonial-card--featured .testimonial-card__avatar {
  background: rgba(143, 168, 130, 0.2);
  color: var(--sage-light);
}

.testimonial-card__name {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
}

.testimonial-card--featured .testimonial-card__name {
  color: var(--cream);
}

.testimonial-card__location {
  font-size: 0.78rem;
  color: var(--text-lighter);
}

.testimonial-card--featured .testimonial-card__location {
  color: rgba(255, 252, 248, 0.5);
}


/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(135deg, var(--sage-darkest) 0%, var(--sage-dark) 50%, var(--sage) 100%);
  overflow: hidden;
}

.cta-banner__pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.07) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
}

.cta-banner__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.cta-banner__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.cta-banner__text {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
  line-height: 1.7;
}

.cta-banner__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}


/* ============================================
   FAQ
   ============================================ */
.faq {
  padding: 100px 0;
  background: var(--bg-alt);
}

.faq__list {
  max-width: 740px;
  margin: 0 auto;
}

.faq__item {
  background: var(--card-bg);
  border-radius: var(--radius);
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid transparent;
  transition: all var(--transition);
}

.faq__item:hover {
  border-color: var(--sage-lighter);
}

.faq__item[open] {
  border-color: var(--sage-light);
  box-shadow: var(--shadow-md);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: color var(--transition);
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question::marker {
  content: '';
}

.faq__chevron {
  flex-shrink: 0;
  color: var(--text-lighter);
  transition: transform var(--transition), color var(--transition);
}

.faq__item[open] .faq__chevron {
  transform: rotate(180deg);
  color: var(--sage);
}

.faq__item[open] .faq__question {
  color: var(--sage-dark);
}

.faq__answer {
  padding: 0 24px 20px;
}

.faq__answer p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
}


/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: 100px 0;
  background: var(--bg);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* Info card */
.contact__info-inner {
  background: var(--sage-darkest);
  color: var(--cream);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
}

.contact__info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.contact__info-item:last-of-type {
  margin-bottom: 28px;
}

.contact__info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: rgba(143, 168, 130, 0.15);
  color: var(--sage-light);
  flex-shrink: 0;
}

.contact__info-item h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--cream);
  margin-bottom: 4px;
}

.contact__info-item p {
  font-size: 0.88rem;
  color: rgba(255, 252, 248, 0.7);
  line-height: 1.6;
}

.contact__info-item a {
  color: var(--sage-light);
  transition: color var(--transition);
}
.contact__info-item a:hover {
  color: #fff;
}

/* Map placeholder */
.contact__map {
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 40px 24px;
  margin-bottom: 24px;
}

.contact__map-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 252, 248, 0.5);
  font-size: 0.85rem;
}

/* Area tags */
.contact__areas h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--cream);
  margin-bottom: 12px;
}

.contact__area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.area-tag {
  display: inline-block;
  padding: 5px 14px;
  font-size: 0.78rem;
  font-weight: 500;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 252, 248, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition);
}

.area-tag:hover {
  background: rgba(143, 168, 130, 0.2);
  border-color: rgba(143, 168, 130, 0.4);
  color: var(--cream);
}

/* Contact form */
.contact__form-wrap {
  position: relative;
}

.contact__form {
  background: var(--card-bg);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
}

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

.form-group {
  margin-bottom: 16px;
}

.form-row .form-group {
  margin-bottom: 0;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text);
  background: var(--bg);
  border: 1.5px solid var(--wheat-lighter);
  border-radius: var(--radius);
  transition: all var(--transition);
  outline: none;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(143, 168, 130, 0.12);
}

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

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

.form-error {
  display: block;
  font-size: 0.78rem;
  color: var(--rose-dark);
  margin-top: 4px;
  min-height: 0;
}

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-color: var(--rose-dark);
}

.form-group.has-error input:focus,
.form-group.has-error select:focus,
.form-group.has-error textarea:focus {
  box-shadow: 0 0 0 3px rgba(184, 120, 122, 0.12);
}

/* Submit button loading state */
.btn__loading {
  display: none;
}

.btn--loading .btn__text {
  opacity: 0.3;
}

.btn--loading .btn__loading {
  display: flex;
  position: absolute;
}

.btn--loading .btn__loading svg {
  animation: spin 0.8s linear infinite;
}

.btn--loading {
  position: relative;
  pointer-events: none;
}

/* Success state */
.contact__success {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--card-bg);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  z-index: 5;
}

.contact__success[hidden] {
  display: none;
}

.contact__success-inner {
  text-align: center;
  padding: 40px;
}

.contact__success-inner svg {
  color: var(--sage);
  margin-bottom: 16px;
}

.contact__success-inner h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--sage-darkest);
}

.contact__success-inner p {
  color: var(--text-light);
  margin-bottom: 24px;
  line-height: 1.6;
}


/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--text);
  color: var(--cream);
  padding: 60px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 252, 248, 0.1);
}

.footer__tagline {
  font-size: 0.88rem;
  color: rgba(255, 252, 248, 0.6);
  line-height: 1.7;
  margin: 16px 0 20px;
  max-width: 300px;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 252, 248, 0.7);
  transition: all var(--transition);
}

.footer__social-link:hover {
  background: var(--sage);
  color: #fff;
  transform: translateY(-2px);
}

.footer__heading {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 20px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links li {
  font-size: 0.88rem;
}

.footer__links a {
  color: rgba(255, 252, 248, 0.6);
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--sage-light);
}

.footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: rgba(255, 252, 248, 0.6);
  font-size: 0.85rem;
  line-height: 1.6;
}

.footer__contact li svg {
  margin-top: 3px;
  color: var(--sage-light);
  flex-shrink: 0;
}

.footer__contact li a {
  color: rgba(255, 252, 248, 0.6);
  word-break: break-all;
}

.footer__contact li a:hover {
  color: var(--sage-light);
}

/* Footer bottom */
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 24px 0;
}

.footer__copyright {
  font-size: 0.82rem;
  color: rgba(255, 252, 248, 0.5);
}

.footer__legal {
  font-size: 0.78rem;
  color: rgba(255, 252, 248, 0.35);
}

.footer__legal-links {
  display: flex;
  gap: 20px;
}

.footer__legal-links a {
  font-size: 0.82rem;
  color: rgba(255, 252, 248, 0.5);
  transition: color var(--transition);
}

.footer__legal-links a:hover {
  color: var(--sage-light);
}


/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sage);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  z-index: 900;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}

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

.back-to-top[hidden] {
  display: none;
}

.back-to-top:hover {
  background: var(--sage-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}


/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
  .nav__links {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .nav__cta {
    display: none;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero__description {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__visual {
    max-width: 360px;
    margin: 0 auto;
  }

  .hero__float-card--1 {
    left: -10px;
    top: 5%;
  }

  .hero__float-card--2 {
    right: -10px;
  }

  .hero__float-card--3 {
    left: 0;
  }

  .hero__trust-inner {
    gap: 24px;
    padding: 20px 24px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

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

  .testimonials__grid .testimonial-card:last-child {
    grid-column: 1 / -1;
    max-width: 480px;
    margin: 0 auto;
  }

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

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

  .footer__brand {
    grid-column: 1 / -1;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    padding: 100px 0 0;
    min-height: auto;
  }

  .hero__badge {
    font-size: 0.75rem;
    padding: 6px 14px;
  }

  .hero__visual {
    max-width: 280px;
  }

  .hero__float-card {
    font-size: 0.72rem;
    padding: 8px 12px;
  }

  .hero__float-icon {
    width: 28px;
    height: 28px;
  }

  .hero__float-icon svg {
    width: 16px;
    height: 16px;
  }

  .hero__trust-inner {
    gap: 16px;
    padding: 16px;
  }

  .hero__trust-divider {
    display: none;
  }

  .hero__trust-item {
    flex: 1;
    min-width: 80px;
  }

  .hero__trust-number {
    font-size: 1.3rem;
  }

  .hero__trust-text {
    font-size: 0.95rem;
  }

  .hero__scroll {
    display: none;
  }

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

  .about,
  .products,
  .why-us,
  .testimonials,
  .faq,
  .contact {
    padding: 60px 0;
  }

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

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

  .product-card__image {
    height: 140px;
  }

  .why-us__grid {
    grid-template-columns: 1fr;
  }

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

  .testimonials__grid .testimonial-card:last-child {
    grid-column: auto;
    max-width: none;
  }

  .cta-banner {
    padding: 60px 0;
  }

  .cta-banner__actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-banner__actions .btn {
    width: 100%;
  }

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

  .contact__form {
    padding: 24px 20px;
  }

  .contact__info-inner {
    padding: 28px 24px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer__brand {
    grid-column: auto;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}


/* ── Print styles ── */
@media print {
  .nav,
  .hero__orb,
  .hero__scroll,
  .hero__float-card,
  .cta-banner,
  .back-to-top,
  .contact__form-wrap,
  .footer__social {
    display: none !important;
  }

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

  .hero {
    min-height: auto;
    padding: 40px 0;
    background: #fff;
  }

  section {
    page-break-inside: avoid;
  }
}
