/* ============================================================
   LEEF · Paul Munroe · Intuitive Bodywork
   A slow, editorial, calm design system.
   Palette leans on Hedge Green; teal used as a rare jewel.
   ============================================================ */

/* ---------- Fonts ---------- */
/* Display: Fraunces (soft editorial serif) · Body: Hanken Grotesk (clean sans) */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;1,9..144,300;1,9..144,400;1,9..144,500&family=Hanken+Grotesk:wght@300;400;500;600&display=swap');

/* ---------- Tokens ---------- */
:root {
  /* Core palette */
  --hedge:        #1C2A22; /* dark sections, footer, text · dominant */
  --hedge-deep:   #141F19; /* deeper shade for gradients */
  --shadow-water: #1F5D59; /* depth, hover */
  --deep-teal:    #2F8981; /* links, kickers, emphasis */
  --pool:         #6CC7C1; /* signature accent · used sparingly */
  --white:        #F7F4EE; /* towel white · primary background */
  --white-warm:   #FBFAF5;
  --sand:         #E9D9C9; /* soft blocks */
  --stone:        #B9BDB7; /* dividers, muted detail */

  /* Semantic */
  --bg:           var(--white);
  --ink:          #1C2A22;
  --ink-70:       rgba(28, 42, 34, 0.72);
  --ink-50:       rgba(28, 42, 34, 0.52);
  --ink-30:       rgba(28, 42, 34, 0.28);
  --hairline:     rgba(28, 42, 34, 0.14);
  --on-dark:      #EFEEE6;
  --on-dark-70:   rgba(239, 238, 230, 0.68);
  --on-dark-45:   rgba(239, 238, 230, 0.42);
  --hairline-dark: rgba(239, 238, 230, 0.16);

  /* Type */
  --display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans: 'Hanken Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Rhythm */
  --page-x: clamp(1.5rem, 6vw, 8rem);
  --section-y: clamp(5rem, 12vh, 11rem);
  --maxw: 1440px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-slow: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  letter-spacing: 0.005em;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--pool); color: var(--hedge); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.015em;
  margin: 0;
  font-optical-sizing: auto;
}
.display {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(3rem, 9vw, 8.5rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
}
.display em, h1 em, h2 em, h3 em { font-style: italic; font-weight: 400; }
/* Green italic emphasis in page titles & section headings (light backgrounds) */
.pagehead h1 em,
h2 em, .h2 em, h3 em, .h3 em { color: var(--deep-teal); }
/* keep emphasis light on dark backgrounds */
.on-dark h2 em, .on-dark .h2 em, .on-dark h3 em, .on-dark .h3 em,
.cta-band h2 em, .cta-band h3 em { color: inherit; }

.h1 { font-size: clamp(2.6rem, 6vw, 5rem); font-weight: 300; letter-spacing: -0.025em; }
.h2 { font-size: clamp(2rem, 4.4vw, 3.6rem); font-weight: 300; letter-spacing: -0.02em; }
.h3 { font-size: clamp(1.5rem, 2.6vw, 2.2rem); font-weight: 400; }

.lede {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(1.4rem, 2.5vw, 2.05rem);
  line-height: 1.42;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.kicker {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--deep-teal);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.kicker::before {
  content: "";
  width: 1.75rem;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.kicker.center::before { display: none; }

.body-lg { font-size: 1.1875rem; line-height: 1.75; color: var(--ink-70); }
p.muted { color: var(--ink-70); }
.on-dark { color: var(--on-dark); }
.on-dark .kicker { color: var(--pool); }
.on-dark p, .on-dark .body-lg { color: var(--on-dark-70); }

/* ---------- Layout ---------- */
.shell { max-width: var(--maxw); margin: 0 auto; padding-left: var(--page-x); padding-right: var(--page-x); }
.section { padding-top: var(--section-y); padding-bottom: var(--section-y); }
.section--tight { padding-top: clamp(3.5rem, 7vh, 6rem); padding-bottom: clamp(3.5rem, 7vh, 6rem); }
.bg-hedge { background: var(--hedge); color: var(--on-dark); }
.bg-sand { background: var(--sand); }
.bg-white-warm { background: var(--white-warm); }

.hr { height: 1px; background: var(--hairline); border: 0; margin: 0; }
.on-dark .hr, .hr-dark { background: var(--hairline-dark); }

.grid { display: grid; gap: clamp(2rem, 5vw, 5rem); }
.two { grid-template-columns: 1fr 1fr; }
.two-40-60 { grid-template-columns: 4fr 6fr; }
.two-60-40 { grid-template-columns: 6fr 4fr; }
.align-center { align-items: center; }
.align-end { align-items: end; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 1.05rem 2rem;
  border-radius: 100px;
  border: 1px solid transparent;
  transition: all 0.5s var(--ease);
  cursor: pointer;
  line-height: 1;
}
.btn .arrow { transition: transform 0.5s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.btn--solid { background: var(--hedge); color: var(--white); }
.btn--solid:hover { background: var(--shadow-water); }
.btn--light { background: var(--white); color: var(--hedge); }
.btn--light:hover { background: var(--sand); }
.btn--pool { background: var(--pool); color: var(--hedge); }
.btn--pool:hover { background: #7ad3cd; }
.btn--ghost { background: transparent; border-color: var(--hairline); color: var(--ink); }
.on-dark .btn--ghost { border-color: var(--hairline-dark); color: var(--on-dark); }
.btn--ghost:hover { border-color: var(--deep-teal); color: var(--deep-teal); }
.on-dark .btn--ghost:hover { border-color: var(--pool); color: var(--pool); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.9rem; font-weight: 500; letter-spacing: 0.02em;
  color: var(--deep-teal);
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s var(--ease);
}
.link-arrow .arrow { transition: transform 0.4s var(--ease); }
.link-arrow:hover { border-color: var(--deep-teal); }
.link-arrow:hover .arrow { transform: translateX(4px); }
.on-dark .link-arrow { color: var(--pool); }
.on-dark .link-arrow:hover { border-color: var(--pool); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 1.5rem var(--page-x);
  transition: background 0.5s var(--ease), padding 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.nav.solid {
  background: rgba(247, 244, 238, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding-top: 1rem; padding-bottom: 1rem;
  box-shadow: 0 1px 0 var(--hairline);
}
.nav__links { display: flex; align-items: center; gap: 1rem; }
.nav__actions { display: flex; align-items: center; gap: 1.35rem; justify-content: flex-end; }
.nav a.navlink {
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.04em; white-space: nowrap;
  color: var(--on-dark); opacity: 0.9;
  transition: opacity 0.3s var(--ease), color 0.3s var(--ease);
  position: relative;
}
.nav a.navlink::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -5px; height: 1px;
  background: currentColor; transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.nav a.navlink:hover::after { transform: scaleX(1); }
.nav.solid a.navlink { color: var(--ink); opacity: 0.85; }
.nav a.navlink.active { opacity: 1; }
.nav a.navlink.active::after { transform: scaleX(1); }

.wordmark { display: flex; align-items: center; justify-content: center; }
.wordmark img { height: 30px; width: auto; display: block; }
.wordmark .logo-dark { display: none; }
.wordmark .logo-light { display: block; }
.nav.solid .wordmark .logo-light { display: none; }
.nav.solid .wordmark .logo-dark { display: block; }

.nav__cta {
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.04em;
  padding: 0.7rem 1.4rem; border-radius: 100px;
  border: 1px solid var(--hairline-dark); color: var(--on-dark);
  transition: all 0.4s var(--ease);
}
.nav.solid .nav__cta { border-color: var(--hedge); color: var(--white); background: var(--hedge); }
.nav__cta:hover { background: var(--pool); color: var(--hedge); border-color: var(--pool); }
.nav.solid .nav__cta:hover { background: var(--shadow-water); border-color: var(--shadow-water); color: var(--white); }

/* burger */
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; }
.burger span { width: 24px; height: 1.5px; background: var(--on-dark); transition: 0.4s var(--ease); }
.nav.solid .burger span { background: var(--hedge); }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: var(--hedge); color: var(--on-dark);
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--page-x);
  transform: translateY(-100%);
  transition: transform 0.6s var(--ease-slow), visibility 0s linear 0.6s;
  visibility: hidden;
}
.mobile-menu.open { transform: translateY(0); visibility: visible; transition: transform 0.6s var(--ease-slow), visibility 0s linear 0s; }
.mobile-menu a {
  font-family: var(--display); font-size: clamp(2rem, 9vw, 3.2rem); font-weight: 300;
  padding: 0.35rem 0; opacity: 0; transform: translateY(20px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.mobile-menu.open a { opacity: 1; transform: translateY(0); }
.mobile-menu a:nth-child(1){ transition-delay: .12s;}
.mobile-menu a:nth-child(2){ transition-delay: .18s;}
.mobile-menu a:nth-child(3){ transition-delay: .24s;}
.mobile-menu a:nth-child(4){ transition-delay: .30s;}
.mobile-menu a:nth-child(5){ transition-delay: .36s;}
.mobile-menu a:nth-child(6){ transition-delay: .42s;}
.mobile-menu a:nth-child(7){ transition-delay: .48s;}
.mobile-menu a em { font-style: italic; color: var(--pool); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; align-items: flex-end;
  overflow: hidden; background: var(--hedge);
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img {
  width: 100%; height: 100%; object-fit: cover;
  animation: kenburns 24s ease-out forwards;
}
.hero__media video {
  width: 100%; height: 100%; object-fit: cover; object-position: center; display: block;
}
@keyframes kenburns { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(20,31,25,0.4) 0%, rgba(20,31,25,0.08) 22%, rgba(20,31,25,0.04) 50%, rgba(20,31,25,0.3) 80%, rgba(20,31,25,0.55) 100%),
    radial-gradient(125% 95% at 0% 100%, rgba(20,31,25,0.66) 0%, rgba(20,31,25,0.18) 44%, transparent 70%);
}
.hero__inner {
  position: relative; z-index: 2; width: 100%;
  padding-bottom: clamp(2rem, 4.5vh, 3.25rem);
  padding-top: 8rem;
}
.hero__inner .shell { width: 100%; max-width: none; padding-left: clamp(1.5rem, 3vw, 3rem); padding-right: clamp(1.5rem, 3vw, 3rem); }
.hero h1 { color: var(--white); max-width: 22ch; }
.hero .kicker { color: var(--pool); margin-bottom: 1.75rem; }
.hero__tagline {
  color: var(--on-dark-70); max-width: 34ch; font-size: 1.1rem;
  margin: 1.75rem 0 2.5rem;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

/* Minimal editorial hero */
.hero__headline {
  color: var(--white);
  font-weight: 300;
  font-size: clamp(1.9rem, 4.2vw, 4rem);
  line-height: 1.14;
  letter-spacing: -0.018em;
  max-width: none;
  text-shadow: 0 2px 34px rgba(20, 31, 25, 0.32);
}
.hero__eyebrow {
  margin: 1.6rem 0 0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--pool);
  text-shadow: 0 1px 14px rgba(20, 31, 25, 0.6);
}
.hero .btn--ghost { background: rgba(20,31,25,0.34); border-color: rgba(239,238,230,0.55); color: var(--on-dark); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.hero .btn--ghost:hover { border-color: var(--pool); color: var(--pool); }
.hero__scroll {
  position: absolute; bottom: 2rem; right: var(--page-x); z-index: 3;
  font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--on-dark-45); display: flex; align-items: center; gap: 0.75rem;
}
.hero__scroll .line { width: 1px; height: 40px; background: var(--on-dark-45); position: relative; overflow: hidden; }
.hero__scroll .line::after {
  content: ""; position: absolute; top: -40px; left: 0; width: 100%; height: 40px;
  background: var(--pool); animation: scrolldot 2.4s var(--ease) infinite;
}
@keyframes scrolldot { 0%{ top:-40px } 60%,100%{ top:40px } }

/* Floating detail card (Atelier-style) */
.detail-card {
  position: absolute; z-index: 2;
  right: clamp(1.5rem, 8vw, 10rem); top: 46%;
  background: rgba(247,244,238,0.94);
  backdrop-filter: blur(6px);
  padding: 1.5rem 2.5rem 1.5rem 1.5rem;
  border-radius: 2px;
  animation: fadeUp 1.2s var(--ease-slow) 0.6s both;
}
.detail-card .label { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-50); margin-bottom: 0.35rem; }
.detail-card .val { font-family: var(--display); font-size: 1.5rem; font-weight: 400; color: var(--hedge); }
@media (max-width: 900px){ .detail-card { display: none; } }

/* ============================================================
   REUSABLE PIECES
   ============================================================ */
.eyebrow-row { display: flex; align-items: baseline; justify-content: space-between; gap: 2rem; flex-wrap: wrap; margin-bottom: clamp(2.5rem,5vw,4rem); }
.section-title { max-width: 20ch; }

.figure { position: relative; overflow: hidden; background: var(--sand); border-radius: 2px; }
.figure img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease-slow); }
.figure--tall { aspect-ratio: 3 / 4; }
.figure--wide { aspect-ratio: 16 / 10; }
.figure--square { aspect-ratio: 1 / 1; }
.figure--portrait { aspect-ratio: 4 / 5; }
a.figure:hover img, .hover-zoom:hover img { transform: scale(1.05); }

.caption { font-size: 0.82rem; color: var(--ink-50); margin-top: 0.9rem; letter-spacing: 0.01em; }

/* Welcome (signature) */
.welcome { text-align: center; max-width: 62rem; margin: 0 auto; }
.welcome p { font-family: var(--display); font-weight: 300; font-size: clamp(1.35rem, 2.4vw, 2rem); line-height: 1.5; color: var(--ink); margin: 0 0 1.6rem; letter-spacing: -0.01em; }
.welcome p:first-of-type { font-size: clamp(1.7rem, 3.2vw, 2.6rem); line-height: 1.35; }
.welcome p em { font-style: italic; color: var(--deep-teal); }
.signature { font-family: var(--display); font-style: italic; font-size: 1.6rem; color: var(--hedge); margin-top: 2.5rem; }

/* Value / feature rows */
.feature-list { display: grid; gap: 0; }
.feature-row {
  display: grid; grid-template-columns: auto 1fr auto; gap: clamp(1.5rem,4vw,4rem);
  align-items: baseline; padding: 2.25rem 0; border-top: 1px solid var(--hairline);
}
.on-dark .feature-row { border-color: var(--hairline-dark); }
.feature-row:last-child { border-bottom: 1px solid var(--hairline); }
.on-dark .feature-row:last-child { border-color: var(--hairline-dark); }
.feature-row .num { font-family: var(--display); font-size: 0.95rem; color: var(--deep-teal); font-style: italic; }
.on-dark .feature-row .num { color: var(--pool); }
.feature-row h3 { font-size: clamp(1.4rem,2.4vw,2rem); font-weight: 300; }
.feature-row p { margin: 0; max-width: 42ch; color: var(--ink-70); }
.on-dark .feature-row p { color: var(--on-dark-70); }

/* Cards for offerings */
.offer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 3vw, 2.5rem); }
.offer {
  background: var(--white-warm); border: 1px solid var(--hairline);
  border-radius: 3px; padding: clamp(2rem,3.5vw,3rem); display: flex; flex-direction: column;
  transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease);
}
.offer:hover { transform: translateY(-4px); box-shadow: 0 24px 60px -30px rgba(28,42,34,0.35); }
.offer.featured { background: var(--hedge); color: var(--on-dark); border-color: transparent; }
.offer.featured .offer__meta, .offer.featured p { color: var(--on-dark-70); }
.offer__tag { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--deep-teal); margin-bottom: 1.5rem; }
.offer.featured .offer__tag { color: var(--pool); }
.offer h3 { font-size: clamp(1.7rem,3vw,2.4rem); font-weight: 300; margin-bottom: 0.4rem; }
.offer__meta { font-size: 0.95rem; color: var(--ink-50); margin-bottom: 1.5rem; }
.offer p { color: var(--ink-70); margin: 0 0 2rem; flex-grow: 1; }
.offer__price { font-family: var(--display); font-size: 2rem; font-weight: 500; display: flex; align-items: baseline; gap: 0.5rem; margin-bottom: 1.75rem; }
.offer__price span { font-family: var(--sans); font-size: 0.85rem; color: var(--ink-50); letter-spacing: 0.02em; }
.offer.featured .offer__price span { color: var(--on-dark-70); }

