/* ═══════════════════════════════════════════════════════
   POOKKARI — DESIGN SYSTEM
   Soft botanical / organic · elegant, warm, handcrafted
   ═══════════════════════════════════════════════════════ */

:root {
  /* Botanical palette — anchored on the brand navy */
  --bone:        #ffffff;          /* main page bg */
  --bone-2:      #f7f5f0;          /* secondary section bg */
  --cream:       #f0ebde;          /* tertiary alt */
  --paper:       #faf7ef;          /* card hovers */
  --navy:        #04225f;          /* brand primary */
  --navy-d:      #021544;          /* deepest */
  --navy-l:      #1a3a87;          /* hover/lighter */
  --navy-soft:   #e6ebf3;          /* tint backgrounds */
  --sage:        #8ba68b;          /* supporting botanical */
  --sage-d:      #5e7a5e;
  --sage-soft:   #c4d1bf;
  --rose:        #c98a85;          /* accent */
  --rose-d:      #a36662;
  --rose-l:      #e0b5b0;
  --rose-soft:   #ead0c9;
  --terracotta:  #c97a4e;          /* warm accent */
  --terracotta-l:#e0a37c;
  --gold:        #b88a4a;          /* warm gold */
  --gold-l:      #d3aa72;
  --forest:      #2d3a30;          /* legacy alt dark (now secondary) */
  --forest-l:    #3d4d40;
  --ink:         #0a1840;          /* near-black matches navy depth */
  --white:       #ffffff;
  --line:        rgba(4, 34, 95, .10);   /* navy-tinted lines */
  --line-2:      rgba(4, 34, 95, .18);
  --tint-90:      rgba(4, 34, 95, .90);  /* text primary on light */
  --tint-66:      rgba(4, 34, 95, .66);  /* body / lead text */
  --tint-60:      rgba(4, 34, 95, .60);
  --tint-55:      rgba(4, 34, 95, .55);
  --tint-45:      rgba(4, 34, 95, .45);
  --tint-40:      rgba(4, 34, 95, .40);
  --shadow-sm:   0 1px 2px rgba(4, 34, 95, .04);
  --shadow:      0 12px 36px -16px rgba(4, 34, 95, .12);
  --shadow-lg:   0 24px 56px -20px rgba(4, 34, 95, .16);

  --max:         1240px;
  --pad:         clamp(20px, 4vw, 56px);

  --serif:       'Cormorant Garamond', 'Times New Roman', serif;
  --sans:        'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;

  --ease:        cubic-bezier(.2, .7, .2, 1);
  --ease-out:    cubic-bezier(.16, 1, .3, 1);
  --t-fast:      220ms;
  --t-med:       480ms;
  --t-slow:      880ms;
}

/* ── Reset ─────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  font-family: var(--sans);
  background: var(--bone);
  color: var(--navy);
  line-height: 1.65;
  font-weight: 300;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: inherit; color: inherit; }
ul { list-style: none; }
em { font-family: var(--serif); font-style: italic; color: var(--rose); }

/* ── Custom cursor (desktop only) ──────────── */
@media (hover: hover) and (pointer: fine) {
  body, a, button, [data-cursor] { cursor: none; }
  .cursor {
    position: fixed; top: 0; left: 0;
    width: 8px; height: 8px;
    background: var(--navy);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transform: translate(-50%, -50%);
    transition: width .25s var(--ease), height .25s var(--ease), background .25s var(--ease);
  }
  .cursor-ring {
    position: fixed; top: 0; left: 0;
    width: 40px; height: 40px;
    border: 1px solid var(--navy);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width .35s var(--ease), height .35s var(--ease), border-color .35s var(--ease), background .35s var(--ease);
    opacity: .5;
  }
  .cursor.expand { width: 64px; height: 64px; background: transparent; border-color: var(--rose); }
  .cursor-ring.expand { width: 72px; height: 72px; border-color: var(--rose); background: rgba(201, 138, 133, .08); }
  .cursor.text { width: 6px; height: 6px; background: var(--rose); }
  .cursor-ring.text { width: 80px; height: 80px; background: rgba(201, 138, 133, .1); border-color: transparent; }
}
@media (max-width: 900px) {
  .cursor, .cursor-ring { display: none; }
  body, a, button { cursor: auto; }
}

/* ── Page transition (inter-page fade) ─────── */
.page-fade {
  animation: pageFade .7s var(--ease-out) both;
}
@keyframes pageFade {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Layout containers ─────────────────────── */
.wrap     { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
.wrap-sm  { max-width: 920px;  margin: 0 auto; padding: 0 var(--pad); }
.wrap-xs  { max-width: 680px;  margin: 0 auto; padding: 0 var(--pad); }
section   { position: relative; }
.pad-section    { padding: clamp(72px, 10vw, 140px) 0; }
.pad-section-sm { padding: clamp(56px,  7vw,  96px) 0; }

/* ── Type ──────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -.015em;
  color: var(--navy);
}
.h-display {
  font-size: clamp(48px, 7.5vw, 112px);
  line-height: 1;
  letter-spacing: -.025em;
  font-weight: 300;
}
.h-display em { font-style: italic; color: var(--rose); font-weight: 400; }
.h1 { font-size: clamp(36px, 5vw, 64px); line-height: 1.05; }
.h1 em { font-style: italic; color: var(--rose); }
.h2 { font-size: clamp(30px, 4vw, 48px); line-height: 1.08; }
.h2 em { font-style: italic; color: var(--rose); }
.h3 { font-size: clamp(22px, 2.4vw, 30px); line-height: 1.2; }
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: lowercase;
  color: var(--sage-d);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--sage);
}
.lead {
  font-size: clamp(15px, 1.3vw, 17px);
  color: rgba(4, 34, 95, .66);
  line-height: 1.85;
  max-width: 520px;
  font-weight: 300;
}

/* ── Reveal-on-scroll ──────────────────────── */
.reveal {
  /* Default: visible. JS adds .reveal-pending to opt into the fade-in. */
  opacity: 1;
  transform: none;
}
.reveal.reveal-pending {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.reveal.reveal-pending.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
.reveal-img {
  /* Default: fully visible. JS adds .reveal-img-pending to opt into the clip animation. */
  clip-path: inset(0 0 0 0);
}
.reveal-img.reveal-img-pending {
  clip-path: inset(100% 0 0 0);
  transition: clip-path 1.1s var(--ease-out);
}
.reveal-img.reveal-img-pending.in {
  clip-path: inset(0 0 0 0);
}

/* ── Buttons ───────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: lowercase;
  transition: all .3s var(--ease);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn::after {
  content: '→';
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: 0;
  transition: transform .3s var(--ease);
}
.btn:hover::after { transform: translateX(6px); }
.btn-pri { background: var(--navy); color: var(--bone); border: 1px solid var(--navy); }
.btn-pri:hover { background: var(--navy-d); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-ghost { background: transparent; color: var(--navy); border: 1px solid var(--line-2); }
.btn-ghost:hover { background: var(--navy); color: var(--bone); transform: translateY(-2px); border-color: var(--navy); }
.btn-rose { background: var(--rose); color: var(--bone); }
.btn-rose:hover { background: var(--rose-d); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-light { background: var(--bone); color: var(--navy); border: 1px solid transparent; }
.btn-light:hover { background: var(--paper); transform: translateY(-2px); }

/* ── Nav ───────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 16px var(--pad);
  transition: all .4s var(--ease);
}
.nav.scrolled {
  padding: 10px var(--pad);
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  color: var(--navy);
  height: 56px;
}
.nav-logo img,
.nav-logo svg { height: 56px; width: auto; display: block; }
.nav.scrolled .nav-logo img,
.nav.scrolled .nav-logo svg { height: 44px; transition: height .3s var(--ease); }
/* On dark hero/sustainability pages, the logo stays the original navy */
.dark-page .nav-logo img { filter: none; }
.nav-links {
  display: flex;
  gap: 6px;
  align-items: center;
}
.nav-links a {
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: lowercase;
  color: var(--navy);
  opacity: .65;
  transition: opacity .25s var(--ease);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 1px;
  background: var(--rose);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease);
}
.nav-links a:hover, .nav-links a.active { opacity: 1; }
.nav-links a:hover::after, .nav-links a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav-cta {
  padding: 11px 22px;
  background: var(--navy);
  color: var(--bone);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: lowercase;
  transition: all .25s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.nav-cta:hover { background: var(--rose); transform: translateY(-1px); }
.nav-preview-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--rose-soft);
  color: var(--rose-d);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: lowercase;
  border: 1px solid var(--rose);
  border-radius: 999px;
  white-space: nowrap;
  margin-right: 4px;
}
.nav-preview-badge::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--rose);
  animation: pulse 2s ease-in-out infinite;
}
.hamburger {
  display: none;
  width: 36px; height: 36px;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hamburger span {
  position: absolute;
  left: 8px; right: 8px;
  height: 1.5px;
  background: var(--navy);
  transition: all .3s var(--ease);
}
.hamburger span:nth-child(1) { top: 13px; }
.hamburger span:nth-child(2) { bottom: 13px; }
.hamburger.open span:nth-child(1) { top: 17px; transform: rotate(45deg); }
.hamburger.open span:nth-child(2) { bottom: 17px; transform: rotate(-45deg); }
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 199;
  background: var(--bone);
  padding: 100px var(--pad) 40px;
  transform: translateY(-100%);
  transition: transform .5s var(--ease);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a {
  display: block;
  padding: 18px 0;
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 300;
  color: var(--navy);
  border-bottom: 1px solid var(--line);
  transition: padding .3s var(--ease), color .25s var(--ease);
}
.mobile-menu a:hover { padding-left: 12px; color: var(--rose); }

/* ── Marquee ───────────────────────────────── */
.marquee {
  overflow: hidden;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 48px;
  animation: marquee 40s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee-track span {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  letter-spacing: .02em;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 48px;
}
.marquee-track span::after { content: '✦'; color: var(--rose); font-size: 18px; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Footer ────────────────────────────────── */
footer {
  background: var(--navy-d);
  color: rgba(250, 246, 239, .6);
  padding: 96px 0 0;
  position: relative;
  overflow: hidden;
}
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--rose) 50%, transparent);
}
.ft-top {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 64px 48px;
}
.ft-brand .ft-logo { height: 72px; width: auto; color: var(--bone); margin-bottom: 32px; opacity: 1; }
.ft-brand .ft-logo:not(svg) {
  /* Invert the navy logo so it shows white on the dark footer */
  filter: brightness(0) invert(1);
  opacity: .95;
}
.ft-tagline {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(250, 246, 239, .5);
  max-width: 320px;
  margin-bottom: 28px;
  font-weight: 300;
}
.ft-col h4 {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: lowercase;
  color: rgba(250, 246, 239, .4);
  margin-bottom: 24px;
}
.ft-col ul { display: flex; flex-direction: column; gap: 12px; }
.ft-col ul a {
  font-size: 13px;
  color: rgba(250, 246, 239, .7);
  transition: color .25s var(--ease), padding .25s var(--ease);
  display: inline-block;
  font-weight: 300;
}
.ft-col ul a:hover { color: var(--bone); padding-left: 6px; }
.ft-social { display: flex; gap: 12px; margin-top: 32px; }
.ft-social a {
  width: 38px; height: 38px;
  border: 1px solid rgba(250, 246, 239, .16);
  display: flex; align-items: center; justify-content: center;
  transition: all .3s var(--ease);
  color: rgba(250, 246, 239, .6);
}
.ft-social a:hover {
  border-color: var(--rose);
  color: var(--rose-l);
  transform: translateY(-2px);
}
.ft-bottom { margin-top: 88px; padding: 32px 0; border-top: 1px solid rgba(250, 246, 239, .07); }
.ft-bottom-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 11px;
  letter-spacing: .06em;
}
.ft-bottom-inner span { color: rgba(250, 246, 239, .3); }
.ft-bottom-inner a { color: rgba(250, 246, 239, .45); transition: color .25s var(--ease); }
.ft-bottom-inner a:hover { color: var(--rose-l); }

