/* =====================================================
   SADIA AKHTAR · sadia-akhtar.com
   Clean Global Stylesheet
   Mobile-first · Editorial · Premium
   ===================================================== */


/* =====================================================
   1 · FONT FACES
   ===================================================== */

@font-face {
  font-family: "Cormorant";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/cormorant-latin-300-normal.woff2") format("woff2"),
       url("../fonts/Cormorant-Light.ttf") format("truetype");
}

@font-face {
  font-family: "Cormorant";
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/cormorant-latin-300-italic.woff2") format("woff2"),
       url("../fonts/Cormorant-LightItalic.ttf") format("truetype");
}

@font-face {
  font-family: "Cormorant";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/cormorant-latin-400-normal.woff2") format("woff2"),
       url("../fonts/Cormorant-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "Cormorant";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/cormorant-latin-400-italic.woff2") format("woff2"),
       url("../fonts/Cormorant-Italic.ttf") format("truetype");
}

@font-face {
  font-family: "Cormorant";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/cormorant-latin-500-normal.woff2") format("woff2"),
       url("../fonts/Cormorant-Medium.ttf") format("truetype");
}

@font-face {
  font-family: "Cormorant";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/cormorant-latin-500-italic.woff2") format("woff2"),
       url("../fonts/Cormorant-MediumItalic.ttf") format("truetype");
}


/* =====================================================
   2 · TOKENS
   ===================================================== */

:root {
  --deep-green: #10251f;
  --emerald-green: #18362d;
  --soft-forest: #1f4a3d;
  --forest-green: #18362d;

  --light-sage: #d8dfd2;
  --cream: #f5efe4;
  --warm-white: #fbf8f1;

  --champagne: #c7a66b;
  --soft-gold: #d8c49a;

  --ink: #11211c;
  --muted: #746b5f;

  --line: rgba(16, 37, 31, 0.14);
  --line-gold: rgba(199, 166, 107, 0.45);

  --bg: var(--warm-white);
  --bg-warm: var(--cream);
  --bg-dark: var(--deep-green);

  --fg: var(--ink);
  --fg-muted: var(--muted);
  --fg-on-dark: var(--warm-white);
  --fg-on-dark-muted: rgba(251, 248, 241, 0.66);

  --serif: "Cormorant", "Cormorant Garamond", "EB Garamond", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --fs-display: clamp(36px, 7.5vw, 64px);
  --fs-h1: clamp(30px, 5.4vw, 48px);
  --fs-h2: clamp(26px, 4.4vw, 38px);
  --fs-h3: clamp(20px, 3vw, 26px);
  --fs-lead: clamp(17px, 2.4vw, 22px);
  --fs-body: clamp(16px, 1.8vw, 18px);
  --fs-small: 14px;
  --fs-eyebrow: 11px;

  --lh-display: 1.1;
  --lh-heading: 1.18;
  --lh-body: 1.7;

  --track-eyebrow: 0.28em;
  --track-button: 0.22em;

  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 28px;
  --space-lg: 48px;
  --space-xl: 80px;
  --space-2xl: 120px;

  --section-pad: clamp(72px, 12vw, 160px);
  --gutter: clamp(20px, 5vw, 56px);

  --radius-xs: 2px;
  --radius-sm: 6px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --dur: 320ms;
}


/* =====================================================
   3 · BASE
   ===================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--serif);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
  cursor: pointer;
}

::selection {
  background: var(--soft-gold);
  color: var(--deep-green);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}


/* =====================================================
   4 · TYPOGRAPHY
   ===================================================== */

h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  font-weight: 300;
  line-height: var(--lh-heading);
  letter-spacing: -0.005em;
  margin: 0;
  color: var(--deep-green);
  text-wrap: balance;
}

h1 {
  font-size: var(--fs-h1);
}

h2 {
  font-size: var(--fs-h2);
}

h3 {
  font-size: var(--fs-h3);
  font-weight: 400;
}

p {
  margin: 0;
  text-wrap: pretty;
}

em,
i {
  font-style: italic;
  color: var(--champagne);
}

strong,
b {
  font-weight: 500;
  color: var(--deep-green);
}

.display {
  font-family: var(--serif);
  font-weight: 300;
  font-size: var(--fs-display);
  line-height: var(--lh-display);
  letter-spacing: -0.012em;
  color: var(--deep-green);
  text-wrap: balance;
  margin: 0;
}

.display em,
h1 em,
h2 em,
h3 em,
.headline em {
  font-style: italic;
  color: var(--champagne);
  font-weight: 300;
}

.section-head {
  font-family: var(--serif);
  font-weight: 300;
  font-size: var(--fs-h2);
  line-height: var(--lh-heading);
  letter-spacing: -0.005em;
  color: var(--deep-green);
  text-wrap: balance;
  margin: 0;
}

.lead {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: var(--fs-lead);
  line-height: 1.5;
  color: var(--champagne);
  text-wrap: balance;
}

.body {
  font-family: var(--serif);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--muted);
  text-wrap: pretty;
}

.body.strong {
  color: var(--deep-green);
}

.eyebrow {
  font-family: var(--serif);
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  letter-spacing: var(--track-eyebrow);
  text-transform: uppercase;
  color: var(--muted);
  display: inline-block;
}

.center {
  text-align: center;
}

.on-dark,
.section--dark,
.hero--dark {
  color: var(--warm-white);
}

.on-dark .display,
.on-dark h1,
.on-dark h2,
.on-dark h3,
.on-dark .section-head,
.section-head.on-dark {
  color: var(--warm-white);
}

.on-dark .body {
  color: var(--fg-on-dark-muted);
}

.on-dark .body.strong {
  color: var(--warm-white);
}

.on-dark .eyebrow,
.eyebrow.on-dark {
  color: var(--soft-gold);
  letter-spacing: 0.28em;
}

.on-dark strong,
.on-dark b {
  color: var(--warm-white);
}