/* Two small info blocks */
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem,3vw,2.5rem); }
.info-card { border: 1px solid var(--hairline); border-radius: 3px; padding: clamp(1.75rem,3vw,2.5rem); }
.info-card .kicker { margin-bottom: 1.25rem; }
.info-card h3 { font-size: 1.5rem; font-weight: 400; margin-bottom: 0.75rem; }
.price-accent {
  display: inline-block; vertical-align: middle;
  margin-left: 0.6rem; position: relative; top: -2px;
  padding: 0.22rem 0.62rem; border-radius: 100px;
  background: var(--deep-teal); color: var(--white);
  font-family: var(--sans); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.02em;
}
.info-card p { color: var(--ink-70); margin: 0; }

/* Prep steps */
.prep { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.5rem,3vw,3rem); }
.prep-item { display: flex; gap: 1.25rem; align-items: flex-start; }
.prep-item .dot {
  flex: none; width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--pool); color: var(--pool);
  display: grid; place-items: center; font-family: var(--display); font-style: italic; font-size: 1.1rem;
}
.prep-item h4 { font-family: var(--display); font-size: 1.25rem; font-weight: 400; margin-bottom: 0.35rem; }
.prep-item p { margin: 0; color: var(--ink-70); font-size: 1rem; }
.on-dark .prep-item p { color: var(--on-dark-70); }
.on-dark .prep-item h4 { color: var(--on-dark); }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(0.75rem, 1.5vw, 1.5rem); grid-auto-flow: dense; }
.gallery-grid .figure { margin: 0; }
.g-4 { grid-column: span 4; } .g-5 { grid-column: span 5; } .g-6 { grid-column: span 6; }
.g-7 { grid-column: span 7; } .g-8 { grid-column: span 8; }
.g-tall { aspect-ratio: 3/4; } .g-wide { aspect-ratio: 16/10; } .g-sq { aspect-ratio: 1/1; }
.figure .fig-tag {
  position: absolute; left: 1rem; bottom: 1rem; z-index: 2;
  font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: #fff;
  opacity: 0; transform: translateY(8px); transition: 0.5s var(--ease);
  text-shadow: 0 1px 12px rgba(0,0,0,0.5);
}
.figure:hover .fig-tag { opacity: 1; transform: translateY(0); }