/* ── Contact strip ─────────────────────────── */
.cstrip {
  padding: clamp(64px, 8vw, 112px) 0;
  background: var(--navy);
  color: var(--bone);
  position: relative;
  overflow: hidden;
}
.cstrip::before, .cstrip::after {
  content: '🌸';
  position: absolute;
  font-size: 120px;
  opacity: .06;
}
.cstrip::before { top: 30px; left: 6%; transform: rotate(-15deg); }
.cstrip::after  { bottom: 30px; right: 6%; transform: rotate(25deg); }
.cstrip-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
  position: relative;
  z-index: 1;
}
.cstrip h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300;
  font-style: italic;
  color: var(--bone);
  line-height: 1.15;
  max-width: 560px;
}
.cstrip-right a {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--rose);
  color: var(--bone);
  padding: 16px 32px;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: lowercase;
  transition: all .3s var(--ease);
}
.cstrip-right a:hover {
  background: var(--rose-d);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* ── Modal (subscriptions) ─────────────────── */
.moverlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(2, 21, 68, .7);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.moverlay.open { display: flex; animation: fadeIn .3s forwards; }
@keyframes fadeIn { to { opacity: 1; } }
.modal {
  background: var(--bone);
  width: 100%;
  max-width: 480px;
  padding: 48px 44px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px);
  animation: modalIn .4s var(--ease-out) forwards;
}
@keyframes modalIn { to { transform: translateY(0); } }
.mcl {
  position: absolute;
  top: 20px; right: 20px;
  background: none; border: none;
  font-size: 24px;
  color: rgba(4, 34, 95, .4);
  line-height: 1;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  transition: color .2s var(--ease);
}
.mcl:hover { color: var(--navy); }
.modal h3 { font-family: var(--serif); font-size: 32px; font-weight: 400; margin-bottom: 8px; }
.modal p  { font-size: 13px; color: rgba(4, 34, 95, .6); line-height: 1.7; margin-bottom: 16px; }
.modal-price {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 300;
  color: var(--navy);
  line-height: 1;
  margin: 20px 0 24px;
  letter-spacing: -.02em;
}
.modal-price span { font-size: 14px; opacity: .5; font-family: var(--sans); font-weight: 400; }
.tier-toggle { display: flex; gap: 8px; margin-bottom: 20px; }
.tier-btn {
  flex: 1;
  padding: 14px 8px;
  border: 1px solid var(--line-2);
  background: transparent;
  color: var(--navy);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: lowercase;
  transition: all .25s var(--ease);
  line-height: 1.4;
}
.tier-btn.active { background: var(--navy); color: var(--bone); border-color: var(--navy); }
.tier-btn small { font-size: 10px; opacity: .7; display: block; margin-top: 4px; }
.m-fg { margin-bottom: 14px; }
.m-fg label {
  display: block;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: lowercase;
  color: rgba(4, 34, 95, .55);
  margin-bottom: 6px;
  font-weight: 500;
}
.m-fg input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line-2);
  background: var(--white);
  font-size: 14px;
  color: var(--navy);
  outline: none;
  transition: border-color .25s var(--ease);
}
.m-fg input:focus { border-color: var(--navy); }
.stripe-note { font-size: 11px; color: rgba(4, 34, 95, .45); margin: 16px 0; line-height: 1.55; }
.btn-pay {
  width: 100%;
  padding: 16px;
  background: var(--navy);
  color: var(--bone);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: lowercase;
  transition: all .25s var(--ease);
}
.btn-pay:hover { background: var(--navy-d); }