/* =====================================================
   5 · LAYOUT
   ===================================================== */

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.narrow {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.mid {
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
}

.wide {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}

.stack > * + * {
  margin-top: var(--space-md);
}

.stack-lg > * + * {
  margin-top: var(--space-lg);
}

.mt-sm {
  margin-top: var(--space-sm);
}

.mt-md {
  margin-top: var(--space-md);
}

.mt-lg {
  margin-top: var(--space-lg);
}

.mt-xl {
  margin-top: var(--space-xl);
}

.mt-2xl {
  margin-top: var(--space-2xl);
}


/* =====================================================
   6 · HEADER
   ===================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  background: rgba(251, 248, 241, 0);
  border-bottom: 0.5px solid transparent;
  transition:
    background var(--dur) var(--ease),
    border-color var(--dur) var(--ease),
    color var(--dur) var(--ease);
}

.site-header.is-scrolled {
  background: rgba(251, 248, 241, 0.88);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
}

.site-header.on-dark:not(.is-scrolled) {
  color: var(--warm-white);
}

.site-header.on-dark.is-scrolled {
  background: rgba(16, 37, 31, 0.88);
  border-bottom-color: rgba(199, 166, 107, 0.2);
  color: var(--warm-white);
}

.site-header--light {
  background: var(--warm-white) !important;
  color: var(--deep-green) !important;
}

.site-header--light.is-scrolled {
  background: rgba(251, 248, 241, 0.92) !important;
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line) !important;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
}

@media (min-width: 1100px) {
  .header-row {
    padding: 28px 0;
  }
}


/* =====================================================
   7 · LOGO GLOBAL
   Desktop 60px · Mobile 70px
   ===================================================== */

.brand-lockup {
  display: flex !important;
  align-items: center !important;
  flex: 0 0 auto;
  flex-shrink: 0 !important;
  gap: 0;
  line-height: 0 !important;
  color: inherit;
  text-decoration: none;
}

.brand-lockup img {
  width: auto !important;
  flex: 0 0 auto;
  object-fit: contain !important;
}

.brand-lockup .brand-lockup__lion {
  display: none !important;
}

.brand-lockup .brand-lockup__full {
  display: block !important;
  width: auto !important;
  object-fit: contain !important;
}

.brand-lockup .word,
.brand-lockup__word,
.brand-lockup .brand-lockup__full-light {
  display: none !important;
}

@media (min-width: 901px) {
  .site-header .brand-lockup .brand-lockup__full {
    height: 60px !important;
    max-height: 60px !important;
  }
}

@media (max-width: 900px) {
  .site-header .brand-lockup .brand-lockup__full {
    height: 68px !important;
    max-height: 68px !important;
  }
}

@media (max-width: 640px) {
  .site-header .brand-lockup .brand-lockup__full {
    height: 70px !important;
    max-height: 70px !important;
  }

  .header-row {
    min-height: 88px !important;
  }
}

@media (max-width: 390px) {
  .site-header .brand-lockup .brand-lockup__full {
    height: 66px !important;
    max-height: 66px !important;
  }
}


/* =====================================================
   8 · NAVIGATION
   ===================================================== */

.nav-primary {
  display: none;
}

.nav-primary a {
  font-family: var(--serif);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: inherit;
  opacity: 0.78;
  padding-bottom: 4px;
  border-bottom: 0.5px solid transparent;
  transition:
    opacity var(--dur) var(--ease),
    border-color var(--dur) var(--ease),
    color var(--dur) var(--ease);
}

.nav-primary a:hover,
.nav-primary a[aria-current="page"] {
  opacity: 1;
  border-bottom-color: var(--champagne);
}

.header-cta {
  display: none;
  font-family: var(--serif);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: inherit;
  border: 1px solid currentColor;
  padding: 11px 18px;
  transition:
    background var(--dur) var(--ease),
    color var(--dur) var(--ease),
    border-color var(--dur) var(--ease);
}

.header-cta:hover {
  background: var(--champagne);
  color: var(--deep-green);
  border-color: var(--champagne);
}

.nav-toggle {
  appearance: none;
  background: transparent;
  border: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  cursor: pointer;
  position: relative;
}

.nav-toggle > span:not(.bars) {
  display: none !important;
}

.nav-toggle .bars {
  position: relative;
  width: 22px;
  height: 14px;
}

.nav-toggle .bars::before,
.nav-toggle .bars::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: currentColor;
  transition:
    transform var(--dur) var(--ease),
    top var(--dur) var(--ease),
    opacity var(--dur) var(--ease);
}

.nav-toggle .bars::before {
  top: 3px;
}

.nav-toggle .bars::after {
  top: 11px;
}

.nav-toggle[aria-expanded="true"] .bars::before {
  top: 7px;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .bars::after {
  top: 7px;
  transform: rotate(-45deg);
}


/* =====================================================
   9 · MOBILE MENU
   ===================================================== */

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--deep-green);
  color: var(--warm-white);
  z-index: 70;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity var(--dur) var(--ease),
    visibility var(--dur) var(--ease);
  overflow-y: auto;
  padding: 96px var(--gutter) 56px;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 480px;
  margin: 0 auto;
}

.mobile-menu nav a {
  display: block;
  padding: 18px 0;
  font-family: var(--serif);
  font-weight: 300;
  font-size: 28px;
  color: var(--warm-white);
  border-bottom: 0.5px solid rgba(199, 166, 107, 0.25);
  transition: color var(--dur) var(--ease);
}

.mobile-menu nav a:hover {
  color: var(--champagne);
}

.mobile-menu .menu-cta {
  margin-top: 32px;
  display: inline-flex;
  align-self: flex-start;
  background: var(--champagne);
  color: var(--deep-green);
  padding: 16px 28px;
  font-family: var(--serif);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.mobile-menu .menu-meta {
  margin-top: 56px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  font-family: var(--serif);
  font-size: 13px;
  color: rgba(216, 196, 154, 0.55);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.mobile-menu--light {
  background: var(--warm-white) !important;
  color: var(--deep-green) !important;
}

.mobile-menu--light nav a {
  color: var(--deep-green) !important;
  border-bottom-color: rgba(16, 37, 31, 0.14) !important;
}

.mobile-menu--light nav a:hover {
  color: var(--champagne) !important;
}

.mobile-menu--light .menu-cta {
  background: var(--champagne) !important;
  color: var(--deep-green) !important;
  border-color: var(--champagne) !important;
}

.mobile-menu--light .menu-meta {
  color: rgba(16, 37, 31, 0.52) !important;
}


/* =====================================================
   10 · BUTTONS
   ===================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: var(--track-button);
  text-transform: uppercase;
  padding: 18px 30px;
  min-height: 52px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
  transition:
    background var(--dur) var(--ease),
    color var(--dur) var(--ease),
    border-color var(--dur) var(--ease),
    letter-spacing var(--dur) var(--ease);
}

.btn--primary {
  background: var(--emerald-green);
  color: var(--warm-white);
  border-color: var(--emerald-green);
}

.btn--primary:hover {
  background: var(--soft-forest);
  border-color: var(--soft-forest);
  letter-spacing: 0.24em;
}

.btn--gold {
  background: var(--champagne);
  color: var(--deep-green);
  border-color: var(--champagne);
}

.btn--gold:hover {
  background: var(--soft-gold);
  letter-spacing: 0.24em;
}

.btn--outline {
  background: transparent;
  color: var(--deep-green);
  border-color: rgba(31, 74, 61, 0.4);
}

.btn--outline:hover {
  background: rgba(31, 74, 61, 0.06);
  border-color: var(--emerald-green);
}

.btn--ghost {
  background: transparent;
  color: var(--deep-green);
  border: 0;
  border-bottom: 0.5px solid var(--champagne);
  padding: 12px 0;
  min-height: 0;
  letter-spacing: 0.18em;
}

.btn--ghost:hover {
  color: var(--champagne);
  letter-spacing: 0.22em;
}

.on-dark .btn--outline,
.btn--outline.on-dark {
  color: var(--warm-white);
  border-color: var(--champagne);
}

.on-dark .btn--outline:hover {
  background: rgba(199, 166, 107, 0.12);
}

.on-dark .btn--ghost,
.btn--ghost.on-dark {
  color: var(--warm-white);
  border-bottom-color: rgba(216, 196, 154, 0.65);
}

.on-dark .btn--ghost:hover {
  color: var(--champagne);
}

.hero--dark .btn--primary {
  background: var(--champagne);
  color: var(--deep-green);
  border-color: var(--champagne);
}

.hero--dark .btn--primary:hover {
  background: var(--soft-gold);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
  align-items: center;
}

.cta-stack {
  display: inline-flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
}

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

.cta-micro {
  font-family: var(--serif);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
}

.on-dark .cta-micro {
  color: var(--fg-on-dark-muted);
}


/* =====================================================
   11 · SECTIONS
   ===================================================== */

.section {
  position: relative;
  padding: var(--section-pad) 0;
  isolation: isolate;
}

.section > .container,
.hero > .container {
  position: relative;
  z-index: 1;
}

.section--cream {
  background: var(--warm-white);
  color: var(--ink);
}

.section--warm {
  background: var(--cream);
  color: var(--ink);
}

.section--dark,
.section.on-dark {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(47, 92, 77, 0.32), transparent 60%),
    radial-gradient(ellipse at 50% 100%, rgba(47, 92, 77, 0.20), transparent 55%),
    var(--deep-green);
  color: var(--warm-white);
}

.section--forest {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(47, 92, 77, 0.28), transparent 60%),
    var(--emerald-green);
  color: var(--warm-white);
}