/* Masonry gallery */
.masonry { column-count: 3; column-gap: clamp(0.75rem, 1.5vw, 1.5rem); }
.masonry .figure { break-inside: avoid; margin-bottom: clamp(0.75rem, 1.5vw, 1.5rem); display: block; }
.masonry .figure img { width: 100%; height: auto; }
.masonry .figure:hover img { transform: scale(1.05); }
@media (max-width: 900px){ .masonry { column-count: 2; } }
@media (max-width: 560px){ .masonry { column-count: 1; } }

/* Lightbox slideshow */
.masonry .figure { cursor: pointer; }
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(20, 31, 25, 0.95);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0s linear 0.4s;
}
.lightbox.open { opacity: 1; visibility: visible; transition: opacity 0.4s var(--ease); }
.lightbox__stage { position: relative; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; padding: clamp(1rem, 4vw, 3rem); }
.lightbox__img {
  max-width: min(90vw, 1100px); max-height: 86vh; width: auto; height: auto;
  object-fit: contain; border-radius: 3px;
  box-shadow: 0 40px 90px -30px rgba(0,0,0,0.7);
  animation: lbfade 0.35s var(--ease);
}
@keyframes lbfade { from { opacity: 0; } to { opacity: 1; } }
.lightbox__cap {
  position: absolute; bottom: 1.4rem; left: 0; right: 0; text-align: center;
  color: var(--on-dark-70); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
}
.lightbox__btn {
  position: absolute; z-index: 2; width: 52px; height: 52px; border-radius: 50%;
  border: 1px solid rgba(239,238,230,0.32); background: rgba(20,31,25,0.4); color: var(--on-dark);
  display: grid; place-items: center; cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.lightbox__btn:hover { background: var(--pool); color: var(--hedge); border-color: var(--pool); }
.lightbox__btn svg { width: 20px; height: 20px; }
.lightbox__close { top: 1.5rem; right: 1.5rem; }
.lightbox__prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 1.5rem; top: 50%; transform: translateY(-50%); }
@media (max-width: 720px) {
  .lightbox__img { max-width: 94vw; max-height: 74vh; }
  .lightbox__close { top: 1rem; right: 1rem; }
  .lightbox__btn { width: 46px; height: 46px; }
  .lightbox__prev, .lightbox__next { top: auto; bottom: 1.5rem; transform: none; }
  .lightbox__prev { left: calc(50% - 3.4rem); right: auto; }
  .lightbox__next { right: calc(50% - 3.4rem); left: auto; }
}

