/* ============================================
   Dr. Hair Secret — Brand Book Design System
   Palette: #6FAA02 / #2F6631 / #8DCD9C / #E0EDD1 / #FFFFFF
   Fonts: Montserrat + Noto Sans TC
   ============================================ */
:root {
  /* Fluid Type Scale */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 5rem);
  --text-hero: clamp(2.5rem, 0.5rem + 5.5vw, 5.75rem);

  /* 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;

  /* Dr. Hair Secret Brand Palette */
  --color-primary: #6FAA02;         /* 亮綠 primary */
  --color-primary-hover: #5E9200;
  --color-primary-dark: #2F6631;    /* 深綠 accent */
  --color-primary-light: #8DCD9C;   /* 中綠 */
  --color-primary-pale: #E0EDD1;    /* 淡綠背景 */
  --color-white: #FFFFFF;

  --color-bg: #FFFFFF;
  --color-bg-alt: #FAFCF5;
  --color-surface: #E0EDD1;
  --color-surface-dark: #2F6631;
  --color-surface-darker: #244D25;

  --color-text: #1C2A1D;
  --color-text-muted: #5B6961;
  --color-text-faint: #98A29B;
  --color-text-inverse: #FFFFFF;
  --color-text-on-dark: #E0EDD1;
  --color-text-on-pale: #2F6631;

  --color-divider: #D5E3C0;
  --color-border: #B8CFA0;

  /* Radius */
  --radius-sm: 0.375rem; --radius-md: 0.625rem;
  --radius-lg: 1rem; --radius-xl: 1.5rem;
  --radius-full: 9999px;

  --transition: 240ms cubic-bezier(0.16, 1, 0.3, 1);

  --shadow-sm: 0 1px 2px rgba(47, 102, 49, 0.06);
  --shadow-md: 0 10px 30px rgba(47, 102, 49, 0.10);
  --shadow-lg: 0 24px 60px rgba(47, 102, 49, 0.16);

  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1240px;

  --font-display: 'Noto Serif TC', 'Songti TC', 'PingFang TC', serif;
  --font-body: 'Noto Sans TC', 'PingFang TC', -apple-system, sans-serif;
  --font-en: 'Montserrat', 'Noto Sans TC', sans-serif;
}

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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  min-height: 100dvh;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
}

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

button { cursor: pointer; background: none; border: none; font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-wrap: balance;
  color: var(--color-primary-dark);
}

p { text-wrap: pretty; max-width: 68ch; }
::selection { background: var(--color-primary-light); color: var(--color-primary-dark); }
:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 3px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ============================================
   Layout
   ============================================ */
.container {
  width: 100%;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: clamp(var(--space-4), 5vw, var(--space-12));
}

.section {
  padding-block: clamp(var(--space-16), 10vw, var(--space-32));
  position: relative;
}

.section--tight { padding-block: clamp(var(--space-12), 7vw, var(--space-20)); }
.section--pale { background: var(--color-primary-pale); }
.section--dark { background: var(--color-surface-dark); color: var(--color-text-on-dark); }
.section--alt { background: var(--color-bg-alt); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-4);
}
.eyebrow::before { content: ""; width: 2rem; height: 2px; background: currentColor; }
.section--dark .eyebrow { color: var(--color-primary-light); }

/* ============================================
   Nav
   ============================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: var(--space-3) 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
.nav.scrolled {
  border-bottom-color: var(--color-divider);
  background: rgba(255, 255, 255, 0.95);
}

.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-6);
}

.nav__logo {
  display: flex; align-items: center; gap: var(--space-3);
  color: var(--color-primary-dark);
  transition: var(--transition);
}
.nav__logo:hover { color: var(--color-primary); }

.nav__logo-mark {
  width: 42px; height: 42px; flex-shrink: 0;
}

.nav__logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav__logo-en {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--color-primary-dark);
}
.nav__logo-en sup { color: var(--color-primary); font-size: 0.6em; }
.nav__logo-tag {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--color-primary);
  margin-top: 2px;
}

.nav__menu {
  display: flex; align-items: center; gap: var(--space-6);
}

.nav__menu a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text);
  padding: var(--space-2) 0;
  position: relative;
  transition: var(--transition);
}
.nav__menu a:hover, .nav__menu a.active {
  color: var(--color-primary-dark);
}
.nav__menu a::after {
  content: ""; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--color-primary);
  transition: var(--transition);
}
.nav__menu a:hover::after, .nav__menu a.active::after { width: 100%; }

.nav__cta {
  display: inline-flex; align-items: center; gap: var(--space-2);
  background: var(--color-primary);
  color: var(--color-white);
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  font-family: var(--font-body);
  white-space: nowrap;
  line-height: 1;
  transition: var(--transition);
}
.nav__cta:hover {
  background: var(--color-primary-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  color: var(--color-white);
}

.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  color: var(--color-primary-dark);
  place-items: center;
}

/* ============================================
   Buttons
   ============================================ */
.btn, .btn-primary, .btn-secondary, .btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-6);
  border-radius: var(--radius-full);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: var(--transition);
  font-family: var(--font-body);
  white-space: nowrap;
  line-height: 1;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

/* BEM alias for new home btns */
.btn--primary {
  background: var(--color-primary);
  color: var(--color-white);
}
.btn--primary:hover {
  background: var(--color-primary-hover, var(--color-primary-dark));
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(47,102,49,0.25);
  color: var(--color-white);
}
.btn--ghost {
  background: transparent;
  color: var(--color-primary-dark);
  border: 1.5px solid var(--color-primary-dark);
}
.btn--ghost:hover {
  background: var(--color-primary-dark);
  color: var(--color-white);
}
.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
}
.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--color-white);
}
.btn-secondary {
  background: var(--color-primary-dark);
  color: var(--color-white);
}
.btn-secondary:hover {
  background: #244D25;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--color-primary-dark);
  border: 1.5px solid var(--color-primary-dark);
}
.btn-outline:hover {
  background: var(--color-primary-dark);
  color: var(--color-white);
}

/* ============================================
   Hero
   ============================================ */
.hero {
  padding-top: clamp(6rem, 12vw, 9rem);
  padding-bottom: clamp(var(--space-16), 8vw, var(--space-24));
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 90% 15%, rgba(141, 205, 156, 0.25), transparent 55%),
    radial-gradient(ellipse at 5% 80%, rgba(224, 237, 209, 0.6), transparent 60%),
    var(--color-bg);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(var(--space-6), 4vw, var(--space-16));
  align-items: center;
  position: relative;
}

.hero__content { max-width: 620px; }

.hero__title {
  font-size: var(--text-hero);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-primary-dark);
  margin-block: var(--space-6) var(--space-6);
  letter-spacing: 0;
}

.hero__title-accent {
  color: var(--color-primary);
  font-weight: 700;
  display: inline-block;
}

.hero__lede {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  margin-bottom: var(--space-8);
  line-height: 1.7;
  max-width: 46ch;
}

.hero__lede strong {
  color: var(--color-primary-dark);
  font-weight: 700;
}

.hero__bullets {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}

.hero__bullet {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: var(--color-primary-pale);
  color: var(--color-primary-dark);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
}
.hero__bullet::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--color-primary);
  border-radius: 50%;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-10);
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  padding-top: var(--space-8);
  border-top: 1px solid var(--color-divider);
}

.hero__stat-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero__stat-num sup {
  font-size: 0.5em;
  color: var(--color-primary-dark);
  vertical-align: super;
  font-weight: 700;
}

.hero__stat-label {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-top: var(--space-2);
  letter-spacing: 0.05em;
  font-weight: 500;
}

.hero__portrait {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--color-white);
}
.hero__portrait img { width: 100%; height: 100%; object-fit: cover; }

.hero__portrait-badge {
  position: absolute;
  bottom: var(--space-4);
  left: var(--space-4);
  right: var(--space-4);
  padding: var(--space-3) var(--space-4);
  background: rgba(47, 102, 49, 0.92);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-md);
  color: var(--color-white);
}
.hero__portrait-name {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: 2px;
}
.hero__portrait-title {
  font-size: 0.7rem;
  color: var(--color-primary-light);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
}

.hero__badge-corner {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  padding: var(--space-2) var(--space-3);
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============================================
   Trust Bar
   ============================================ */
.trust-bar {
  background: var(--color-primary-dark);
  color: var(--color-text-on-dark);
  padding: var(--space-5) 0;
  overflow: hidden;
}
.trust-bar__track {
  display: flex;
  gap: var(--space-16);
  animation: scroll 40s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-white);
}
.trust-bar__item span { color: var(--color-primary-light); font-size: 1.25rem; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ============================================
   Section Head
   ============================================ */
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: end;
  margin-bottom: var(--space-16);
}
.section-head--center { text-align: center; grid-template-columns: 1fr; max-width: 720px; margin-inline: auto; }

.section-title {
  font-size: var(--text-2xl);
  color: var(--color-primary-dark);
  font-weight: 800;
  margin-top: var(--space-3);
}
.section-title em {
  font-style: normal;
  color: var(--color-primary);
}
.section--dark .section-title { color: var(--color-white); }
.section--dark .section-title em { color: var(--color-primary-light); }

.section-lede {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 48ch;
  line-height: 1.7;
}
.section-head--center .section-lede { margin-inline: auto; }
.section--dark .section-lede { color: var(--color-text-on-dark); opacity: 0.85; }

/* ============================================
   Why Cards
   ============================================ */
.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.why__card {
  padding: var(--space-8) var(--space-6);
  background: var(--color-white);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  position: relative;
}
.why__card:hover {
  border-color: var(--color-primary);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.why__card-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  background: var(--color-primary-pale);
  color: var(--color-primary-dark);
  display: grid; place-items: center;
  margin-bottom: var(--space-5);
}
.why__card-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  color: var(--color-primary);
  letter-spacing: 0.2em;
  font-weight: 700;
  margin-bottom: var(--space-3);
}
.why__card-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-primary-dark);
  margin-bottom: var(--space-3);
  font-weight: 700;
}
.why__card-body {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ============================================
   3 Steps Treatment
   ============================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-12);
  position: relative;
}

.step {
  padding: var(--space-8);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}
.step:hover {
  border-color: var(--color-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.step--featured {
  background: var(--color-primary-dark);
  color: var(--color-white);
  border-color: var(--color-primary-dark);
}

.step__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  background: var(--color-primary-pale);
  color: var(--color-primary-dark);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-6);
  width: fit-content;
}
.step--featured .step__badge {
  background: var(--color-primary);
  color: var(--color-white);
}

.step__num {
  display: block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  color: var(--color-primary);
  letter-spacing: 0.3em;
  font-weight: 700;
  margin-bottom: var(--space-2);
}
.step--featured .step__num { color: var(--color-primary-light); }

.step__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-primary-dark);
  margin-bottom: var(--space-4);
  font-weight: 800;
  line-height: 1.3;
}
.step--featured .step__title { color: var(--color-white); }

.step__body {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-4);
  flex-grow: 1;
}
.step--featured .step__body { color: var(--color-text-on-dark); opacity: 0.9; }

.step__tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  width: fit-content;
}
.step--featured .step__tag {
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
}

.step__connector {
  position: absolute;
  right: -0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-primary-light);
  z-index: 2;
}

/* ============================================
   AI Analysis
   ============================================ */
.ai-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-8), 5vw, var(--space-16));
  align-items: center;
}

.ai-visual {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  border: 4px solid var(--color-white);
}
.ai-visual img { width: 100%; height: 100%; object-fit: cover; }

.ai-features {
  list-style: none;
  margin-top: var(--space-8);
  display: grid;
  gap: var(--space-5);
}
.ai-feature {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-4);
  align-items: start;
}
.ai-feature__icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  background: var(--color-primary);
  color: var(--color-white);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.ai-feature__title {
  font-family: var(--font-display);
  font-size: var(--text-base);
  color: var(--color-primary-dark);
  margin-bottom: var(--space-1);
  font-weight: 700;
}
.ai-feature__body { font-size: 0.9375rem; color: var(--color-text-muted); line-height: 1.6; }

/* ============================================
   Formula (Men/Women)
   ============================================ */
.formula__tabs {
  display: inline-flex;
  padding: var(--space-1);
  background: var(--color-white);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-full);
  margin: 0 0 var(--space-12);
  box-shadow: var(--shadow-sm);
}
.formula__tab {
  padding: var(--space-3) var(--space-8);
  border-radius: var(--radius-full);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-text-muted);
  transition: var(--transition);
  letter-spacing: 0.05em;
  font-family: var(--font-display);
}
.formula__tab.active {
  background: var(--color-primary);
  color: var(--color-white);
}

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

.formula__visual {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3/4;
}
.formula__visual img { width: 100%; height: 100%; object-fit: cover; }

.formula__label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: var(--space-3);
}
.formula__heading {
  font-size: var(--text-xl);
  color: var(--color-primary-dark);
  margin-bottom: var(--space-6);
  font-weight: 800;
}
.formula__desc { color: var(--color-text-muted); margin-bottom: var(--space-8); line-height: 1.7; }