/* ═══ HOME — HERO ══════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 0 80px;
  display: flex;
  align-items: center;
  background: var(--bone);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201, 138, 133, .12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -300px; left: -200px;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(139, 166, 139, .10) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-text { position: relative; z-index: 2; }
.hero-eyebrow { margin-bottom: 32px; }
.hero-text h1 { margin-bottom: 32px; max-width: 680px; }
.hero-text .lead { margin-bottom: 48px; max-width: 460px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-visual { position: relative; height: 640px; display: flex; align-items: center; justify-content: center; }
.hero-visual { position: relative; }
.hero-img-frame { position: relative; width: 100%; height: 100%; }
.hero-img-main {
  position: absolute; top: 0; right: 0;
  width: 78%; height: 88%;
  object-fit: cover;
  border-radius: 240px 240px 12px 12px;
  box-shadow: var(--shadow-lg);
}
.hero-img-sec {
  position: absolute; bottom: 0; left: 0;
  width: 48%; height: 55%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}
.hero-img-placeholder-tag {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 4;
  background: var(--bone);
  border: 1px dashed var(--rose);
  color: var(--rose-d);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: lowercase;
  padding: 6px 12px;
  text-align: center;
  line-height: 1.5;
  border-radius: 2px;
}
.hero-img-placeholder-tag em { color: var(--navy); font-style: italic; font-weight: 400; }
.gallery-placeholder-tag {
  position: absolute;
  top: 16px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  background: var(--bone);
  border: 1px dashed var(--rose);
  color: var(--rose-d);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: lowercase;
  padding: 6px 14px;
  border-radius: 999px;
  white-space: nowrap;
  z-index: 3;
}
.hero-flower {
  position: absolute; top: 30%; left: -30px;
  width: 130px; height: 130px;
  opacity: .95;
  animation: slowSpin 30s linear infinite;
  color: var(--rose);
}
@keyframes slowSpin { to { transform: rotate(360deg); } }
.hero-stamp {
  position: absolute; top: 50px; left: -20px;
  background: var(--bone);
  padding: 14px 18px;
  box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 10px;
  z-index: 2;
  transform: rotate(-4deg);
}
.hero-stamp-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--rose);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .5; transform: scale(1.4); }
}
.hero-stamp span { font-size: 11px; letter-spacing: .12em; text-transform: lowercase; color: var(--navy); font-weight: 500; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  background: var(--bone);
  padding: 32px 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  max-width: 560px;
  margin: -60px auto 0;
  position: relative;
  z-index: 3;
}
.hero-stat { text-align: left; }
.hero-stat-num {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 300;
  color: var(--navy);
  line-height: 1;
  display: flex; align-items: baseline; gap: 4px;
}
.hero-stat-num small { font-size: 14px; color: var(--rose); font-family: var(--serif); font-style: italic; }
.hero-stat p { font-size: 11px; letter-spacing: .16em; text-transform: lowercase; color: rgba(4, 34, 95, .55); margin-top: 8px; font-weight: 500; }

/* ═══ HOME — SERVICES ══════════════════════════ */
.svc-header { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 24px; margin-bottom: 64px; }
.svc-header h2 { max-width: 680px; }
.svc-header .lead { max-width: 340px; }
.svc-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 1fr;
  gap: 20px;
}
.svc-card {
  background: var(--white);
  padding: 36px 28px;
  transition: all .5s var(--ease);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 340px;
  border: 1px solid var(--line);
}
.svc-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--rose);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease);
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-card.feat { grid-column: span 2; background: var(--navy); color: var(--bone); border-color: transparent; }
.svc-card.feat::before { background: var(--rose-l); }
.svc-card.feat h3, .svc-card.feat .svc-num { color: var(--bone); }
.svc-card.feat p { color: rgba(250, 246, 239, .65); }
.svc-card.feat .svc-lnk { color: var(--rose-l); }
.svc-card.span2 { grid-column: span 2; }
.svc-card.span3 { grid-column: span 3; }
.svc-card.cta {
  background: var(--bone-2);
  border: 1px dashed var(--line-2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}
.svc-card.cta h3 { font-size: 24px; }
.svc-card.cta p { margin-bottom: 20px; }
.svc-num { font-family: var(--serif); font-size: 14px; font-style: italic; color: var(--rose); margin-bottom: 24px; }
.svc-emoji { font-size: 36px; margin-bottom: 24px; display: inline-block; transition: transform .5s var(--ease); }
.svc-card:hover .svc-emoji { transform: scale(1.15) rotate(-8deg); }
.svc-card h3 { font-family: var(--serif); font-size: 26px; font-weight: 400; margin-bottom: 14px; }
.svc-card p { font-size: 14px; color: rgba(4, 34, 95, .6); line-height: 1.75; margin-bottom: auto; font-weight: 300; }
.svc-lnk {
  margin-top: 24px;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: lowercase;
  color: var(--navy);
  font-weight: 500;
  transition: color .25s var(--ease), gap .25s var(--ease);
}
.svc-lnk:hover { color: var(--rose); gap: 14px; }

/* ═══ HOME — FEATURE PHOTO ═════════════════════ */
.feature-photo { display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: center; }
.feature-photo-img { position: relative; aspect-ratio: 4/5; overflow: hidden; border-radius: 8px; }
.feature-photo-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 8s var(--ease);
}
.feature-photo:hover .feature-photo-img img { transform: scale(1.12); }
.feature-photo-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(4, 34, 95, .18));
}
.feature-photo-badge {
  position: absolute; top: 20px; left: 20px;
  background: var(--bone);
  padding: 10px 16px;
  display: flex; align-items: center; gap: 8px;
  z-index: 2;
}
.feature-photo-badge span { font-size: 10px; letter-spacing: .18em; text-transform: lowercase; color: var(--navy); font-weight: 500; }
.feature-photo-text h2 { margin-bottom: 32px; max-width: 480px; }
.feature-photo-text .lead { margin-bottom: 36px; max-width: 420px; }
.feature-photo-list { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.feature-photo-list li {
  display: flex; gap: 14px; align-items: flex-start;
  font-size: 14px;
  color: rgba(4, 34, 95, .75);
  font-weight: 300;
  line-height: 1.7;
}
.feature-photo-list li::before { content: '✦'; color: var(--rose); font-size: 14px; flex-shrink: 0; margin-top: 4px; }

/* ═══ HOME — FUND BAND ═════════════════════════ */
.fund-band { background: var(--navy); color: var(--bone); position: relative; overflow: hidden; }
.fund-band::before {
  content: '🌿';
  position: absolute; top: 50%; right: -30px;
  transform: translateY(-50%);
  font-size: 300px; opacity: .05;
}
.fund-band-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.fund-band-text h2 { color: var(--bone); font-style: italic; margin-bottom: 24px; }
.fund-band-text p { color: rgba(250, 246, 239, .7); font-size: 16px; line-height: 1.85; max-width: 480px; margin-bottom: 36px; }
.fund-band-pct { text-align: right; }
.fund-band-pct .num {
  font-family: var(--serif);
  font-size: clamp(120px, 16vw, 220px);
  font-weight: 300;
  color: var(--rose-l);
  line-height: .85;
  letter-spacing: -.04em;
}
.fund-band-pct .lbl { font-size: 11px; letter-spacing: .28em; text-transform: lowercase; color: rgba(250, 246, 239, .6); margin-top: 16px; }

/* ═══ HOME — TESTIMONIALS ══════════════════════ */
.testi-section { background: var(--bone-2); position: relative; overflow: hidden; }
.testi-section::before {
  content: '❝';
  position: absolute; top: 40px; left: 5%;
  font-family: var(--serif);
  font-size: 280px;
  color: rgba(139, 166, 139, .10);
  line-height: 1;
  pointer-events: none;
}
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tcard {
  background: var(--white);
  padding: 40px 32px;
  border: 1px solid var(--line);
  position: relative;
  transition: all .4s var(--ease);
}
.tcard:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.tcard .tstars { color: var(--gold); font-size: 11px; letter-spacing: 3px; margin-bottom: 20px; }
.tcard blockquote {
  font-family: var(--serif);
  font-size: 19px;
  font-style: italic;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 24px;
}
.tcard cite { display: flex; align-items: center; gap: 12px; font-style: normal; }
.tcard cite::before { content: ''; width: 24px; height: 1px; background: var(--rose); }
.tcard cite span {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: lowercase;
  color: rgba(4, 34, 95, .5);
  font-weight: 500;
  font-family: var(--sans);
}

/* ═══ HOME — GALLERY STRIP ═════════════════════ */
.gallery-strip { display: grid; grid-template-columns: repeat(6, 1fr); gap: 2px; }
.gallery-strip img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform .8s var(--ease), filter .4s var(--ease);
  filter: saturate(.92);
}
.gallery-strip a { overflow: hidden; position: relative; display: block; }
.gallery-strip a::after {
  content: '↗';
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(4, 34, 95, .4);
  color: var(--bone);
  font-size: 28px;
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.gallery-strip a:hover img { transform: scale(1.08); filter: saturate(1.1); }
.gallery-strip a:hover::after { opacity: 1; }

/* ═══ PAGE HERO (interior) ═════════════════════ */
.page-hero {
  padding: clamp(140px, 18vh, 200px) 0 clamp(60px, 8vw, 100px);
  background: var(--bone);
  position: relative;
  overflow: hidden;
}
.page-hero.dark { background: var(--navy); color: var(--bone); }
.page-hero.dark h1, .page-hero.dark h2 { color: var(--bone); }
.page-hero.dark .lead { color: rgba(250, 246, 239, .7); }
.page-hero.dark .eyebrow { color: var(--rose-l); }
.page-hero-inner { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); position: relative; z-index: 1; }
.page-hero-inner.split-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: end;
}
.page-hero h1 { margin: 24px 0; }
.page-hero .lead { max-width: 560px; }
.page-hero-orb {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 138, 133, .2) 0%, transparent 70%);
  top: -200px; right: -200px;
  pointer-events: none;
}