/* Video / feature panel */
.video-panel { position: relative; overflow: hidden; border-radius: 3px; aspect-ratio: 16/9; background: var(--hedge); }
.video-panel img { width:100%; height:100%; object-fit: cover; opacity: 0.72; }
.video-panel[data-video] { cursor: pointer; }
.video-panel .vp-video { width:100%; height:100%; object-fit: cover; display:block; }
.video-panel::after { content:""; position:absolute; inset:0; z-index:1; pointer-events:none; background: linear-gradient(to top, rgba(20,31,25,0.5), rgba(20,31,25,0.12) 55%); transition: opacity 0.4s var(--ease); }
.video-panel.playing::after { opacity:0; }
.video-panel.playing .play, .video-panel.playing .vp-label { opacity:0; pointer-events:none; transition: opacity 0.3s var(--ease); }
.video-panel .play, .video-panel .vp-label { transition: opacity 0.3s var(--ease); }
.video-panel .play {
  position:absolute; inset:0; display:grid; place-items:center; z-index:2;
}
.video-panel .play button {
  width: 84px; height: 84px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.6);
  background: rgba(247,244,238,0.12); backdrop-filter: blur(6px); color:#fff;
  display:grid; place-items:center; transition: 0.5s var(--ease);
}
.video-panel .play button:hover { background: var(--pool); border-color: var(--pool); color: var(--hedge); transform: scale(1.06); }
.video-panel .play button svg { width: 26px; height: 26px; margin-left: 4px; }
.video-panel .vp-label { position:absolute; left:1.5rem; bottom:1.5rem; z-index:2; color:#fff; }
.video-panel .vp-label .k { font-size:0.7rem; letter-spacing:0.2em; text-transform:uppercase; color:var(--pool); }
.video-panel .vp-label .t { font-family:var(--display); font-size:1.5rem; font-weight:300; }

/* Instagram strip */
.ig-strip { display:grid; grid-template-columns: repeat(4, 1fr); gap: clamp(0.5rem,1vw,1rem); }
.ig-strip a { position:relative; aspect-ratio:1/1; overflow:hidden; border-radius:2px; }
.ig-strip img { width:100%; height:100%; object-fit:cover; transition: transform 1s var(--ease-slow); }
.ig-strip a:hover img { transform: scale(1.06); }
.ig-strip a::after {
  content:""; position:absolute; inset:0; background:rgba(20,31,25,0); transition:0.4s var(--ease);
}
.ig-strip a:hover::after { background:rgba(20,31,25,0.28); }
@media (max-width:640px){ .ig-strip { grid-template-columns: repeat(2,1fr);} }

/* Instagram reels */
.reels-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2vw, 1.75rem); }
.reel-card { display: block; }
.reel-card__media { position: relative; aspect-ratio: 9 / 16; overflow: hidden; border-radius: 16px; background: var(--hedge); }
.reel-card__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 1.1s var(--ease-slow); }
.reel-card:hover .reel-card__media img { transform: scale(1.045); }
.reel-card__media::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(to top, rgba(20,31,25,0.42) 0%, transparent 32%); }
.reel-play {
  position: absolute; top: 0.9rem; right: 0.9rem; z-index: 2;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(247,244,238,0.94); display: grid; place-items: center;
  transition: 0.45s var(--ease); box-shadow: 0 6px 20px -8px rgba(20,31,25,0.5);
}
.reel-play svg { width: 17px; height: 17px; margin-left: 2px; color: var(--hedge); }
.reel-card:hover .reel-play { background: var(--pool); transform: scale(1.08); }
.reel-badge {
  position: absolute; left: 0.85rem; bottom: 0.85rem; z-index: 2;
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.42rem 0.72rem; border-radius: 100px;
  background: rgba(20,31,25,0.5); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  color: #fff; font-size: 0.78rem; font-weight: 500;
}
.reel-badge svg { width: 15px; height: 15px; }
.reel-handle { margin-top: 0.9rem; font-family: var(--display); font-size: 1.15rem; color: var(--ink); transition: color 0.3s var(--ease); }
.reel-card:hover .reel-handle { color: var(--deep-teal); }
@media (max-width: 820px){ .reels-grid { grid-template-columns: repeat(2, 1fr); gap: clamp(0.85rem, 3vw, 1.25rem); } }