.formula__list { list-style: none; display: grid; gap: var(--space-4); }
.formula__list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-4);
  padding: var(--space-4);
  border-left: 3px solid var(--color-primary);
  background: var(--color-bg-alt);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.formula__list strong {
  font-family: var(--font-display);
  color: var(--color-primary-dark);
  font-weight: 700;
  display: block;
  margin-bottom: var(--space-1);
}
.formula__list span { font-size: 0.875rem; color: var(--color-text-muted); }
.formula__list-icon {
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
}

/* ============================================
   Plans
   ============================================ */
.plans__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-8);
}

.plan {
  padding: var(--space-8);
  background: var(--color-white);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.plan:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}

.plan--featured {
  background: var(--color-primary-dark);
  color: var(--color-text-on-dark);
  border-color: var(--color-primary-dark);
}
.plan__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: var(--space-2) var(--space-4);
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: var(--font-display);
}

.plan__tier {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: var(--space-3);
}
.plan--featured .plan__tier { color: var(--color-primary-light); }

.plan__name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-primary-dark);
  margin-bottom: var(--space-2);
  font-weight: 800;
}
.plan--featured .plan__name { color: var(--color-white); }

.plan__duration {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
}
.plan--featured .plan__duration { color: var(--color-primary-light); }

.plan__price {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--color-primary-dark);
  font-weight: 900;
  margin-bottom: var(--space-1);
  letter-spacing: -0.02em;
  line-height: 1;
}
.plan--featured .plan__price { color: var(--color-white); }
.plan__price small { font-size: 0.4em; color: var(--color-text-muted); font-family: var(--font-body); margin-left: 0.5em; font-weight: 500; }
.plan--featured .plan__price small { color: var(--color-primary-light); }

.plan__discount {
  display: inline-block;
  padding: var(--space-1) var(--space-3);
  background: var(--color-primary-pale);
  color: var(--color-primary-dark);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-top: var(--space-3);
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-1);
}
.plan--featured .plan__discount { background: var(--color-primary); color: var(--color-white); }

.plan__features {
  list-style: none;
  display: grid;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-divider);
  flex-grow: 1;
}
.plan--featured .plan__features { border-top-color: rgba(224, 237, 209, 0.2); }

.plan__features li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-3);
  font-size: 0.9375rem;
  color: var(--color-text);
  line-height: 1.55;
}
.plan--featured .plan__features li { color: var(--color-text-on-dark); opacity: 0.9; }

.plan__features li::before {
  content: "✓";
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.1em;
  line-height: 1.4;
}
.plan--featured .plan__features li::before { color: var(--color-primary-light); }

.plan__cta {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-4);
  border-radius: var(--radius-full);
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 0.9375rem;
  font-weight: 700;
  transition: var(--transition);
  font-family: var(--font-display);
}
.plan__cta:hover { background: var(--color-primary-hover); transform: translateY(-2px); }
.plan--featured .plan__cta { background: var(--color-primary-light); color: var(--color-primary-dark); }
.plan--featured .plan__cta:hover { background: var(--color-white); }

/* ============================================
   Testimonial
   ============================================ */
.testimonial__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(var(--space-8), 5vw, var(--space-16));
  align-items: center;
  margin-top: var(--space-8);
}
.testimonial__visual {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  border: 4px solid var(--color-white);
}
.testimonial__visual img { width: 100%; height: auto; display: block; }
.testimonial__labels {
  position: absolute; top: var(--space-4); left: var(--space-4); right: var(--space-4);
  display: flex; justify-content: space-between; pointer-events: none;
}
.testimonial__labels span {
  padding: var(--space-2) var(--space-4);
  background: rgba(47, 102, 49, 0.85);
  color: var(--color-white);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  backdrop-filter: blur(8px);
  font-family: var(--font-display);
}

.testimonial__quote {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: var(--space-6);
  position: relative;
  padding-left: var(--space-6);
}
.testimonial__quote::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--color-primary);
}

.testimonial__meta { font-size: 0.875rem; color: var(--color-text-muted); }
.testimonial__meta strong { color: var(--color-primary-dark); display: block; margin-bottom: var(--space-1); font-weight: 700; }

.testimonial__result {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  padding: var(--space-6);
  background: var(--color-primary-pale);
  border-radius: var(--radius-lg);
  margin-top: var(--space-6);
}
.testimonial__result-num {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-primary-dark);
  font-weight: 900;
}
.testimonial__result-num sup { font-size: 0.5em; color: var(--color-primary); }
.testimonial__result-label {
  font-size: 0.7rem;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
  margin-top: var(--space-1);
  font-weight: 500;
}

/* ============================================
   Founder Story
   ============================================ */
.founder-video {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--color-primary-dark);
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}
.founder-video:hover { transform: translateY(-4px); box-shadow: 0 30px 80px rgba(47, 102, 49, 0.25); }
.founder-video__poster {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.7);
}
.founder-video__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 96px; height: 96px;
  background: var(--color-primary);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--color-white);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  transition: var(--transition);
}
.founder-video:hover .founder-video__play { transform: translate(-50%, -50%) scale(1.1); }
.founder-video__label {
  position: absolute;
  bottom: var(--space-6);
  left: var(--space-6);
  color: var(--color-white);
}
.founder-video__label div:first-child {
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-primary-light);
  margin-bottom: var(--space-1);
  font-weight: 700;
}
.founder-video__label div:last-child {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
}

/* ============================================
   Contact
   ============================================ */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-8), 5vw, var(--space-16));
  margin-top: var(--space-8);
}
.contact__block h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-white);
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid rgba(224, 237, 209, 0.2);
  font-weight: 700;
}

.location {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-4);
  padding: var(--space-5) 0;
  border-bottom: 1px solid rgba(224, 237, 209, 0.12);
}
.location:last-of-type { border-bottom: none; }
.location__pin {
  width: 40px; height: 40px;
  border-radius: var(--radius-full);
  background: rgba(111, 170, 2, 0.2);
  color: var(--color-primary-light);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.location__name {
  font-family: var(--font-display);
  font-size: var(--text-base);
  color: var(--color-white);
  margin-bottom: var(--space-1);
  font-weight: 700;
}
.location__addr {
  font-size: 0.875rem;
  color: var(--color-text-on-dark);
  opacity: 0.8;
  margin-bottom: var(--space-2);
  line-height: 1.5;
}
.location__meta {
  font-size: 0.7rem;
  color: var(--color-primary-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

.channels { display: grid; gap: var(--space-4); }
.channel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--space-4);
  align-items: center;
  padding: var(--space-4) var(--space-5);
  background: rgba(224, 237, 209, 0.05);
  border: 1px solid rgba(224, 237, 209, 0.15);
  border-radius: var(--radius-lg);
  color: var(--color-white);
  transition: var(--transition);
}
.channel:hover {
  background: rgba(224, 237, 209, 0.12);
  border-color: var(--color-primary-light);
  transform: translateX(4px);
}
.channel__icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-full);
  background: var(--color-primary);
  color: var(--color-white);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.channel__label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-primary-light);
  margin-bottom: 2px;
  font-weight: 600;
}
.channel__value {
  font-family: var(--font-display);
  font-size: var(--text-base);
  color: var(--color-white);
  font-weight: 700;
}
.channel__arrow { color: var(--color-primary-light); }

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--color-surface-darker);
  color: var(--color-text-on-dark);
  padding: var(--space-16) 0 var(--space-6);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-10);
  margin-bottom: var(--space-12);
}
.footer__brand {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-white);
  margin-bottom: var(--space-4);
  font-weight: 700;
}
.footer__tag {
  font-size: 0.875rem;
  color: var(--color-text-on-dark);
  opacity: 0.7;
  max-width: 34ch;
  line-height: 1.6;
}
.footer__title {
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-primary-light);
  margin-bottom: var(--space-4);
  font-weight: 700;
  font-family: var(--font-display);
}
.footer__list { list-style: none; display: grid; gap: var(--space-2); }
.footer__list a {
  font-size: 0.875rem;
  color: var(--color-text-on-dark);
  opacity: 0.75;
  transition: var(--transition);
}
.footer__list a:hover { color: var(--color-primary-light); opacity: 1; }

.footer__bar {
  padding-top: var(--space-6);
  border-top: 1px solid rgba(224, 237, 209, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--color-text-on-dark);
  opacity: 0.5;
  letter-spacing: 0.05em;
}

/* ============================================
   Page Hero (for sub-pages)
   ============================================ */
.page-hero {
  padding-top: clamp(7rem, 12vw, 10rem);
  padding-bottom: clamp(var(--space-12), 6vw, var(--space-20));
  background:
    radial-gradient(ellipse at 80% 30%, rgba(141, 205, 156, 0.25), transparent 60%),
    var(--color-primary-pale);
  text-align: center;
}
.page-hero__title {
  font-size: var(--text-2xl);
  color: var(--color-primary-dark);
  font-weight: 900;
  margin-block: var(--space-4) var(--space-4);
  letter-spacing: -0.02em;
}
.page-hero__lede {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 44ch;
  margin-inline: auto;
  line-height: 1.7;
}

/* ============================================
   Floating WhatsApp
   ============================================ */
.float-wa {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  z-index: 90;
  width: 60px; height: 60px;
  border-radius: var(--radius-full);
  background: #25D366;
  color: white;
  display: grid; place-items: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
}
.float-wa:hover { transform: scale(1.08); }

/* ============================================
   Reveal
   ============================================ */
@media (prefers-reduced-motion: no-preference) {
  .js-reveal-ready .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.9s ease, transform 0.9s ease; }
  .js-reveal-ready .reveal.visible { opacity: 1; transform: translateY(0); }
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 960px) {
  .hero__grid, .ai-grid, .formula__panel.active, .testimonial__grid, .contact__grid {
    grid-template-columns: 1fr;
  }
  .section-head { grid-template-columns: 1fr; gap: var(--space-4); }
  .why__grid, .steps, .plans__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .nav__menu { display: none; }
  .nav__toggle { display: grid; }
  .step__connector { display: none; }
  .hero__portrait { max-width: 480px; margin-inline: auto; }
}

@media (max-width: 560px) {
  .hero__stats { grid-template-columns: 1fr 1fr; gap: var(--space-4); }
  .hero__stats > :nth-child(3) { grid-column: 1 / -1; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bar { flex-direction: column; gap: var(--space-3); text-align: center; }
  .formula__tab { padding: var(--space-3) var(--space-5); font-size: 0.8125rem; }
  .founder-video__play { width: 72px; height: 72px; }
}

/* Mobile menu drawer */
.nav__drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 300px; max-width: 85vw;
  background: var(--color-white);
  padding: var(--space-20) var(--space-6) var(--space-6);
  transform: translateX(100%);
  transition: transform var(--transition);
  box-shadow: -10px 0 40px rgba(0,0,0,0.1);
  z-index: 99;
}
.nav__drawer.open { transform: translateX(0); }
.nav__drawer a {
  display: block;
  padding: var(--space-3) 0;
  font-size: 1rem;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-divider);
  font-weight: 500;
}
.nav__drawer a:hover, .nav__drawer a.active { color: var(--color-primary); }

/* ============================================================
   BOOKING PAGE
   ============================================================ */

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

.nav__cta--active { background: var(--color-primary-dark) !important; color: #fff !important; }

.booking-hero {
  padding: clamp(6rem, 12vw, 9rem) 0 clamp(3rem, 6vw, 5rem);
  text-align: center;
  background:
    radial-gradient(ellipse at top, rgba(224,237,209,0.55) 0%, transparent 60%),
    var(--color-white);
  border-bottom: 1px solid var(--color-divider);
}
.booking-hero__eyebrow {
  font-family: var(--font-en);
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-primary-dark);
  font-weight: 600;
  margin-bottom: var(--space-4);
}
.booking-hero__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-text);
  margin-bottom: var(--space-3);
  letter-spacing: -0.01em;
}
.booking-hero__en {
  font-family: var(--font-en);
  font-size: 0.875rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-style: italic;
  margin-bottom: var(--space-5);
}
.booking-hero__rule {
  width: 60px; height: 1px;
  background: var(--color-primary);
  margin: 0 auto var(--space-5);
}
.booking-hero__desc {
  max-width: 640px;
  margin: 0 auto;
  color: var(--color-text-muted);
  line-height: 1.85;
  font-size: 0.95rem;
}
.booking-hero__desc strong { color: var(--color-primary-dark); font-weight: 600; }

.booking-section {
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(4rem, 8vw, 7rem);
  background: var(--color-white);
}

.booking-container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.booking-form { min-width: 0; }

.form-step { margin-bottom: clamp(2rem, 4vw, 3rem); }
.form-step__label {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}
.form-step__num {
  font-family: var(--font-en);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-primary-dark);
  background: var(--color-primary-light);
  padding: 4px 10px;
  border-radius: 999px;
}
.form-step__en {
  font-family: var(--font-en);
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-text-faint);
  font-weight: 500;
}
.form-step__title {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-6);
  letter-spacing: -0.005em;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-4);
}
.service-card {
  position: relative;
  cursor: pointer;
  display: block;
}
.service-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.service-card__inner {
  padding: var(--space-6) var(--space-6);
  background: var(--color-white);
  border: 1.5px solid var(--color-divider);
  border-radius: 12px;
  transition: all var(--transition);
  height: 100%;
}
.service-card:hover .service-card__inner {
  border-color: var(--color-primary);
  background: rgba(224,237,209,0.15);
}
.service-card input[type="radio"]:checked + .service-card__inner {
  border-color: var(--color-primary-dark);
  background: var(--color-primary-light);
  box-shadow: inset 0 0 0 1.5px var(--color-primary-dark);
}
.service-card__eyebrow {
  font-family: var(--font-en);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-primary-dark);
  font-weight: 700;
  margin-bottom: var(--space-2);
}
.service-card__name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}
.service-card__price {
  font-size: 0.9rem;
  color: var(--color-primary-dark);
  font-weight: 600;
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-3);
  border-bottom: 1px dashed var(--color-divider);
}
.service-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--space-2);
}
.service-card__list li {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  padding-left: var(--space-4);
  position: relative;
}
.service-card__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
}

