/* ============================================================
   NAMO 9 TEA — 2026 Redesign Stylesheet
   Single file replacing all Bootstrap/jQuery-era CSS
   ============================================================ */

/* === 1. DESIGN TOKENS === */
:root {
  /* Colors */
  --color-forest:      #1a3a2a;
  --color-forest-mid:  #2d5c42;
  --color-forest-lt:   #4a7c5f;
  --color-gold:        #c9a84c;
  --color-gold-lt:     #e8d5a0;
  --color-gold-pale:   #f5eed8;
  --color-cream:       #faf6f0;
  --color-cream-dk:    #f0e8d8;
  --color-bark:        #3d2b1f;
  --color-bark-mid:    #6b4c3b;
  --color-white:       #ffffff;
  --color-text:        #2c2015;
  --color-text-muted:  #6b5c4e;
  --color-border:      rgba(201, 168, 76, 0.25);

  /* Glassmorphism */
  --glass-bg:     rgba(250, 246, 240, 0.72);
  --glass-border: rgba(201, 168, 76, 0.30);
  --glass-blur:   blur(16px);
  --glass-shadow: 0 8px 32px rgba(26, 58, 42, 0.12);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Fluid type scale — min @ 375px, max @ 1440px */
  --text-xs:   clamp(0.6875rem, 0.65rem  + 0.2vw,  0.75rem);
  --text-sm:   clamp(0.8125rem, 0.78rem  + 0.2vw,  0.875rem);
  --text-base: clamp(0.9375rem, 0.9rem   + 0.25vw, 1rem);
  --text-md:   clamp(1rem,      0.95rem  + 0.35vw, 1.125rem);
  --text-lg:   clamp(1.125rem,  1rem     + 0.65vw, 1.375rem);
  --text-xl:   clamp(1.25rem,   1.05rem  + 1vw,    1.75rem);
  --text-2xl:  clamp(1.5rem,    1.1rem   + 2vw,    2.5rem);
  --text-3xl:  clamp(1.875rem,  1.2rem   + 3vw,    3.5rem);
  --text-4xl:  clamp(2.5rem,    1.4rem   + 5vw,    5rem);
  --text-hero: clamp(2.75rem,   1.5rem   + 6vw,    6.5rem);

  /* Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Border radius */
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   32px;
  --radius-full: 9999px;

  /* Section rhythm */
  --section-gap: clamp(4rem, 3rem + 4vw, 8rem);

  /* Header */
  --header-h: 72px;

  /* Transitions */
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* === 2. RESET + BASE === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background-color: var(--color-cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

ul, ol {
  list-style: none;
}

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

/* === 3. TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--color-forest);
}

h1 { font-size: var(--text-4xl); font-weight: 700; }
h2 { font-size: var(--text-3xl); font-weight: 700; }
h3 { font-size: var(--text-2xl); font-weight: 600; }
h4 { font-size: var(--text-xl);  font-weight: 600; }

p {
  line-height: 1.75;
  color: var(--color-text);
}

/* === 4. LAYOUT UTILITIES === */
.container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--space-6);
}

.container-wide {
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: var(--space-6);
}

.section-gap {
  padding-block: var(--section-gap);
}

.section-gap-top {
  padding-top: var(--section-gap);
}

.section-gap-bottom {
  padding-bottom: var(--section-gap);
}

/* Section header component */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-3);
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--color-forest);
  line-height: 1.15;
  margin-bottom: var(--space-4);
}

.section-divider {
  display: block;
  width: 48px;
  height: 3px;
  background: var(--color-gold);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-8);
}

.section-divider--center {
  margin-inline: auto;
}

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