/* ============================================================
   FAQ
   ============================================================ */
.faq { border-top: 1px solid var(--hairline); }
.faq details { border-bottom: 1px solid var(--hairline); }
.faq summary {
  list-style: none; cursor: pointer; padding: 1.75rem 0;
  display: flex; justify-content: space-between; align-items: center; gap: 2rem;
  font-family: var(--display); font-size: clamp(1.25rem, 2.2vw, 1.7rem); font-weight: 400;
  color: var(--hedge); transition: color 0.3s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--deep-teal); }
.faq .sign { flex: none; width: 28px; height: 28px; position: relative; transition: transform 0.5s var(--ease); }
.faq .sign::before, .faq .sign::after { content: ""; position: absolute; background: var(--deep-teal); transition: 0.4s var(--ease); }
.faq .sign::before { left: 0; right: 0; top: 50%; height: 1.5px; transform: translateY(-50%); }
.faq .sign::after { top: 0; bottom: 0; left: 50%; width: 1.5px; transform: translateX(-50%); }
.faq details[open] .sign::after { transform: translateX(-50%) scaleY(0); }
.faq details[open] .sign { transform: rotate(180deg); }
.faq .answer { overflow: hidden; }
.faq .answer p { margin: 0 0 1.6rem; max-width: 62ch; color: var(--ink-70); font-size: 1.05rem; }
.faq details[open] .answer p:first-child { margin-top: -0.25rem; }