/* ═══ EVENTS PAGE ══════════════════════════════ */
.evt-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; margin-bottom: 80px; }
.evt-intro h2 { max-width: 560px; }
.evt-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-bottom: 80px;
}
.evt-item {
  background: var(--bone);
  padding: 48px 40px;
  transition: background .3s var(--ease);
  position: relative;
}
.evt-item:hover { background: var(--white); }
.evt-item-num { font-family: var(--serif); font-size: 14px; font-style: italic; color: var(--rose); margin-bottom: 24px; }
.evt-item h3 { font-family: var(--serif); font-size: 30px; font-weight: 400; margin-bottom: 16px; }
.evt-item p { font-size: 15px; color: rgba(4, 34, 95, .65); line-height: 1.8; font-weight: 300; }
.evt-cta { background: var(--navy); color: var(--bone); padding: 64px 56px; position: relative; overflow: hidden; }
.evt-cta::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(201, 138, 133, .25) 0%, transparent 70%);
  border-radius: 50%;
}
.evt-cta h3 {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 300;
  font-style: italic;
  color: var(--bone);
  line-height: 1.2;
  margin-bottom: 20px;
  max-width: 420px;
  position: relative;
}
.evt-cta p {
  color: rgba(250, 246, 239, .7);
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 32px;
  max-width: 480px;
  position: relative;
}
.evt-cta .btn-rose { position: relative; }
.evt-gallery { display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px; margin-top: 80px; }
.evt-gallery .g1 { grid-column: span 5; aspect-ratio: 4/5; }
.evt-gallery .g2 { grid-column: span 4; aspect-ratio: 3/4; margin-top: 80px; }
.evt-gallery .g3 { grid-column: span 3; aspect-ratio: 1; }
.evt-gallery img { width: 100%; height: 100%; object-fit: cover; border-radius: 4px; }

/* ═══ INSTALLATIONS PAGE ═══════════════════════ */
.inst-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-bottom: 80px;
}
.inst-tile {
  background: var(--bone);
  padding: 48px 40px;
  transition: all .4s var(--ease);
  position: relative;
  overflow: hidden;
}
.inst-tile::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 0;
  background: var(--rose);
  transition: height .4s var(--ease);
}
.inst-tile:hover { background: var(--white); }
.inst-tile:hover::after { height: 3px; }
.inst-tile-emoji { font-size: 42px; margin-bottom: 24px; display: inline-block; }
.inst-tile h4 { font-family: var(--serif); font-size: 26px; font-weight: 400; margin-bottom: 14px; }
.inst-tile p { font-size: 14px; color: rgba(4, 34, 95, .6); line-height: 1.75; font-weight: 300; }
.inst-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 60px; }
.inst-gallery img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: 4px; transition: transform .8s var(--ease); }
.inst-gallery a { overflow: hidden; display: block; }
.inst-gallery a:hover img { transform: scale(1.05); }
.inst-strip {
  background: var(--navy);
  color: var(--bone);
  padding: 48px 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}
.inst-strip::before {
  content: '🌿';
  position: absolute;
  font-size: 140px;
  opacity: .06;
  top: 50%; right: 20px;
  transform: translateY(-50%);
}
.inst-badges { display: flex; gap: 48px; flex-wrap: wrap; align-items: center; position: relative; }
.inst-badge { text-align: left; }
.inst-badge-ic { font-size: 24px; color: var(--rose-l); margin-bottom: 8px; }
.inst-badge-lbl { font-size: 11px; letter-spacing: .18em; text-transform: lowercase; color: rgba(250, 246, 239, .55); font-weight: 500; }
.inst-sep { width: 1px; background: rgba(250, 246, 239, .1); height: 44px; align-self: center; }

/* ═══ SUBSCRIBE PAGE ═══════════════════════════ */
.sub-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 0;
  margin-top: 60px;
  margin-bottom: 60px;
  border: 1px solid var(--line);
  background: var(--line);
  position: relative;
}
.sub-grid > * {
  background: var(--white);
  padding: 48px 36px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.sub-card.hl { background: var(--navy); color: var(--bone); }
.sub-card.hl h3, .sub-card.hl .sub-price { color: var(--bone); }
.sub-card.hl p, .sub-card.hl .sub-perks li { color: rgba(250, 246, 239, .65); }
.sub-card.hl .sub-perks li::before { color: var(--rose-l); }
.sub-badge {
  position: absolute; top: -12px; left: 36px;
  background: var(--rose);
  color: var(--bone);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: lowercase;
  padding: 5px 14px;
  font-weight: 500;
}
.sub-season { font-size: 10px; letter-spacing: .22em; text-transform: lowercase; color: var(--sage-d); font-weight: 500; margin-bottom: 12px; }
.sub-card.hl .sub-season { color: var(--rose-l); }
.sub-card h3 { font-family: var(--serif); font-size: 34px; font-weight: 400; margin-bottom: 14px; line-height: 1.1; }
.sub-card > p { font-size: 14px; color: rgba(4, 34, 95, .6); line-height: 1.75; margin-bottom: 28px; font-weight: 300; }
.sub-price {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 24px;
  letter-spacing: -.02em;
  color: var(--navy);
}
.sub-price small { font-size: 13px; font-weight: 400; color: rgba(4, 34, 95, .5); font-family: var(--sans); margin-left: 6px; }
.sub-card.hl .sub-price small { color: rgba(250, 246, 239, .5); }
.sub-div { height: 1px; background: var(--line); margin: 0 0 24px; }
.sub-card.hl .sub-div { background: rgba(250, 246, 239, .1); }
.sub-perks { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.sub-perks li {
  font-size: 13px;
  color: rgba(4, 34, 95, .7);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 300;
  line-height: 1.6;
}
.sub-perks li::before { content: '✦'; color: var(--rose); font-size: 11px; flex-shrink: 0; margin-top: 3px; }
.btn-sub {
  padding: 14px 24px;
  background: var(--navy);
  color: var(--bone);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: lowercase;
  transition: all .25s var(--ease);
  margin-top: auto;
  text-align: center;
  display: block;
}
.btn-sub:hover { background: var(--navy-d); transform: translateY(-2px); }
.sub-card.hl .btn-sub { background: var(--rose); }
.sub-card.hl .btn-sub:hover { background: var(--rose-d); }
.btn-sub.outline { background: transparent; border: 1px solid var(--navy); color: var(--navy); }
.btn-sub.outline:hover { background: var(--navy); color: var(--bone); }
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 60px; }
.how-step { position: relative; padding-top: 40px; border-top: 2px solid var(--sage); }
.how-step:nth-child(2) { border-color: var(--rose); }
.how-step:nth-child(3) { border-color: var(--gold); }
.how-num {
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 300;
  color: var(--rose);
  opacity: .4;
  line-height: 1;
  margin-bottom: 16px;
}
.how-step:nth-child(2) .how-num { color: var(--sage); opacity: .55; }
.how-step:nth-child(3) .how-num { color: var(--gold); opacity: .6; }
.how-step h4 { font-family: var(--serif); font-size: 24px; font-weight: 400; margin-bottom: 12px; }
.how-step p { font-size: 14px; color: rgba(4, 34, 95, .6); line-height: 1.75; font-weight: 300; }

/* ═══ KIND WORDS PAGE ══════════════════════════ */
.kw-track-wrap {
  overflow: hidden;
  padding-bottom: 24px;
  margin: 0 calc(-1 * var(--pad));
  padding-left: var(--pad);
  padding-right: var(--pad);
}
.kw-track { display: flex; gap: 24px; transition: transform .6s var(--ease); will-change: transform; }
.kw-slide { min-width: 380px; flex-shrink: 0; }
.kw-img { height: 320px; overflow: hidden; position: relative; }
.kw-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.kw-slide:hover .kw-img img { transform: scale(1.06); }
.kw-body { background: var(--navy); color: var(--bone); padding: 32px 32px 36px; position: relative; }
.kw-body::before {
  content: '❝';
  position: absolute; top: 16px; right: 24px;
  font-family: var(--serif);
  font-size: 80px;
  color: var(--rose);
  opacity: .3;
  line-height: 1;
}
.kw-body blockquote {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  color: rgba(250, 246, 239, .9);
  line-height: 1.5;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.kw-body cite {
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: lowercase;
  color: rgba(250, 246, 239, .5);
  font-style: normal;
  font-family: var(--sans);
  font-weight: 500;
}
.kw-ctl { display: flex; align-items: center; gap: 16px; margin-top: 32px; }
.kw-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  background: transparent;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: var(--navy);
  transition: all .3s var(--ease);
}
.kw-btn:hover { background: var(--navy); color: var(--bone); border-color: var(--navy); transform: scale(1.05); }
.kw-dots { display: flex; gap: 8px; }
.kw-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(4, 34, 95, .18);
  transition: all .25s var(--ease);
  cursor: pointer;
}
.kw-dot.on { background: var(--rose); width: 24px; border-radius: 4px; }