/* === 5. BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.75rem 2rem;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.06em;
  border-radius: var(--radius-full);
  transition: all 0.3s var(--ease-smooth);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-gold);
  color: var(--color-forest);
  border: 2px solid var(--color-gold);
}
.btn-primary:hover {
  background: #b8972e;
  border-color: #b8972e;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.6);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--color-white);
  transform: translateY(-2px);
}

.btn-forest {
  background: var(--color-forest);
  color: var(--color-white);
  border: 2px solid var(--color-forest);
}
.btn-forest:hover {
  background: var(--color-forest-mid);
  border-color: var(--color-forest-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 58, 42, 0.25);
}

.btn-details {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.5rem;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-forest);
  background: var(--color-gold-pale);
  border: 1.5px solid var(--color-gold);
  border-radius: var(--radius-full);
  transition: all 0.25s ease;
  margin-top: var(--space-4);
}
.btn-details:hover {
  background: var(--color-gold);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(201, 168, 76, 0.3);
}

/* === 6. HEADER / NAV === */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition:
    background 0.4s var(--ease-smooth),
    backdrop-filter 0.4s var(--ease-smooth),
    box-shadow 0.4s var(--ease-smooth);
}

.site-header.scrolled {
  background: rgba(250, 246, 240, 0.90);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 1px 24px rgba(26, 58, 42, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--space-6);
}

.header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header-logo img {
  height: 48px;
  width: auto;
}

/* Desktop nav */
.header-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.nav-link {
  position: relative;
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-white);
  transition: color 0.25s ease;
  padding-block: var(--space-1);
}

/* Underline slide-in on hover */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 100%; height: 2px;
  background: var(--color-gold);
  border-radius: var(--radius-full);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-smooth);
}
.nav-link:hover::after,
.nav-link[aria-current="page"]::after {
  transform: scaleX(1);
}
.nav-link[aria-current="page"] {
  color: var(--color-gold);
}

/* Scrolled state nav links */
.site-header.scrolled .nav-link {
  color: var(--color-forest);
}
.site-header.scrolled .nav-link[aria-current="page"] {
  color: var(--color-gold);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  padding: var(--space-2);
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--color-white);
  border-radius: var(--radius-full);
  transition: all 0.3s var(--ease-smooth);
  transform-origin: center;
}

.site-header.scrolled .hamburger span {
  background: var(--color-forest);
}

/* Hamburger → X animation */
.hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu drawer */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--color-forest);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  transform: translateX(100%);
  transition: transform 0.45s var(--ease-smooth);
  padding: var(--space-8);
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
}

.mobile-nav-link {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--color-white);
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}
.mobile-nav-link:hover,
.mobile-nav-link[aria-current="page"] {
  color: var(--color-gold);
}

/* Close button inside mobile menu */
.mobile-menu-close {
  position: absolute;
  top: var(--space-6);
  right: var(--space-6);
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.75rem;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}
.mobile-menu-close:hover { opacity: 1; }

/* === 7. HERO — HOME === */
.hero {
  position: relative;
  min-height: 100svh;
  background-image: url('../img/icons/stress_buster_2.png');
  background-size: cover;
  background-position: center center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

@media (max-width: 768px) {
  .hero {
    background-image: url('../img/icons/stress_buster_mob.jpg');
    background-position: center top;
  }
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    155deg,
    rgba(26, 58, 42, 0.78) 0%,
    rgba(61, 43, 31, 0.60) 50%,
    rgba(26, 58, 42, 0.40) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--color-white);
  padding: var(--space-8) var(--space-6);
  max-width: 900px;
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold-lt);
  margin-bottom: var(--space-5);
}

.hero-title {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 900;
  font-style: italic;
  color: var(--color-white);
  line-height: 1.05;
  margin-bottom: var(--space-6);
}

.hero-subtitle {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.85);
  max-width: 620px;
  margin: 0 auto var(--space-10);
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* === 8. PAGE HERO (interior pages) === */
.page-hero {
  position: relative;
  min-height: clamp(260px, 38vh, 420px);
  background: linear-gradient(
    135deg,
    #1a3a2a 0%,
    #2d5c42 40%,
    #3d2b1f 100%
  );
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: var(--header-h);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  padding: var(--space-12) var(--space-6);
  max-width: 1200px;
  margin-inline: auto;
  width: 100%;
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-3);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-gold-lt);
}

.breadcrumb a {
  color: rgba(232, 213, 160, 0.75);
  transition: color 0.2s ease;
}
.breadcrumb a:hover { color: var(--color-gold-lt); }

