/*
Theme Name: Eya Starter
Theme URI: https://eyalifestyle.kharloya.com
Author: Above The Fold
Author URI: https://abovethefold.in
Description: Editorial wellness theme for Eya Lifestyle — refined typography, generous spacing, restrained palette. Built for premium feel.
Version: 1.1.0
Requires at least: 6.0
Requires PHP: 7.4
License: Proprietary
Text Domain: eya-starter
*/

/* ============================================================
   1. TOKENS
   ============================================================ */
:root {
  /* Palette — restrained */
  --c-cream:        #FAF7F2;
  --c-cream-warm:   #F4EFE7;
  --c-ink:          #1A1A1A;
  --c-ink-soft:     #5A5A5A;
  --c-ink-muted:    #8A8A8A;
  --c-line:         rgba(15,31,23,0.08);
  --c-line-strong:  rgba(15,31,23,0.16);
  --c-green:        #1A3C2A;
  --c-green-deep:   #0F1F17;
  --c-green-soft:   #E8F0E8;
  --c-gold:         #C8A96E;
  --c-gold-deep:    #B0925A;
  --c-coral:        #E8836B;
  --c-white:        #FFFFFF;

  /* Type */
  --f-serif:  'Playfair Display', 'Iowan Old Style', Georgia, serif;
  --f-sans:   'DM Sans', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;

  /* Layout */
  --container: 1240px;
  --container-narrow: 980px;
  --gutter: 32px;

  /* Motion */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --t-fast: .25s;
  --t: .4s;
  --t-slow: .8s;
}

/* ============================================================
   2. RESET / BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
}
body {
  font-family: var(--f-sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--c-ink);
  background: var(--c-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, picture, video, svg { max-width: 100%; height: auto; display: block; }
img { border-radius: 8px; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast) var(--ease); }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
ul, ol { list-style: none; }
::selection { background: var(--c-gold); color: var(--c-green-deep); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--f-serif);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--c-ink);
}

/* Italic accent words inside headings — dark green by default,
   gold on dark surfaces. Matches the spec's color hierarchy. */
em.serif-italic, .serif-italic {
  font-style: italic;
  font-family: var(--f-serif);
  font-weight: 400;
  color: var(--c-green);
}
.section--dark em.serif-italic,
.cta-banner em.serif-italic,
.testimonial-section em.serif-italic,
.page-header em.serif-italic:not(.gold),
.hero em.serif-italic { color: var(--c-gold); }
em.serif-italic.gold, .serif-italic.gold { color: var(--c-gold) !important; }

p { font-weight: 300; }
strong, b { font-weight: 500; }
em, i { font-style: italic; }

hr { border: 0; border-top: 1px solid var(--c-line); margin: 0; }

/* ============================================================
   3. LAYOUT
   ============================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.container--narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
@media (max-width: 640px) {
  :root { --gutter: 22px; }
}

section { padding: 120px 0; position: relative; }
.section--sm { padding: 80px 0; }
.section--cream { background: var(--c-cream); }
.section--warm { background: var(--c-cream-warm); }
.section--soft-green { background: var(--c-green-soft); }
.section--dark { background: var(--c-green-deep); color: rgba(255,255,255,.85); }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--c-white); }

@media (max-width: 768px) {
  section { padding: 80px 0; }
  .section--sm { padding: 56px 0; }
}

/* ============================================================
   4. TYPE SCALE
   ============================================================ */
.h-display {
  font-size: clamp(2.2rem, 4.4vw, 3.5rem);    /* up to 56px */
  line-height: 1.1;
  letter-spacing: -0.015em;
}
.h-large { /* legacy alias */
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-weight: 400;
}
.h-mid { /* legacy alias */
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.2;
  font-weight: 400;
}
.h-1 {
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);    /* up to ~42px */
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.h-2 {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.2;
}
.h-3 {
  font-size: clamp(1.2rem, 1.6vw, 1.4rem);
  line-height: 1.3;
}


.lead, .text-lead {
  font-size: 17px;
  line-height: 1.7;
  color: var(--c-ink-soft);
  font-weight: 300;
  max-width: 60ch;
}

.muted   { color: var(--c-ink-soft); }
.muted-2 { color: var(--c-ink-muted); }

/* The luxury tell — tiny uppercase label */
.label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 20px;
}
.label::before {
  content: '';
  width: 28px;
  height: 1px;
  background: currentColor;
  display: inline-block;
}
.label--center { justify-content: center; }
.label--no-line::before { display: none; }
.section--dark .label { color: var(--c-gold); }

.eyebrow { /* legacy compat with old templates */
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 20px;
}
.eyebrow::before { content: ''; width: 28px; height: 1px; background: currentColor; }

.section-head {
  max-width: 640px;
  margin: 0 auto 72px;
  text-align: center;
}
.section-head--left { text-align: left; margin: 0 0 64px; max-width: 720px; }
.section-head h2 { margin-bottom: 18px; }
.section-head .lead { margin: 0 auto; }

/* ============================================================
   5. BUTTONS — refined, never chunky
   ============================================================ */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  font-family: var(--f-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all var(--t) var(--ease);
  overflow: hidden;
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.08);
  transform: translateX(-101%);
  transition: transform var(--t) var(--ease);
  z-index: 0;
}
.btn > * { position: relative; z-index: 1; }
.btn:hover::before { transform: translateX(0); }