.form-grid { display: grid; gap: var(--space-4); }
.form-grid--2 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.form-grid--3 { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.form-field { display: flex; flex-direction: column; gap: var(--space-2); min-width: 0; }
.form-field--full { grid-column: 1 / -1; }
.form-label {
  font-family: var(--font-en);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-weight: 600;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font: inherit;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-white);
  border: 1.5px solid var(--color-divider);
  border-radius: 8px;
  transition: border-color var(--transition), box-shadow var(--transition);
  min-width: 0;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(111,170,2,0.15);
}
.form-field textarea { resize: vertical; min-height: 120px; }

.form-hint {
  margin-top: var(--space-3);
  font-size: 0.8125rem;
  color: var(--color-text-faint);
  line-height: 1.7;
}

.form-submit { margin-top: var(--space-8); }
.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 1rem 2.5rem;
  background: var(--color-primary-dark);
  color: var(--color-white);
  border: none;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}
.btn-submit:hover:not(:disabled) {
  background: #244f26;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(47,102,49,0.25);
}
.btn-submit:disabled { background: #9BA598; cursor: not-allowed; }
.form-submit__hint {
  margin-top: var(--space-4);
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}
.form-submit__hint strong { color: var(--color-primary-dark); font-weight: 600; }

.form-success {
  text-align: center;
  padding: clamp(2rem, 4vw, 3rem);
  background: var(--color-primary-light);
  border: 1.5px solid var(--color-primary);
  border-radius: 16px;
  margin-top: var(--space-6);
}
.form-success__icon {
  width: 72px; height: 72px;
  margin: 0 auto var(--space-4);
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-primary-dark);
  display: grid;
  place-items: center;
}
.form-success h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--space-3);
  color: var(--color-primary-dark);
}
.form-success p {
  color: var(--color-text-muted);
  line-height: 1.75;
  max-width: 480px;
  margin: 0 auto;
}
.form-error {
  margin-top: var(--space-4);
  padding: var(--space-4);
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 8px;
  color: #991b1b;
  font-size: 0.9rem;
}
.form-error a { color: #991b1b; text-decoration: underline; font-weight: 600; }

/* Aside */
.booking-aside { display: grid; gap: var(--space-4); position: sticky; top: 100px; }
.booking-aside__card {
  padding: var(--space-6);
  background: var(--color-bg-alt);
  border: 1px solid var(--color-divider);
  border-radius: 16px;
}
.booking-aside__card--dark {
  background: var(--color-primary-dark);
  color: var(--color-white);
  border-color: var(--color-primary-dark);
}
.booking-aside__card--dark .branch__name { color: var(--color-white); }
.booking-aside__card--dark .branch__meta { color: #C4D6C5; }
.booking-aside__eyebrow {
  font-family: var(--font-en);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-primary-dark);
  font-weight: 700;
  margin-bottom: var(--space-4);
}
.booking-aside__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--space-3);
}
.booking-aside__list li {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  padding-left: var(--space-5);
  position: relative;
}
.booking-aside__list li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 0;
  color: var(--color-primary-dark);
  font-weight: 700;
}
.booking-aside__list strong { color: var(--color-primary-dark); font-weight: 700; }

.branch {
  padding: var(--space-3) 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.branch:last-of-type { border-bottom: none; }
.branch__name { font-size: 0.95rem; font-weight: 600; margin-bottom: 4px; }
.branch__meta {
  font-family: var(--font-en);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
}
.branch__wa {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: var(--space-4);
  padding: 0.75rem 1.25rem;
  background: var(--color-white);
  color: var(--color-primary-dark) !important;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
  line-height: 1;
}
.branch__wa:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.15); }

.mobile-br { display: none; }

@media (max-width: 900px) {
  .booking-container { grid-template-columns: 1fr; }
  .booking-aside { position: static; }
  .mobile-br { display: block; }
}
@media (max-width: 640px) {
  .service-grid { grid-template-columns: 1fr; }
  .form-grid--3 { grid-template-columns: 1fr 1fr; }
  .btn-submit { width: 100%; justify-content: center; }
}

/* ============================================================
   SECTION UTILITIES (shared by index & sub-pages)
   ============================================================ */
.section-eyebrow {
  font-family: var(--font-en);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-primary-dark);
  font-weight: 600;
  margin-bottom: var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  justify-content: center;
}
.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  width: 40px; height: 1px;
  background: var(--color-primary);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.35;
  color: var(--color-primary-dark);
  text-align: center;
  margin-bottom: var(--space-4);
  letter-spacing: 0;
}
.section-lede {
  max-width: 640px;
  margin: 0 auto var(--space-12);
  color: var(--color-text-muted);
  text-align: center;
  line-height: 1.8;
  font-size: 0.95rem;
}

/* ============================================================
   VALUES SECTION
   ============================================================ */
.values {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-divider);
  border-bottom: 1px solid var(--color-divider);
}
.values__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-6);
  margin-top: var(--space-12);
}
.value-card {
  background: var(--color-white);
  border: 1px solid var(--color-divider);
  border-radius: 20px;
  padding: var(--space-8) var(--space-7);
  transition: all var(--transition);
  position: relative;
}
.value-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-primary);
  box-shadow: 0 20px 40px rgba(47,102,49,0.08);
}
.value-card__num {
  font-family: var(--font-en);
  font-size: 3rem;
  font-weight: 300;
  color: var(--color-primary);
  line-height: 1;
  opacity: 0.4;
  margin-bottom: var(--space-3);
}
.value-card__label {
  font-family: var(--font-en);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-3);
  font-weight: 600;
}
.value-card__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: var(--space-3);
}
.value-card__desc {
  color: var(--color-text-muted);
  line-height: 1.85;
  font-size: 0.925rem;
}

/* ============================================================
   SITEMAP SECTION (导流卡片)
   ============================================================ */
.sitemap {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--color-white);
}
.sitemap__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
.sitemap-card {
  display: flex;
  flex-direction: column;
  padding: var(--space-7) var(--space-6);
  background: var(--color-white);
  border: 1.5px solid var(--color-divider);
  border-radius: 16px;
  text-decoration: none;
  transition: all var(--transition);
  min-height: 240px;
  color: var(--color-text);
  position: relative;
  overflow: hidden;
}
.sitemap-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(224,237,209,0) 0%, rgba(224,237,209,0.4) 100%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
  border-radius: 16px;
}
.sitemap-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-primary);
  box-shadow: 0 20px 40px rgba(47,102,49,0.1);
}
.sitemap-card:hover::after { opacity: 1; }
.sitemap-card__num {
  font-family: var(--font-en);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--color-text-faint);
  font-weight: 600;
  margin-bottom: var(--space-2);
  position: relative;
  z-index: 1;
}
.sitemap-card__label {
  font-family: var(--font-en);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-primary-dark);
  font-weight: 700;
  margin-bottom: var(--space-3);
  position: relative;
  z-index: 1;
}
.sitemap-card__title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: var(--space-3);
  line-height: 1.35;
  position: relative;
  z-index: 1;
}
.sitemap-card__desc {
  color: var(--color-text-muted);
  line-height: 1.75;
  font-size: 0.9rem;
  margin-bottom: var(--space-6);
  flex-grow: 1;
  position: relative;
  z-index: 1;
}
.sitemap-card__cta {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  transition: gap var(--transition);
  position: relative;
  z-index: 1;
  white-space: nowrap;
  line-height: 1;
}
.sitemap-card:hover .sitemap-card__cta { gap: var(--space-3); color: var(--color-primary); }

.sitemap-card--wide { grid-column: span 2; background: var(--color-primary-light); border-color: var(--color-primary); }
.sitemap-card--wide .sitemap-card__title { font-size: 1.75rem; }

.sitemap-card--dark {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: var(--color-white);
}
.sitemap-card--dark .sitemap-card__num { color: rgba(255,255,255,0.5); }
.sitemap-card--dark .sitemap-card__label { color: #E0EDD1; }
.sitemap-card--dark .sitemap-card__title { color: var(--color-white); }
.sitemap-card--dark .sitemap-card__desc { color: rgba(255,255,255,0.85); }
.sitemap-card--dark .sitemap-card__cta { color: #E0EDD1; }
.sitemap-card--dark:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(47,102,49,0.25); }

.sitemap-card--accent {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: var(--color-white);
  border-color: var(--color-primary);
}
.sitemap-card--accent .sitemap-card__num { color: rgba(255,255,255,0.55); }
.sitemap-card--accent .sitemap-card__label { color: rgba(255,255,255,0.9); }
.sitemap-card--accent .sitemap-card__title { color: var(--color-white); }
.sitemap-card--accent .sitemap-card__desc { color: rgba(255,255,255,0.9); }
.sitemap-card--accent .sitemap-card__cta { color: var(--color-white); }

@media (max-width: 900px) {
  .sitemap__grid { grid-template-columns: repeat(2, 1fr); }
  .sitemap-card--wide { grid-column: span 2; }
}
@media (max-width: 640px) {
  .sitemap__grid { grid-template-columns: 1fr; }
  .sitemap-card--wide { grid-column: span 1; }
}

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta-strip {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background:
    radial-gradient(ellipse at top left, rgba(141,205,156,0.2) 0%, transparent 50%),
    var(--color-primary-dark);
  color: var(--color-white);
}
.cta-strip__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-8);
  align-items: center;
}
.cta-strip__eyebrow {
  font-family: var(--font-en);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: #E0EDD1;
  font-weight: 600;
  margin-bottom: var(--space-3);
}
.cta-strip__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-3);
  line-height: 1.35;
}
.cta-strip__lede { color: rgba(224,237,209,0.85); line-height: 1.7; font-size: 0.95rem; max-width: 640px; }
.cta-strip__actions { display: flex; gap: var(--space-3); flex-wrap: wrap; }
.cta-strip .btn--primary { background: var(--color-white); color: var(--color-primary-dark); }
.cta-strip .btn--primary:hover { background: var(--color-primary-light); transform: translateY(-2px); }
.cta-strip .btn--ghost { border-color: var(--color-white); color: var(--color-white); }
.cta-strip .btn--ghost:hover { background: rgba(255,255,255,0.1); }
@media (max-width: 800px) {
  .cta-strip__inner { grid-template-columns: 1fr; text-align: center; }
  .cta-strip__actions { justify-content: center; }
}

/* ============================================================
   EDITORIAL v3 — Glam-inspired editorial layout
   Prefix: .ed-*
   ============================================================ */

:root {
  --ed-ink: #1a1a1a;
  --ed-body: #4a4a4a;
  --ed-muted: #8a8a8a;
  --ed-line: #e2e2e2;
  --ed-cream: #faf9f5;
  --ed-band: #f4f6ee;   /* soft green-cream band */
  --ed-accent: #2F6631;
  --ed-accent-light: #6FAA02;
  --ed-serif-en: 'Cormorant Garamond', 'Noto Serif TC', serif;
  --ed-sans-tc: 'Noto Sans TC', system-ui, sans-serif;
  --ed-serif-tc: 'Noto Serif TC', serif;
}

/* Container sizes */
.ed-narrow { max-width: 780px; margin: 0 auto; padding: 0 clamp(16px, 4vw, 24px); }
.ed-wide { max-width: 1200px; margin: 0 auto; padding: 0 clamp(16px, 4vw, 24px); }
.ed-center { text-align: center; }

/* Typography primitives */
.ed-eyebrow {
  font-family: var(--ed-serif-en);
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--ed-muted);
  font-weight: 400;
  margin-bottom: 24px;
}
.ed-eyebrow--center { text-align: center; }
.ed-eyebrow--muted { color: var(--ed-muted); }

.ed-h2 {
  font-family: var(--ed-sans-tc);
  font-weight: 300;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.35;
  letter-spacing: 0.02em;
  color: var(--ed-ink);
  margin: 0 0 24px;
}
.ed-h3 {
  font-family: var(--ed-sans-tc);
  font-weight: 300;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.4;
  color: var(--ed-ink);
  margin: 0 0 16px;
  text-align: center;
}
.ed-lead-body {
  font-family: var(--ed-sans-tc);
  font-weight: 300;
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 2;
  color: var(--ed-body);
  margin: 0;
}
.ed-sub-en {
  font-family: var(--ed-serif-en);
  font-style: italic;
  color: var(--ed-muted);
  font-size: 15px;
  margin-top: 8px;
}

/* Rule */
.ed-rule {
  border: 0;
  border-top: 1px solid var(--ed-ink);
  margin: 32px 0 0;
}