.breadcrumb-sep {
  opacity: 0.6;
  font-size: 1.1em;
}

/* === 9. GLASS CARD BASE === */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--glass-shadow);
}

/* === 10. BENTO GRID (Services section) === */
.services-section {
  background: linear-gradient(160deg, var(--color-cream) 0%, var(--color-cream-dk) 100%);
  padding-block: var(--section-gap);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(200px, auto);
  gap: var(--space-4);
  margin-top: var(--space-10);
}

.bento-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--glass-shadow);
  padding: var(--space-8);
  transition:
    transform 0.35s var(--ease-smooth),
    box-shadow 0.35s var(--ease-smooth);
}

.bento-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(26, 58, 42, 0.16);
}

/* Bento spanning */
.bento-card:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.bento-card:nth-child(2) { grid-column: span 2; }
.bento-card:nth-child(3) { grid-column: span 2; }
.bento-card:nth-child(4) { grid-column: span 3; }
.bento-card:nth-child(5) { grid-column: span 3; }

.bento-card-icon {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-5);
}

.bento-card h4 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-forest);
  margin-bottom: var(--space-3);
}

.bento-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* Featured (first) bento card */
.bento-card:first-child .bento-card-icon {
  width: 80px;
  height: 80px;
}
.bento-card:first-child h4 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-4);
}
.bento-card:first-child p {
  font-size: var(--text-base);
}

/* Gold accent bar on the featured card */
.bento-card:first-child::before {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--color-gold);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-5);
}

/* === 11. PRODUCT CARDS === */
.products-section {
  padding-block: var(--section-gap);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-8);
  margin-top: var(--space-10);
}

.product-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(26, 58, 42, 0.07);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(26, 58, 42, 0.07);
  transition:
    transform 0.35s var(--ease-smooth),
    box-shadow 0.35s var(--ease-smooth);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(26, 58, 42, 0.14);
}

.product-card-image {
  position: relative;
  overflow: hidden;
  background: var(--color-cream-dk);
  aspect-ratio: 1 / 1;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-smooth);
}

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

.product-card-body {
  padding: var(--space-6);
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.product-card-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-forest);
  margin-bottom: var(--space-3);
}

.product-card-divider {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--color-gold);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
}

.product-card-actions {
  margin-top: auto;
  padding-top: var(--space-4);
}

/* CTA button for "View All Products" */
.products-cta {
  text-align: center;
  margin-top: var(--space-12);
}

/* === 12. CAROUSEL (vanilla JS) === */
.carousel {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  background: var(--color-cream-dk);
  aspect-ratio: 1 / 1;
}

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

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.carousel-slide.is-active {
  opacity: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 36px; height: 36px;
  background: rgba(26, 58, 42, 0.65);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  line-height: 1;
  transition: background 0.2s ease, transform 0.2s ease;
  cursor: pointer;
  border: none;
}
.carousel-btn:hover {
  background: var(--color-gold);
  color: var(--color-forest);
}
.carousel-btn--prev { left: var(--space-3); }
.carousel-btn--next { right: var(--space-3); }

/* About page wide carousel (full-width images, not square) */
.carousel-wide {
  aspect-ratio: 16 / 7;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: var(--space-8);
  box-shadow: var(--glass-shadow);
}

.carousel-wide .carousel-slide img {
  object-fit: cover;
  object-position: center;
}

/* === 13. MODALS === */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(26, 58, 42, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  padding: var(--space-6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  padding: var(--space-10) var(--space-8);
  max-width: 540px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  transform: translateY(28px) scale(0.96);
  transition: transform 0.35s var(--ease-spring);
  position: relative;
}

.modal-overlay.is-open .modal-box {
  transform: translateY(0) scale(1);
}

.modal-header {
  text-align: center;
  margin-bottom: var(--space-6);
}

.modal-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-forest);
}

.modal-divider {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--color-gold);
  border-radius: var(--radius-full);
  margin: var(--space-3) auto 0;
}