.btn--primary       { background: var(--c-gold);       color: var(--c-green-deep); }
.btn--primary:hover { background: var(--c-gold-deep); transform: translateY(-1px); }

.btn--dark          { background: var(--c-green-deep); color: var(--c-cream); }
.btn--dark:hover    { background: var(--c-green); transform: translateY(-1px); }

.btn--outline       { background: transparent; color: var(--c-white); border-color: rgba(255,255,255,.5); }
.btn--outline:hover { background: var(--c-white); color: var(--c-green-deep); border-color: var(--c-white); }

.btn--outline-dark       { background: transparent; color: var(--c-green-deep); border-color: var(--c-green-deep); }
.btn--outline-dark:hover { background: var(--c-green-deep); color: var(--c-cream); }

.btn--ghost {
  padding: 6px 0;
  background: transparent;
  color: var(--c-green-deep);
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid var(--c-green-deep);
  font-size: 11px;
}
.btn--ghost::before { display: none; }
.btn--ghost:hover { color: var(--c-gold); border-bottom-color: var(--c-gold); }

.btn--lg { padding: 18px 36px; font-size: 13px; }

/* Animated text link */
.link-line {
  position: relative;
  display: inline-block;
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-green-deep);
  padding-bottom: 4px;
}
.link-line::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  background: currentColor;
  transform-origin: right center;
  transform: scaleX(1);
  transition: transform .55s var(--ease-out);
}
.link-line:hover::after { transform-origin: left center; transform: scaleX(0); animation: linewipe .9s var(--ease-out) forwards; }
@keyframes linewipe {
  0%   { transform-origin: right center; transform: scaleX(1); }
  50%  { transform-origin: right center; transform: scaleX(0); }
  50.1%{ transform-origin: left center;  transform: scaleX(0); }
  100% { transform-origin: left center;  transform: scaleX(1); }
}
.section--dark .link-line { color: var(--c-cream); }

/* ============================================================
   6. HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: background var(--t) var(--ease), padding var(--t) var(--ease), box-shadow var(--t) var(--ease);
  background: transparent;
}
.site-header.is-scrolled,
.site-header.is-light {
  background: rgba(250,247,242,.96);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  padding: 14px 0;
  box-shadow: 0 1px 0 rgba(0,0,0,0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-serif);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--c-white);
  transition: color var(--t) var(--ease);
}
.brand img {
  height: 48px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  border-radius: 0;
  transition: height var(--t) var(--ease);
}
.is-scrolled .brand img,
.is-light .brand img {
  height: 42px;
}
@media (max-width: 540px) {
  .brand img { height: 36px; }
}
.is-scrolled .brand, .is-light .brand { color: var(--c-green-deep); }

.brand-text { display: none; }

.primary-nav { display: none; }
@media (min-width: 1024px) {
  .primary-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
  }
  .primary-nav li {
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-flex;
  }
  .primary-nav li::marker { content: ''; }
  .primary-nav a {
    position: relative;
    padding: 10px 16px;
    font-family: var(--f-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255,255,255,.85);
    transition: color var(--t-fast) var(--ease);
  }
  .primary-nav a::after {
    content: '';
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 4px;
    height: 1px;
    background: var(--c-gold);
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform .35s var(--ease-out);
  }
  .primary-nav a:hover { color: var(--c-white); }
  .primary-nav a:hover::after { transform: scaleX(1); transform-origin: left center; }
  .primary-nav .current-menu-item > a { color: var(--c-white); }

  .is-scrolled .primary-nav a, .is-light .primary-nav a { color: var(--c-ink-soft); }
  .is-scrolled .primary-nav a:hover, .is-light .primary-nav a:hover { color: var(--c-green-deep); }
}

.header-cta {
  display: none;
  padding: 11px 22px;
  background: var(--c-gold);
  color: var(--c-green-deep);
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: all var(--t) var(--ease);
}
.header-cta:hover { background: var(--c-gold-deep); transform: translateY(-1px); }
@media (min-width: 1024px) { .header-cta { display: inline-flex; } }

/* Hamburger */
.menu-toggle {
  width: 40px; height: 40px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 999px;
  background: transparent;
}
.menu-toggle span {
  width: 22px;
  height: 1px;
  background: var(--c-white);
  transition: all .35s var(--ease);
}
.is-scrolled .menu-toggle span, .is-light .menu-toggle span { background: var(--c-green-deep); }
.menu-toggle.is-open span { background: var(--c-cream); }
.menu-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
@media (min-width: 1024px) { .menu-toggle { display: none; } }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--c-green-deep);
  padding: 100px var(--gutter) 48px;
  transform: translateX(100%);
  transition: transform .55s var(--ease-out);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 32px;
}
.mobile-menu a {
  display: inline-block;
  font-family: var(--f-serif);
  font-size: clamp(1.7rem, 5.5vw, 2.2rem);
  font-weight: 400;
  color: var(--c-cream);
  padding: 8px 0;
  letter-spacing: -0.01em;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .55s var(--ease) .15s, transform .55s var(--ease) .15s, color var(--t-fast) var(--ease);
}
.mobile-menu.is-open a { opacity: 1; transform: translateY(0); }
.mobile-menu.is-open li:nth-child(1) a { transition-delay: .1s; }
.mobile-menu.is-open li:nth-child(2) a { transition-delay: .15s; }
.mobile-menu.is-open li:nth-child(3) a { transition-delay: .2s; }
.mobile-menu.is-open li:nth-child(4) a { transition-delay: .25s; }
.mobile-menu.is-open li:nth-child(5) a { transition-delay: .3s; }
.mobile-menu.is-open li:nth-child(6) a { transition-delay: .35s; }
.mobile-menu a:hover { color: var(--c-gold); }