/* ═══ FUNDRAISING PAGE ═════════════════════════ */
.fund-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 32px; margin-top: 60px; }
.fund-card { background: var(--navy); color: var(--bone); padding: 56px 48px; position: relative; overflow: hidden; }
.fund-card::before { content: '🌸'; position: absolute; top: -30px; right: -20px; font-size: 160px; opacity: .06; }
.fund-card h3 { color: var(--bone); font-family: var(--serif); font-size: 34px; font-weight: 400; margin-bottom: 16px; }
.fund-card p { color: rgba(250, 246, 239, .7); font-size: 15px; line-height: 1.85; margin-bottom: 32px; font-weight: 300; max-width: 480px; }
.fund-perks { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.fund-perk { display: flex; gap: 14px; align-items: flex-start; }
.fund-perk span:first-child { color: var(--rose-l); flex-shrink: 0; margin-top: 2px; }
.fund-perk span:last-child { font-size: 14px; color: rgba(250, 246, 239, .85); line-height: 1.6; }
.fund-active { background: var(--white); border: 1px solid var(--line); padding: 56px 48px; position: relative; }
.fund-active h3 { font-family: var(--serif); font-size: 34px; font-weight: 400; margin-bottom: 16px; }
.fund-active p { font-size: 15px; color: rgba(4, 34, 95, .6); line-height: 1.85; margin-bottom: 28px; }
.fund-empty { background: var(--bone-2); padding: 32px 28px; text-align: center; margin: 24px 0; }
.fund-empty-ic { font-size: 32px; margin-bottom: 8px; }
.fund-empty p { font-size: 13px; color: rgba(4, 34, 95, .5); line-height: 1.65; margin: 0; }
.fund-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px; }
.fund-stat {
  padding: 48px 32px;
  background: var(--white);
  border: 1px solid var(--line);
  text-align: center;
  transition: all .4s var(--ease);
}
.fund-stat:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.fund-stat-num {
  font-family: var(--serif);
  font-size: 72px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -.03em;
}
.fund-stat p { font-size: 12px; letter-spacing: .14em; text-transform: lowercase; color: rgba(4, 34, 95, .6); margin-top: 14px; font-weight: 500; }

/* ═══ SUSTAINABILITY PAGE ══════════════════════ */
.sust-intro { display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: center; margin-bottom: 80px; }
.sust-intro h2 { margin-bottom: 24px; }
.sust-intro .lead { font-size: 16px; }
.sust-image { aspect-ratio: 4/3; overflow: hidden; border-radius: 8px; position: relative; }
.sust-image img { width: 100%; height: 100%; object-fit: cover; }
.sust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(250, 246, 239, .1);
  margin-bottom: 40px;
}
.sust-card {
  padding: 48px 36px;
  background: rgba(250, 246, 239, .04);
  transition: all .3s var(--ease);
  border-right: 1px solid rgba(250, 246, 239, .1);
  position: relative;
}
.sust-card:last-child { border-right: none; }
.sust-card:hover { background: rgba(250, 246, 239, .08); transform: translateY(-2px); }
.sust-card-emoji { font-size: 32px; margin-bottom: 20px; }
.sust-card h3 { color: var(--bone); font-family: var(--serif); font-size: 28px; font-weight: 400; margin-bottom: 20px; }
.sust-perks { display: flex; flex-direction: column; gap: 12px; }
.sust-perk { display: flex; gap: 12px; align-items: flex-start; }
.sust-perk span:first-child { color: var(--rose-l); flex-shrink: 0; margin-top: 2px; }
.sust-perk span:last-child { font-size: 13px; color: rgba(250, 246, 239, .78); line-height: 1.6; }
.bloom-card {
  background: rgba(139, 166, 139, .12);
  border: 1px solid rgba(139, 166, 139, .25);
  padding: 40px 44px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
  margin-top: 40px;
}
.bloom-ic {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--sage);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}
.bloom-lbl { font-size: 10px; letter-spacing: .18em; text-transform: lowercase; color: var(--sage-soft); font-weight: 500; margin-bottom: 8px; }
.bloom-card h3 { color: var(--bone); font-family: var(--serif); font-size: 26px; font-weight: 400; margin-bottom: 10px; }
.bloom-card p { font-size: 14px; color: rgba(250, 246, 239, .7); line-height: 1.7; font-weight: 300; }

/* ═══ ABOUT PAGE ═══════════════════════════════ */
.ab-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: center; }
.ab-body { font-size: 16px; color: rgba(4, 34, 95, .7); line-height: 1.9; font-weight: 300; margin-bottom: 18px; }
.ab-pull {
  font-family: var(--serif);
  font-size: 32px;
  font-style: italic;
  color: var(--navy);
  line-height: 1.3;
  margin: 40px 0;
  padding: 0 0 0 32px;
  border-left: 2px solid var(--rose);
  font-weight: 400;
}
.ab-visual { position: relative; aspect-ratio: 4/5; overflow: hidden; border-radius: 8px; }
.ab-visual img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); transition: transform 8s var(--ease); }
.ab-visual:hover img { transform: scale(1.12); }
.ab-visual-cap {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px;
  background: linear-gradient(0deg, rgba(2, 21, 68, .6), transparent);
  color: var(--bone);
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  text-align: center;
  letter-spacing: .04em;
}
.memb-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 48px; }
.memb-card {
  display: flex; align-items: center; gap: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 24px 26px;
  transition: all .3s var(--ease);
  cursor: pointer;
}
.memb-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: transparent; }
.memb-ic {
  width: 56px; height: 56px;
  background: var(--bone-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  border-radius: 50%;
}
.memb-card h4 { font-size: 15px; font-weight: 500; margin-bottom: 4px; }
.memb-card p { font-size: 12px; color: rgba(4, 34, 95, .55); letter-spacing: .04em; }
.val-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 40px; }
.val-chip {
  padding: 10px 20px;
  border: 1px solid var(--line-2);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: lowercase;
  color: var(--navy);
  transition: all .25s var(--ease);
  font-weight: 400;
  background: var(--white);
}
.val-chip:hover { background: var(--navy); color: var(--bone); border-color: var(--navy); transform: translateY(-2px); }