.modal-close {
  position: absolute;
  top: var(--space-5);
  right: var(--space-5);
  width: 32px; height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: 1.5rem;
  border-radius: 50%;
  transition: all 0.2s ease;
  cursor: pointer;
}
.modal-close:hover {
  background: var(--color-cream-dk);
  color: var(--color-forest);
}

.modal-body {
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-6);
}

.spec-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.spec-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-base);
  color: var(--color-text);
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--color-cream-dk);
}

.spec-list li:last-child {
  border-bottom: none;
}

.spec-list li::before {
  content: '';
  flex-shrink: 0;
  width: 6px; height: 6px;
  background: var(--color-gold);
  border-radius: 50%;
  margin-top: 0.55em;
}

/* === 14. WHY CHOOSE US SECTION === */
.why-section {
  background: var(--color-forest);
  padding-block: var(--section-gap);
}

.why-content {
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
}

.why-content .section-label {
  color: var(--color-gold-lt);
}

.why-content .section-title {
  color: var(--color-white);
}

.why-content .section-divider {
  background: var(--color-gold);
}

.why-content p {
  color: rgba(255, 255, 255, 0.82);
  font-size: var(--text-md);
  margin-bottom: var(--space-6);
}

/* === 15. TEAM SECTION === */
.team-section {
  padding-block: var(--section-gap);
  background: var(--color-cream);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-8);
  margin-top: var(--space-10);
}

.team-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--glass-shadow);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-5);
  transition: transform 0.35s var(--ease-smooth), box-shadow 0.35s var(--ease-smooth);
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(26, 58, 42, 0.14);
}

.team-avatar {
  width: 130px; height: 130px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 3px solid var(--color-gold);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.25);
}

.team-name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-forest);
  margin-bottom: var(--space-1);
}

.team-role {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-gold);
  letter-spacing: 0.06em;
}

.team-bio {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* === 16. ABOUT PAGE === */
.about-story {
  padding-block: var(--section-gap);
  background: var(--color-cream);
}

.about-story-text {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.about-story-text p {
  font-size: var(--text-md);
  margin-bottom: var(--space-5);
  color: var(--color-text-muted);
}

/* Tea varieties section */
.teas-section {
  padding-block: var(--section-gap);
  background: var(--color-cream-dk);
}

/* Expertise bento for about page */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-5);
  margin-top: var(--space-8);
}

.expertise-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  text-align: center;
  transition: transform 0.3s var(--ease-smooth), box-shadow 0.3s ease;
}

.expertise-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(26, 58, 42, 0.1);
}

.expertise-card h4 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-forest);
  margin-bottom: var(--space-2);
}

.expertise-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.expertise-icon {
  font-size: 2rem;
  margin-bottom: var(--space-4);
  display: block;
}

.tea-varieties-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2) var(--space-8);
  margin: var(--space-6) 0;
  max-width: 480px;
}

.tea-variety-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-md);
  font-weight: 600;
  color: var(--color-forest);
}

.tea-variety-item::before {
  content: '';
  flex-shrink: 0;
  width: 8px; height: 8px;
  background: var(--color-gold);
  border-radius: 50%;
}

/* === 17. TIMELINE (Journey page) === */
.timeline-section {
  padding-block: var(--section-gap);
  background: var(--color-cream);
}

.timeline {
  position: relative;
  padding-block: var(--space-8);
  margin-top: var(--space-10);
}

/* Vertical connector line */
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--color-gold) 8%,
    var(--color-forest) 92%,
    transparent
  );
  transform: translateX(-50%);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 0;
  margin-bottom: var(--space-12);
  align-items: start;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

/* Odd items: card left, spacer right */
.timeline-item:nth-child(odd) .timeline-card  { grid-column: 1; grid-row: 1; padding-right: var(--space-8); }
.timeline-item:nth-child(odd) .timeline-dot   { grid-column: 2; grid-row: 1; }
.timeline-item:nth-child(odd) .timeline-spacer { grid-column: 3; grid-row: 1; }