.mobile-menu-foot {
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.08);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .55s var(--ease) .5s, transform .55s var(--ease) .5s;
}
.mobile-menu.is-open .mobile-menu-foot { opacity: 1; transform: translateY(0); }
.mobile-menu-foot .btn { width: 100%; }
.mobile-menu-foot .meta {
  margin-top: 24px;
  font-size: 13px;
  color: rgba(255,255,255,.55);
  letter-spacing: 0.04em;
}
.mobile-menu-foot .meta a { color: rgba(255,255,255,.85); }

/* ============================================================
   7. HERO — bottom-left editorial
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  overflow: hidden;
  color: var(--c-white);
}
.hero-bg {
  position: absolute;
  inset: -8%;
  z-index: -2;
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  border-radius: 0;
  filter: saturate(.95) contrast(1.02);
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(15,31,23,0.35) 0%, rgba(15,31,23,0.15) 30%, rgba(15,31,23,0.6) 70%, rgba(15,31,23,0.92) 100%),
    linear-gradient(90deg, rgba(15,31,23,0.7) 0%, rgba(15,31,23,0.0) 60%);
}
.hero-inner {
  width: 100%;
  padding: 0 var(--gutter) clamp(60px, 12vh, 130px);
  max-width: var(--container);
  margin: 0 auto;
}
.hero-text { max-width: 720px; }

.hero .label {
  color: var(--c-gold);
  margin-bottom: 22px;
  opacity: 0;
  animation: fadeUp .9s .25s var(--ease-out) forwards;
}
.hero .label::before { background: var(--c-gold); width: 36px; }

.hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.25rem);  /* 36–52px */
  font-weight: 400;
  color: var(--c-white);
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin-bottom: 22px;
  text-shadow: 0 2px 40px rgba(0,0,0,0.35);
}
.hero h1 .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp .9s var(--ease-out) forwards;
}
.hero h1 .word--accent {
  font-style: italic;
  color: var(--c-gold);
}
.hero h1 .word:nth-child(1){ animation-delay: .35s; }
.hero h1 .word:nth-child(2){ animation-delay: .42s; }
.hero h1 .word:nth-child(3){ animation-delay: .49s; }
.hero h1 .word:nth-child(4){ animation-delay: .56s; }
.hero h1 .word:nth-child(5){ animation-delay: .63s; }
.hero h1 .word:nth-child(6){ animation-delay: .7s; }

.hero-sub {
  font-family: var(--f-sans);
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,.78);
  letter-spacing: 0.1em;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp .9s .85s var(--ease-out) forwards;
}
.hero-sub .dot { color: var(--c-gold); margin: 0 6px; }

.hero-typewriter { /* legacy — small inline accent if present */
  display: inline-block;
  margin-left: 6px;
  font-family: var(--f-serif);
  font-style: italic;
  color: var(--c-gold);
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .9s 1s var(--ease-out) forwards;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  right: var(--gutter);
  bottom: 42px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  font-family: var(--f-sans);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  opacity: 0;
  animation: fadeUp 1s 1.4s var(--ease-out) forwards;
}
.scroll-indicator::after {
  content: '';
  width: 1px;
  height: 56px;
  background: linear-gradient(to top, transparent, rgba(255,255,255,.5));
  animation: scrollLine 2.4s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: bottom; }
  50%  { transform: scaleY(1); transform-origin: bottom; }
  51%  { transform: scaleY(1); transform-origin: top; }
  100% { transform: scaleY(0); transform-origin: top; }
}
@media (max-width: 768px) { .scroll-indicator { display: none; } }