/* ═══ RECITAL PAGE ═════════════════════════════ */
.rec-hero {
  background: var(--navy);
  color: var(--bone);
  padding: clamp(140px, 18vh, 200px) 0 clamp(80px, 10vw, 120px);
  position: relative;
  overflow: hidden;
}
.rec-hero::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 50%; height: 100%;
  background: url('assets/img/recital-2.jpg') center/cover;
  opacity: .25;
  mask-image: linear-gradient(90deg, transparent, black 30%);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 30%);
}
.rec-hero-inner { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); position: relative; z-index: 1; }
.rec-hero h1 { color: var(--bone); font-style: italic; margin: 20px 0; }
.rec-hero h1 em { color: var(--rose-l); }
.rec-hero .lead { color: rgba(250, 246, 239, .75); font-size: 17px; max-width: 560px; margin-bottom: 32px; }
.rec-badge {
  display: inline-flex; align-items: center; gap: 12px;
  background: rgba(139, 166, 139, .15);
  border: 1px solid rgba(139, 166, 139, .3);
  padding: 12px 22px;
}
.rec-badge strong { color: var(--sage-soft); font-weight: 500; }
.rec-badge span { font-size: 13px; color: rgba(250, 246, 239, .85); font-weight: 300; }
.rec-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 60px; }
.rec-step {
  text-align: center;
  padding: 48px 32px;
  background: var(--white);
  border: 1px solid var(--line);
  position: relative;
  transition: all .4s var(--ease);
}
.rec-step:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.rec-step-num {
  position: absolute; top: -22px; left: 50%;
  transform: translateX(-50%);
  width: 44px; height: 44px;
  background: var(--navy);
  color: var(--bone);
  font-family: var(--serif);
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
}
.rec-step h3 { font-family: var(--serif); font-size: 24px; font-weight: 400; margin: 16px 0 12px; }
.rec-step p { font-size: 14px; color: rgba(4, 34, 95, .65); line-height: 1.75; font-weight: 300; }
.bq-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px; }
.bq {
  background: var(--white);
  border: 2px solid var(--line);
  padding: 48px 32px;
  cursor: pointer;
  transition: all .4s var(--ease);
  position: relative;
  text-align: center;
}
.bq:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--rose); }
.bq.sel { border-color: var(--navy); background: var(--bone); }
.bq.sel::after {
  content: '✓';
  position: absolute; top: 16px; right: 18px;
  width: 28px; height: 28px;
  background: var(--sage);
  color: var(--bone);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  font-weight: 600;
}
.pop-badge {
  position: absolute; top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--rose);
  color: var(--bone);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: lowercase;
  padding: 5px 14px;
  font-weight: 500;
  white-space: nowrap;
}
.bq-emoji { font-size: 48px; margin-bottom: 20px; }
.bq-name { font-family: var(--serif); font-size: 28px; font-weight: 400; margin-bottom: 6px; }
.bq-stems { font-size: 10px; letter-spacing: .18em; text-transform: lowercase; color: var(--sage-d); font-weight: 500; margin-bottom: 14px; }
.bq-desc { font-size: 13px; color: rgba(4, 34, 95, .6); line-height: 1.7; margin-bottom: 20px; font-weight: 300; }
.bq-price { font-family: var(--serif); font-size: 36px; font-weight: 300; line-height: 1; color: var(--navy); }
.bq-price small { font-family: var(--sans); font-size: 13px; color: rgba(4, 34, 95, .5); font-weight: 400; margin-left: 4px; }
.bq-gives {
  font-size: 11px;
  color: var(--sage-d);
  font-weight: 500;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  letter-spacing: .04em;
}
.r-order-wrap { max-width: 680px; margin: 80px auto 0; background: var(--white); padding: 56px 56px; border: 1px solid var(--line); }
.r-order-wrap h2 { font-family: var(--serif); font-size: 36px; font-weight: 400; margin-bottom: 10px; }
.r-order-desc { font-size: 14px; color: rgba(4, 34, 95, .55); margin-bottom: 32px; line-height: 1.75; font-weight: 300; }
.sel-disp {
  background: var(--bone-2);
  border: 1px solid var(--line);
  padding: 18px 24px;
  margin-bottom: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sel-disp .sl { font-size: 10px; letter-spacing: .16em; color: rgba(4, 34, 95, .5); text-transform: lowercase; margin-bottom: 4px; font-weight: 500; }
.sel-disp .sv { font-family: var(--serif); font-size: 20px; font-weight: 400; }
.sel-disp .sp { font-family: var(--serif); font-size: 24px; font-weight: 400; color: var(--rose); }
.r-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.r-fg { margin-bottom: 18px; }
.r-fg label {
  display: block;
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: lowercase;
  color: rgba(4, 34, 95, .55);
  font-weight: 500;
  margin-bottom: 6px;
}
.r-fg input, .r-fg select, .r-fg textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--line-2);
  font-size: 14px;
  background: var(--white);
  outline: none;
  transition: border-color .25s var(--ease);
  font-family: var(--sans);
}
.r-fg input:focus, .r-fg select:focus, .r-fg textarea:focus { border-color: var(--navy); }
.r-fg select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%232d3a30' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 38px;
}
.r-summary { background: var(--bone-2); padding: 20px 24px; margin-bottom: 24px; border: 1px solid var(--line); }
.r-sum-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(4, 34, 95, .65);
  margin-bottom: 10px;
  font-weight: 300;
}
.r-sum-row.tot {
  font-weight: 500;
  color: var(--navy);
  font-size: 15px;
  margin-bottom: 0;
  border-top: 1px solid var(--line);
  padding-top: 12px;
  margin-top: 6px;
}
.r-sum-row.gv { color: var(--sage-d); font-weight: 500; }
.school-note {
  background: rgba(139, 166, 139, .1);
  border: 1px solid rgba(139, 166, 139, .2);
  padding: 14px 20px;
  margin-bottom: 24px;
  font-size: 13px;
  color: rgba(4, 34, 95, .7);
  line-height: 1.65;
  font-weight: 300;
}
.school-note strong { color: var(--sage-d); font-weight: 500; }
.btn-r {
  width: 100%;
  padding: 16px;
  background: var(--navy);
  color: var(--bone);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: lowercase;
  transition: all .25s var(--ease);
  font-weight: 500;
}
.btn-r:hover { background: var(--navy-d); }
.r-fn { font-size: 11px; color: rgba(4, 34, 95, .4); text-align: center; margin-top: 14px; line-height: 1.55; }
.r-success { display: none; text-align: center; padding: 80px 24px; }
.r-success .ri { font-size: 64px; margin-bottom: 24px; }
.r-success h3 { font-family: var(--serif); font-size: 36px; font-weight: 400; margin-bottom: 14px; }
.r-success p { font-size: 15px; color: rgba(4, 34, 95, .55); line-height: 1.8; max-width: 420px; margin: 0 auto; font-weight: 300; }

/* ═══ CREDENTIALS PAGE ═════════════════════════ */
.cred-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px; }
.cred-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all .4s var(--ease);
  position: relative;
  overflow: hidden;
}
.cred-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.cred-card.featured { background: var(--navy); color: var(--bone); border-color: transparent; }
.cred-card.featured::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 100px; height: 100px;
  background: radial-gradient(circle at top right, rgba(201, 138, 133, .3), transparent 70%);
}
.cred-badge-img {
  width: 88px; height: 88px;
  background: var(--bone-2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  padding: 12px;
  position: relative; z-index: 1;
}
.cred-badge-img img { width: 100%; height: 100%; object-fit: contain; }
.cred-card.featured .cred-badge-img { background: rgba(250, 246, 239, .08); }
.cred-org { font-size: 10px; letter-spacing: .22em; text-transform: lowercase; color: var(--sage-d); font-weight: 500; margin-bottom: 8px; }
.cred-card.featured .cred-org { color: var(--rose-l); }
.cred-card h3 { font-family: var(--serif); font-size: 26px; font-weight: 400; margin-bottom: 8px; line-height: 1.2; }
.cred-year { font-size: 12px; color: rgba(4, 34, 95, .45); font-weight: 300; margin-bottom: 14px; letter-spacing: .04em; }
.cred-card.featured .cred-year { color: rgba(250, 246, 239, .45); }
.cred-desc { font-size: 13px; color: rgba(4, 34, 95, .6); line-height: 1.75; font-weight: 300; flex: 1; margin-bottom: 24px; }
.cred-card.featured .cred-desc { color: rgba(250, 246, 239, .7); }
.cred-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: lowercase;
  color: var(--sage-d);
  text-decoration: none;
  font-weight: 500;
  transition: color .25s var(--ease), gap .25s var(--ease);
}
.cred-link:hover { color: var(--rose); gap: 14px; }
.cred-card.featured .cred-link { color: var(--rose-l); }
.cred-link::after { content: '↗'; }
.cred-coming {
  background: var(--bone-2);
  border: 2px dashed var(--line-2);
  padding: 48px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 280px;
  transition: all .3s var(--ease);
}
.cred-coming:hover { background: var(--paper); border-color: var(--rose); }
.cred-coming-ic { font-size: 32px; margin-bottom: 14px; opacity: .5; }
.cred-coming p { font-size: 13px; color: rgba(4, 34, 95, .4); line-height: 1.7; font-weight: 300; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px; }
.why-card {
  padding: 40px 32px;
  background: var(--white);
  border: 1px solid var(--line);
  transition: all .4s var(--ease);
  border-top: 3px solid var(--rose);
}
.why-card:nth-child(2) { border-top-color: var(--sage); }
.why-card:nth-child(3) { border-top-color: var(--gold); }
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.why-emoji { font-size: 32px; margin-bottom: 16px; }
.why-card h4 { font-family: var(--serif); font-size: 22px; font-weight: 400; margin-bottom: 12px; }
.why-card p { font-size: 13px; color: rgba(4, 34, 95, .6); line-height: 1.75; font-weight: 300; }