.section--dark-deep {
  background: var(--deep-green);
  color: var(--warm-white);
}

.section--tight {
  padding: clamp(60px, 8vw, 100px) 0;
}

.opener {
  text-align: center;
}

.opener .eyebrow {
  margin-bottom: 22px;
}

.opener .section-head {
  margin-bottom: 22px;
}

.opener .lead {
  display: block;
  max-width: 620px;
  margin: 22px auto 0;
}


/* =====================================================
   12 · HERO
   ===================================================== */

.hero {
  padding-top: clamp(140px, 22vw, 180px);
  padding-bottom: var(--section-pad);
  background: var(--warm-white);
  isolation: isolate;
}

.hero--dark {
  background: var(--deep-green);
  color: var(--warm-white);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.hero .eyebrow {
  color: var(--champagne);
}

.hero--dark .eyebrow {
  color: var(--soft-gold);
}

.hero .display {
  margin-top: 28px;
}

.hero .lead {
  margin-top: 28px;
  max-width: 560px;
}

.hero .body {
  margin-top: 28px;
  max-width: 560px;
}

.hero .btn-row {
  margin-top: 40px;
}

.hero-portrait {
  width: 100%;
  max-width: 480px;
  height: auto;
  margin-left: auto;
  display: block;
}


/* =====================================================
   13 · HERO FLUSH / ASTRAL CLEAR
   ===================================================== */

.hero--flush {
  --section-pad: clamp(48px, 6vw, 80px);
  padding-top: clamp(116px, 15vw, 156px);
  padding-bottom: var(--section-pad);
  overflow: hidden;
  position: relative;
}

.hero--flush .hero-grid {
  align-items: end;
  gap: clamp(40px, 6vw, 80px);
}

.hero--flush .hero-grid > div:first-child {
  align-self: center;
  padding-bottom: clamp(20px, 3vw, 40px);
  position: relative;
  z-index: 3;
}

.hero-image-flush {
  position: relative;
  z-index: 2;
  margin-bottom: calc(-1 * var(--section-pad));
  isolation: isolate;
  overflow: visible;
}

.hero-image-flush > .hero-lion {
  display: block !important;
  position: absolute !important;
  right: clamp(-230px, -15vw, -120px) !important;
  bottom: -18px !important;
  width: clamp(760px, 58vw, 940px) !important;
  z-index: 0 !important;
  opacity: 0.18 !important;
  pointer-events: none !important;
  user-select: none !important;
  transform: scaleX(-1) !important;
}

.hero-image-flush > .hero-lion img {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  height: auto !important;
  margin: 0 !important;
}

.hero-image-flush > img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  max-width: 620px;
  height: clamp(620px, 78vh, 780px);
  object-fit: contain;
  object-position: bottom center;
  margin-left: auto;
}

@media (max-width: 1024px) {
  .hero-image-flush > img {
    margin-left: auto;
    margin-right: auto;
    height: clamp(440px, 60vh, 560px);
    max-width: 500px;
  }

  .hero-image-flush > .hero-lion {
    right: clamp(-210px, -18vw, -115px) !important;
    bottom: -90px !important;
    width: clamp(620px, 82vw, 820px) !important;
    opacity: 0.16 !important;
  }

  .hero--flush {
    padding-top: clamp(96px, 14vw, 132px);
    padding-bottom: clamp(40px, 5vw, 64px);
  }
}

@media (max-width: 640px) {
  .hero--flush {
    --section-pad: 0px;
    padding-top: 104px;
    padding-bottom: 0;
    overflow: hidden;
  }

  .hero--flush .hero-grid {
    gap: 36px;
    align-items: end;
  }

  .hero--flush .hero-grid > div:first-child {
    padding-bottom: 0;
    z-index: 3;
  }

  .hero--flush .hero-image-flush {
    position: relative;
    z-index: 2;
    margin-bottom: 0;
    align-self: end;
    width: 100%;
    overflow: visible;
  }

  .hero-image-flush > .hero-lion {
    left: auto !important;
    right: -120px !important;
    bottom: 140px !important;
    width: clamp(400px, 120vw, 560px) !important;
    opacity: 0.18 !important;
    transform: scaleX(-1) !important;
  }

  .hero-image-flush > img {
    height: clamp(410px, 62vh, 540px);
    max-width: min(92vw, 420px);
    margin-left: auto;
    margin-right: auto;
    object-fit: contain;
    object-position: bottom center;
  }
}

@media (max-width: 430px) {
  .hero-image-flush > img {
    height: clamp(390px, 58vh, 500px);
    max-width: min(94vw, 390px);
  }

  .hero-image-flush > .hero-lion {
    right: -100px !important;
    bottom: 100px !important;
    width: clamp(360px, 115vw, 500px) !important;
    opacity: 0.18 !important;
    transform: scaleX(-1) !important;
  }
}


/* =====================================================
   14 · ABOUT HERO IMAGE
   ===================================================== */

.about-hero-visual {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.about-hero-image {
  width: min(100%, 620px);
  max-width: 620px;
  height: auto;
  display: block;
  margin-left: auto;
  transform: translateX(28px);
}

@media (min-width: 1200px) {
  .about-hero-image {
    width: min(100%, 680px);
    max-width: 680px;
    transform: translateX(40px);
  }
}

@media (max-width: 959px) {
  .about-hero-visual {
    justify-content: center;
  }

  .about-hero-image {
    width: min(100%, 460px);
    max-width: 460px;
    margin: 0 auto;
    transform: none;
  }
}


/* =====================================================
   15 · DECORATIVE ELEMENTS
   ===================================================== */

.rule {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--champagne);
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: 0.4em;
  max-width: 320px;
  margin: 0 auto;
}

.rule::before,
.rule::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--champagne), transparent);
  opacity: 0.55;
}

.on-dark .rule {
  color: var(--soft-gold);
}

.on-dark .rule::before,
.on-dark .rule::after {
  background: linear-gradient(90deg, transparent, var(--soft-gold), transparent);
  opacity: 0.65;
}

.hairline {
  height: 0.5px;
  background: var(--line);
  border: 0;
  margin: 0;
}

.on-dark .hairline {
  background: rgba(199, 166, 107, 0.25);
}

.mono-mark {
  display: block;
  margin: 0 auto;
  width: 38px;
  height: auto;
  opacity: 0.85;
}

.mono-mark--lg {
  width: 64px;
}

.mono-mark.on-dark {
  filter: brightness(1.05) saturate(110%);
}