/* Hero stat strip — small bottom-of-hero overlay */
.hero-stats {
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  z-index: 2;
  border-top: 1px solid rgba(255,255,255,.14);
  background: rgba(15,31,23,.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.hero-stats-row {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: left;
}
.hero-stats-row .stat-num {
  font-family: var(--f-serif);
  font-size: 22px;
  color: var(--c-white);
  line-height: 1;
}
.hero-stats-row .stat-num .symbol { color: var(--c-gold); }
.hero-stats-row .stat-label {
  font-family: var(--f-sans);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-top: 4px;
}
@media (max-width: 768px) {
  .hero-stats-row { grid-template-columns: repeat(2, 1fr); gap: 16px; padding: 14px var(--gutter); }
  .hero-stats-row .stat-num { font-size: 19px; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   8. ABOUT SNIPPET — 60/40 asymmetric
   ============================================================ */
.about-section { padding: 140px 0; }

.about-snippet {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}
@media (min-width: 900px) {
  .about-snippet {
    grid-template-columns: 1.35fr 1fr;
    gap: 100px;
  }
}

.about-content h2 { margin-bottom: 28px; }
.about-content h2 em { font-style: italic; color: var(--c-green); }
.about-content p {
  font-size: 17px;
  line-height: 1.85;
  color: var(--c-ink-soft);
  font-weight: 300;
  margin-bottom: 20px;
  max-width: 56ch;
}
.about-signature {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 17px;
  color: var(--c-green);
  margin-top: 32px !important;
}

/* About image — rectangular with offset gold frame */
.about-image {
  position: relative;
  aspect-ratio: 3 / 4;
  max-width: 480px;
  margin: 0 auto;
}
.about-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 8px;
  position: relative;
  z-index: 1;
}
.about-image::after {
  content: '';
  position: absolute;
  inset: 16px -16px -16px 16px;
  border: 1px solid var(--c-gold);
  border-radius: 8px;
  z-index: 0;
}
@media (max-width: 540px) {
  .about-image::after { inset: 10px -10px -10px 10px; }
}

/* Inline horizontal stats row */
.stats-inline {
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: start;
  gap: 56px;
  margin: 36px 0 28px;
}
@media (max-width: 540px) {
  .stats-inline { gap: 28px; }
}
.stats-inline .stat-num {
  font-family: var(--f-serif);
  font-size: 32px;
  color: var(--c-green);
  line-height: 1;
  font-weight: 400;
}
.stats-inline .stat-num .symbol { color: var(--c-gold); }
.stats-inline .stat-label {
  font-family: var(--f-sans);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-ink-muted);
  margin-top: 6px;
}

/* Legacy 4-up stats grid (kept for any existing template) */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px 56px;
  margin: 36px 0;
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stats-grid .stat-num {
  font-family: var(--f-serif);
  font-size: 28px;
  color: var(--c-green);
  line-height: 1;
}
.stats-grid .stat-num .symbol { color: var(--c-gold); }
.stats-grid .stat-label {
  font-family: var(--f-sans);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-ink-muted);
  margin-top: 6px;
}
.stat { text-align: left; }

/* ============================================================
   9. SERVICES — editorial alternating list
   ============================================================ */
.services-list {
  display: flex;
  flex-direction: column;
}
.service-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 56px 0;
  align-items: center;
  border-bottom: 1px solid var(--c-line);
  position: relative;
}
.service-row:first-child { padding-top: 0; }
.service-row:last-child  { border-bottom: 0; }

@media (min-width: 900px) {
  .service-row {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    padding: 72px 0;
  }
  .service-row:nth-child(even) {
    grid-template-columns: 1.1fr 0.9fr;
  }
  .service-row:nth-child(even) .service-row__media { order: 2; }
  .service-row:nth-child(even) .service-row__body  { order: 1; }
}

.service-row__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 8px;
  background: var(--c-cream-warm);
}
.service-row__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 1.2s var(--ease-out);
}
.service-row:hover .service-row__media img { transform: scale(1.04); }

.service-row__body { max-width: 540px; }
.service-row__num {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 14px;
  color: var(--c-gold);
  margin-bottom: 12px;
}
.service-row__cat {
  font-family: var(--f-sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold);
  font-weight: 500;
  margin-bottom: 14px;
  display: inline-block;
}
.service-row__title {
  font-family: var(--f-serif);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--c-green-deep);
  margin-bottom: 18px;
}
.service-row__title a { transition: color var(--t-fast) var(--ease); }
.service-row:hover .service-row__title a { color: var(--c-gold-deep); }
.service-row__desc {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--c-ink-soft);
  font-weight: 300;
  margin-bottom: 28px;
  max-width: 50ch;
}
.service-row__cta {
  display: inline-block;
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-green-deep);
  padding-bottom: 4px;
  position: relative;
}
.service-row__cta::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 32px; height: 1px;
  background: var(--c-green-deep);
  transition: width .45s var(--ease-out), background-color var(--t-fast) var(--ease);
}
.service-row:hover .service-row__cta { color: var(--c-gold-deep); }
.service-row:hover .service-row__cta::after { width: 100%; background: var(--c-gold-deep); }

.services-cta-wrap {
  text-align: center;
  margin-top: 80px;
}

/* ---- Programs grid + filter tabs (compact card layout) ---- */
.programs-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0 0 56px;
}
.programs-tabs button {
  padding: 9px 22px;
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-ink-soft);
  background: transparent;
  border: 1px solid rgba(15,31,23,0.12);
  border-radius: 999px;
  cursor: pointer;
  transition: all var(--t-fast) var(--ease);
}
.programs-tabs button:hover { color: var(--c-ink); border-color: var(--c-green); }
.programs-tabs button.is-active {
  background: var(--c-green);
  color: var(--c-white);
  border-color: var(--c-green);
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
@media (min-width: 768px) { .programs-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

.program-card {
  display: block;
  background: var(--c-white);
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
  box-shadow: 0 1px 3px rgba(15,31,23,0.04);
}
.program-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(15,31,23,0.08);
}
.program-card.is-hidden { display: none; }

.program-card__img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--c-cream-warm);
}
.program-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 0;
  transition: transform .8s var(--ease-out);
}
.program-card:hover .program-card__img img { transform: scale(1.05); }
.program-card__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(15,31,23,0.18) 100%);
}