/* ═══ CONTACT FORMS ════════════════════════════ */
.contact-tabs {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 48px;
  padding: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  width: fit-content;
  max-width: 100%;
}
.itab {
  padding: 12px 20px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: lowercase;
  color: var(--navy);
  cursor: pointer;
  transition: all .25s var(--ease);
  background: transparent;
  white-space: nowrap;
}
.itab:hover { color: var(--rose); }
.itab.on { background: var(--navy); color: var(--bone); }
.iform-panel {
  display: none;
  max-width: 760px;
  background: var(--white);
  padding: 48px 48px;
  border: 1px solid var(--line);
}
.iform-panel.active { display: block; animation: fadeUp .5s var(--ease-out) both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.iform-panel h3 { font-family: var(--serif); font-size: 36px; font-weight: 400; margin-bottom: 8px; }
.iform-desc { font-size: 14px; color: rgba(4, 34, 95, .55); line-height: 1.8; font-weight: 300; margin-bottom: 32px; }
.ig { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.ig .full { grid-column: 1/-1; }
.fg { display: flex; flex-direction: column; gap: 8px; margin-bottom: 0; }
.fg label {
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: lowercase;
  color: rgba(4, 34, 95, .55);
  font-weight: 500;
}
.fg input, .fg select, .fg textarea {
  padding: 13px 16px;
  border: 1px solid var(--line-2);
  background: var(--white);
  font-size: 14px;
  color: var(--navy);
  outline: none;
  transition: border-color .25s var(--ease);
  font-family: var(--sans);
}
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--navy); }
.fg select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%232d3a30' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 38px;
}
.fg textarea { min-height: 120px; resize: vertical; }
.ichks { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.ichk {
  padding: 9px 16px;
  border: 1px solid var(--line-2);
  font-size: 12px;
  color: var(--navy);
  cursor: pointer;
  transition: all .2s var(--ease);
  user-select: none;
  font-weight: 400;
}
.ichk.on { background: var(--navy); color: var(--bone); border-color: var(--navy); }
.ichk input { display: none; }
.i-submit {
  margin-top: 28px;
  padding: 16px 36px;
  background: var(--navy);
  color: var(--bone);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: lowercase;
  transition: all .25s var(--ease);
}
.i-submit:hover { background: var(--navy-d); transform: translateY(-2px); box-shadow: var(--shadow); }
.i-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.i-success { display: none; text-align: center; padding: 80px 24px; }
.i-success .si { font-size: 64px; margin-bottom: 20px; }
.i-success h4 { font-family: var(--serif); font-size: 32px; font-weight: 400; margin-bottom: 12px; }
.i-success p { font-size: 14px; color: rgba(4, 34, 95, .6); line-height: 1.75; font-weight: 300; }

.modal-dates-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 16px 0;
}

.sub-corporate-banner {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 40px 44px;
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

/* ── Responsive ────────────────────────────── */
@media (max-width: 1080px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { height: 520px; order: -1; }
  .hero-img-main { width: 100%; height: 80%; border-radius: 200px 200px 8px 8px; }
  .hero-img-sec { width: 55%; height: 50%; left: auto; right: -20px; bottom: -20px; }
  .hero-flower { display: none; }
  .hero-stats { position: relative; bottom: auto; margin-top: 32px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-preview-badge, .nav-cta { display: none; }
  .page-hero-inner.split-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .page-hero-inner.split-layout .reveal-img {
    align-self: center;
    margin-bottom: 0;
    width: 100%;
  }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-card.feat, .svc-card.span2, .svc-card.span3 { grid-column: span 1; }
  .testi-grid { grid-template-columns: 1fr; }
  .feature-photo, .fund-band-inner, .evt-intro, .ab-layout, .sust-intro { grid-template-columns: 1fr; gap: 48px; }
  .inst-grid, .sub-grid, .how-grid, .fund-grid, .fund-stats, .memb-grid, .why-grid, .bq-grid, .rec-steps { grid-template-columns: 1fr; }
  .cred-grid { grid-template-columns: 1fr; }
  .r-order-wrap { padding: 32px 24px; }
  .ft-top { grid-template-columns: 1fr 1fr; }
  .cstrip-inner { flex-direction: column; align-items: flex-start; text-align: left; }
  .gallery-strip { grid-template-columns: repeat(3, 1fr); }
  .evt-list { grid-template-columns: 1fr; }
  .evt-gallery { grid-template-columns: 1fr 1fr; }
  .evt-gallery .g1, .evt-gallery .g2, .evt-gallery .g3 { grid-column: span 1; margin-top: 0; }
  .inst-gallery { grid-template-columns: repeat(2, 1fr); }
  .ig { grid-template-columns: 1fr; }
  .r-row { grid-template-columns: 1fr; }
  .iform-panel { padding: 32px 24px; }
  .svc-header { flex-direction: column; align-items: flex-start; }
  .fund-band-pct { text-align: left; }
  .fund-band-pct .num { font-size: 120px; }
}
@media (max-width: 640px) {
  .hero { padding: 120px 0 60px; min-height: auto; }
  .hero-visual { height: 400px; }
  .hero-stats { grid-template-columns: 1fr; padding: 24px; gap: 16px; }
  .hero-stat-num { font-size: 28px; }
  .svc-grid { grid-template-columns: 1fr; }
  .gallery-strip { grid-template-columns: repeat(2, 1fr); }
  .ft-top { grid-template-columns: 1fr; padding: 0 var(--pad); }
  .cstrip-inner { padding: 0 var(--pad); }
  .fund-band-pct .num { font-size: 96px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .h-display { font-size: 48px; }
  .sub-corporate-banner { padding: 32px 24px; }
}

@media (max-width: 480px) {
  .modal-dates-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .marquee-track { animation: none; }
}

/* ── Demo-mode toast ─────────────────────────── */
#demo-toast {
  position: fixed;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%) translateY(20px);
  background: var(--navy);
  color: var(--bone);
  padding: 14px 24px;
  font-size: 12px;
  letter-spacing: .04em;
  border-radius: 999px;
  box-shadow: var(--shadow-lg);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s var(--ease), transform .35s var(--ease);
  max-width: 92vw;
  text-align: center;
}
#demo-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ═══════════════════════════════════════════════════════
   CHECKOUT, ACCOUNTS, ORDER & TRACKING STYLES
   ═══════════════════════════════════════════════════════ */

/* ── Checkout Page Layout ────────────────────────── */
.checkout-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: start;
}
.checkout-form-panel {
  background: var(--white);
  padding: 40px;
  border: 1px solid var(--line);
}
.checkout-summary-panel {
  background: var(--bone-2);
  padding: 40px;
  border: 1px solid var(--line);
  position: sticky;
  top: 100px;
}
.checkout-steps {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
}
.checkout-step {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.4;
  position: relative;
}
.checkout-step.active {
  opacity: 1;
}
.checkout-step.active::after {
  content: '';
  position: absolute;
  bottom: -17px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--rose);
}
.checkout-section {
  display: none;
  animation: fadeUp 0.4s var(--ease-out) both;
}
.checkout-section.active {
  display: block;
}