/* Even items: spacer left, card right */
.timeline-item:nth-child(even) .timeline-spacer { grid-column: 1; grid-row: 1; }
.timeline-item:nth-child(even) .timeline-dot    { grid-column: 2; grid-row: 1; }
.timeline-item:nth-child(even) .timeline-card   { grid-column: 3; grid-row: 1; padding-left: var(--space-8); }

.timeline-dot {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: var(--space-4);
}

.timeline-dot-inner {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--color-gold);
  border: 3px solid var(--color-cream);
  box-shadow: 0 0 0 3px var(--color-forest-mid);
  flex-shrink: 0;
}

.timeline-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-8);
  box-shadow: var(--glass-shadow);
}

.timeline-year {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 900;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: var(--space-4);
}

.timeline-text {
  font-size: var(--text-base);
  color: var(--color-text);
  line-height: 1.75;
}

.timeline-text strong {
  color: var(--color-forest);
  font-weight: 600;
}

.timeline-text em {
  font-style: italic;
}

.timeline-text .brand-name {
  color: var(--color-gold);
  font-family: var(--font-display);
  font-weight: 700;
}

/* === 18. PACKAGING PAGE === */
.packaging-section {
  padding-block: var(--section-gap);
}

.packaging-section:nth-of-type(even) {
  background: var(--color-cream-dk);
}

.packaging-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-8), 5vw, var(--space-16));
  align-items: center;
}

.packaging-row--reverse {
  direction: rtl;
}
.packaging-row--reverse > * {
  direction: ltr;
}

.packaging-content h2 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  color: var(--color-forest);
  margin-bottom: var(--space-4);
}

.packaging-content .section-divider {
  margin-bottom: var(--space-5);
}

.packaging-content p {
  font-size: var(--text-md);
  color: var(--color-text-muted);
  line-height: 1.75;
}

.packaging-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--glass-shadow);
}

.packaging-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.5s var(--ease-smooth);
}

.packaging-image:hover img {
  transform: scale(1.03);
}

/* === 19. CONTACT PAGE === */
.contact-section {
  padding-block: var(--section-gap);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-8), 5vw, var(--space-12));
  align-items: start;
  margin-top: var(--space-10);
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--glass-shadow);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 400px;
  border: 0;
}

.contact-info-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--glass-shadow);
}

.contact-info-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--color-forest);
  margin-bottom: var(--space-2);
}

.contact-info-card .section-divider {
  margin-bottom: var(--space-6);
}

.contact-item {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  padding-block: var(--space-3);
  border-bottom: 1px solid var(--color-cream-dk);
}

.contact-item:last-of-type {
  border-bottom: none;
}

.contact-label {
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--color-gold);
  min-width: 60px;
}

.contact-value {
  font-size: var(--text-base);
  color: var(--color-text);
}

.contact-value a {
  color: var(--color-text);
  transition: color 0.2s ease;
}
.contact-value a:hover { color: var(--color-forest); }

/* Social links in contact */
.social-row {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.social-link-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--color-border);
  transition: all 0.25s ease;
  overflow: hidden;
}

.social-link-btn:hover {
  border-color: var(--color-gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(201, 168, 76, 0.25);
}

.social-link-btn img {
  width: 22px; height: 22px;
  object-fit: contain;
}

/* === 20. FOOTER === */
.site-footer {
  background: var(--color-bark);
  color: var(--color-gold-lt);
  padding-top: var(--space-16);
  padding-bottom: var(--space-8);
  border-top: 3px solid var(--color-gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: clamp(var(--space-8), 4vw, var(--space-16));
  padding-bottom: var(--space-10);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.footer-logo {
  margin-bottom: var(--space-5);
}

.footer-logo img {
  height: 44px;
  width: auto;
  /* Slight brightness to show on dark bg */
  filter: brightness(1.15);
}

.footer-tagline {
  font-size: var(--text-sm);
  color: rgba(232, 213, 160, 0.7);
  line-height: 1.65;
  margin-bottom: var(--space-6);
}

.footer-map-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.2);
}

.footer-map-wrap iframe {
  display: block;
  width: 100%;
  height: 160px;
  border: 0;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-gold);
  margin-bottom: var(--space-5);
}