.program-card__info { padding: 20px 22px 24px; }
.program-card__cat {
  font-family: var(--f-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold);
  display: block;
  margin-bottom: 6px;
}
.program-card__info h3 {
  font-family: var(--f-serif);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.25;
  color: var(--c-ink);
  margin: 0 0 6px;
}
.program-card:hover .program-card__info h3 { color: var(--c-green); }
.program-card__info p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--c-ink-soft);
  font-weight: 300;
  margin: 0;
}
@media (max-width: 540px) {
  .program-card__info { padding: 16px 18px 20px; }
  .program-card__info h3 { font-size: 17px; }
  .program-card__info p { font-size: 13px; }
}

/* Legacy services-grid (used by archive template + fallbacks) */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; } }

.service-card {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  overflow: hidden;
  background: var(--c-green-deep);
  isolation: isolate;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.service-card .img-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  border-radius: 8px;
}
.service-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 1.2s var(--ease-out);
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(15,31,23,0) 35%, rgba(15,31,23,.85) 100%);
  border-radius: 8px;
}
.service-card .card-tag {
  position: absolute;
  top: 18px; left: 18px;
  z-index: 2;
  font-family: var(--f-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.95);
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
.service-card .card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 28px;
  color: var(--c-white);
}
.service-card .card-content h3 {
  font-family: var(--f-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--c-white);
  margin-bottom: 6px;
  line-height: 1.2;
}
.service-card .card-content p {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255,255,255,.78);
  font-weight: 300;
  margin: 0;
}
.service-card .arrow { display: none; }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(0,0,0,0.12); }
.service-card:hover img { transform: scale(1.05); }

/* ============================================================
   10. PRODUCTS — horizontal scroll
   ============================================================ */
.products-section { padding: 140px 0; overflow: hidden; }

.products-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}
.products-head__text { max-width: 540px; }
.products-head h2 { margin-bottom: 16px; color: var(--c-ink); }
.products-head h2 em { color: var(--c-green); }

.products-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 1fr);
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 8px;
}
.products-rail::-webkit-scrollbar { display: none; }

@media (min-width: 1024px) {
  .products-rail {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-flow: row;
    grid-auto-columns: auto;
    overflow: visible;
    gap: 24px;
  }
}
@media (max-width: 1023px) {
  .products-rail {
    margin: 0 calc(var(--gutter) * -1);
    padding: 0 var(--gutter) 8px;
    grid-auto-columns: minmax(240px, 75%);
  }
}

.product-card {
  scroll-snap-align: start;
  background: var(--c-white);
  border: 1px solid rgba(15,31,23,.06);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 16px rgba(0,0,0,0.03);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(0,0,0,0.08); }

.product-card .img-wrap {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f5f2ed;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
}
.product-card .img-wrap img {
  max-width: 88%;
  max-height: 88%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 0;
  transition: transform .55s var(--ease-out);
}
.product-card:hover .img-wrap img { transform: scale(1.06); }

.product-card .body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.product-card .body h3 {
  font-family: var(--f-sans);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--c-green-deep);
  line-height: 1.3;
}
.product-card .body p {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--c-ink-soft);
  font-weight: 300;
  margin: 0;
  flex: 1;
}
.product-card .product-cta {
  margin-top: 14px;
  align-self: flex-start;
  display: inline-block;
  padding: 7px 16px;
  font-family: var(--f-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-gold-deep);
  border: 1px solid var(--c-gold);
  border-radius: 4px;
  background: transparent;
  transition: background var(--t) var(--ease), color var(--t) var(--ease);
}
.product-card .product-cta:hover { background: var(--c-gold); color: var(--c-green-deep); }

/* Dot indicators */
.rail-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}
@media (min-width: 1024px) { .rail-dots { display: none; } }
.rail-dots button {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(15,31,23,.18);
  transition: background var(--t) var(--ease), width var(--t) var(--ease);
  padding: 0;
}
.rail-dots button.is-active { background: var(--c-gold); width: 22px; border-radius: 999px; }

.products-row { /* legacy fallback for archive */
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}

/* ============================================================
   11. TESTIMONIALS — full-bleed dark, large pull-quote
   ============================================================ */
.testimonial-section {
  background: var(--c-green-deep);
  color: var(--c-cream);
  position: relative;
  overflow: hidden;
  padding: 140px 0;
}
.testimonial-section::before {
  content: '“';
  position: absolute;
  top: 60px;
  left: 6%;
  font-family: var(--f-serif);
  font-size: clamp(180px, 22vw, 280px);
  line-height: .9;
  color: var(--c-gold);
  opacity: 0.18;
  pointer-events: none;
}
.testimonial-section .container { position: relative; z-index: 1; }