/* Sections */
.ed-section {
  padding: 96px 0;
  background: #ffffff;
}
.ed-section--intro { background: #ffffff; text-align: center; }
.ed-section--band { background: var(--ed-band); }
.ed-section--atmos { background: var(--ed-cream); }
.ed-section--cta { background: #ffffff; }

.ed-section-head {
  text-align: center;
  margin-bottom: 8px;
}

/* ==================== NAV ==================== */
.hnav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--ed-line);
}
.hnav__inner {
  max-width: 100%;
  margin: 0;
  padding: 14px clamp(16px, 3vw, 40px);
  display: flex;
  align-items: center;
  gap: 16px;
}
.hnav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ed-ink);
  flex-shrink: 0;
}
.hnav__logo-mark {
  width: 38px; height: 38px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
}
.hnav__logo-wrap { display: flex; flex-direction: column; line-height: 1; }
.hnav__logo-en {
  font-family: var(--ed-serif-en);
  font-size: 17px;
  letter-spacing: 0.05em;
  color: var(--ed-ink);
}
.hnav__logo-tag {
  font-family: var(--ed-sans-tc);
  font-weight: 300;
  font-size: 10px;
  color: var(--ed-muted);
  margin-top: 3px;
  letter-spacing: 0.15em;
}
.hnav__menu {
  display: none;
}
.hnav__link {
  font-family: var(--ed-sans-tc);
  font-size: 13px;
  font-weight: 400;
  color: var(--ed-ink);
  text-decoration: none;
  padding: 6px 0;
  position: relative;
  white-space: nowrap;
  transition: color .3s;
}
.hnav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: currentColor;
  transition: width .3s;
}
.hnav__link:hover::after, .hnav__link.is-active::after { width: 100%; }
.hnav__right { display: none; }
.hnav__cta {
  margin-left: auto;
  font-family: var(--ed-sans-tc);
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  background: var(--ed-ink);
  padding: 10px 22px;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
  transition: all .3s;
  display: inline-flex;
  align-items: center;
}
.hnav__cta:hover { background: var(--ed-accent); }
.hnav__toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 6px;
  cursor: pointer;
  color: var(--ed-ink);
}
.hnav__drawer {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid var(--ed-line);
  padding: 16px 32px 24px;
}
.hnav__drawer.is-open { display: flex; }
.hnav__drawer a {
  padding: 14px 0;
  font-family: var(--ed-sans-tc);
  font-size: 15px;
  color: var(--ed-ink);
  text-decoration: none;
  border-bottom: 1px solid var(--ed-line);
}
.hnav__drawer a:last-child { border-bottom: 0; }

/* Legacy media query removed — new mega menu below */

/* ========== 3-dot menu trigger ========== */
.hnav__menutrigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 0;
  padding: 8px 10px;
  cursor: pointer;
  color: var(--ed-ink);
  font-family: var(--ed-sans-tc);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  transition: color .3s;
}
.hnav__menutrigger:hover { color: var(--ed-accent); }
.hnav__dots {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
  align-items: center;
  justify-content: center;
}
.hnav__dots span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
}
.hnav__menutrigger-label { white-space: nowrap; }

@media (max-width: 640px) {
  .hnav__menutrigger-label { display: none; }
  .hnav__logo-tag { display: none; }
  .hnav__logo-en { font-size: 15px; }
  .hnav__logo-mark { width: 32px; height: 32px; }
  .hnav__cta { padding: 9px 16px; font-size: 12px; }
}

/* ========== Mega Menu ========== */
.hmenu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  z-index: 100;
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s;
  display: block;
}
.hmenu.is-open {
  pointer-events: auto;
  opacity: 1;
}
.hmenu__scrim {
  position: absolute;
  inset: 0;
  background: rgba(26,26,26,0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.hmenu__panel {
  position: absolute;
  top: 0; right: 0;
  height: 100%;
  width: 100%;
  max-width: 480px;
  background: #fff;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
  box-shadow: -10px 0 40px rgba(0,0,0,0.12);
}
.hmenu.is-open .hmenu__panel { transform: translateX(0); }

.hmenu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  border-bottom: 1px solid var(--ed-line);
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 2;
}
.hmenu__eyebrow {
  font-family: var(--ed-serif-en);
  font-size: 11px;
  letter-spacing: 0.35em;
  color: var(--ed-muted);
  text-transform: uppercase;
}
.hmenu__close {
  background: transparent;
  border: 0;
  cursor: pointer;
  color: var(--ed-ink);
  padding: 6px;
  display: inline-flex;
  transition: color .3s;
}
.hmenu__close:hover { color: var(--ed-accent); }

.hmenu__body {
  padding: 20px 28px 32px;
  flex: 1;
}
.hmenu__group {
  padding: 22px 0;
  border-bottom: 1px solid var(--ed-line);
}
.hmenu__group:last-child { border-bottom: 0; }
.hmenu__group-title {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 16px;
}
.hmenu__group-en {
  font-family: var(--ed-serif-en);
  font-size: 11px;
  letter-spacing: 0.35em;
  color: var(--ed-accent);
  font-weight: 500;
  text-transform: uppercase;
}
.hmenu__group-tc {
  font-family: var(--ed-sans-tc);
  font-size: 12px;
  color: var(--ed-muted);
  font-weight: 300;
}
.hmenu__link {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 12px 14px;
  margin: 0 -14px;
  text-decoration: none;
  color: var(--ed-ink);
  border-radius: 4px;
  transition: background .3s;
}
.hmenu__link:hover { background: var(--ed-band); }
.hmenu__link strong {
  font-family: var(--ed-sans-tc);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.02em;
}
.hmenu__link em {
  font-family: var(--ed-serif-en);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--ed-muted);
}
.hmenu__link--dark {
  background: var(--ed-ink);
}
.hmenu__link--dark strong,
.hmenu__link--dark em {
  color: #fff;
}
.hmenu__link--dark:hover { background: var(--ed-accent); }
.hmenu__link--wa {
  background: #25d366;
  margin-top: 8px;
}
.hmenu__link--wa strong,
.hmenu__link--wa em {
  color: #fff;
}
.hmenu__link--wa:hover { background: #1fb556; }

.hmenu__foot {
  padding: 24px 28px;
  border-top: 1px solid var(--ed-line);
  background: var(--ed-cream);
  font-family: var(--ed-sans-tc);
  font-size: 12px;
  color: var(--ed-body);
  line-height: 1.8;
}
.hmenu__addr { margin-bottom: 6px; }
.hmenu__hours {
  font-family: var(--ed-serif-en);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--ed-muted);
}

/* ==================== HERO ==================== */
.ed-hero {
  background: #fff;
  padding: 60px 0 96px;
  overflow: hidden;
}
.ed-hero__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 40px);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}
.ed-hero__text { max-width: 560px; }
.ed-hero__title {
  font-family: var(--ed-sans-tc);
  font-weight: 200;
  font-size: clamp(38px, 5.5vw, 68px);
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: var(--ed-ink);
  margin: 20px 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ed-hero__divider {
  width: 60px;
  height: 1px;
  background: var(--ed-accent);
  margin: 32px 0;
}
.ed-hero__divider.ed-center { margin: 32px auto; }
.ed-hero__lead {
  font-family: var(--ed-sans-tc);
  font-weight: 300;
  font-size: 15.5px;
  line-height: 2;
  color: var(--ed-body);
  margin: 0 0 32px;
}
.ed-hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.ed-hero__pill {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  background: var(--ed-band);
  border-left: 2px solid var(--ed-accent);
  padding: 14px 20px;
  border-radius: 4px;
}
.ed-hero__pill-price {
  font-family: var(--ed-serif-en);
  font-size: 26px;
  font-weight: 500;
  color: var(--ed-accent);
  white-space: nowrap;
}
.ed-hero__pill-was {
  font-family: var(--ed-sans-tc);
  font-size: 12px;
  color: var(--ed-muted);
  text-decoration: line-through;
  white-space: nowrap;
}
.ed-hero__pill-tag {
  font-family: var(--ed-sans-tc);
  font-size: 12px;
  color: var(--ed-body);
  font-weight: 400;
}
.ed-hero__visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(47,102,49,0.25);
  display: block;
  text-decoration: none;
  cursor: pointer;
  transition: transform .5s, box-shadow .5s;
}
.ed-hero__visual:hover {
  transform: translateY(-4px);
  box-shadow: 0 40px 80px -20px rgba(47,102,49,0.35);
}
.ed-hero__visual:hover img { transform: scale(1.03); }
.ed-hero__visual img { transition: transform .8s; }
.ed-hero__visual img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.ed-hero__caption {
  position: absolute;
  bottom: 24px; left: 24px;
  background: rgba(255,255,255,0.92);
  padding: 12px 18px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.ed-hero__caption span {
  font-family: var(--ed-serif-en);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--ed-ink);
  font-weight: 500;
}
.ed-hero__caption em {
  font-family: var(--ed-serif-en);
  font-style: italic;
  font-size: 12px;
  color: var(--ed-muted);
  margin-top: 3px;
}
.ed-hero__caption-arrow {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--ed-line);
  font-family: var(--ed-sans-tc);
  font-size: 11.5px;
  font-weight: 500;
  color: var(--ed-accent);
  letter-spacing: 0.1em;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .ed-hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .ed-hero { padding: 40px 0 64px; }
  .ed-hero__visual { max-width: 480px; margin: 0 auto; }
}

/* ==================== BUTTONS (editorial) ==================== */
.ed-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--ed-sans-tc);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-decoration: none;
  border-radius: 999px;
  white-space: nowrap;
  line-height: 1;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all .3s;
}
.ed-btn--dark {
  background: var(--ed-ink);
  color: #fff;
  border-color: var(--ed-ink);
}
.ed-btn--dark:hover {
  background: var(--ed-accent);
  border-color: var(--ed-accent);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.ed-btn--outline {
  background: transparent;
  color: var(--ed-ink);
  border-color: var(--ed-ink);
}
.ed-btn--outline:hover {
  background: var(--ed-ink);
  color: #fff;
}

/* Link with arrow */
.ed-linkarrow {
  font-family: var(--ed-sans-tc);
  font-size: 14px;
  color: var(--ed-ink);
  text-decoration: none;
  border-bottom: 1px solid var(--ed-ink);
  padding-bottom: 3px;
  white-space: nowrap;
  transition: gap .3s;
}
.ed-linkarrow:hover { color: var(--ed-accent); border-color: var(--ed-accent); }

/* ==================== SIGNATURE LIST ROWS ==================== */
.ed-listrow {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 32px 0;
  border-bottom: 1px solid var(--ed-line);
  text-decoration: none;
  color: var(--ed-ink);
  transition: background .3s;
}
.ed-listrow:hover { background: rgba(244,246,238,0.5); }
.ed-listrow__num {
  font-family: var(--ed-serif-en);
  font-size: clamp(48px, 6vw, 76px);
  font-weight: 300;
  color: var(--ed-accent);
  line-height: 1;
  min-width: 100px;
  flex-shrink: 0;
}
.ed-listrow__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ed-listrow__text strong {
  font-family: var(--ed-sans-tc);
  font-weight: 400;
  font-size: clamp(18px, 2vw, 24px);
  color: var(--ed-ink);
  letter-spacing: 0.02em;
}
.ed-listrow__text em {
  font-family: var(--ed-serif-en);
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.25em;
  color: var(--ed-muted);
  font-weight: 400;
}
.ed-listrow__desc {
  font-family: var(--ed-sans-tc);
  font-size: 13px;
  font-weight: 300;
  color: var(--ed-muted);
  letter-spacing: 0.02em;
  margin-top: 6px;
  line-height: 1.6;
}

/* F9 treatment page hero image */
.ed-f9-hero-img {
  margin: 0;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 20px 60px -20px rgba(47,102,49,0.18);
}
.ed-f9-hero-img img {
  display: block;
  width: 100%;
  height: auto;
}

/* F9 step imagery */
.ed-step__img {
  margin: 0 0 28px 0;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 12px 40px -18px rgba(47,102,49,0.22);
}
.ed-step__img img {
  display: block;
  width: 100%;
  height: auto;
}
.ed-step--dark .ed-step__img {
  box-shadow: 0 12px 40px -18px rgba(0,0,0,0.18);
}
@media (max-width: 780px) {
  .ed-step__img { margin-bottom: 20px; }
}
.ed-listrow__arrow {
  font-family: var(--ed-serif-en);
  font-size: 28px;
  color: var(--ed-muted);
  transition: transform .3s, color .3s;
  flex-shrink: 0;
}
.ed-listrow:hover .ed-listrow__arrow { transform: translateX(8px); color: var(--ed-accent); }

/* ==================== SITEMAP TABLE ==================== */
.ed-table {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(4px);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 32px;
}
.ed-table__head {
  display: grid;
  grid-template-columns: 1.2fr 2fr 130px;
  gap: 24px;
  padding: 20px 28px;
  font-family: var(--ed-serif-en);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--ed-muted);
  border-bottom: 1px solid var(--ed-line);
  text-transform: uppercase;
}
.ed-table__row {
  display: grid;
  grid-template-columns: 1.2fr 2fr 130px;
  gap: 24px;
  padding: 24px 28px;
  border-bottom: 1px solid var(--ed-line);
  text-decoration: none;
  transition: background .3s;
  align-items: center;
}
.ed-table__row:last-child { border-bottom: 0; }
.ed-table__row:hover { background: rgba(224,237,209,0.35); }
.ed-table__name { display: flex; flex-direction: column; gap: 4px; }
.ed-table__name strong {
  font-family: var(--ed-sans-tc);
  font-weight: 500;
  font-size: 16px;
  color: var(--ed-ink);
}
.ed-table__name em {
  font-family: var(--ed-serif-en);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--ed-muted);
}
.ed-table__desc {
  font-family: var(--ed-sans-tc);
  font-weight: 300;
  font-size: 14px;
  color: var(--ed-body);
  line-height: 1.7;
}
.ed-table__cta {
  font-family: var(--ed-serif-en);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--ed-ink);
  text-align: right;
  white-space: nowrap;
  transition: color .3s;
}
.ed-table__row:hover .ed-table__cta { color: var(--ed-accent); }
.ed-table__foot {
  text-align: center;
  font-family: var(--ed-sans-tc);
  font-weight: 300;
  font-size: 14px;
  color: var(--ed-body);
  margin: 40px 0 0;
  line-height: 1.9;
}
.ed-table__foot strong { color: var(--ed-ink); font-weight: 500; }