/* Footer nav links */
.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-nav-link {
  font-size: var(--text-sm);
  color: rgba(232, 213, 160, 0.75);
  transition: color 0.2s ease;
}
.footer-nav-link:hover { color: var(--color-gold-lt); }

/* Footer contact details */
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-contact-item {
  display: flex;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: rgba(232, 213, 160, 0.75);
}

.footer-contact-item span:first-child {
  color: var(--color-gold);
  font-weight: 600;
  min-width: 52px;
}

.footer-contact-item a {
  color: rgba(232, 213, 160, 0.75);
  transition: color 0.2s ease;
}
.footer-contact-item a:hover { color: var(--color-gold-lt); }

/* Footer social icons */
.footer-social {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-5);
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.3);
  transition: all 0.25s ease;
  overflow: hidden;
}

.footer-social-link:hover {
  border-color: var(--color-gold);
  background: rgba(201, 168, 76, 0.1);
  transform: translateY(-2px);
}

.footer-social-link img {
  width: 20px; height: 20px;
  object-fit: contain;
  filter: brightness(1.3) saturate(0.5);
}

/* Footer bottom bar */
.footer-bottom {
  padding-top: var(--space-6);
  text-align: center;
  font-size: var(--text-xs);
  color: rgba(232, 213, 160, 0.5);
}

/* === 21. SCROLL REVEAL ANIMATIONS === */
[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.75s var(--ease-smooth),
    transform 0.75s var(--ease-smooth);
}

[data-reveal="fade-left"] {
  transform: translateX(-36px);
}

[data-reveal="fade-right"] {
  transform: translateX(36px);
}

[data-reveal="scale"] {
  transform: scale(0.93);
}

[data-reveal="fade"] {
  transform: none;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* === 22. RESPONSIVE BREAKPOINTS === */

/* ─── 1024px ─── */
@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .bento-card:nth-child(1) { grid-column: span 3; grid-row: span 1; }
  .bento-card:nth-child(2) { grid-column: span 1; }
  .bento-card:nth-child(3) { grid-column: span 1; }
  .bento-card:nth-child(4) { grid-column: span 1; }
  .bento-card:nth-child(5) { grid-column: span 2; }

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

  .footer-grid > :nth-child(1) {
    grid-column: span 2;
  }
}