/* ============================================================
   CONTACT
   ============================================================ */
.form { display: grid; gap: 1.75rem; }
.field { display: grid; gap: 0.6rem; }
.field label { font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-50); }
.on-dark .field label { color: var(--on-dark-45); }
.field input, .field textarea {
  font-family: var(--sans); font-size: 1.05rem; color: var(--ink);
  background: transparent; border: 0; border-bottom: 1px solid var(--hairline);
  padding: 0.75rem 0; transition: border-color 0.4s var(--ease);
}
.on-dark .field input, .on-dark .field textarea { color: var(--on-dark); border-color: var(--hairline-dark); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--deep-teal); }
.on-dark .field input:focus, .on-dark .field textarea:focus { border-color: var(--pool); }
.field textarea { resize: vertical; min-height: 130px; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-30); }
.on-dark .field input::placeholder, .on-dark .field textarea::placeholder { color: var(--on-dark-45); }
.form-note { font-size: 0.9rem; color: var(--ink-50); }
.on-dark .form-note { color: var(--on-dark-45); }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band { position: relative; overflow: hidden; }
.cta-band__media { position: absolute; inset: 0; }
.cta-band__media img { width: 100%; height: 100%; object-fit: cover; }
.cta-band__media::after { content:""; position:absolute; inset:0; background: rgba(20,31,25,0.78); }
.cta-band__inner { position: relative; z-index: 2; text-align: center; max-width: 46rem; margin: 0 auto; }
.cta-band h2 { color: var(--white); margin-bottom: 1.5rem; }
.cta-band p { color: var(--on-dark-70); margin: 0 auto 2.5rem; max-width: 40ch; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--hedge); color: var(--on-dark); padding-top: clamp(4rem,8vh,7rem); }
.footer__top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; padding-bottom: 4rem; }
.footer .wordmark-lg { font-family: var(--display); font-size: clamp(3rem,7vw,5.5rem); font-weight: 400; letter-spacing: 0.02em; color: var(--white); line-height: 1; }
.footer-logo { height: 52px; width: auto; display: block; }
.footer .tag { font-family: var(--display); font-style: italic; color: var(--pool); font-size: 1.2rem; margin-top: 1rem; }
.footer-desc { margin: 1.25rem 0 0; max-width: 38ch; color: var(--on-dark-70); font-size: 0.95rem; line-height: 1.65; }