.brand-watermark {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.brand-watermark img {
  display: block;
  width: 100%;
  height: auto;
}

.brand-watermark--lion-hero {
  top: 22%;
  right: 5%;
  width: clamp(180px, 26vw, 320px);
  opacity: 0.05;
  filter: saturate(120%);
}

.brand-watermark--lion-cta {
  top: 50%;
  right: 3%;
  left: auto;
  transform: translateY(-50%);
  width: clamp(220px, 38vw, 480px);
  opacity: 0.06;
}

.brand-watermark--mono-corner {
  bottom: 8%;
  right: 6%;
  width: clamp(120px, 14vw, 200px);
  opacity: 0.08;
}

.brand-watermark--mono-divider {
  position: static;
  width: 56px;
  margin: 0 auto;
  opacity: 0.85;
  display: block;
}


/* =====================================================
   16 · TEXT BLOCKS / LISTS
   ===================================================== */

.dropline {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-family: var(--serif);
  font-size: var(--fs-body);
  line-height: 1.55;
  color: var(--muted);
}

.dropline.spaced {
  gap: 22px;
}

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

.dropline strong {
  color: var(--deep-green);
  font-weight: 400;
}

.on-dark .dropline {
  color: var(--fg-on-dark-muted);
}

.on-dark .dropline strong {
  color: var(--warm-white);
}

.bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}

.bullets > li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 16px;
  font-family: var(--serif);
  font-size: var(--fs-body);
  line-height: 1.55;
  color: var(--muted);
  align-items: baseline;
}

.bullets > li::before {
  content: "—" !important;
  color: var(--champagne);
  line-height: 1;
}

.bullets.accent > li {
  color: var(--deep-green);
}

.on-dark .bullets > li {
  color: var(--fg-on-dark-muted);
}

.manifest-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  border-top: 0.5px solid var(--line-gold);
}

.manifest-grid li {
  padding: 20px 0;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.5;
  color: var(--deep-green);
  border-bottom: 0.5px solid var(--line-gold);
  align-items: baseline;
}

.manifest-grid li .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--champagne);
}

.on-dark .manifest-grid {
  border-top-color: rgba(216, 196, 154, 0.3);
}

.on-dark .manifest-grid li {
  color: var(--warm-white);
  border-bottom-color: rgba(216, 196, 154, 0.3);
}


/* =====================================================
   17 · VERSUS / SPLIT
   ===================================================== */

.versus {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  position: relative;
}

.versus__col h3,
.versus__col .col-head {
  font-family: var(--serif);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding-bottom: 18px;
  margin: 0 0 22px;
  border-bottom: 0.5px solid var(--line-gold);
  color: var(--muted);
}

.versus__col.is-positive .col-head {
  color: var(--champagne);
}

.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}

.split.reverse > *:first-child {
  order: 2;
}


/* =====================================================
   18 · CARDS
   ===================================================== */

.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line-gold);
}

.cards--3,
.cards--4 {
  grid-template-columns: 1fr;
}

.card {
  background: var(--warm-white);
  padding: clamp(36px, 5vw, 52px) clamp(28px, 4vw, 44px);
  display: flex;
  flex-direction: column;
  min-height: 320px;
  gap: 20px;
}

.card--warm {
  background: var(--cream);
}

.card--featured {
  background: var(--emerald-green);
  color: var(--warm-white);
}

.card--featured h3 {
  color: var(--warm-white);
}

.card--featured .card__body {
  color: var(--fg-on-dark-muted);
}

.card--featured .card__meta,
.card--featured .card__price,
.card--featured .card__cta {
  color: var(--soft-gold);
}

.card--featured .card__cta {
  border-bottom-color: var(--soft-gold);
}

.card--featured .card__cta:hover {
  color: var(--warm-white);
}

.card__num {
  font-family: var(--serif);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--champagne);
}

.card__roman {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 32px;
  color: var(--champagne);
  line-height: 1;
}

.card h3 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(22px, 3vw, 28px);
  line-height: 1.15;
  margin: 0;
  color: var(--deep-green);
}

.card__meta {
  font-family: var(--serif);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.9;
}

.card__price {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(20px, 2.4vw, 26px);
  color: var(--champagne);
  line-height: 1;
}

.card__body {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
  flex: 1;
  margin: 0;
}

.card__cta {
  align-self: flex-start;
  font-family: var(--serif);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--deep-green);
  padding-bottom: 4px;
  border-bottom: 0.5px solid var(--champagne);
  transition:
    color var(--dur) var(--ease),
    border-color var(--dur) var(--ease);
}

.card__cta:hover {
  color: var(--champagne);
}


/* =====================================================
   19 · TESTIMONIALS
   ===================================================== */

.testimonials {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.testimonial {
  margin: 0;
  display: flex;
  flex-direction: column;
}

.testimonial blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(18px, 2.4vw, 21px);
  line-height: 1.55;
  color: var(--deep-green);
  margin: 0;
  text-wrap: pretty;
}

.testimonial .meta {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 0.5px solid var(--line-gold);
}

.testimonial .name {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 500;
  color: var(--deep-green);
}

.testimonial .role {
  margin-top: 4px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 13.5px;
  color: var(--muted);
}

.testimonial .readmore {
  display: inline-block;
  margin-top: 18px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 13.5px;
  color: var(--champagne);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 0.5px solid transparent;
  transition:
    color var(--dur) var(--ease),
    border-color var(--dur) var(--ease),
    letter-spacing var(--dur) var(--ease);
}

.testimonial .readmore:hover {
  color: var(--deep-green);
  border-bottom-color: var(--champagne);
  letter-spacing: 0.005em;
}


/* =====================================================
   20 · VIDEO TESTIMONIALS
   ===================================================== */

.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 48px);
}

.video-card {
  background: var(--warm-white);
  border: 0.5px solid var(--line);
  box-shadow:
    0 1px 0 rgba(16, 37, 31, 0.04),
    0 24px 48px -28px rgba(16, 37, 31, 0.18);
  display: flex;
  flex-direction: column;
  transition:
    transform var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease);
}

.video-card:hover {
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(16, 37, 31, 0.05),
    0 30px 60px -28px rgba(16, 37, 31, 0.24);
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(47, 92, 77, 0.32), transparent 60%),
    var(--deep-green);
  overflow: hidden;
}

.video-frame wistia-player,
.video-frame .wistia_responsive_padding {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  display: block !important;
}

.video-card__body {
  padding: clamp(24px, 3vw, 32px) clamp(24px, 3vw, 32px) clamp(28px, 3.5vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.video-card__role {
  font-family: var(--serif);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--champagne);
}

.video-card__quote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(16.5px, 1.6vw, 19px);
  line-height: 1.55;
  color: var(--deep-green);
  margin: 0;
  text-wrap: pretty;
}

.video-card__name {
  margin-top: 6px;
  padding-top: 16px;
  border-top: 0.5px solid var(--line-gold);
  font-family: var(--serif);
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--deep-green);
}


/* =====================================================
   21 · QUOTE GRID
   ===================================================== */

.quote-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 3vw, 32px);
}