@media (max-width: 720px) {
  .ed-table__head { display: none; }
  .ed-table__row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 20px 20px;
  }
  .ed-table__cta { text-align: left; }
}

/* ==================== ATMOSPHERIC ==================== */
.ed-atmos__head {
  text-align: center;
  margin-bottom: 40px;
}
.ed-atmos__divider {
  width: 40px;
  height: 1px;
  background: var(--ed-accent);
  margin: 20px auto 0;
}
.ed-atmos__frame {
  display: block;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(47,102,49,0.2);
  aspect-ratio: 16/9;
  cursor: pointer;
  transition: transform .5s, box-shadow .5s;
}
.ed-atmos__frame:hover {
  transform: translateY(-4px);
  box-shadow: 0 40px 80px -20px rgba(47,102,49,0.3);
}
.ed-atmos__frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s;
}
.ed-atmos__frame:hover img { transform: scale(1.02); }
.ed-atmos__foot {
  text-align: center;
  margin-top: 32px;
}

/* ==================== CTA ==================== */
.ed-cta-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 12px;
}

/* ==================== FOOTER ==================== */
.ed-footer {
  background: #fff;
  border-top: 1px solid var(--ed-line);
  padding: 72px 0 40px;
}
.ed-footer__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 24px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}
.ed-footer__logo {
  width: 72px; height: 72px;
  border-radius: 50%;
  object-fit: cover;
}
.ed-footer__socials {
  display: flex;
  gap: 20px;
}
.ed-footer__socials a {
  color: var(--ed-muted);
  transition: color .3s, transform .3s;
  display: inline-flex;
}
.ed-footer__socials a:hover { color: var(--ed-accent); transform: translateY(-2px); }
.ed-footer__rule {
  width: 100%;
  max-width: 360px;
  border: 0;
  border-top: 1px solid var(--ed-line);
  margin: 8px 0;
}
.ed-footer__address {
  font-family: var(--ed-sans-tc);
  font-weight: 300;
  font-size: 12.5px;
  color: var(--ed-body);
  line-height: 2;
}
.ed-footer__map {
  width: 100%;
  max-width: 560px;
  margin: 8px 0;
}
.ed-footer__nav {
  display: flex;
  gap: 20px 24px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 8px 0;
}
.ed-footer__nav a {
  font-family: var(--ed-sans-tc);
  font-size: 12.5px;
  color: var(--ed-ink);
  text-decoration: none;
  white-space: nowrap;
  transition: color .3s;
}
.ed-footer__nav a:hover { color: var(--ed-accent); }
.ed-footer__copy {
  font-family: var(--ed-serif-en);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--ed-muted);
  margin-top: 8px;
}

/* Floating WhatsApp */
.ed-fab {
  position: fixed;
  bottom: 20px; right: 20px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  background: #25d366;
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-family: var(--ed-sans-tc);
  font-size: 13px;
  font-weight: 500;
  box-shadow: 0 12px 28px rgba(0,0,0,0.18);
  white-space: nowrap;
  line-height: 1;
  transition: transform .3s;
}
.ed-fab:hover { transform: translateY(-2px); }

@media (max-width: 520px) {
  .ed-fab span { display: none; }
  .ed-fab { padding: 14px; }
}