.testimonial-stage {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  min-height: 240px;
}
.testimonial-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .9s var(--ease-out);
  pointer-events: none;
}
.testimonial-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
}
.testimonial-slide blockquote {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.55;
  color: var(--c-cream);
  margin: 0 0 36px;
}
.testimonial-divider {
  width: 36px;
  height: 1px;
  background: var(--c-gold);
  margin: 0 auto 18px;
}
.testimonial-slide .author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.testimonial-slide .name {
  font-family: var(--f-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-gold);
}
.testimonial-slide .role {
  font-family: var(--f-sans);
  font-size: 12px;
  color: rgba(255,255,255,.6);
  letter-spacing: 0.04em;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 56px;
}
.testimonial-dots button {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  transition: background var(--t) var(--ease), width var(--t) var(--ease);
}
.testimonial-dots button.is-active {
  background: var(--c-gold);
  width: 22px;
  border-radius: 999px;
}

/* ============================================================
   12. INSTAGRAM — edge-to-edge
   ============================================================ */
.ig-section {
  padding: 100px 0 0;
  background: var(--c-cream);
}
.ig-head {
  text-align: center;
  margin-bottom: 56px;
  padding: 0 var(--gutter);
}
.ig-head .ig-handle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-sans);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--c-ink-soft);
  font-weight: 400;
  margin-top: 12px;
}
.ig-head .ig-handle a { color: var(--c-green-deep); }
.ig-head .ig-handle a:hover { color: var(--c-gold-deep); }
.ig-head .ig-handle svg { color: var(--c-gold); }

.ig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
@media (min-width: 768px) { .ig-grid { grid-template-columns: repeat(6, 1fr); } }

.ig-item {
  position: relative;
  aspect-ratio: 1;
  display: block;
  overflow: hidden;
  border-radius: 0;
  background: var(--c-cream-warm);
}
.ig-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 0;
  transition: transform 1s var(--ease-out), filter var(--t) var(--ease);
}
.ig-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15,31,23,0);
  transition: background var(--t) var(--ease);
}
.ig-item .icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-white);
  z-index: 2;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--t) var(--ease), transform var(--t) var(--ease);
}
.ig-item:hover img { transform: scale(1.05); }
.ig-item:hover::after { background: rgba(15,31,23,.55); }
.ig-item:hover .icon { opacity: 1; transform: translateY(0); }

/* ============================================================
   13. FEATURES — clean line-art
   ============================================================ */
.features-section {
  padding: 120px 0;
  background: #f0f4f0; /* slightly less green, more neutral */
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 640px) { .features-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; } }

.feature {
  background: var(--c-white);
  padding: 36px 32px;
  border: 1px solid rgba(15,31,23,0.04);
  border-radius: 12px;
  text-align: left;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.feature:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(15,31,23,0.06);
}
.feature .icon-circle {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  background: transparent;
  color: var(--c-green); /* dark green icons, not gold */
  margin-bottom: 22px;
  border: 0;
  border-radius: 0;
}
.feature h3 {
  font-family: var(--f-sans);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--c-ink);
  margin-bottom: 10px;
  line-height: 1.3;
}
.feature p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--c-ink-soft);
  font-weight: 300;
  margin: 0;
}
@media (max-width: 540px) {
  .feature { padding: 28px 24px; }
}

/* ============================================================
   14. BLOG / JOURNAL
   ============================================================ */
.journal-section { padding: 140px 0; }

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 768px) { .blog-grid { grid-template-columns: repeat(3, 1fr); gap: 36px; } }

.blog-card {
  background: transparent;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  transition: none;
}
.blog-card:hover { transform: none; box-shadow: none; }
.blog-card .img-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 24px;
  background: var(--c-cream-warm);
}
.blog-card .img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 1s var(--ease-out);
}
.blog-card:hover .img-wrap img { transform: scale(1.04); }
.blog-card .body { padding: 0; flex: 1; display: flex; flex-direction: column; }
.blog-card .cat {
  font-family: var(--f-sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 12px;
  font-weight: 500;
}
.blog-card h3 {
  font-family: var(--f-serif);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 12px;
}
.blog-card h3 a { transition: color var(--t-fast) var(--ease); }
.blog-card h3 a:hover { color: var(--c-gold-deep); }
.blog-card .excerpt {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--c-ink-soft);
  margin-bottom: 16px;
  flex: 1;
}

/* ============================================================
   15. CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--c-green);
  color: var(--c-cream);
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 96px 0;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(200,169,110,.08) 0%, transparent 60%),
    radial-gradient(circle at 80% 70%, rgba(200,169,110,.06) 0%, transparent 50%);
  pointer-events: none;
}
.cta-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: .04;
  pointer-events: none;
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 {
  color: var(--c-white);
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  font-weight: 400;
  margin: 14px 0 32px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.cta-banner h2 em { font-style: italic; color: var(--c-gold); }
.cta-banner .phone-line {
  margin-top: 24px;
  font-family: var(--f-sans);
  font-size: 13px;
  color: rgba(255,255,255,.55);
  letter-spacing: 0.04em;
}
.cta-banner .phone-line a { color: var(--c-cream); border-bottom: 1px solid rgba(200,169,110,.5); padding-bottom: 1px; }
.cta-banner .phone-line a:hover { color: var(--c-gold); }

/* ============================================================
   16. CONTACT
   ============================================================ */
.contact-section { padding: 140px 0; background: var(--c-cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 72px; } }