.quote-card {
  background: var(--warm-white);
  border: 0.5px solid var(--line-gold);
  padding: clamp(28px, 3.5vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-height: 200px;
  position: relative;
}

.quote-card::before {
  content: "\201C";
  position: absolute;
  top: 18px;
  left: 22px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 56px;
  line-height: 1;
  color: var(--soft-gold);
  opacity: 0.5;
}

.quote-card blockquote {
  margin: 28px 0 0;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.55;
  color: var(--deep-green);
  text-wrap: pretty;
}

.quote-card__meta {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 0.5px solid var(--line-gold);
}

.quote-card__name {
  font-family: var(--serif);
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--deep-green);
}

.quote-card__role {
  margin-top: 4px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 13.5px;
  color: var(--muted);
}

.quote-card__readmore {
  display: inline-block;
  margin-top: 18px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 13.5px;
  color: var(--champagne);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 0.5px solid transparent;
  transition:
    color var(--dur) var(--ease),
    border-color var(--dur) var(--ease);
}

.quote-card__readmore:hover {
  color: var(--deep-green);
  border-bottom-color: var(--champagne);
}


/* =====================================================
   22 · TIMELINE
   ===================================================== */

.timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline__item {
  padding-left: 24px;
  border-left: 0.5px solid var(--line-gold);
  position: relative;
}

.timeline__item::before {
  content: "";
  position: absolute;
  left: -3.5px;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--champagne);
  border-radius: 50%;
}

.timeline__label {
  font-family: var(--serif);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 14px;
}

.timeline__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(22px, 3vw, 28px);
  color: var(--deep-green);
  margin-bottom: 14px;
}

.timeline__body {
  font-family: var(--serif);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--muted);
}

.on-dark .timeline__title {
  color: var(--warm-white);
}

.on-dark .timeline__body {
  color: var(--fg-on-dark-muted);
}


/* =====================================================
   23 · FORMS
   ===================================================== */

.newsletter-form {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
  margin-top: 40px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.field label {
  font-family: var(--serif);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}

.field input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-gold);
  padding: 14px 0;
  font-family: var(--serif);
  font-size: 17px;
  color: var(--deep-green);
  outline: none;
  transition: border-color var(--dur) var(--ease);
  border-radius: 0;
  min-height: 44px;
}

.field input:focus {
  border-bottom-color: var(--champagne);
}

.field input::placeholder {
  color: rgba(116, 107, 95, 0.6);
  font-style: italic;
}

.on-dark .field label {
  color: var(--fg-on-dark-muted);
}

.on-dark .field input {
  color: var(--warm-white);
  border-bottom-color: rgba(216, 196, 154, 0.4);
}

.on-dark .field input:focus {
  border-bottom-color: var(--champagne);
}

.form-success[hidden] {
  display: none;
}


/* =====================================================
   24 · CALENDAR PLACEHOLDER
   ===================================================== */

.calendar-placeholder {
  margin-top: 48px;
  border: 0.5px dashed var(--line-gold);
  background: var(--cream);
  padding: clamp(48px, 9vw, 96px) clamp(24px, 5vw, 56px);
  text-align: center;
  color: var(--muted);
  font-family: var(--serif);
}

.calendar-placeholder .tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 18px;
}

.calendar-placeholder .title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(22px, 3vw, 30px);
  color: var(--deep-green);
  margin-bottom: 14px;
  line-height: 1.2;
}

.calendar-placeholder .note {
  max-width: 480px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.6;
  font-style: italic;
  color: var(--muted);
}

.calendar-placeholder code {
  display: inline-block;
  margin-top: 18px;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 12.5px;
  color: var(--forest-green);
  background: rgba(199, 166, 107, 0.12);
  padding: 6px 12px;
  border-radius: var(--radius-xs);
  font-style: normal;
}


/* =====================================================
   25 · FAQ
   ===================================================== */

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

.faq__item {
  border-top: 0.5px solid var(--line-gold);
}

.faq__item:last-child {
  border-bottom: 0.5px solid var(--line-gold);
}

.faq__q {
  width: 100%;
  background: transparent;
  border: 0;
  text-align: left;
  padding: 28px 56px 28px 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(18px, 2.4vw, 22px);
  line-height: 1.35;
  color: var(--deep-green);
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 44px;
}

.faq__q .indicator {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  position: relative;
  color: var(--champagne);
}

.faq__q .indicator::before,
.faq__q .indicator::after {
  content: "";
  position: absolute;
  background: currentColor;
  transition:
    transform var(--dur) var(--ease),
    opacity var(--dur) var(--ease);
}

.faq__q .indicator::before {
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  transform: translateY(-50%);
}

.faq__q .indicator::after {
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  transform: translateX(-50%);
}

.faq__item.is-open .faq__q .indicator::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.faq__a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 400ms var(--ease);
}

.faq__a-inner {
  padding: 0 0 32px;
  max-width: 720px;
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
}


/* =====================================================
   26 · PILLS / BOXES
   ===================================================== */

.format-pill {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 14px 24px;
  border: 0.5px solid var(--champagne);
  font-family: var(--serif);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--champagne);
}

.format-pill .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--champagne);
}

.outline-box {
  border: 0.5px solid var(--line-gold);
  padding: clamp(32px, 4vw, 48px);
}

.outline-box.on-dark {
  border-color: rgba(216, 196, 154, 0.35);
}


/* =====================================================
   27 · LEGAL PAGES
   ===================================================== */

.legal-content {
  text-align: left;
}

.legal-content h2 {
  margin-top: 42px;
  margin-bottom: 14px;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.2;
  color: var(--deep-green);
}

.legal-content h3 {
  margin-top: 34px;
  margin-bottom: 12px;
  font-size: clamp(19px, 1.6vw, 24px);
  line-height: 1.3;
  color: var(--deep-green);
}

.legal-content h2:first-of-type {
  margin-top: 28px;
}

.legal-content p {
  margin-top: 14px;
  line-height: 1.75;
}

.legal-content ul {
  margin-top: 14px;
  padding-left: 1.25rem;
  line-height: 1.75;
}

.legal-content li {
  margin-top: 8px;
}

.legal-content a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal-content strong {
  font-weight: 600;
}

.legal-note {
  margin-top: 28px;
  padding: 22px;
  border: 1px solid rgba(16, 37, 31, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.38);
}


/* =====================================================
   28 · NEWSLETTER
   ===================================================== */

#newsletter {
  background: var(--warm-white) !important;
  position: relative;
}

#newsletter::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(120px, 22vw, 240px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--champagne), transparent);
  opacity: 0.6;
}

#newsletter .eyebrow {
  color: var(--emerald-green);
}

#newsletter .field input {
  font-size: 17px;
}


/* =====================================================
   29 · FOOTER
   ===================================================== */

.site-footer {
  background: var(--cream);
  color: var(--ink);
  padding: clamp(80px, 11vw, 128px) 0 36px;
  border-top: 0.5px solid var(--line-gold);
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(120px, 22vw, 240px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--champagne), transparent);
  opacity: 0.7;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 64px);
}

.footer-col h4 {
  font-family: var(--serif);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--emerald-green);
  margin: 0 0 22px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  padding: 8px 0;
}

.footer-col a {
  font-family: var(--serif);
  font-size: 15.5px;
  color: var(--ink);
  transition: color var(--dur) var(--ease);
  opacity: 0.78;
}

.footer-col a:hover {
  color: var(--emerald-green);
  opacity: 1;
}

.site-footer .brand-lockup img {
  display: none !important;
}