/* ── Interactive Mock Credit Card ────────────────── */
.card-wrapper {
  perspective: 1000px;
  margin: 24px auto;
  width: 100%;
  max-width: 340px;
  height: 200px;
}
.credit-card-preview {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.6s var(--ease);
  color: var(--bone);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
}
.credit-card-preview.flipped {
  transform: rotateY(180deg);
}
.card-front, .card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 16px;
  padding: 24px;
  background: linear-gradient(135deg, var(--navy-l) 0%, var(--navy-d) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255,255,255,0.1);
}
.card-back {
  transform: rotateY(180deg);
  background: linear-gradient(135deg, var(--navy-d) 0%, #010a22 100%);
  justify-content: flex-start;
  gap: 20px;
  padding: 24px 0;
}
.card-strip {
  width: 100%;
  height: 40px;
  background: #000;
}
.card-signature-area {
  padding: 0 24px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.card-signature-line {
  width: 100%;
  height: 32px;
  background: repeating-linear-gradient(45deg, #eee, #eee 10px, #ddd 10px, #ddd 20px);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 12px;
  color: #000;
  font-family: monospace;
  font-size: 14px;
  font-weight: bold;
}
.card-chip {
  width: 40px;
  height: 30px;
  background: linear-gradient(135deg, #ffd700 0%, #d4af37 100%);
  border-radius: 6px;
  position: relative;
}
.card-logo {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  letter-spacing: 0.1em;
  color: var(--rose-l);
  text-align: right;
}
.card-num-display {
  font-family: monospace;
  font-size: 18px;
  letter-spacing: 0.15em;
  word-spacing: 0.1em;
  margin: 20px 0 10px;
  color: var(--white);
}
.card-meta {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.8;
}
.card-holder-name {
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ── Checkout Summary Elements ──────────────────── */
.summary-prod-card {
  display: flex;
  gap: 16px;
  align-items: center;
  background: var(--white);
  padding: 16px;
  border: 1px solid var(--line);
  margin-bottom: 24px;
}
.summary-prod-img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 4px;
  background: var(--cream);
}
.summary-prod-info h4 {
  font-family: var(--serif);
  font-size: 18px;
  margin-bottom: 4px;
}
.summary-prod-info p {
  font-size: 12px;
  opacity: 0.6;
}
.checkout-totals {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.checkout-totals-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  opacity: 0.7;
}
.checkout-totals-row.grand-total {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--navy);
  opacity: 1;
  border-top: 1px dashed var(--line-2);
  padding-top: 12px;
  margin-top: 8px;
}

/* ── Account Dashboard Layout ───────────────────── */
.account-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 48px;
  align-items: start;
}
.account-sidebar {
  background: var(--white);
  padding: 32px;
  border: 1px solid var(--line);
  text-align: center;
}
.account-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--rose-soft);
  color: var(--rose-d);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto 20px;
  border: 2px solid var(--white);
  box-shadow: var(--shadow);
}
.account-profile h3 {
  font-family: var(--serif);
  font-size: 24px;
  margin-bottom: 6px;
}
.account-profile p {
  font-size: 13px;
  opacity: 0.5;
  margin-bottom: 24px;
}
.account-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.account-stat-box {
  background: var(--bone-2);
  padding: 16px;
  border: 1px solid var(--line);
}
.account-stat-box h5 {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--rose);
}
.account-stat-box p {
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
  opacity: 0.6;
}

.account-main {
  background: var(--white);
  padding: 40px;
  border: 1px solid var(--line);
}
.account-section-title {
  font-family: var(--serif);
  font-size: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}
.sub-dashboard-card {
  border: 1px solid var(--line);
  background: var(--bone-2);
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 20px;
}
.sub-status-info h4 {
  font-family: var(--serif);
  font-size: 20px;
  margin-bottom: 6px;
}
.status-pill {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 99px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.status-pill.active {
  background: rgba(139, 166, 139, 0.15);
  color: var(--sage-d);
}
.status-pill.paused {
  background: rgba(184, 138, 74, 0.15);
  color: var(--gold);
}
.status-pill.cancelled {
  background: rgba(201, 138, 133, 0.15);
  color: var(--rose-d);
}
.history-table-container {
  overflow-x: auto;
}
.history-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 13px;
}
.history-table th {
  padding: 12px 16px;
  border-bottom: 2px solid var(--line);
  font-weight: 600;
  opacity: 0.7;
}
.history-table td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
}
.history-table tr:hover {
  background: var(--bone-2);
}
.lnk-invoice {
  color: var(--navy);
  font-weight: 500;
  text-decoration: underline;
}
.lnk-invoice:hover {
  color: var(--rose);
}

/* ── Live Tracking Page ────────────────────────── */
.track-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}
.track-info-panel {
  background: var(--white);
  padding: 40px;
  border: 1px solid var(--line);
}
.track-map-panel {
  background: var(--bone-2);
  border: 1px solid var(--line);
  height: 540px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* Vertical Timeline */
.track-timeline {
  position: relative;
  padding-left: 36px;
  margin: 32px 0;
}
.track-timeline::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: var(--line-2);
}
.track-timeline-progress {
  position: absolute;
  left: 11px;
  top: 10px;
  width: 2px;
  background: var(--rose);
  height: 0%;
  transition: height 1.2s var(--ease);
}
.track-node {
  position: relative;
  margin-bottom: 32px;
}
.track-node:last-child {
  margin-bottom: 0;
}
.track-node-dot {
  position: absolute;
  left: -36px;
  top: 4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bone);
  border: 2px solid var(--line-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  z-index: 2;
  transition: all 0.4s var(--ease);
}
.track-node.active .track-node-dot {
  border-color: var(--rose);
  background: var(--rose-soft);
  color: var(--rose-d);
  box-shadow: 0 0 0 4px rgba(201, 138, 133, 0.2);
}
.track-node.done .track-node-dot {
  border-color: var(--sage);
  background: var(--sage);
  color: var(--white);
}
.track-node-info h4 {
  font-family: var(--serif);
  font-size: 18px;
  margin-bottom: 4px;
  color: var(--navy);
  opacity: 0.5;
  transition: color 0.4s var(--ease), opacity 0.4s var(--ease);
}
.track-node.active .track-node-info h4,
.track-node.done .track-node-info h4 {
  opacity: 1;
}
.track-node.active .track-node-info h4 {
  color: var(--rose);
}
.track-node-info p {
  font-size: 12px;
  opacity: 0.5;
  line-height: 1.6;
}
.track-node.active .track-node-info p {
  opacity: 0.8;
}

/* Simulated Map overlay */
.mock-map-canvas {
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, #eef3eb 0%, #faf7ef 70%);
  position: relative;
  overflow: hidden;
}
.map-grid-pattern {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(4,34,95,0.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(4,34,95,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}
.map-road {
  position: absolute;
  background: var(--white);
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.map-road.h1 { top: 120px; left: 0; right: 0; height: 12px; }
.map-road.h2 { top: 320px; left: 0; right: 0; height: 12px; }
.map-road.v1 { left: 100px; top: 0; bottom: 0; width: 12px; }
.map-road.v2 { left: 300px; top: 0; bottom: 0; width: 12px; }

.map-location-pin {
  position: absolute;
  width: 24px;
  height: 24px;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
.map-location-pin::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--rose);
  opacity: 0.3;
  animation: pulse 2s infinite;
}
.map-location-pin-dot {
  width: 12px;
  height: 12px;
  background: var(--rose-d);
  border-radius: 50%;
  border: 2px solid var(--white);
  box-shadow: var(--shadow-sm);
  z-index: 2;
}
.map-location-pin.shop { left: 100px; top: 120px; }
.map-location-pin.shop .map-location-pin-dot { background: var(--navy); }
.map-location-pin.shop::before { background: var(--navy); }

.map-location-pin.dest { left: 300px; top: 320px; }

.map-delivery-car {
  position: absolute;
  width: 32px;
  height: 32px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  z-index: 15;
  transform: translate(-50%, -50%);
  left: 100px; top: 120px;
  transition: left 4s linear, top 4s linear;
}
.map-card-overlay {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: center;
  z-index: 20;
  box-shadow: var(--shadow-lg);
  transform: translateY(0);
  animation: modalIn 0.5s var(--ease-out);
}
.map-driver-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--cream);
  object-fit: cover;
}
.map-driver-info h5 {
  font-family: var(--serif);
  font-size: 16px;
  margin-bottom: 2px;
}
.map-driver-info p {
  font-size: 11px;
  opacity: 0.6;
}

/* ── Invoice details page ──────────────────────── */
.order-card {
  background: var(--white);
  padding: 48px;
  border: 1px solid var(--line);
  max-width: 720px;
  margin: 0 auto;
}
.order-header-meta {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 24px;
  margin-bottom: 28px;
}
.order-header-meta h2 {
  font-family: var(--serif);
  font-size: 28px;
}
.order-grid-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
.order-detail-col h5 {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.5;
  margin-bottom: 8px;
}
.order-detail-col p {
  font-size: 14px;
  line-height: 1.7;
}

/* ── Responsive Additions ──────────────────────── */
@media (max-width: 1080px) {
  .checkout-layout, .account-layout, .track-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .checkout-summary-panel {
    position: relative;
    top: auto;
  }
  .track-map-panel {
    height: 400px;
    order: -1;
  }
}
@media (max-width: 640px) {
  .checkout-form-panel, .checkout-summary-panel, .account-main, .order-card, .track-info-panel {
    padding: 24px 16px;
  }
  .order-grid-details {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .checkout-steps {
    flex-wrap: wrap;
    gap: 10px;
  }
}

.nav-account-link::after {
  display: none !important;
}
.nav-account-link svg {
  transition: transform 0.25s var(--ease);
}
.nav-account-link:hover svg,
.nav-account-link.active svg {
  transform: scale(1.15);
  color: var(--rose);
}