.contact-form-wrap {
  background: var(--c-white);
  padding: 48px;
  border-radius: 8px;
  border: 1px solid var(--c-line);
}
@media (max-width: 540px) { .contact-form-wrap { padding: 32px 24px; } }
.contact-form-wrap h3 {
  font-size: 24px;
  margin-bottom: 8px;
  font-weight: 400;
}
.contact-form-wrap > p {
  color: var(--c-ink-soft);
  margin-bottom: 32px;
  font-size: 15px;
}

.form-row { display: grid; grid-template-columns: 1fr; gap: 0 18px; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-group { margin-bottom: 22px; display: flex; flex-direction: column; }
.form-group label {
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-ink-soft);
  margin-bottom: 10px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid var(--c-line-strong);
  background: transparent;
  font-size: 15px;
  font-family: inherit;
  color: var(--c-green-deep);
  border-radius: 0;
  transition: border-color var(--t-fast) var(--ease);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 0;
  border-bottom-color: var(--c-gold);
}
.form-group textarea { min-height: 110px; resize: vertical; }

/* CF7 overrides */
.wpcf7 .wpcf7-form-control:not(.wpcf7-submit) {
  width: 100%;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid var(--c-line-strong);
  background: transparent;
  font-size: 15px;
  font-family: inherit;
  border-radius: 0;
  margin-bottom: 22px;
  color: var(--c-green-deep);
}
.wpcf7 .wpcf7-form-control:focus { outline: 0; border-bottom-color: var(--c-gold); }
.wpcf7 textarea { min-height: 110px; }
.wpcf7 .wpcf7-submit {
  background: var(--c-green-deep);
  color: var(--c-cream);
  padding: 14px 32px;
  font-family: var(--f-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  border: 0;
  transition: all var(--t) var(--ease);
}
.wpcf7 .wpcf7-submit:hover { background: var(--c-gold); color: var(--c-green-deep); }
.wpcf7-response-output { border-radius: 4px !important; padding: 14px !important; margin-top: 14px !important; }

.contact-info { display: flex; flex-direction: column; gap: 36px; }
.info-card {
  padding: 0;
  background: transparent;
  border-radius: 0;
}
.info-card .ic-icon {
  width: 36px; height: 36px;
  background: transparent;
  color: var(--c-gold-deep);
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 12px;
}
.info-card h4 {
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 10px;
}
.info-card p, .info-card a {
  font-family: var(--f-sans);
  font-size: 15px;
  line-height: 1.75;
  color: var(--c-ink);
  font-weight: 300;
}
.info-card a:hover { color: var(--c-gold-deep); }

.info-card .hours-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid var(--c-line);
  font-size: 14px;
}
.info-card .hours-row:last-child { border-bottom: 0; }
.info-card .hours-row span:last-child {
  font-family: var(--f-sans);
  font-weight: 400;
  color: var(--c-ink-soft);
}

.map-embed {
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--c-line);
}
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ============================================================
   17. FOOTER
   ============================================================ */
.site-footer {
  background: var(--c-green-deep);
  color: rgba(255,255,255,.6);
  padding: 96px 0 0;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding-bottom: 64px;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 72px; } }

.footer-brand {
  display: inline-flex;
  align-items: center;
  margin-bottom: 22px;
}
.footer-brand img {
  height: 56px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  border-radius: 0;
  background: rgba(255,255,255,0.96);
  padding: 6px 10px;
}
.footer-brand-text { display: none; }
.site-footer .desc {
  font-size: 14.5px;
  line-height: 1.75;
  margin-bottom: 28px;
  font-weight: 300;
  max-width: 36ch;
}
.site-footer h4 {
  color: var(--c-white);
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.site-footer ul { display: flex; flex-direction: column; gap: 10px; }
.site-footer ul li { margin: 0; }
.site-footer ul a {
  font-family: var(--f-sans);
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,.6);
  transition: color var(--t-fast) var(--ease);
}
.site-footer ul a:hover { color: var(--c-white); }

.social-row { display: flex; gap: 14px; margin-top: 24px; }
.social-row a {
  width: 36px; height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.7);
  transition: all var(--t) var(--ease);
}
.social-row a:hover {
  color: var(--c-green-deep);
  background: var(--c-gold);
  border-color: var(--c-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 26px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,.4);
  letter-spacing: 0.04em;
}
.footer-bottom a { color: rgba(255,255,255,.55); }
.footer-bottom a:hover { color: var(--c-white); }

/* ============================================================
   18. FLOATING WHATSAPP
   ============================================================ */
.float-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(37,211,102,0.32);
  transition: transform var(--t) var(--ease);
}
.float-whatsapp svg { width: 24px; height: 24px; }
.float-whatsapp::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  z-index: -1;
  animation: waPulse 2.8s ease-in-out infinite;
}
@keyframes waPulse {
  0%, 100% { opacity: .55; transform: scale(1); }
  50%      { opacity: 0; transform: scale(1.5); }
}
.float-whatsapp:hover { transform: scale(1.06); }
@media (max-width: 540px) {
  .float-whatsapp { bottom: 18px; right: 18px; width: 50px; height: 50px; }
}