/* LEEF circle badge */
.leef-badge {
  position: relative; display: grid; place-items: center; flex: none;
  width: 5rem; height: 5rem; border-radius: 50%;
  background: var(--hedge); color: var(--white);
  font-family: var(--sans); font-weight: 600; font-size: 1.3rem; letter-spacing: 0.12em;
}
.leef-badge span { text-indent: 0.12em; }
.leef-badge::before { content: ""; position: absolute; inset: 6px; border-radius: 50%; border: 1.5px solid rgba(247,244,238,0.9); }
.leef-badge--lg { width: 9rem; height: 9rem; font-size: 2.3rem; }
.leef-badge--lg::before { inset: 10px; border-width: 2px; }
.leef-badge--footer { width: 4rem; height: 4rem; font-size: 1.02rem; background: transparent; color: var(--on-dark); margin-top: 1.75rem; }
.leef-badge--footer::before { inset: 4px; border-color: rgba(239,238,230,0.5); }

/* Real LEEF logo badge (image) */
.leef-badge-img { display: block; width: 5rem; height: 5rem; }
.leef-badge-img--lg { width: clamp(7rem, 14vw, 10rem); height: clamp(7rem, 14vw, 10rem); }
.leef-badge-img--footer { width: 4.5rem; height: 4.5rem; margin-top: 1.75rem; }