.site-footer .brand-lockup .brand-lockup__full {
  display: block !important;
  height: 60px !important;
  max-height: 60px !important;
  width: auto !important;
  object-fit: contain !important;
}

.site-footer .brand-lockup .brand-lockup__lion {
  display: none !important;
}

.footer-brand .tagline {
  margin-top: 26px;
  max-width: 340px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 18.5px;
  color: var(--emerald-green);
  line-height: 1.5;
  letter-spacing: 0.005em;
}

.social-row {
  margin-top: 28px;
  display: flex;
  gap: 12px;
}

.social-row a {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald-green);
  border: 0.5px solid rgba(31, 74, 61, 0.28);
  transition:
    background var(--dur) var(--ease),
    color var(--dur) var(--ease),
    border-color var(--dur) var(--ease);
}

.social-row a:hover {
  background: var(--emerald-green);
  color: var(--warm-white);
  border-color: var(--emerald-green);
}

.social-row svg {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  margin-top: clamp(56px, 8vw, 80px);
  padding-top: 26px;
  border-top: 0.5px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: var(--serif);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
}


/* =====================================================
   30 · REVEAL ANIMATION
   ===================================================== */

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 680ms var(--ease),
    transform 680ms var(--ease);
  will-change: opacity, transform;
}

.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }
}


/* =====================================================
   31 · RESPONSIVE
   ===================================================== */