/* ============================================================
   19. SCROLL REVEAL — gentle
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity .8s var(--ease),
    transform .8s var(--ease);
}
.reveal.is-revealed { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: .08s; }
.reveal.delay-2 { transition-delay: .16s; }
.reveal.delay-3 { transition-delay: .24s; }
.reveal.delay-4 { transition-delay: .32s; }
.reveal.delay-5 { transition-delay: .4s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ============================================================
   20. INNER PAGE HEADER
   ============================================================ */
.page-header {
  background: var(--c-green-deep);
  color: var(--c-cream);
  padding: 200px 0 110px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% -20%, rgba(200,169,110,.18), transparent 55%);
}
.page-header .container { position: relative; z-index: 1; }
.page-header h1 {
  color: var(--c-white);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.page-header p {
  color: rgba(255,255,255,.7);
  font-size: 16px;
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-family: var(--f-sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 28px;
  font-weight: 500;
}
.breadcrumb a { color: rgba(255,255,255,.7); transition: color var(--t-fast) var(--ease); }
.breadcrumb a:hover { color: var(--c-gold); }
.breadcrumb .sep { opacity: .55; }

/* ============================================================
   21. ABOUT PAGE / TIMELINE
   ============================================================ */
.about-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
@media (min-width: 900px) { .about-hero { grid-template-columns: 0.9fr 1.1fr; gap: 80px; } }
.about-hero-img {
  aspect-ratio: 3 / 4;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  max-width: 480px;
}
.about-hero-img::after {
  content: '';
  position: absolute;
  inset: 16px -16px -16px 16px;
  border: 1px solid var(--c-gold);
  border-radius: 8px;
  z-index: -1;
}
.about-hero-img img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; }

.timeline {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 14px; top: 0; bottom: 0;
  width: 1px;
  background: var(--c-line-strong);
}
@media (min-width: 768px) { .timeline::before { left: 50%; transform: translateX(-50%); } }

.tl-item { position: relative; padding-left: 50px; padding-bottom: 56px; }
@media (min-width: 768px) {
  .tl-item { width: 50%; padding-left: 0; padding-right: 56px; text-align: right; }
  .tl-item:nth-child(even) { margin-left: 50%; padding-right: 0; padding-left: 56px; text-align: left; }
}
.tl-item::before {
  content: '';
  position: absolute;
  left: 8px; top: 6px;
  width: 12px; height: 12px;
  background: var(--c-cream);
  border: 1px solid var(--c-gold);
  border-radius: 50%;
}
@media (min-width: 768px) {
  .tl-item::before { left: auto; right: -6px; }
  .tl-item:nth-child(even)::before { right: auto; left: -6px; }
}
.tl-year {
  font-family: var(--f-sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--c-gold);
  margin-bottom: 10px;
}
.tl-item h4 {
  font-family: var(--f-serif);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 8px;
}
.tl-item p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--c-ink-soft);
  font-weight: 300;
  max-width: 40ch;
}
@media (min-width: 768px) {
  .tl-item:not(:nth-child(even)) p { margin-left: auto; }
}

/* ============================================================
   22. SINGLE SERVICE / PRODUCT
   ============================================================ */
.entry-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 900px) { .entry-hero { grid-template-columns: 1fr 1fr; gap: 72px; } }

.entry-img {
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  max-width: 540px;
}
.entry-img::after {
  content: '';
  position: absolute;
  inset: 16px -16px -16px 16px;
  border: 1px solid var(--c-gold);
  border-radius: 8px;
  z-index: -1;
}
.entry-img img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; }

.entry-content {
  font-family: var(--f-sans);
  font-size: 16px;
  line-height: 1.85;
  color: var(--c-ink);
  font-weight: 300;
}
.entry-content p { margin-bottom: 18px; max-width: 64ch; }
.entry-content h2 {
  font-family: var(--f-serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--c-green-deep);
  margin: 36px 0 16px;
}
.entry-content ul, .entry-content ol {
  margin-left: 0;
  margin-bottom: 22px;
  list-style: none;
  padding-left: 0;
}
.entry-content ul li, .entry-content ol li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  font-weight: 300;
}
.entry-content ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 13px;
  width: 10px; height: 1px;
  background: var(--c-gold);
}
.entry-content ol { counter-reset: olc; }
.entry-content ol li {
  counter-increment: olc;
  padding-left: 32px;
}
.entry-content ol li::before {
  content: counter(olc, decimal-leading-zero);
  position: absolute;
  left: 0; top: 0;
  font-family: var(--f-serif);
  font-style: italic;
  color: var(--c-gold);
}

.entry-meta {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
}
.tag-pill {
  display: inline-block;
  padding: 6px 14px;
  font-family: var(--f-sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--c-gold);
  border: 1px solid var(--c-gold);
  border-radius: 999px;
}

/* ============================================================
   23. ARCHIVE
   ============================================================ */
.archive-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 640px) { .archive-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .archive-grid { grid-template-columns: repeat(3, 1fr); gap: 36px; } }

/* ============================================================
   24. UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.serif { font-family: var(--f-serif); }
.italic { font-style: italic; }
.gold { color: var(--c-gold); }

.skip-link {
  position: absolute;
  top: -100px;
  left: 8px;
  background: var(--c-green-deep);
  color: var(--c-cream);
  padding: 10px 18px;
  z-index: 999;
  border-radius: 4px;
  font-size: 13px;
}
.skip-link:focus { top: 8px; }