/* Learn LEEF discover list */
.discover-list { list-style: none; margin: 0; padding: 0; max-width: 46rem; }
.discover-list li {
  padding: 1.15rem 0; border-top: 1px solid var(--hairline-dark);
  font-family: var(--display); font-weight: 300; letter-spacing: -0.01em;
  font-size: clamp(1.2rem, 2.2vw, 1.6rem); color: var(--on-dark);
}
.discover-list li:last-child { border-bottom: 1px solid var(--hairline-dark); }
.footer h5 { font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--on-dark-45); margin: 0 0 1.25rem; font-weight: 600; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.75rem; }
.footer ul a { color: var(--on-dark-70); font-size: 0.95rem; transition: color 0.3s var(--ease); }
.footer ul a:hover { color: var(--pool); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; flex-wrap: wrap; padding: 2rem 0; border-top: 1px solid var(--hairline-dark); font-size: 0.82rem; color: var(--on-dark-45); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1s var(--ease-slow), transform 1s var(--ease-slow); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   PAGE HEADER (interior pages)
   ============================================================ */
.pagehead { position: relative; padding-top: clamp(9rem, 18vh, 14rem); padding-bottom: clamp(3rem,6vh,5rem); overflow: hidden; }
.pagehead .kicker { margin-bottom: 1.5rem; }
.pagehead h1 { max-width: 16ch; }
.pagehead p { max-width: 46ch; margin-top: 1.75rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
/* Nav collapses to the burger earlier (6 links, longer FR labels, need room beside the centered logo). */
@media (max-width: 1500px) {
  .nav__links { display: none; }
  .nav__actions .nav__cta { display: none; }
  .burger { display: flex; }
  .nav { grid-template-columns: auto 1fr auto; }
  .nav .wordmark { text-align: left; }
}
@media (max-width: 1240px) {
  .two, .two-40-60, .two-60-40, .offer-grid, .info-grid, .prep, .footer__top { grid-template-columns: 1fr; }
  .footer__top { gap: 2.5rem; }
  .gallery-grid .figure { grid-column: span 6 !important; }
}
@media (max-width: 1240px) {
  /* On stacked mobile/tablet, the Meet Paul story text flows continuously (no image between the two blocks) */
  .meetpaul-story { padding-bottom: 0.5rem; }
}
@media (max-width: 620px) {
  .gallery-grid .figure { grid-column: span 12 !important; }
  .feature-row { grid-template-columns: 1fr; gap: 0.5rem; }
  .hero__scroll { display: none; }
  .btn { padding: 0.95rem 1.6rem; }
}

/* ---- Testimonials ---- */
.tgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.75rem); align-items: start; }
.testimonials-cols { columns: 3 340px; column-gap: clamp(1rem, 2vw, 1.75rem); }
.tcard { break-inside: avoid; -webkit-column-break-inside: avoid; background: var(--white-warm); border: 1px solid var(--hairline); border-radius: 6px; padding: clamp(1.5rem, 2.6vw, 2.25rem); margin: 0 0 clamp(1rem, 2vw, 1.75rem); }
.testimonials-cols .tcard { display: inline-block; width: 100%; }
.tcard__mark { display: block; font-family: var(--display); font-size: 2.8rem; line-height: 1; height: 1.4rem; color: var(--pool); }
.tcard__quote { color: var(--ink-70); line-height: 1.72; font-size: 1.02rem; margin: 0 0 1.25rem; }
.tcard__name { font-family: var(--display); font-style: italic; font-size: 1.2rem; color: var(--deep-teal); }
.on-dark .tcard { background: rgba(247, 244, 238, 0.05); border-color: var(--hairline-dark); }
.on-dark .tcard__quote { color: var(--on-dark-70); }
.on-dark .tcard__name { color: var(--pool); }
@media (max-width: 880px) { .tgrid { grid-template-columns: 1fr; } .testimonials-cols { columns: 2 300px; } }
@media (max-width: 600px) { .testimonials-cols { columns: 1; } }

/* ---- Language toggle (EN / FR) ---- */
.lang-toggle { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em; }
.lang-toggle a { color: var(--on-dark); opacity: 0.55; transition: opacity 0.3s var(--ease); }
.lang-toggle a:hover { opacity: 1; }
.lang-toggle .on { color: var(--on-dark); opacity: 1; }
.lang-toggle .sep { color: var(--on-dark); opacity: 0.3; }
.nav.solid .lang-toggle a, .nav.solid .lang-toggle .on, .nav.solid .lang-toggle .sep { color: var(--ink); }
.nav.solid .lang-toggle a { opacity: 0.5; }