/* ==================== SUB-PAGE PLACEHOLDER ==================== */
.ed-section--pagehero {
  padding-top: 100px;
  padding-bottom: 40px;
}
.ed-h1 {
  font-family: var(--ed-sans-tc);
  font-weight: 300;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.2;
  color: var(--ed-ink);
  margin: 18px 0 8px;
  letter-spacing: 0.02em;
}
.ed-body {
  font-family: var(--ed-sans-tc);
  font-weight: 300;
  font-size: 15px;
  color: var(--ed-body);
  line-height: 1.8;
}
.ed-comingsoon {
  margin-top: 48px;
  padding: 48px 32px;
  background: var(--ed-band);
  border-radius: 4px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.ed-comingsoon .ed-h3 { margin: 0; }

/* ==================== TREATMENT & PLANS PAGE ==================== */
.ed-pill {
  display: inline-block;
  padding: 8px 22px;
  background: var(--ed-band);
  border: 1px solid var(--ed-line);
  border-radius: 999px;
  font-family: var(--ed-sans-tc);
  font-weight: 500;
  font-size: 13px;
  color: var(--ed-ink);
  letter-spacing: 0.05em;
}

/* ---- STEP block (enlarged for clarity) ---- */
.ed-step {
  padding: 72px 56px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid var(--ed-line);
  box-shadow: 0 20px 60px -30px rgba(47,102,49,0.15);
}
.ed-step .ed-h2 {
  font-size: clamp(30px, 4.2vw, 46px);
  line-height: 1.35;
  letter-spacing: 0.02em;
  margin-top: 8px;
}
.ed-step .ed-lead-body {
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.95;
  margin-top: 20px;
}
.ed-step__badge {
  display: inline-block;
  padding: 14px 32px;
  background: var(--ed-accent);
  color: #fff;
  font-family: var(--ed-serif-en);
  font-size: 22px;
  letter-spacing: 0.3em;
  border-radius: 999px;
  margin-bottom: 24px;
  font-weight: 500;
  line-height: 1;
}
.ed-step__badge--light {
  background: rgba(255,255,255,0.18);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.35);
}
.ed-step__body {
  margin-top: 32px;
}
.ed-step__meta {
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--ed-line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.ed-step__meta--dark {
  border-top-color: rgba(255,255,255,0.22);
}
.ed-step__meta-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ed-step__meta-item em {
  font-family: var(--ed-serif-en);
  font-style: italic;
  font-size: 16px;
  letter-spacing: 0.25em;
  color: var(--ed-muted);
  text-transform: uppercase;
}
.ed-step__meta-item strong {
  font-family: var(--ed-sans-tc);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.55;
  color: var(--ed-ink);
}
/* Step--dark now becomes SAGE PALE card (matches UltiGrow plan). Overrides below. */
.ed-step--dark .ed-step__meta-item strong { color: #2F6631; }
.ed-step--dark .ed-step__meta-item em { color: rgba(47,102,49,0.6); }

.ed-sep {
  color: var(--ed-accent);
  margin: 0 8px;
  font-weight: 300;
}
/* --light modifiers are used ONLY on cards that are dark (e.g. founder CH04/final).
   For sage-pale step/plan cards, we override .ed-step--dark/.ed-plan--dark scoped rules. */
.ed-h2--light { color: #fff; }
.ed-lead-body--light { color: rgba(255,255,255,0.85); }
.ed-lead-body--light strong { color: #fff; }
.ed-sub-en--light em { color: rgba(255,255,255,0.6); }

/* When --light text sits inside a sage-pale card (step--dark or plan--dark), flip to deep-green */
.ed-step--dark .ed-h2--light,
.ed-step--dark .ed-lead-body--light,
.ed-step--dark .ed-lead-body--light strong { color: #2F6631; }
.ed-step--dark .ed-sub-en--light em { color: rgba(47,102,49,0.65); }

/* Deep-green section (still used by founder CH04 $2M + final message) */
.ed-section--dark {
  background: #2F6631;
  position: relative;
}
.ed-section--dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(141,205,156,0.18), transparent 55%),
              radial-gradient(circle at 80% 80%, rgba(111,170,2,0.15), transparent 60%);
  pointer-events: none;
}
.ed-section--dark > * { position: relative; z-index: 1; }

/* Pale section — cream/white outer frame for pages that hold sage-pale cards */
.ed-section--pale {
  background: var(--ed-cream);
  position: relative;
}

/* Pale card section — full-bleed sage-pale section (used on founder CH04 + final message) */
.ed-section--pale-card {
  background: linear-gradient(160deg, #EDF1E4 0%, #DDE6CE 55%, #CBD9BA 100%);
  position: relative;
  overflow: hidden;
}
.ed-section--pale-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(255,255,255,0.5), transparent 60%),
              radial-gradient(circle at 85% 85%, rgba(141,205,156,0.18), transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.ed-section--pale-card > * { position: relative; z-index: 1; }

/* Text/element overrides inside pale-card section (flip white → deep-green) */
.ed-section--pale-card .ed-eyebrow,
.ed-section--pale-card .ed-eyebrow--light,
.ed-section--pale-card .ed-chapter__num,
.ed-section--pale-card .ed-chapter__title,
.ed-section--pale-card .ed-narrative,
.ed-section--pale-card .ed-narrative strong,
.ed-section--pale-card .ed-narrative em,
.ed-section--pale-card .ed-h2,
.ed-section--pale-card .ed-h2--light,
.ed-section--pale-card .ed-bigfigure,
.ed-section--pale-card .ed-bigfigure__num,
.ed-section--pale-card .ed-bigfigure__cap,
.ed-section--pale-card .ed-bigfigure__label,
.ed-section--pale-card .ed-signoff,
.ed-section--pale-card .ed-signoff strong,
.ed-section--pale-card p,
.ed-section--pale-card h1,
.ed-section--pale-card h2,
.ed-section--pale-card h3 { color: #2F6631; }

.ed-section--pale-card .ed-underline-block { color: #2F6631; text-decoration-color: rgba(47,102,49,0.4); background: transparent; border-left-color: rgba(47,102,49,0.5); }
.ed-section--pale-card hr,
.ed-section--pale-card .ed-hero__divider { border-color: rgba(47,102,49,0.3); background: rgba(47,102,49,0.3); height: 1px; }
.ed-section--pale-card .ed-chapter__meta { background: transparent; color: #2F6631; border-bottom: 1px solid rgba(47,102,49,0.2); padding-bottom: 8px; }
.ed-section--pale-card .ed-chapter__meta--dark .ed-chapter__title,
.ed-section--pale-card .ed-chapter__meta .ed-chapter__title { color: #2F6631; }
.ed-section--pale-card .ed-bigfigure__prefix,
.ed-section--pale-card .ed-bigfigure__suffix { color: rgba(47,102,49,0.7); }
.ed-section--pale-card .ed-bigfigure__num { color: #2F6631; }
.ed-section--pale-card .ed-lead-body,
.ed-section--pale-card .ed-lead-body--light,
.ed-section--pale-card .ed-lead-body--light strong,
.ed-section--pale-card .ed-lead-body strong { color: #2F6631; }
.ed-section--pale-card .ed-signoff em { color: #2F6631; }
.ed-section--pale-card .ed-signoff span { color: rgba(47,102,49,0.65); }

/* Step card now SAGE PALE (matches UltiGrow plan card) */
.ed-step--dark {
  background: linear-gradient(160deg, #EDF1E4 0%, #DDE6CE 55%, #CBD9BA 100%);
  border: 1px solid rgba(47,102,49,0.15);
  box-shadow: 0 20px 50px -20px rgba(47,102,49,0.18);
  position: relative;
  overflow: hidden;
}
.ed-step--dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(255,255,255,0.5), transparent 60%),
              radial-gradient(circle at 85% 85%, rgba(141,205,156,0.18), transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.ed-step--dark > * { position: relative; z-index: 1; }
.ed-step--dark .ed-step__badge--light {
  background: rgba(255,255,255,0.7);
  border-color: rgba(47,102,49,0.2);
  color: #2F6631;
}
.ed-step--dark .ed-step__meta-item strong {
  font-size: 20px;
  line-height: 1.55;
  color: #2F6631;
}
.ed-step--dark .ed-step__meta-item em {
  font-size: 16px;
  letter-spacing: 0.22em;
  color: rgba(47,102,49,0.6);
}

/* ---- Summary line ---- */
.ed-summary {
  padding: 24px 32px;
  background: var(--ed-band);
  border-radius: 999px;
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  max-width: 100%;
}
.ed-summary em {
  font-family: var(--ed-serif-en);
  font-style: italic;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--ed-muted);
}
.ed-summary strong {
  font-family: var(--ed-sans-tc);
  font-weight: 500;
  font-size: 14px;
  color: var(--ed-accent);
  letter-spacing: 0.05em;
}

/* ---- Checklist ---- */
.ed-checklist {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: grid;
  gap: 14px;
}
.ed-checklist li {
  position: relative;
  padding: 14px 20px 14px 44px;
  background: #fff;
  border: 1px solid var(--ed-line);
  border-radius: 4px;
  font-family: var(--ed-sans-tc);
  font-weight: 400;
  font-size: 14.5px;
  color: var(--ed-ink);
  line-height: 1.6;
}
.ed-checklist li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--ed-accent);
  box-shadow: inset 0 0 0 3px #fff;
}

/* ==================== PLANS ==================== */
.ed-plan {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  padding: 40px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid var(--ed-line);
  align-items: start;
}
.ed-plan--dark {
  background: linear-gradient(160deg, #EDF1E4 0%, #DDE6CE 55%, #CBD9BA 100%);
  border-color: rgba(47,102,49,0.15);
  position: relative;
  overflow: hidden;
}
.ed-plan--dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(255,255,255,0.5), transparent 60%),
              radial-gradient(circle at 85% 85%, rgba(141,205,156,0.18), transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.ed-plan--dark > * { position: relative; z-index: 1; }
.ed-plan__side {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  padding: 24px 12px;
  background: var(--ed-band);
  border-radius: 8px;
}
.ed-plan--dark .ed-plan__side {
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(47,102,49,0.15);
}
.ed-plan__mascot {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--ed-accent);
  border: 1px solid var(--ed-line);
}
.ed-plan--dark .ed-plan__mascot { background: #fff; }
.ed-plan__mascot--star { color: #8DCD9C; }
.ed-plan__mascot--pro { color: #6FAA02; }
.ed-plan__mascot--ulti { color: #2F6631; }
.ed-plan__level {
  padding: 6px 18px;
  background: #fff;
  border: 1px solid var(--ed-line);
  border-radius: 999px;
  font-family: var(--ed-sans-tc);
  font-size: 12px;
  font-weight: 500;
  color: var(--ed-ink);
}
.ed-plan__level--light {
  background: rgba(255,255,255,0.7);
  border-color: rgba(47,102,49,0.2);
  color: #2F6631;
}

.ed-plan__body { min-width: 0; }
.ed-plan__head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.ed-plan__name {
  font-family: var(--ed-sans-tc);
  font-weight: 500;
  font-size: 30px;
  color: var(--ed-ink);
  margin: 0;
  letter-spacing: 0.02em;
}
.ed-plan__name em {
  font-family: var(--ed-serif-en);
  font-style: italic;
  color: var(--ed-accent);
  font-weight: 500;
  margin-left: 8px;
}
.ed-plan__name--light { color: #2F6631; }
.ed-plan__name--light em { color: #6FAA02; }
.ed-plan__discount {
  padding: 4px 14px;
  background: var(--ed-band);
  color: var(--ed-accent);
  font-family: var(--ed-sans-tc);
  font-size: 12px;
  font-weight: 500;
  border-radius: 999px;
  white-space: nowrap;
}
.ed-plan__discount--light {
  background: rgba(255,255,255,0.7);
  color: #2F6631;
}
.ed-plan__price {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.ed-plan__price-label {
  font-family: var(--ed-sans-tc);
  font-size: 13px;
  color: var(--ed-muted);
}
.ed-plan__price-label--light { color: rgba(47,102,49,0.7); }
.ed-plan__price-num {
  font-family: var(--ed-serif-en);
  font-size: 42px;
  font-weight: 500;
  color: var(--ed-ink);
  line-height: 1;
  letter-spacing: 0.02em;
}
.ed-plan__price-num--light { color: #2F6631; }
.ed-rule--light { border-color: rgba(47,102,49,0.18); }

.ed-plan__row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--ed-line);
  font-family: var(--ed-sans-tc);
  font-size: 14px;
  line-height: 1.7;
  color: var(--ed-body);
}
.ed-plan__row--light { border-bottom-color: rgba(47,102,49,0.15); color: #3d5a3f; }
.ed-plan__row-label {
  font-family: var(--ed-serif-en);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--ed-muted);
  text-transform: uppercase;
  padding-top: 3px;
}
.ed-plan__row--light .ed-plan__row-label { color: rgba(47,102,49,0.6); }
.ed-plan__row-value strong { color: var(--ed-ink); font-weight: 500; }
.ed-plan__row--light .ed-plan__row-value strong { color: #2F6631; }

.ed-plan__feel {
  margin-top: 20px;
  padding: 18px 22px;
  background: var(--ed-band);
  border-radius: 4px;
}
.ed-plan__feel--light {
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(47,102,49,0.1);
}
.ed-plan__feel p {
  margin: 6px 0 0;
  font-family: var(--ed-sans-tc);
  font-size: 14px;
  color: var(--ed-ink);
  line-height: 1.7;
}
.ed-plan__feel--light p { color: #2F6631; }
.ed-eyebrow--light { color: #2F6631 !important; }

.ed-plan__cta {
  margin-top: 24px;
}

.ed-btn--light {
  background: #2F6631;
  color: #fff;
  font-family: var(--ed-sans-tc);
  font-weight: 500;
  font-size: 14px;
  padding: 14px 32px;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
  transition: all .3s;
  line-height: 1;
}
.ed-btn--light:hover { background: #1e4423; color: #fff; }

/* ---- Compare table ---- */
.ed-comptable {
  margin-top: 24px;
  border-top: 1px solid var(--ed-ink);
}
.ed-comptable__row {
  display: grid;
  grid-template-columns: 130px repeat(3, 1fr);
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--ed-line);
  font-family: var(--ed-sans-tc);
  font-size: 13.5px;
  color: var(--ed-body);
  align-items: center;
}
.ed-comptable__row--head {
  background: var(--ed-ink);
  color: #fff;
  padding: 14px 20px;
  margin: 0 -20px;
  font-family: var(--ed-serif-en);
  letter-spacing: 0.1em;
  font-size: 12px;
  text-transform: uppercase;
}
.ed-comptable__label {
  font-family: var(--ed-serif-en);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--ed-muted);
  text-transform: uppercase;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .ed-step { padding: 44px 28px; }
  .ed-step .ed-h2 { font-size: 26px; line-height: 1.4; }
  .ed-step .ed-lead-body { font-size: 16px; line-height: 1.85; }
  .ed-step__meta { grid-template-columns: 1fr; gap: 24px; margin-top: 32px; padding-top: 28px; }
  .ed-step__meta-item em { font-size: 13px; }
  .ed-step__meta-item strong { font-size: 17px; line-height: 1.5; }
  .ed-step__badge { font-size: 19px; padding: 12px 26px; letter-spacing: 0.28em; }
  .ed-plan { grid-template-columns: 1fr; gap: 20px; padding: 28px 20px; }
  .ed-plan__side { flex-direction: row; padding: 14px 20px; }
  .ed-plan__name { font-size: 24px; }
  .ed-plan__price-num { font-size: 34px; }
  .ed-plan__row { grid-template-columns: 1fr; gap: 4px; }
  .ed-comptable__row { grid-template-columns: 1fr; gap: 6px; padding: 20px 0; }
  .ed-comptable__row--head { display: none; }
  .ed-comptable__row span:not(.ed-comptable__label) { padding-left: 12px; }
  .ed-comptable__row span:not(.ed-comptable__label)::before {
    content: attr(data-label);
    display: block;
    font-size: 10px;
    color: var(--ed-muted);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 2px;
  }
}


/* ==================== FOUNDER STORY PAGE ==================== */

/* ---- Portrait + pull quote hero ---- */
.ed-founder-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.ed-founder-hero__img {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(47,102,49,0.25);
}
.ed-founder-hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ed-founder-hero__cap {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  padding: 14px 22px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ed-founder-hero__cap span {
  font-family: var(--ed-serif-en);
  font-weight: 500;
  letter-spacing: 0.2em;
  font-size: 12px;
  color: var(--ed-ink);
}
.ed-founder-hero__cap em {
  font-family: var(--ed-serif-en);
  font-style: italic;
  font-size: 11px;
  color: var(--ed-muted);
}

.ed-founder-hero__quote {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ---- Pull quote ---- */
.ed-pullquote {
  position: relative;
  margin: 0;
  padding: 30px 0 30px 40px;
  font-family: var(--ed-sans-tc);
  font-weight: 300;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.55;
  color: var(--ed-ink);
  letter-spacing: 0.02em;
}
.ed-pullquote em {
  font-style: normal;
  font-family: var(--ed-sans-tc);
  font-weight: 400;
  color: var(--ed-accent);
  display: block;
  margin-top: 20px;
  font-size: 0.85em;
}
.ed-pullquote__mark {
  position: absolute;
  top: -10px;
  left: 0;
  font-family: var(--ed-serif-en);
  font-size: 100px;
  color: var(--ed-accent);
  line-height: 1;
  opacity: 0.4;
}

/* ---- Chapter blocks ---- */
.ed-chapter {
  padding: 20px 0;
}
.ed-chapter__meta {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--ed-line);
}
.ed-chapter__meta--dark {
  border-bottom-color: rgba(255,255,255,0.2);
}
.ed-chapter__num {
  font-family: var(--ed-serif-en);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--ed-accent);
  font-weight: 500;
  text-transform: uppercase;
}
.ed-chapter__meta--dark .ed-chapter__num {
  color: #8DCD9C;
}
.ed-chapter__title {
  font-family: var(--ed-sans-tc);
  font-weight: 400;
  font-size: 15px;
  color: var(--ed-muted);
  letter-spacing: 0.05em;
}
.ed-chapter__meta--dark .ed-chapter__title {
  color: rgba(255,255,255,0.7);
}

/* ---- Narrative paragraphs ---- */
.ed-narrative {
  font-family: var(--ed-sans-tc);
  font-weight: 300;
  font-size: clamp(17px, 1.9vw, 21px);
  line-height: 1.9;
  color: var(--ed-ink);
  margin: 24px 0;
  letter-spacing: 0.02em;
}
.ed-narrative strong {
  font-weight: 500;
  color: var(--ed-accent);
  border-bottom: 1px solid rgba(47,102,49,0.3);
  padding-bottom: 1px;
}
.ed-narrative em {
  font-style: normal;
  color: var(--ed-muted);
  font-weight: 400;
}
.ed-narrative--muted {
  color: var(--ed-muted);
}
.ed-narrative--light {
  color: rgba(255,255,255,0.9);
}
.ed-narrative--light strong {
  color: #8DCD9C;
  border-bottom-color: rgba(141,205,156,0.4);
}
.ed-narrative--emphasis strong {
  font-size: 1.08em;
  color: var(--ed-ink);
  border-bottom-color: var(--ed-accent);
  border-bottom-width: 2px;
}

/* ---- Stats row ---- */
.ed-stats {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ed-stat {
  padding: 24px 20px;
  background: #fff;
  border: 1px solid var(--ed-line);
  border-radius: 6px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ed-stat__num {
  font-family: var(--ed-serif-en);
  font-size: 32px;
  font-weight: 500;
  color: var(--ed-accent);
  letter-spacing: 0.02em;
  line-height: 1;
}
.ed-stat__label {
  font-family: var(--ed-sans-tc);
  font-size: 12px;
  color: var(--ed-muted);
  letter-spacing: 0.05em;
}

/* ---- Big figure (chapter 04) ---- */
.ed-bigfigure {
  margin: 40px 0;
  padding: 36px 24px;
  background: rgba(141,205,156,0.08);
  border: 1px solid rgba(141,205,156,0.2);
  border-radius: 6px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ed-bigfigure__prefix,
.ed-bigfigure__suffix {
  font-family: var(--ed-serif-en);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
}
.ed-bigfigure__num {
  font-family: var(--ed-serif-en);
  font-size: clamp(38px, 6vw, 60px);
  font-weight: 500;
  color: #8DCD9C;
  letter-spacing: 0.02em;
  line-height: 1;
}

/* ---- Split card (male / female) ---- */
.ed-splitcard {
  margin: 40px 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  padding: 32px;
  background: #fff;
  border: 1px solid var(--ed-line);
  border-radius: 6px;
  align-items: center;
}
.ed-splitcard__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ed-splitcard__col p {
  font-family: var(--ed-sans-tc);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.8;
  color: var(--ed-ink);
  margin: 0;
}
.ed-splitcard__col p strong {
  font-weight: 500;
  color: var(--ed-accent);
}
.ed-splitcard__divider {
  width: 1px;
  height: 80px;
  background: var(--ed-line);
}

/* ---- Callout ---- */
.ed-callout {
  margin-top: 32px;
  padding: 28px 30px;
  background: #2F6631;
  border-radius: 6px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid rgba(141,205,156,0.3);
}
.ed-callout .ed-eyebrow {
  color: #8DCD9C !important;
}
.ed-callout p {
  font-family: var(--ed-sans-tc);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
  margin: 0;
  color: rgba(255,255,255,0.9);
}
.ed-callout p strong {
  font-family: var(--ed-serif-en);
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.02em;
  display: inline-block;
  margin: 4px 0;
}

/* ---- Underline block ---- */
.ed-underline-block {
  margin-top: 32px;
  padding: 24px 28px;
  border-left: 2px solid var(--ed-accent);
  background: var(--ed-cream);
}
.ed-underline-block .ed-narrative {
  margin: 12px 0;
}

/* ---- Step list inside founder story ---- */
.ed-steplist {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--ed-line);
}
.ed-steplist__item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--ed-line);
}
.ed-steplist__item:last-child { border-bottom: 0; }
.ed-steplist__num {
  font-family: var(--ed-serif-en);
  font-size: 32px;
  font-weight: 400;
  color: var(--ed-accent);
  letter-spacing: 0.02em;
  line-height: 1;
}
.ed-steplist__text strong {
  display: block;
  font-family: var(--ed-sans-tc);
  font-weight: 500;
  font-size: 16px;
  color: var(--ed-ink);
  margin-bottom: 6px;
}
.ed-steplist__text p {
  font-family: var(--ed-sans-tc);
  font-weight: 300;
  font-size: 14px;
  color: var(--ed-body);
  line-height: 1.7;
  margin: 0;
}

/* ---- Sign-off ---- */
.ed-signoff {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}
.ed-signoff em {
  font-family: var(--ed-serif-en);
  font-style: italic;
  font-size: 22px;
  color: #fff;
  letter-spacing: 0.02em;
}
.ed-signoff span {
  font-family: var(--ed-serif-en);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .ed-founder-hero { grid-template-columns: 1fr; gap: 32px; }
  .ed-stats { grid-template-columns: 1fr; gap: 12px; }
  .ed-splitcard { grid-template-columns: 1fr; gap: 24px; padding: 24px; }
  .ed-splitcard__divider { width: 100%; height: 1px; }
  .ed-pullquote { padding: 24px 0 24px 32px; }
  .ed-pullquote__mark { font-size: 72px; }
  .ed-steplist__item { grid-template-columns: 44px 1fr; gap: 14px; }
  .ed-steplist__num { font-size: 24px; }
  .ed-narrative { font-size: 16px; line-height: 1.85; }
}


/* ==================== VIDEO SHOWCASE ==================== */
.ed-video-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.ed-video-showcase__text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ed-video-showcase__text .ed-h2 {
  margin-top: 12px;
}
.ed-video-showcase__text .ed-lead-body {
  margin-top: 24px;
}
.ed-video-showcase__video {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(47,102,49,0.25);
  background: var(--ed-ink);
}
.ed-video-player {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
  background: #000;
}
.ed-video-cap {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  padding: 12px 18px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  pointer-events: none;
}
.ed-video-cap span {
  font-family: var(--ed-serif-en);
  font-weight: 500;
  letter-spacing: 0.25em;
  font-size: 11px;
  color: var(--ed-accent);
}
.ed-video-cap em {
  font-family: var(--ed-serif-en);
  font-style: italic;
  font-size: 11px;
  color: var(--ed-muted);
}

@media (max-width: 900px) {
  .ed-video-showcase { grid-template-columns: 1fr; gap: 32px; }
  .ed-video-cap { left: 14px; bottom: 14px; padding: 10px 14px; }
}

/* ==================== ENV GALLERY ==================== */
.env-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 14px;
}
.env-grid__item {
  overflow: hidden;
  background: #f4f4f4;
  border-radius: 4px;
  cursor: zoom-in;
  position: relative;
}
.env-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.env-grid__item:hover img {
  transform: scale(1.04);
}
.env-grid__item--tall {
  grid-row: span 2;
}
.env-grid__item--wide {
  grid-column: span 2;
}
@media (max-width: 900px) {
  .env-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; gap: 10px; }
  .env-grid__item--tall { grid-row: span 2; }
  .env-grid__item--wide { grid-column: span 2; }
}
@media (max-width: 520px) {
  .env-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .env-grid__item { aspect-ratio: 1 / 1; }
  .env-grid__item--tall,
  .env-grid__item--wide { grid-row: auto; grid-column: auto; }
}

/* Lightbox */
.env-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 25, 15, 0.92);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px 60px;
}
.env-lightbox.is-open {
  display: flex;
}
.env-lightbox__img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 4px;
}
.env-lightbox__close,
.env-lightbox__prev,
.env-lightbox__next {
  position: absolute;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: 26px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.env-lightbox__close:hover,
.env-lightbox__prev:hover,
.env-lightbox__next:hover {
  background: rgba(255,255,255,0.25);
}
.env-lightbox__close { top: 20px; right: 20px; }
.env-lightbox__prev { left: 20px; top: 50%; transform: translateY(-50%) rotate(180deg); }
.env-lightbox__next { right: 20px; top: 50%; transform: translateY(-50%); }
@media (max-width: 600px) {
  .env-lightbox { padding: 20px 12px; }
  .env-lightbox__close { top: 12px; right: 12px; width: 40px; height: 40px; font-size: 22px; }
  .env-lightbox__prev, .env-lightbox__next { width: 40px; height: 40px; font-size: 22px; }
}

/* ==================== ABOUT PAGE ==================== */
/* Reduce hero → content gap (match distance below divider) */
.ed-section--pagehero + .ed-section {
  padding-top: 24px;
}
.about-hero-tight .ed-lead-body {
  margin-top: 20px;
}

/* IG-style carousel */
.ig-carousel {
  position: relative;
  max-width: 720px;
  margin: 48px auto 0;
  background: #fff;
  border: 1px solid var(--ed-line);
  border-radius: 8px;
  overflow: hidden;
}
.ig-carousel__track-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}
.ig-carousel__track {
  display: flex;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.ig-carousel__slide {
  flex: 0 0 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f4f4f4;
}
.ig-carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ig-carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  border: none;
  color: #2F6631;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  z-index: 2;
  transition: background 0.2s;
}
.ig-carousel__arrow:hover { background: #fff; }
.ig-carousel__arrow--prev { left: 12px; transform: translateY(-50%) rotate(180deg); }
.ig-carousel__arrow--next { right: 12px; }
.ig-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 14px 0;
  background: #fff;
}
.ig-carousel__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d4d4d4;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.ig-carousel__dot.is-active {
  background: #2F6631;
  transform: scale(1.3);
}
.ig-carousel__counter {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(15,25,15,0.7);
  color: #fff;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-family: var(--ed-serif-en);
  letter-spacing: 0.05em;
  z-index: 2;
}

/* Brand statement blocks */
.brand-blocks {
  display: grid;
  gap: 48px;
  max-width: 720px;
  margin: 80px auto 0;
}
.brand-block {
  text-align: center;
}
.brand-block__eyebrow {
  font-family: var(--ed-serif-en);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.35em;
  color: #2F6631;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.brand-block__title {
  font-family: var(--ed-sans-tc);
  font-weight: 300;
  font-size: 26px;
  line-height: 1.55;
  color: var(--ed-ink);
  margin: 0 0 18px;
}
.brand-block__title strong {
  font-weight: 500;
  color: #2F6631;
}
.brand-block__body {
  font-family: var(--ed-sans-tc);
  font-weight: 300;
  font-size: 15px;
  line-height: 2;
  color: var(--ed-body);
}
.brand-block__divider {
  width: 40px;
  height: 1px;
  background: #2F6631;
  margin: 0 auto 24px;
}
@media (max-width: 600px) {
  .brand-block__title { font-size: 22px; }
  .brand-block__body { font-size: 14px; }
}

/* IG reel video */
.ig-reel {
  max-width: 380px;
  margin: 72px auto 0;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 9 / 16;
  border: 1px solid var(--ed-line);
}
.ig-reel video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ==================== PROMISES ==================== */
.promises-list {
  display: grid;
  gap: 0;
  max-width: 780px;
  margin: 0 auto;
}
.promise {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--ed-line);
  align-items: start;
}
.promise:last-child { border-bottom: none; }
.promise__num {
  font-family: var(--ed-serif-en);
  font-style: italic;
  font-weight: 300;
  font-size: 48px;
  color: #2F6631;
  line-height: 1;
}
.promise__eyebrow {
  font-family: var(--ed-serif-en);
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.35em;
  color: #2F6631;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.promise__title {
  font-family: var(--ed-sans-tc);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.5;
  color: var(--ed-ink);
  margin: 0 0 12px;
}
.promise__desc {
  font-family: var(--ed-sans-tc);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.85;
  color: var(--ed-body);
  margin: 0;
}
@media (max-width: 600px) {
  .promise { grid-template-columns: 64px 1fr; gap: 20px; padding: 32px 0; }
  .promise__num { font-size: 36px; }
  .promise__title { font-size: 19px; }
  .promise__desc { font-size: 14px; }
}

/* ============================================
   ENVIRONMENT · FIVE SENSES EXPERIENCE
   ============================================ */
.env-senses {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 40px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 960px) {
  .env-senses { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}
.env-sense {
  position: relative;
  padding: 32px 28px 28px;
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(47,102,49,0.12);
  border-radius: 3px;
  transition: box-shadow .35s ease, transform .35s ease;
}
.env-sense:hover {
  box-shadow: 0 18px 42px -22px rgba(47,102,49,0.25);
  transform: translateY(-2px);
}
.env-sense__num {
  font-family: var(--ed-serif-en);
  font-style: italic;
  font-weight: 400;
  font-size: 42px;
  line-height: 1;
  color: #2F6631;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
.env-sense__eyebrow {
  font-family: var(--ed-serif-en);
  font-style: italic;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: #6b7f66;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.env-sense__title {
  font-family: var(--ed-sans-tc);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  color: #1a1a1a;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
.env-sense__desc {
  font-family: var(--ed-sans-tc);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.85;
  color: #4a4a4a;
  letter-spacing: 0.02em;
}
@media (max-width: 720px) {
  .env-senses { grid-template-columns: 1fr; gap: 28px; }
  .env-sense { padding: 26px 22px 24px; }
  .env-sense__num { font-size: 36px; }
  .env-sense__title { font-size: 18px; }
  .env-sense__desc { font-size: 14px; line-height: 1.8; }
}

/* ============================================
   CAUSES · MEN vs WOMEN
   ============================================ */
.causes-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}
.causes-compare__col {
  padding: 36px 32px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(47,102,49,0.14);
  border-radius: 3px;
}
.causes-compare__eyebrow {
  font-family: var(--ed-serif-en);
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: #6b7f66;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.causes-compare__title {
  font-family: var(--ed-sans-tc);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.5;
  color: #1a1a1a;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.causes-compare__lead {
  font-family: var(--ed-sans-tc);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.9;
  color: #4a4a4a;
  letter-spacing: 0.02em;
}
@media (max-width: 720px) {
  .causes-compare { grid-template-columns: 1fr; gap: 24px; }
  .causes-compare__col { padding: 28px 24px; }
  .causes-compare__title { font-size: 19px; }
  .causes-compare__lead { font-size: 14px; }
}

.causes-diff {
  max-width: 1000px;
  margin: 0 auto;
}
.causes-diff__row {
  display: grid;
  grid-template-columns: 90px 1fr 1fr;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid rgba(47,102,49,0.12);
  align-items: start;
}
.causes-diff__row:last-child { border-bottom: none; }
.causes-diff__num {
  font-family: var(--ed-serif-en);
  font-style: italic;
  font-weight: 400;
  font-size: 44px;
  line-height: 1;
  color: #2F6631;
  grid-row: span 1;
}
.causes-diff__title {
  font-family: var(--ed-sans-tc);
  font-weight: 400;
  font-size: 22px;
  color: #1a1a1a;
  padding-top: 8px;
  letter-spacing: 0.04em;
  grid-column: 2 / span 2;
  margin-bottom: 4px;
}
.causes-diff__men,
.causes-diff__women {
  padding-top: 4px;
  grid-column: auto;
}
.causes-diff__men { grid-column: 2; }
.causes-diff__women { grid-column: 3; }
.causes-diff__label {
  font-family: var(--ed-serif-en);
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.16em;
  color: #6b7f66;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.causes-diff__men p,
.causes-diff__women p {
  font-family: var(--ed-sans-tc);
  font-weight: 300;
  font-size: 14.5px;
  line-height: 1.9;
  color: #4a4a4a;
  letter-spacing: 0.02em;
  margin: 0;
}
@media (max-width: 720px) {
  .causes-diff__row {
    grid-template-columns: 60px 1fr;
    gap: 16px 20px;
    padding: 32px 0;
  }
  .causes-diff__num { font-size: 34px; }
  .causes-diff__title { grid-column: 2; font-size: 19px; }
  .causes-diff__men,
  .causes-diff__women {
    grid-column: 1 / -1;
    padding-left: 60px;
    padding-top: 4px;
  }
  .causes-diff__men p,
  .causes-diff__women p { font-size: 13.5px; }
}

/* ============================================
   BOOKING SUCCESS CTA ROW + RESET BUTTON
   ============================================ */
.success-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.75rem;
}
.btn-reset {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: #2F6631;
  border: 1.5px solid #2F6631;
  border-radius: 999px;
  font-family: var(--ed-sans-tc);
  font-size: 15px;
  font-weight: 400;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}
.btn-reset:hover {
  background: #2F6631;
  color: #fff;
}

/* ============================================
   BOOKING ASIDE LEAD (5 PROMISES SUBTITLE)
   ============================================ */
.booking-aside__lead {
  font-family: var(--ed-sans-tc);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.8;
  color: #2F6631;
  letter-spacing: 0.02em;
  margin: 12px 0 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(47, 102, 49, 0.14);
}
.booking-aside__lead span {
  display: inline-block;
  font-size: 13px;
  color: #6b7f66;
  margin-top: 4px;
  font-weight: 300;
}

/* ============================================
   CASES PAGE — HORIZONTAL CAROUSEL + REELS GRID
   ============================================ */
.cases-carousel-section {
  padding: 32px 0 64px;
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FBF3 100%);
}
.cases-carousel-head {
  max-width: 1240px;
  margin: 0 auto 24px;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.cases-carousel-arrows {
  display: flex;
  gap: 10px;
}
.cases-arrow {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(47, 102, 49, 0.25);
  background: #fff;
  color: #2F6631;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.cases-arrow:hover {
  background: #2F6631;
  color: #fff;
  border-color: #2F6631;
}
.cases-carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 40px 32px;
  scrollbar-width: thin;
  scrollbar-color: rgba(47, 102, 49, 0.3) transparent;
  -webkit-overflow-scrolling: touch;
}
.cases-carousel::-webkit-scrollbar {
  height: 6px;
}
.cases-carousel::-webkit-scrollbar-track {
  background: transparent;
}
.cases-carousel::-webkit-scrollbar-thumb {
  background: rgba(47, 102, 49, 0.25);
  border-radius: 4px;
}
.case-card {
  flex: 0 0 320px;
  aspect-ratio: 4 / 5;
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #E0EDD1;
  scroll-snap-align: start;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 8px 32px rgba(47, 102, 49, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.case-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(47, 102, 49, 0.18);
}
.case-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.case-card__overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 18px 20px 16px;
  background: linear-gradient(180deg, transparent 0%, rgba(30, 60, 32, 0.9) 100%);
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--ed-sans-tc);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.04em;
}
.case-card__cta {
  font-weight: 400;
  color: #E0EDD1;
}
.cases-carousel-hint {
  text-align: center;
  font-family: var(--ed-sans-tc);
  font-size: 13px;
  font-weight: 300;
  color: #8DAA6E;
  letter-spacing: 0.08em;
  padding-top: 8px;
}

/* Reels grid */
.reels-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.reel-card {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 20px;
  background: #1E3C20;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 12px 40px rgba(47, 102, 49, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.reel-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(47, 102, 49, 0.22);
}
.reel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.92;
  transition: opacity 0.3s ease;
}
.reel-card:hover img {
  opacity: 1;
}
.reel-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #2F6631;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  padding-left: 6px;
}
.reel-card__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
  color: #fff;
  font-family: var(--ed-sans-tc);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

@media (max-width: 720px) {
  .cases-carousel-head { padding: 0 20px; }
  .cases-carousel { padding: 8px 20px 32px; gap: 16px; }
  .case-card { flex-basis: 260px; }
  .reels-grid { grid-template-columns: 1fr; gap: 20px; }
  .reel-card__play { width: 56px; height: 56px; }
}

/* ============================================
   AI ANALYSIS PAGE — PREVIEW REEL VIDEO
   ============================================ */
.ai-preview-reel {
  max-width: 360px;
  margin: 32px auto 24px;
  border-radius: 20px;
  overflow: hidden;
  background: #1E3C20;
  box-shadow: 0 16px 48px rgba(47, 102, 49, 0.18);
  aspect-ratio: 9 / 16;
}
.ai-preview-reel video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #1E3C20;
}
@media (max-width: 480px) {
  .ai-preview-reel { max-width: 300px; }
}

/* ============================================
   BLOG (Journal) — Article + Index
   ============================================ */

/* Breadcrumb */
.blog-crumb {
  border-bottom: 1px solid var(--ed-line);
  background: var(--ed-cream);
}
.blog-crumb__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 14px 24px;
  font-family: var(--ed-sans-tc);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--ed-muted);
}
.blog-crumb a {
  color: var(--ed-muted);
  text-decoration: none;
  transition: color .2s;
}
.blog-crumb a:hover { color: var(--ed-accent); }
.blog-crumb__sep { margin: 0 8px; opacity: 0.5; }
.blog-crumb__current { color: var(--ed-ink); }

/* Article shell */
.blog-article { padding: 0 0 24px; }

.blog-article__hero {
  padding: 88px 24px 56px;
  background: var(--ed-cream);
  border-bottom: 1px solid var(--ed-line);
}
.blog-article__title {
  margin: 20px 0 24px;
  line-height: 1.28;
}
.blog-article__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 10px;
  margin-top: 24px;
  font-family: var(--ed-sans-tc);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--ed-muted);
}
.blog-article__meta-item em {
  font-style: normal;
  font-family: var(--ed-serif-en);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-right: 6px;
  opacity: 0.7;
}
.blog-article__meta-dot { opacity: 0.4; }

/* Section variants */
.blog-article__section {
  padding: 56px 24px;
}
.blog-article__section--band { background: var(--ed-band); }
.blog-article__section--pale { background: var(--ed-cream); }
.blog-article__section--dark {
  background: linear-gradient(135deg, #2F6631 0%, #1E3C20 100%);
  color: #f5f6ef;
}
.blog-article__section--dark .blog-h2,
.blog-article__section--dark .blog-body,
.blog-article__section--dark .blog-list li,
.blog-article__section--dark .ed-rule {
  color: inherit;
}
.blog-article__section--dark .ed-eyebrow { color: rgba(255,255,255,0.7); }

/* Typography */
.blog-lede {
  font-family: var(--ed-sans-tc);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--ed-ink);
  margin: 24px 0 20px;
  letter-spacing: 0.02em;
}
.blog-body {
  font-family: var(--ed-sans-tc);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--ed-body);
  margin: 0 0 18px;
  letter-spacing: 0.01em;
}
.blog-body strong {
  font-weight: 500;
  color: var(--ed-ink);
}
.blog-article__section--dark .blog-body { color: rgba(245,246,239,0.92); }
.blog-article__section--dark .blog-body strong { color: #fff; }

.blog-h2 {
  font-family: var(--ed-sans-tc);
  font-size: clamp(24px, 3.4vw, 32px);
  font-weight: 300;
  line-height: 1.35;
  letter-spacing: 0.02em;
  color: var(--ed-ink);
  margin: 12px 0 20px;
}
.blog-article__section--dark .blog-h2 { color: #fff; }

/* Lists */
.blog-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 28px;
}
.blog-list li {
  position: relative;
  padding: 18px 0 18px 24px;
  border-bottom: 1px solid var(--ed-line);
  font-family: var(--ed-sans-tc);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--ed-body);
}
.blog-list li:last-child { border-bottom: none; }
.blog-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 30px;
  width: 8px;
  height: 8px;
  background: var(--ed-accent-light);
  border-radius: 50%;
}
.blog-list li strong {
  display: block;
  color: var(--ed-ink);
  font-weight: 500;
  margin-bottom: 4px;
}
.blog-article__section--dark .blog-list li {
  border-color: rgba(255,255,255,0.14);
  color: rgba(245,246,239,0.92);
}
.blog-article__section--dark .blog-list li strong { color: #fff; }

.blog-list--compact li {
  padding: 12px 0 12px 24px;
}
.blog-list--check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 26px;
  width: 12px;
  height: 8px;
  background: transparent;
  border-radius: 0;
  border-left: 2px solid var(--ed-accent);
  border-bottom: 2px solid var(--ed-accent);
  transform: rotate(-45deg);
}

/* Step blocks in blog */
.blog-step {
  padding: 8px 0;
}
.blog-step__badge {
  display: inline-block;
  padding: 6px 14px;
  background: var(--ed-ink);
  color: #fff;
  font-family: var(--ed-serif-en);
  font-size: 11px;
  letter-spacing: 0.24em;
  border-radius: 999px;
  margin-bottom: 20px;
}
.blog-step__badge--light {
  background: rgba(255,255,255,0.16);
  color: #fff;
}
.blog-step__title {
  font-family: var(--ed-sans-tc);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 300;
  line-height: 1.4;
  color: var(--ed-ink);
  margin: 0 0 6px;
  letter-spacing: 0.02em;
}
.blog-step--light .blog-step__title { color: #fff; }
.blog-step__en {
  font-family: var(--ed-serif-en);
  font-style: italic;
  font-size: 15px;
  color: var(--ed-muted);
  margin-bottom: 24px;
  letter-spacing: 0.06em;
}
.blog-step--light .blog-step__en { color: rgba(255,255,255,0.7); }

/* Related cards */
.blog-related {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.blog-related__card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 28px 24px;
  background: #fff;
  border: 1px solid var(--ed-line);
  border-radius: 4px;
  text-decoration: none;
  color: inherit;
  transition: all .25s ease;
  position: relative;
}
.blog-related__card:hover {
  border-color: var(--ed-accent);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(47,102,49,0.10);
}
.blog-related__eyebrow {
  font-family: var(--ed-serif-en);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ed-accent);
}
.blog-related__title {
  font-family: var(--ed-sans-tc);
  font-size: 17px;
  font-weight: 400;
  color: var(--ed-ink);
  line-height: 1.5;
  margin-top: 4px;
}
.blog-related__desc {
  font-family: var(--ed-sans-tc);
  font-size: 13px;
  font-weight: 300;
  color: var(--ed-muted);
  line-height: 1.7;
  flex: 1;
}
.blog-related__arrow {
  font-size: 20px;
  color: var(--ed-accent);
  margin-top: 8px;
  transition: transform .3s;
}
.blog-related__card:hover .blog-related__arrow { transform: translateX(4px); }

@media (max-width: 780px) {
  .blog-related { grid-template-columns: 1fr; }
}

/* Blog index featured card */
.blog-featured {
  display: block;
  padding: 48px;
  border: 1px solid var(--ed-line);
  border-radius: 4px;
  background: #fff;
  text-decoration: none;
  color: inherit;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}
.blog-featured::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--ed-accent-light), var(--ed-accent));
}
.blog-featured:hover {
  border-color: var(--ed-accent);
  box-shadow: 0 16px 48px rgba(47,102,49,0.10);
  transform: translateY(-3px);
}
.blog-featured__eyebrow {
  font-family: var(--ed-serif-en);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ed-accent);
  margin-bottom: 16px;
}
.blog-featured__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
  font-family: var(--ed-sans-tc);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--ed-muted);
  margin-bottom: 16px;
}
.blog-featured__dot { opacity: 0.4; }
.blog-featured__title {
  font-family: var(--ed-sans-tc);
  font-size: clamp(24px, 3.4vw, 34px);
  font-weight: 300;
  line-height: 1.32;
  color: var(--ed-ink);
  margin: 0 0 20px;
  letter-spacing: 0.01em;
}
.blog-featured__excerpt {
  font-family: var(--ed-sans-tc);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--ed-body);
  margin: 0 0 24px;
}
.blog-featured__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ed-sans-tc);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--ed-accent);
  padding: 10px 0;
  border-top: 1px solid var(--ed-line);
  white-space: nowrap;
}
.blog-featured__arrow {
  transition: transform .3s;
  font-size: 18px;
}
.blog-featured:hover .blog-featured__arrow { transform: translateX(6px); }