@media (min-width: 720px) {
  .testimonials {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 56px;
  }

  .versus {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }

  .versus::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 6%;
    bottom: 6%;
    width: 0.5px;
    background: linear-gradient(180deg, transparent, var(--line-gold), transparent);
  }

  .cards--3 {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .cards--4 {
    grid-template-columns: 1fr 1fr;
  }

  .manifest-grid {
    grid-template-columns: 1fr 1fr;
    column-gap: 0;
  }

  .manifest-grid li:nth-child(odd) {
    border-right: 0.5px solid var(--line-gold);
    padding-right: 24px;
  }

  .manifest-grid li:nth-child(even) {
    padding-left: 24px;
  }

  .on-dark .manifest-grid li:nth-child(odd) {
    border-right-color: rgba(216, 196, 154, 0.3);
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 56px;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }

  .split {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .split.reverse {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .split.reverse > *:first-child {
    order: 1;
  }

  .newsletter-form {
    grid-template-columns: 1fr 1fr auto;
    align-items: end;
  }

  .newsletter-form .btn {
    min-height: 52px;
  }

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

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

@media (min-width: 960px) {
  .nav-primary {
    display: flex;
    gap: clamp(20px, 2.4vw, 36px);
  }

  .header-cta {
    display: inline-flex;
  }

  .nav-toggle {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: clamp(48px, 7vw, 96px);
  }

  .cards--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1080px) {
  .video-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .quote-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
/* =====================================================
   READABILITY UPGRADE · STRONGER GLOBAL VERSION
   Sichtbar bessere Lesbarkeit ohne Designbruch
   ===================================================== */

:root {
  --muted: #4f4840;
  --fs-body: clamp(18px, 1.65vw, 20px);
  --fs-lead: clamp(20px, 2.3vw, 24px);
  --lh-body: 1.82;
  --track-eyebrow: 0.15em;
  --track-button: 0.13em;
}

/* Fließtexte sichtbar klarer */
.body,
.card__body,
.timeline__body,
.faq__a-inner,
.legal-content p,
.legal-content li,
.dropline,
.bullets > li {
  color: var(--muted) !important;
  font-size: var(--fs-body) !important;
  line-height: 1.82 !important;
}

/* Dunkle Bereiche lesbarer */
.on-dark .body,
.on-dark .card__body,
.on-dark .timeline__body,
.on-dark .faq__a-inner,
.on-dark .dropline,
.on-dark .bullets > li {
  color: rgba(251, 248, 241, 0.80) !important;
}

/* Lead-Texte stärker */
.lead {
  font-size: var(--fs-lead) !important;
  line-height: 1.58 !important;
}

/* Kleine gesperrte Texte deutlich lesbarer */
.eyebrow,
.card__num,
.card__meta,
.cta-micro,
.nav-primary a,
.header-cta,
.footer-bottom,
.footer-col h4,
.format-pill {
  letter-spacing: 0.14em !important;
}

/* Navigation */
.nav-primary a {
  font-size: 12.5px !important;
}

/* Buttons */
.btn {
  font-size: 12.5px !important;
  letter-spacing: 0.13em !important;
}

.btn:hover {
  letter-spacing: 0.15em !important;
}

/* Microtexte unter Buttons */
.cta-micro {
  font-size: 12px !important;
  letter-spacing: 0.11em !important;
  line-height: 1.55 !important;
  color: #4f4840 !important;
}

/* Absätze klarer trennen */
.body + .body {
  margin-top: 26px !important;
}

.lead + .body,
.body + .lead {
  margin-top: 30px !important;
}

/* Cards klarer */
.card__body {
  font-size: 18px !important;
  line-height: 1.78 !important;
}

/* Zitate klarer */
.quote-card blockquote,
.testimonial blockquote {
  line-height: 1.65 !important;
}

/* Terminbereich Klarheitsgespräch */
#kalender .body {
  color: #4f4840 !important;
  font-size: 18.5px !important;
  line-height: 1.82 !important;
}

#kalender .cta-micro {
  color: #4f4840 !important;
  font-size: 12px !important;
  letter-spacing: 0.11em !important;
}

/* Sehr kleine Texte allgemein etwas kräftiger */
.card__num,
.card__meta,
.eyebrow,
.format-pill,
.footer-bottom,
.footer-col h4 {
  font-weight: 500 !important;
}

/* Mobile */
@media (max-width: 640px) {
  :root {
    --fs-display: clamp(39px, 11vw, 54px);
    --fs-h2: clamp(29px, 8vw, 40px);
    --fs-body: 18px;
    --fs-lead: 21px;
  }

  .body,
  .card__body,
  .timeline__body,
  .faq__a-inner,
  .dropline,
  .bullets > li {
    font-size: 18px !important;
    line-height: 1.78 !important;
  }

  .eyebrow {
    letter-spacing: 0.12em !important;
  }

  .btn {
    font-size: 12px !important;
    letter-spacing: 0.11em !important;
    padding-left: 24px;
    padding-right: 24px;
  }

  .cta-micro {
    font-size: 11.5px !important;
    letter-spacing: 0.09em !important;
  }
}
/* =====================================================
   FEATURED CARD FIX
   Meisterschaft-Karte wieder hell auf dunklem Hintergrund
   ===================================================== */

.card--featured,
.card--featured h3,
.card--featured .card__body,
.card--featured .body,
.card--featured .card__meta,
.card--featured .card__price,
.card--featured .card__cta {
  color: var(--warm-white) !important;
}

.card--featured .card__num,
.card--featured .card__meta,
.card--featured .card__price,
.card--featured .card__cta {
  color: var(--soft-gold) !important;
}

.card--featured .card__body,
.card--featured .body {
  color: rgba(251, 248, 241, 0.82) !important;
}

.card--featured .card__cta {
  border-bottom-color: var(--soft-gold) !important;
}

.card--featured .card__cta:hover {
  color: var(--warm-white) !important;
  border-bottom-color: var(--warm-white) !important;
}
/* =====================================================
   READABILITY UPGRADE · FINAL STRONG VERSION
   Sichtbar bessere Lesbarkeit auf der gesamten Website
   ===================================================== */

:root {
  --muted: #3f3932;
  --ink: #0f1d18;
  --deep-green: #0f241e;

  --fs-body: clamp(18.5px, 1.65vw, 20.5px);
  --fs-lead: clamp(21px, 2.25vw, 25px);
  --fs-eyebrow: 12px;

  --lh-body: 1.86;
  --track-eyebrow: 0.11em;
  --track-button: 0.11em;
}

/* Grundsätzliche Textklarheit */
body,
.body,
p,
li,
.card__body,
.timeline__body,
.faq__a-inner,
.legal-content p,
.legal-content li,
.dropline,
.bullets > li {
  color: var(--muted) !important;
  font-size: var(--fs-body) !important;
  line-height: 1.86 !important;
  font-weight: 400 !important;
}

/* Haupttexte nicht mehr zu fein */
.body,
.card__body,
.timeline__body,
.faq__a-inner,
.dropline,
.bullets > li {
  letter-spacing: 0.005em !important;
}

/* Headlines bleiben elegant, aber minimal klarer */
.display,
.section-head,
h1,
h2,
h3 {
  color: var(--deep-green) !important;
  font-weight: 400 !important;
}

/* Goldene Italic-Zeilen etwas kräftiger und lesbarer */
.lead,
em,
i,
.display em,
h1 em,
h2 em,
h3 em {
  color: #b89150 !important;
  font-weight: 400 !important;
}

/* Lead-Texte deutlich lesbarer */
.lead {
  font-size: var(--fs-lead) !important;
  line-height: 1.62 !important;
}

/* Kleine Uppercase-Texte weniger gesperrt */
.eyebrow,
.card__num,
.card__meta,
.cta-micro,
.nav-primary a,
.header-cta,
.footer-bottom,
.footer-col h4,
.format-pill {
  letter-spacing: 0.11em !important;
  font-weight: 500 !important;
}

/* Eyebrows sichtbarer */
.eyebrow {
  color: #8d7651 !important;
  font-size: 12px !important;
}

/* Navigation klarer */
.nav-primary a {
  font-size: 12.5px !important;
  opacity: 0.9 !important;
}

/* Buttontexte klarer */
.btn {
  font-size: 12.5px !important;
  letter-spacing: 0.11em !important;
  font-weight: 500 !important;
}

.btn:hover {
  letter-spacing: 0.13em !important;
}

/* Microtexte unter Buttons endlich lesbar */
.cta-micro {
  font-size: 12px !important;
  letter-spacing: 0.09em !important;
  line-height: 1.6 !important;
  color: #4f4840 !important;
}

/* Cards lesbarer */
.card__body {
  font-size: 18.5px !important;
  line-height: 1.82 !important;
}

.card__meta,
.card__num {
  color: #8d7651 !important;
}

/* Preise klarer */
.card__price {
  color: #b89150 !important;
  font-weight: 400 !important;
}

/* Zitate klarer */
.quote-card blockquote,
.testimonial blockquote {
  color: var(--deep-green) !important;
  font-size: clamp(19px, 1.75vw, 22px) !important;
  line-height: 1.68 !important;
  font-weight: 400 !important;
}

/* Dunkle Bereiche */
.on-dark,
.section--dark,
.hero--dark {
  color: var(--warm-white) !important;
}

.on-dark .display,
.on-dark .section-head,
.on-dark h1,
.on-dark h2,
.on-dark h3 {
  color: var(--warm-white) !important;
}

.on-dark .body,
.on-dark p,
.on-dark li,
.on-dark .card__body,
.on-dark .timeline__body,
.on-dark .faq__a-inner,
.on-dark .dropline,
.on-dark .bullets > li {
  color: rgba(251, 248, 241, 0.84) !important;
}

.on-dark .lead,
.on-dark em,
.on-dark i,
.on-dark .eyebrow {
  color: var(--soft-gold) !important;
}

/* Featured Card / Meisterschaft bleibt hell */
.card--featured,
.card--featured h3,
.card--featured .card__body,
.card--featured .body,
.card--featured p {
  color: rgba(251, 248, 241, 0.86) !important;
}

.card--featured h3 {
  color: var(--warm-white) !important;
}

.card--featured .card__num,
.card--featured .card__meta,
.card--featured .card__price,
.card--featured .card__cta {
  color: var(--soft-gold) !important;
}

/* Absätze luftiger */
.body + .body,
p + p {
  margin-top: 24px;
}

/* Mobile noch klarer */
@media (max-width: 640px) {
  :root {
    --fs-display: clamp(40px, 11vw, 54px);
    --fs-h2: clamp(30px, 8vw, 40px);
    --fs-body: 18.5px;
    --fs-lead: 21.5px;
  }

  body,
  .body,
  p,
  li,
  .card__body,
  .timeline__body,
  .faq__a-inner,
  .dropline,
  .bullets > li {
    font-size: 18.5px !important;
    line-height: 1.78 !important;
  }

  .display {
    line-height: 1.08 !important;
  }

  .section-head {
    line-height: 1.14 !important;
  }

  .eyebrow,
  .card__num,
  .card__meta,
  .cta-micro,
  .format-pill {
    letter-spacing: 0.08em !important;
  }

  .btn {
    font-size: 12px !important;
    letter-spacing: 0.09em !important;
    padding-left: 24px;
    padding-right: 24px;
  }

  .cta-micro {
    font-size: 11.8px !important;
    letter-spacing: 0.07em !important;
  }
}
/* =====================================================
   DARK FEATURED BLOCK FIX
   Für dunkle Programm-/Featured-Karten auf Astral Clear & Startseite
   ===================================================== */

.card--featured,
.card--featured *,
.card--featured h1,
.card--featured h2,
.card--featured h3,
.card--featured h4,
.card--featured p,
.card--featured li,
.card--featured .body,
.card--featured .card__body,
.card--featured .dropline,
.card--featured .bullets > li {
  color: rgba(251, 248, 241, 0.86) !important;
}

.card--featured h1,
.card--featured h2,
.card--featured h3,
.card--featured h4 {
  color: var(--warm-white) !important;
}

.card--featured .card__num,
.card--featured .card__meta,
.card--featured .card__price,
.card--featured .card__cta,
.card--featured .eyebrow,
.card--featured em,
.card--featured i {
  color: var(--soft-gold) !important;
}

.card--featured .card__cta {
  border-bottom-color: var(--soft-gold) !important;
}

.card--featured .card__cta:hover {
  color: var(--warm-white) !important;
  border-bottom-color: var(--warm-white) !important;
}
/* =====================================================
   READING EXPERIENCE Â· STARTSEITE TEST
   Mehr Leselust: Rhythmus, Kontrast, Textbreite
   Bitte ganz unten in styles.css einfÃ¼gen.
   ===================================================== */

:root {
  --muted: #3f3932;
  --ink: #0f1d18;
  --deep-green: #0f241e;
  --reading-gold: #92713c;
  --reading-gold-soft: #b89150;

  --fs-body: clamp(18.5px, 1.45vw, 20px);
  --fs-lead: clamp(21px, 2.05vw, 25px);
  --fs-eyebrow: 12px;

  --lh-body: 1.82;
  --track-eyebrow: 0.10em;
  --track-button: 0.10em;
}

/* Grundlesbarkeit */
body,
.body,
.body-readable,
.card__body,
.timeline__body,
.faq__a-inner,
.dropline,
.bullets > li,
.manifest-grid li,
.legal-content p,
.legal-content li {
  color: var(--muted) !important;
  font-size: var(--fs-body) !important;
  line-height: var(--lh-body) !important;
  font-weight: 400 !important;
  letter-spacing: 0.002em !important;
}

/* Angenehme Textbreite */
.body-readable {
  max-width: 640px;
}

.center .body-readable,
.opener .body-readable,
.mid .body-readable {
  margin-left: auto;
  margin-right: auto;
}

.reading-block {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.reading-block > * + * {
  margin-top: 24px;
}

/* Headlines: etwas krÃ¤ftiger, aber weiterhin elegant */
.display,
.section-head,
h1,
h2,
h3 {
  font-weight: 400 !important;
  color: var(--deep-green) !important;
}

.display {
  line-height: 1.06 !important;
}

.section-head {
  line-height: 1.12 !important;
}

/* Gold nur noch als klarer Akzent */
.lead,
.lead-readable,
em,
i,
.display em,
h1 em,
h2 em,
h3 em {
  color: var(--reading-gold) !important;
  font-weight: 400 !important;
}

.lead,
.lead-readable {
  font-size: var(--fs-lead) !important;
  line-height: 1.56 !important;
}

/* Kurze SchlÃ¼sselsÃ¤tze als Leseinseln */
.reading-callout {
  max-width: 720px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: 26px 34px !important;
  border-left: 1px solid var(--champagne) !important;
  background: rgba(199, 166, 107, 0.075) !important;
  color: var(--deep-green) !important;
  font-size: clamp(21px, 2vw, 26px) !important;
  line-height: 1.5 !important;
  font-style: italic !important;
}

/* Kleine Texte weniger gesperrt */
.eyebrow,
.card__num,
.card__meta,
.cta-micro,
.nav-primary a,
.header-cta,
.footer-bottom,
.footer-col h4,
.format-pill {
  letter-spacing: 0.10em !important;
  font-weight: 500 !important;
}

.eyebrow {
  font-size: 12px !important;
  color: #806b49 !important;
}

/* Navigation und Buttons lesbarer */
.nav-primary a {
  font-size: 12.5px !important;
  opacity: 0.92 !important;
}

.btn {
  font-size: 12.5px !important;
  letter-spacing: 0.10em !important;
  font-weight: 500 !important;
}

.btn:hover {
  letter-spacing: 0.12em !important;
}

.cta-micro {
  font-size: 12px !important;
  letter-spacing: 0.08em !important;
  line-height: 1.55 !important;
  color: #4f4840 !important;
}

/* Cards klarer */
.card {
  gap: 22px !important;
}

.card__body {
  font-size: 18.5px !important;
  line-height: 1.78 !important;
}

.card__meta,
.card__num {
  color: #806b49 !important;
}

.card__price {
  color: var(--reading-gold-soft) !important;
  font-weight: 400 !important;
}

/* Manifest-Liste klarer erfassbar */
.manifest-grid li {
  color: var(--deep-green) !important;
  font-size: 18px !important;
  line-height: 1.55 !important;
}

/* Testimonials: besser lesbar, weniger fragil */
.quote-card blockquote,
.testimonial blockquote {
  color: var(--deep-green) !important;
  font-size: clamp(19px, 1.65vw, 22px) !important;
  line-height: 1.62 !important;
  font-weight: 400 !important;
}

/* Dark sections: hell und weich, aber nicht ausgewaschen */
.section--dark,
.reading-dark,
.on-dark {
  color: var(--warm-white) !important;
}

.section--dark .display,
.section--dark .section-head,
.section--dark h1,
.section--dark h2,
.section--dark h3,
.on-dark .display,
.on-dark .section-head,
.on-dark h1,
.on-dark h2,
.on-dark h3 {
  color: var(--warm-white) !important;
}

.section--dark .body,
.section--dark .body-readable,
.section--dark p,
.section--dark li,
.section--dark .dropline,
.section--dark .bullets > li,
.on-dark .body,
.on-dark .body-readable,
.on-dark p,
.on-dark li,
.on-dark .dropline,
.on-dark .bullets > li {
  color: rgba(251, 248, 241, 0.84) !important;
}

.section--dark .lead,
.section--dark em,
.section--dark i,
.section--dark .eyebrow,
.on-dark .lead,
.on-dark em,
.on-dark i,
.on-dark .eyebrow {
  color: var(--soft-gold) !important;
}

/* Featured / Meisterschaft-Karten bleiben sauber hell */
.card--featured,
.card--featured *,
.card--featured h1,
.card--featured h2,
.card--featured h3,
.card--featured h4,
.card--featured p,
.card--featured li,
.card--featured .body,
.card--featured .body-readable,
.card--featured .card__body,
.card--featured .dropline,
.card--featured .bullets > li {
  color: rgba(251, 248, 241, 0.86) !important;
}

.card--featured h1,
.card--featured h2,
.card--featured h3,
.card--featured h4 {
  color: var(--warm-white) !important;
}

.card--featured .card__num,
.card--featured .card__meta,
.card--featured .card__price,
.card--featured .card__cta,
.card--featured .eyebrow,
.card--featured em,
.card--featured i {
  color: var(--soft-gold) !important;
}

/* Monogram-Abstand ohne Inline-Stil */
.mono-mark--spaced {
  margin-bottom: 40px !important;
}

/* Mobile: nicht nur grÃ¶ÃŸer, sondern ruhiger */
@media (max-width: 640px) {
  :root {
    --fs-display: clamp(40px, 11vw, 54px);
    --fs-h2: clamp(30px, 8vw, 40px);
    --fs-body: 18.5px;
    --fs-lead: 21.5px;
  }

  body,
  .body,
  .body-readable,
  .card__body,
  .timeline__body,
  .faq__a-inner,
  .dropline,
  .bullets > li,
  .manifest-grid li {
    font-size: 18.5px !important;
    line-height: 1.76 !important;
  }

  .display {
    line-height: 1.06 !important;
  }

  .section-head {
    line-height: 1.12 !important;
  }

  .reading-callout {
    padding: 22px 24px !important;
    font-size: 21px !important;
  }

  .eyebrow,
  .card__num,
  .card__meta,
  .cta-micro,
  .format-pill {
    letter-spacing: 0.075em !important;
  }

  .btn {
    font-size: 12px !important;
    letter-spacing: 0.085em !important;
    padding-left: 24px;
    padding-right: 24px;
  }

  .cta-micro {
    font-size: 11.8px !important;
    letter-spacing: 0.06em !important;
  }
}
/* =====================================================
   NEWSLETTER FORM · WEBHOOK STATES
   ===================================================== */

.form-note {
  margin: 20px auto 0;
  max-width: 620px;
  font-family: var(--serif);
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(63, 57, 50, 0.78);
  text-align: center;
}

.form-success {
  margin-top: 32px;
  text-align: center;
  color: var(--champagne) !important;
}

.form-error {
  margin: 24px auto 0;
  max-width: 620px;
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.6;
  color: #8a2f24;
  text-align: center;
}

.newsletter-form button:disabled {
  opacity: 0.65;
  cursor: wait;
}