/* ─── 768px ─── */
@media (max-width: 768px) {
  /* Header */
  .header-nav { display: none; }
  .hamburger { display: flex; }

  /* Bento */
  .bento-grid {
    grid-template-columns: 1fr 1fr;
  }
  .bento-card:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .bento-card:nth-child(2) { grid-column: span 1; }
  .bento-card:nth-child(3) { grid-column: span 1; }
  .bento-card:nth-child(4) { grid-column: span 1; }
  .bento-card:nth-child(5) { grid-column: span 1; }

  /* Timeline */
  .timeline::before {
    left: 24px;
    transform: none;
  }

  .timeline-item {
    grid-template-columns: 48px 1fr;
  }

  /* Override all timeline column rules for mobile */
  .timeline-item:nth-child(odd) .timeline-card,
  .timeline-item:nth-child(even) .timeline-card {
    grid-column: 2;
    grid-row: 1;
    padding-left: var(--space-5);
    padding-right: 0;
  }

  .timeline-item:nth-child(odd) .timeline-dot,
  .timeline-item:nth-child(even) .timeline-dot {
    grid-column: 1;
    grid-row: 1;
  }

  .timeline-spacer { display: none !important; }

  /* Packaging */
  .packaging-row,
  .packaging-row--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .packaging-row--reverse > * { direction: ltr; }

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

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

  .footer-grid > :nth-child(1) {
    grid-column: span 1;
  }

  /* Team */
  .team-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── 480px ─── */
@media (max-width: 480px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .bento-card { grid-column: span 1 !important; }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .hero-ctas .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .modal-box {
    padding: var(--space-6) var(--space-5);
    border-radius: var(--radius-lg);
  }

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

/* ─── Reduced motion ─── */
@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* === 23. PRESS PAGE === */

/* Pull quote banner */
.press-quote-banner {
  background: var(--color-forest);
  padding: var(--space-14) var(--space-6);
  text-align: center;
}

.press-quote-banner blockquote {
  margin: 0 auto;
  max-width: 640px;
}

.press-quote-banner blockquote p {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 1.2rem + 1.5vw, 2.25rem);
  font-style: italic;
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1.3;
  margin-bottom: var(--space-4);
}

.press-quote-banner blockquote cite {
  display: block;
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-style: normal;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Press section */
.press-section {
  padding: var(--section-gap) 0;
  background: var(--color-cream);
}

/* Featured card — full width */
.press-card-featured {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-radius: var(--radius-xl);
  box-shadow: var(--glass-shadow);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  overflow: hidden;
  margin-bottom: var(--space-10);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.press-card-featured:hover {
  box-shadow: 0 16px 48px rgba(26,58,42,0.18);
  transform: translateY(-4px);
}

.press-card-featured-accent {
  background: linear-gradient(135deg, var(--color-forest) 0%, var(--color-forest-mid) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: var(--space-12) var(--space-10);
  gap: var(--space-5);
}

.press-featured-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-forest);
  background: var(--color-gold);
  border-radius: var(--radius-sm);
  padding: 4px 10px;
}

.press-card-featured-accent .press-pub-name {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.press-card-featured-accent .press-headline {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 0.9rem + 1.2vw, 1.7rem);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.35;
  margin: 0;
}

.press-card-featured-accent .press-date {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  color: var(--color-gold-lt);
  font-weight: 400;
}

.press-card-featured-body {
  padding: var(--space-10);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-5);
}

.press-card-featured-body .press-excerpt {
  font-size: var(--text-md);
  color: var(--color-text);
  line-height: 1.75;
  margin: 0;
}

.press-card-featured-body .press-award-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-forest);
  background: rgba(201,168,76,0.18);
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: var(--radius-sm);
  padding: 5px 12px;
  width: fit-content;
}

/* Secondary press grid */
.press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-7);
}

.press-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-radius: var(--radius-xl);
  box-shadow: var(--glass-shadow);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.press-card:hover {
  box-shadow: 0 12px 36px rgba(26,58,42,0.15);
  transform: translateY(-3px);
}

.press-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}

.press-pub-badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-forest);
  background: rgba(201,168,76,0.2);
  border: 1px solid rgba(201,168,76,0.45);
  border-radius: var(--radius-sm);
  padding: 4px 10px;
}

.press-date {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  font-weight: 400;
}

.press-headline {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 0.85rem + 0.7vw, 1.25rem);
  font-weight: 700;
  color: var(--color-forest);
  line-height: 1.4;
  margin: 0;
}

.press-excerpt {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin: 0;
  flex: 1;
}

.press-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-forest-mid);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  width: fit-content;
}

.press-link:hover {
  color: var(--color-gold);
  border-color: var(--color-gold);
}

/* Press inquiry strip */
.press-inquiry {
  background: var(--color-cream-dk);
  border-top: 1px solid var(--color-border);
  padding: var(--space-14) var(--space-6);
  text-align: center;
}

.press-inquiry p {
  font-size: var(--text-md);
  color: var(--color-text-muted);
  margin-bottom: var(--space-5);
}

.press-inquiry p strong {
  color: var(--color-text);
  font-weight: 600;
}

/* Responsive — press */
@media (max-width: 768px) {
  .press-card-featured {
    grid-template-columns: 1fr;
  }

  .press-card-featured-accent {
    padding: var(--space-8);
  }

  .press-card-featured-body {
    padding: var(--space-8);
  }
}

/* === 24. UTILITY CLASSES === */
.alt-bg {
  background: var(--color-cream-dk);
}

.white-bg {
  background: var(--color-white);
}

/* Ensure body content starts below fixed header */
body > section:first-of-type,
body > .hero,
body > .page-hero {
  /* handled individually */
}