@media (max-width: 640px) {
  .blog-featured { padding: 32px 24px; }
}

/* Blog upcoming teaser */
.blog-upcoming {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.blog-upcoming__item {
  padding: 24px 20px;
  background: #fff;
  border: 1px dashed var(--ed-line);
  border-radius: 4px;
  text-align: left;
}
.blog-upcoming__cat {
  font-family: var(--ed-serif-en);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ed-accent);
  margin-bottom: 10px;
}
.blog-upcoming__title {
  font-family: var(--ed-sans-tc);
  font-size: 15px;
  font-weight: 400;
  color: var(--ed-ink);
  line-height: 1.6;
}
@media (max-width: 780px) {
  .blog-upcoming { grid-template-columns: 1fr; }
}

/* Index-page blog teaser strip */
.home-blog-teaser {
  padding: 72px 24px;
  background: var(--ed-cream);
  border-top: 1px solid var(--ed-line);
  border-bottom: 1px solid var(--ed-line);
}
.home-blog-teaser__inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: center;
}
.home-blog-teaser__eyebrow {
  font-family: var(--ed-serif-en);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ed-accent);
  margin-bottom: 14px;
}
.home-blog-teaser__title {
  font-family: var(--ed-sans-tc);
  font-size: clamp(24px, 3.2vw, 30px);
  font-weight: 300;
  line-height: 1.35;
  color: var(--ed-ink);
  margin: 0 0 18px;
  letter-spacing: 0.02em;
}
.home-blog-teaser__desc {
  font-family: var(--ed-sans-tc);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--ed-body);
  margin: 0 0 24px;
}
.home-blog-teaser__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: var(--ed-ink);
  color: #fff;
  font-family: var(--ed-sans-tc);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-decoration: none;
  border-radius: 999px;
  white-space: nowrap;
  transition: background .2s;
}
.home-blog-teaser__cta:hover { background: var(--ed-accent); }
.home-blog-teaser__meta {
  font-family: var(--ed-sans-tc);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ed-muted);
  font-weight: 300;
  margin-bottom: 10px;
}
@media (max-width: 780px) {
  .home-blog-teaser__inner {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
