/* Libélula — site layout & sections */

.container {
  width: 100%;
  max-width: var(--col-wide);
  margin: 0 auto;
  padding-inline: var(--gutter);
}
.container.broad { max-width: var(--col-broad); }
.container.reading { max-width: var(--col-reading); }
.container.narrow { max-width: var(--col-narrow); }

/* =========================================================
   NAV — glassmorph, fixed, floats with scroll
   ========================================================= */
.nav {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: min(calc(100% - 32px), 1280px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px 14px 22px;
  border-radius: 999px;
  background: rgba(246, 243, 236, 0.55);
  -webkit-backdrop-filter: blur(22px) saturate(1.2);
          backdrop-filter: blur(22px) saturate(1.2);
  border: 1px solid rgba(31, 42, 34, 0.08);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.45) inset,
    0 10px 40px -12px rgba(31, 42, 34, 0.12);
  transition: background var(--dur-calm) var(--ease-out), box-shadow var(--dur-calm) var(--ease-out), padding var(--dur-calm) var(--ease-out), transform var(--dur-calm) var(--ease-out);
}
.nav.scrolled {
  background: rgba(246, 243, 236, 0.82);
  padding: 10px 20px 10px 20px;
  box-shadow: 0 12px 44px -14px rgba(31, 42, 34, 0.2);
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.nav__brand svg { width: 26px; height: 26px; color: var(--jungle-deep); flex-shrink: 0; }
.nav__brand-mark {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  object-fit: contain;
  display: block;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13.5px;
  color: var(--ink-soft);
}
.nav__links a { transition: color var(--dur-quick); }
.nav__links a:hover { color: var(--jungle-deep); }
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--cream);
  font-size: 13px;
  letter-spacing: 0.01em;
  transition: background var(--dur-quick), transform var(--dur-quick);
}
.nav__cta:hover { background: var(--jungle-deep); }
.nav__cta .arrow { width: 14px; height: 14px; transition: transform var(--dur-quick); }
.nav__cta:hover .arrow { transform: translateX(3px); }

.nav__burger { display: none; width: 36px; height: 36px; border-radius: 50%; align-items: center; justify-content: center; }
.nav__burger span { display: block; width: 18px; height: 1.5px; background: var(--ink); position: relative; }
.nav__burger span::before, .nav__burger span::after { content: ""; position: absolute; left: 0; width: 18px; height: 1.5px; background: var(--ink); }
.nav__burger span::before { top: -6px; }
.nav__burger span::after { top: 6px; }

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: inline-flex; }
  .nav { padding: 10px 14px 10px 18px; justify-content: space-between; }
  .nav__brand { font-size: 19px; }
  .nav__brand-mark { width: 26px; height: 26px; }
}

.nav__mobile {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(246, 243, 236, 0.96);
  -webkit-backdrop-filter: blur(18px);
          backdrop-filter: blur(18px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  font-family: var(--font-display);
  font-size: 30px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-calm) var(--ease-out);
}
.nav__mobile.open { opacity: 1; pointer-events: auto; }
.nav__mobile a { padding: 4px 0; }

/* Mobile floating CTA */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 90;
  padding: 12px 22px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 999px;
  font-size: 13.5px;
  letter-spacing: 0.01em;
  box-shadow: 0 14px 34px -10px rgba(31, 42, 34, 0.45);
}
@media (max-width: 900px) { .mobile-cta { display: inline-flex; align-items: center; gap: 8px; } }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--cream);
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background-color: #1a2a1a;
  background-image: url("../assets/hero-poster.jpg");
  background-size: cover;
  background-position: center center;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  /* Fade the video in once it starts playing so the poster→video swap is seamless */
  opacity: 0;
  transition: opacity 800ms cubic-bezier(0.4, 0, 0.2, 1);
}
.hero__video.is-ready { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .hero__video { display: none; }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(31, 42, 34, 0.25) 0%, rgba(31, 42, 34, 0.05) 30%, rgba(31, 42, 34, 0.55) 100%);
}
.hero__grain {
  position: absolute; inset: 0; z-index: 2; opacity: 0.08; pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
@keyframes kenburns {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.08) translate(-1.5%, -1%); }
}

.hero__content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 0 var(--gutter) clamp(48px, 9vh, 110px);
}
.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: var(--trk-eyebrow);
  color: rgba(246, 243, 236, 0.7);
  text-transform: uppercase;
  margin-bottom: clamp(14px, 2vh, 22px);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero__eyebrow .sep {
  display: inline-block;
  width: 36px; height: 1px;
  background: rgba(246, 243, 236, 0.4);
}
.hero h1 {
  font-size: clamp(44px, 7.8vw, 128px);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.025em;
  max-width: 14ch;
  color: var(--cream);
  padding-bottom: 0.08em;
}
.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--cream);
}
.hero__sub {
  max-width: 52ch;
  margin-top: clamp(20px, 3vh, 32px);
  font-size: clamp(15px, 1.15vw, 19px);
  line-height: 1.55;
  color: rgba(246, 243, 236, 0.88);
  letter-spacing: 0.005em;
}
.hero__ctas {
  margin-top: clamp(28px, 4vh, 44px);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: 0.01em;
  transition: background var(--dur-quick), color var(--dur-quick), transform var(--dur-quick), box-shadow var(--dur-quick);
  border: 1px solid transparent;
  cursor: pointer;
}
.btn .arrow { width: 15px; height: 15px; transition: transform var(--dur-calm) var(--ease-out); }
.btn:hover .arrow { transform: translateX(4px); }
.btn--primary { background: var(--cream); color: var(--ink); }
.btn--primary:hover { background: #fff; }
.btn--outline { background: transparent; color: var(--cream); border-color: rgba(246, 243, 236, 0.4); }
.btn--outline:hover { border-color: rgba(246, 243, 236, 0.85); background: rgba(246,243,236,0.06); }
.btn--ink { background: var(--ink); color: var(--cream); }
.btn--ink:hover { background: var(--jungle-deep); }
.btn--ghost { color: var(--ink); }
.btn--ghost:hover { color: var(--jungle-deep); }

.hero__corner {
  position: absolute;
  z-index: 3;
  top: clamp(100px, 14vh, 140px);
  right: calc(var(--gutter) + 8px);
  color: rgba(246, 243, 236, 0.78);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: var(--trk-caption);
  text-align: right;
  text-transform: uppercase;
  line-height: 1.9;
  white-space: nowrap;
}
.hero__corner .n { color: rgba(246,243,236,0.95); }

.hero__scroll {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(246, 243, 236, 0.65);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: var(--trk-caption);
  text-transform: uppercase;
}
.hero__scroll .line {
  width: 1px; height: 38px;
  background: linear-gradient(180deg, rgba(246,243,236,0) 0%, rgba(246,243,236,0.7) 50%, rgba(246,243,236,0) 100%);
  animation: scroll-pulse 2.6s var(--ease-in-out) infinite;
}
@keyframes scroll-pulse {
  0%, 100% { transform: scaleY(1); opacity: 0.7; }
  50% { transform: scaleY(1.2); opacity: 1; }
}

@media (max-width: 980px) {
  .hero__corner { display: none; }
}
@media (max-width: 720px) {
  .hero__scroll { display: none; }
}

/* =========================================================
   SUMMARY STRIP
   ========================================================= */
.strip {
  border-top: 1px solid rgba(31, 42, 34, 0.1);
  border-bottom: 1px solid rgba(31, 42, 34, 0.1);
  background: var(--cream);
  position: relative;
}
.strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.strip__cell {
  padding: 26px 28px;
  border-right: 1px solid rgba(31, 42, 34, 0.08);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.strip__cell:last-child { border-right: 0; }
.strip__cell .eyebrow { font-size: 10px; }
.strip__cell .val {
  font-family: var(--font-display);
  font-size: clamp(19px, 1.7vw, 26px);
  color: var(--ink);
  letter-spacing: -0.01em;
}
.strip__cell .val em { font-style: italic; color: var(--jungle-deep); font-weight: 400; }
@media (max-width: 800px) {
  .strip__inner { grid-template-columns: 1fr 1fr; }
  .strip__cell { padding: 20px 22px; }
  .strip__cell:nth-child(2) { border-right: 0; }
  .strip__cell:nth-child(1), .strip__cell:nth-child(2) { border-bottom: 1px solid rgba(31,42,34,0.08); }
}

/* =========================================================
   SECTION BASE
   ========================================================= */
.section {
  position: relative;
  padding-block: clamp(80px, 12vh, 160px);
}
.section--tight { padding-block: clamp(56px, 8vh, 110px); }
.section--paper { background: var(--paper); }
.section--cream { background: var(--cream); }
.section--ink { background: var(--ink); color: var(--cream); }
.section--ink .eyebrow { color: rgba(246,243,236,0.55); }

.eyebrow-row {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: clamp(22px, 3vh, 36px);
}
.eyebrow-row .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--jungle);
}
.eyebrow-row .sep { flex: 1; height: 1px; background: rgba(31,42,34,0.12); max-width: 180px; }

.h-display {
  font-size: clamp(32px, 5vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  max-width: 18ch;
}
.h-display em { font-style: italic; color: var(--jungle-deep); }
.body-reading {
  font-size: clamp(16px, 1.15vw, 18.5px);
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 58ch;
}

/* =========================================================
   THE LAND
   ========================================================= */
.land__lead {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: end;
  margin-bottom: clamp(40px, 6vh, 70px);
}
.land__lead h2 { max-width: 14ch; }
@media (max-width: 900px) { .land__lead { grid-template-columns: 1fr; gap: 28px; } }

.land__hero .img { --ratio: 50%; }
.land__stats {
  margin-top: clamp(28px, 4vh, 48px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.land__stat { padding-right: 24px; border-left: 1px solid rgba(31,42,34,0.12); padding-left: 20px; }
.land__stat .n {
  font-family: var(--font-display);
  font-size: clamp(34px, 3.8vw, 56px);
  letter-spacing: -0.02em;
  color: var(--ink);
  display: block;
  line-height: 1;
}
.land__stat .n em { font-style: italic; color: var(--jungle-deep); }
.land__stat .lbl {
  font-family: var(--font-mono); font-size: 10.5px;
  text-transform: uppercase; letter-spacing: var(--trk-caption);
  color: var(--ink-quiet);
  margin-top: 10px; display: block;
  line-height: 1.55;
}
@media (max-width: 900px) { .land__stats { grid-template-columns: 1fr 1fr; row-gap: 22px; } }
@media (max-width: 480px) { .land__stats { grid-template-columns: 1fr; } }

/* Gallery carousel */
.gallery {
  margin-top: clamp(48px, 7vh, 90px);
  position: relative;
}
.gallery__track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px var(--gutter);
  margin-inline: calc(-1 * var(--gutter));
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.gallery__track::-webkit-scrollbar { display: none; }
.gallery__item {
  flex: 0 0 clamp(260px, 34vw, 440px);
  scroll-snap-align: start;
}
.gallery__item .img { --ratio: 125%; }
.gallery__item .cap { margin-top: 10px; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: var(--trk-caption); color: var(--ink-quiet); text-transform: uppercase; }
.gallery__controls {
  display: flex; gap: 12px;
  margin-top: 22px;
  justify-content: flex-end;
  padding-inline: 0;
}
@media (max-width: 720px) {
  .gallery__controls { justify-content: center; margin-top: 18px; }
}
.g-btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(31,42,34,0.15);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background var(--dur-quick), border-color var(--dur-quick), color var(--dur-quick);
  color: var(--ink);
}
.g-btn:hover { background: var(--ink); border-color: var(--ink); color: var(--cream); }
.g-btn svg { width: 16px; height: 16px; }

/* =========================================================
   VIDEO TESTIMONIALS — 9:16 portrait variant of .gallery__item
   ========================================================= */
.gallery--testimonials { margin-top: clamp(48px, 7vh, 80px); }
.gallery__item--video {
  flex: 0 0 clamp(240px, 28vw, 360px);
}
.gallery__item--video .img { --ratio: 177.78%; } /* 9:16 portrait */
.gallery__item--video .img-inner { cursor: pointer; }
.gallery__item--video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  z-index: 1;
  background: #0e1410;
}
.gallery__item--video .ph { z-index: 0; }

.gallery__item--video .video-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(246, 243, 236, 0.92);
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  cursor: pointer;
  z-index: 3;
  box-shadow:
    0 16px 40px -8px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: opacity 400ms var(--ease-out), transform 500ms var(--ease-out), background 300ms var(--ease-out);
}
.gallery__item--video .video-play svg {
  width: 22px; height: 22px;
  margin-left: 3px; /* visual balance — triangle sits centered by eye, not geometry */
}
.gallery__item--video .video-play:hover {
  transform: translate(-50%, -50%) scale(1.06);
  background: rgba(255, 255, 255, 0.98);
}
.gallery__item--video.is-playing .video-play {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.85);
}

/* Caption — two-line stack: name on top, role/place below. */
.gallery__item--video .cap {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 14px;
  font-family: var(--font-mono);
  text-transform: uppercase;
}
.gallery__item--video .cap .cap-name {
  color: var(--ink);
  font-size: 11px;
  letter-spacing: 0.14em;
}
.gallery__item--video .cap .cap-meta {
  color: var(--ink-quiet);
  font-size: 10px;
  letter-spacing: 0.12em;
  line-height: 1.5;
}

@media (max-width: 720px) {
  .gallery__item--video { flex: 0 0 clamp(220px, 62vw, 280px); }
  .gallery__item--video .video-play { width: 60px; height: 60px; }
  .gallery__item--video .video-play svg { width: 18px; height: 18px; }
}

/* =========================================================
   IMMERSIVE FULL-BLEED
   ========================================================= */
.immersive {
  position: relative;
  height: clamp(520px, 85vh, 900px);
  color: var(--cream);
  overflow: hidden;
  isolation: isolate;
}
.immersive .img { position: absolute; inset: 0; height: 100%; z-index: 0; }
.immersive .img::before { display: none; }
.immersive .img > .img-inner { position: absolute; inset: 0; }
.immersive__shade {
  position: absolute; inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(31,42,34,0.15) 0%, rgba(31,42,34,0.55) 100%);
}
.immersive__copy {
  position: absolute; inset: 0;
  z-index: 2;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: var(--gutter);
}
.immersive__copy .inner {
  max-width: var(--col-wide);
  margin: 0 auto;
  width: 100%;
  padding-bottom: clamp(36px, 6vh, 70px);
}
.immersive h2 {
  font-size: clamp(36px, 5.5vw, 84px);
  max-width: 16ch;
  color: var(--cream);
  line-height: 1.02;
}
.immersive h2 em { font-style: italic; color: var(--tan-soft); }
.immersive p {
  margin-top: clamp(18px, 2.5vh, 28px);
  max-width: 56ch;
  font-size: clamp(15px, 1.1vw, 18px);
  color: rgba(246, 243, 236, 0.88);
  line-height: 1.65;
}

/* =========================================================
   HUNI KUIN
   ========================================================= */
.hunikuin__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.hunikuin__copy h2 { max-width: 12ch; }
.hunikuin__audio {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px 12px 14px;
  border-radius: 999px;
  border: 1px solid rgba(31,42,34,0.12);
  background: var(--paper);
  margin-top: 28px;
  transition: background var(--dur-quick), border-color var(--dur-quick);
}
.hunikuin__audio:hover { background: #fff; border-color: rgba(31,42,34,0.2); }
.hunikuin__audio .play {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--jungle-deep); color: var(--cream);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hunikuin__audio .play svg { width: 12px; height: 12px; }
.hunikuin__audio .lbl {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: var(--trk-caption);
  text-transform: uppercase; color: var(--ink-soft);
  line-height: 1.5; text-align: left;
}
.hunikuin__audio .lbl strong { color: var(--ink); font-weight: 500; display: block; }
.hunikuin__wave {
  display: flex; align-items: center; gap: 3px; height: 20px;
}
.hunikuin__wave i {
  display: block; width: 2.5px; background: var(--jungle-quiet);
  border-radius: 2px; height: 6px;
  animation: wave 1.2s var(--ease-in-out) infinite;
  animation-play-state: paused;
}
.hunikuin__audio.playing .hunikuin__wave i { animation-play-state: running; }
.hunikuin__wave i:nth-child(1) { animation-delay: 0s; }
.hunikuin__wave i:nth-child(2) { animation-delay: 0.15s; }
.hunikuin__wave i:nth-child(3) { animation-delay: 0.3s; }
.hunikuin__wave i:nth-child(4) { animation-delay: 0.45s; }
.hunikuin__wave i:nth-child(5) { animation-delay: 0.6s; }
@keyframes wave { 0%, 100% { height: 6px; } 50% { height: 18px; } }

.hunikuin__portrait .img { --ratio: 125%; }
@media (max-width: 900px) { .hunikuin__grid { grid-template-columns: 1fr; } }

/* =========================================================
   TEAM
   ========================================================= */
.team__lead {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: end;
  margin-bottom: clamp(48px, 7vh, 80px);
}
@media (max-width: 900px) { .team__lead { grid-template-columns: 1fr; gap: 24px; } }

.team__scatter {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px 28px;
  align-items: start;
}
.member { grid-column: span 3; }
.member.offset { margin-top: clamp(40px, 7vh, 90px); }
.member.offset--2 { margin-top: clamp(70px, 11vh, 140px); }
.member .img { --ratio: 125%; }
.member .name {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.7vw, 26px);
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-top: 14px;
}
.member .role {
  font-family: var(--font-mono); font-size: 10.5px;
  text-transform: uppercase; letter-spacing: var(--trk-caption);
  color: var(--ink-quiet);
  margin-top: 6px;
  line-height: 1.5;
}
.member .bio {
  font-size: 14.5px; color: var(--ink-soft);
  margin-top: 10px; line-height: 1.55;
  max-width: 36ch;
}

.team__group {
  margin-top: clamp(64px, 10vh, 120px);
  position: relative;
}
.team__group .img { --ratio: 44%; }
.team__group .cap {
  margin-top: 14px;
  font-family: var(--font-mono); font-size: 10.5px;
  letter-spacing: var(--trk-caption); color: var(--ink-quiet);
  text-transform: uppercase;
  text-align: center;
}

@media (max-width: 1100px) { .member { grid-column: span 4; } .member.offset, .member.offset--2 { margin-top: 0; } }
@media (max-width: 720px) {
  .member { grid-column: span 6; }
  .team__scatter { gap: 28px 16px; }
  .member .name { font-size: 18px; margin-top: 12px; }
  .member .role { font-size: 10px; }
  .member .bio { font-size: 13.5px; line-height: 1.5; margin-top: 8px; }
}

/* =========================================================
   SPACES
   ========================================================= */
.spaces__lead {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: clamp(40px, 6vh, 70px);
  flex-wrap: wrap;
}
.spaces__lead h2 { max-width: 12ch; }
.spaces__lead a { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink); border-bottom: 1px solid var(--ink); padding-bottom: 4px; transition: color var(--dur-quick), border-color var(--dur-quick); }
.spaces__lead a:hover { color: var(--jungle-deep); border-color: var(--jungle-deep); }

/* Spaces — editorial chapter layout.
   Each .space sets its own --ratio. Override per card to match real photos. */
.spaces__stack {
  display: flex;
  flex-direction: column;
  gap: clamp(36px, 5vh, 72px);
}
.space {
  position: relative;
}
.space .img { --ratio: var(--r, 66%); }
.space__frame { position: relative; }
.space__caption {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: clamp(24px, 4vw, 60px);
  margin-top: 18px;
}
.space__caption .left { max-width: 28ch; }
.space__caption .right { max-width: 44ch; }
.space h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.2vw, 36px);
  letter-spacing: -0.015em;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.1;
}
.space h3 em { font-style: italic; color: var(--jungle-deep); font-weight: 400; }
.space .num {
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: var(--trk-caption);
  color: var(--ink-quiet);
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}
.space .purpose {
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* Chapter row types */
.space-row {
  display: grid;
  gap: clamp(24px, 3vw, 40px);
}
/* Row: one big hero — useful for Maloca */
.space-row--hero { grid-template-columns: 1fr; }
.space-row--hero .space .img { --r: 50%; }

/* Row: portrait + landscape pair (spa portrait + kitchen landscape etc) */
.space-row--pair {
  grid-template-columns: 5fr 7fr;
  align-items: end;
}
.space-row--pair .space:nth-child(1) .img { --r: 133.33%; }  /* 3:4 portrait — for Spa */
.space-row--pair .space:nth-child(2) .img { --r: 75%; }      /* 4:3 landscape */
.space-row--pair .space:nth-child(2) { padding-bottom: 0; }

/* Row: 3-up balanced squares */
.space-row--three {
  grid-template-columns: repeat(3, 1fr);
}
.space-row--three .space .img { --r: 100%; }
/* When only 2 cards remain (e.g. a space is temporarily hidden), rebalance
   to a 2-col grid so the row stays visually symmetric. */
.space-row--three:has(> .space:nth-child(2):last-child) {
  grid-template-columns: 1fr 1fr;
}

/* Row: wide + tall asymmetric */
.space-row--split {
  grid-template-columns: 7fr 5fr;
}
.space-row--split .space:nth-child(1) .img { --r: 66%; }
.space-row--split .space:nth-child(2) .img { --r: 120%; }

/* Responsive */
@media (max-width: 900px) {
  .space-row--pair, .space-row--three, .space-row--split { grid-template-columns: 1fr; }
  .space-row--pair .space:nth-child(1) .img { --r: 125%; }
  .space-row--split .space:nth-child(2) .img { --r: 100%; }
}

/* =========================================================
   CEREMONY (suggested not shown)
   ========================================================= */
.ceremony {
  position: relative;
  text-align: center;
}
.ceremony .img { --ratio: 56.25%; }
.ceremony__copy {
  max-width: 680px;
  margin: clamp(36px, 5vh, 60px) auto 0;
  text-align: center;
}
.ceremony__copy p {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.3vw, 34px);
  line-height: 1.3;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.ceremony__copy p em { font-style: italic; color: var(--jungle-deep); }
.ceremony__facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: clamp(48px, 7vh, 80px);
  padding-top: 36px;
  border-top: 1px solid rgba(31,42,34,0.12);
}
.ceremony__fact .n {
  font-family: var(--font-display);
  font-size: clamp(28px, 2.8vw, 40px);
  display: block;
  letter-spacing: -0.01em;
}
.ceremony__fact .n em { font-style: italic; color: var(--jungle-deep); }
.ceremony__fact .lbl {
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: var(--trk-caption);
  color: var(--ink-quiet); text-transform: uppercase;
  display: block; margin-top: 8px; line-height: 1.55;
}
@media (max-width: 800px) { .ceremony__facts { grid-template-columns: 1fr 1fr; row-gap: 24px; } }

/* =========================================================
   FOOD
   ========================================================= */
.food__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.food__grid .img { --ratio: 120%; }
.food__copy h2 { max-width: 12ch; }
@media (max-width: 900px) { .food__grid { grid-template-columns: 1fr; } }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(40px, 4vw, 64px);
  margin-top: clamp(40px, 6vh, 60px);
}
.testimonial {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.35;
  letter-spacing: -0.005em;
  color: var(--ink);
  position: relative;
  padding-top: 28px;
}
.testimonial::before {
  content: "";
  display: block;
  width: 28px; height: 1px;
  background: var(--jungle);
  position: absolute;
  top: 0; left: 0;
}
.testimonial em { font-style: italic; }
.testimonial .attr {
  display: block; margin-top: 18px;
  font-family: var(--font-mono); font-size: 10.5px;
  letter-spacing: var(--trk-caption); text-transform: uppercase;
  color: var(--ink-quiet);
}
.integration__note {
  max-width: 56ch;
  margin: clamp(32px, 4.5vh, 56px) auto 0;
  text-align: center;
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.65;
  color: var(--ink-soft);
}
.integration__note em { font-style: italic; color: var(--jungle-deep); }

.testimonials__more {
  display: flex;
  justify-content: center;
  margin-top: clamp(28px, 3.5vh, 48px);
}
.testimonials__more-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 28px;
  border: 1px solid rgba(31, 42, 34, 0.22);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  background: transparent;
  transition:
    background 500ms var(--ease-out),
    color 500ms var(--ease-out),
    border-color 500ms var(--ease-out);
}
.testimonials__more-link:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.testimonials__more-link .arrow {
  width: 13px;
  height: 13px;
  transition: transform 700ms var(--ease-out);
}
.testimonials__more-link:hover .arrow { transform: translateX(5px); }
@media (max-width: 900px) { .testimonials { grid-template-columns: 1fr; } }

/* =========================================================
   RECIPROCITY
   ========================================================= */
.reciprocity__intro {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  margin-bottom: clamp(48px, 7vh, 80px);
  align-items: end;
}
.reciprocity__intro h2 { max-width: 14ch; }
.reciprocity__intro h2 em { font-style: italic; color: var(--tan); }
@media (max-width: 900px) { .reciprocity__intro { grid-template-columns: 1fr; } }

.recip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(246,243,236,0.15);
  border: 1px solid rgba(246,243,236,0.15);
}
.recip__item {
  padding: clamp(28px, 3vw, 44px) clamp(24px, 2.5vw, 36px);
  background: var(--ink);
  display: flex; flex-direction: column; gap: 16px;
  min-height: 300px;
  transition: background var(--dur-calm);
}
.recip__item:hover { background: #161c17; }
.recip__item .num {
  font-family: var(--font-mono); font-size: 10.5px;
  letter-spacing: var(--trk-caption);
  color: var(--tan);
  text-transform: uppercase;
}
.recip__item h4 {
  font-family: var(--font-display);
  font-size: clamp(22px, 1.8vw, 28px);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--cream);
  margin: 0;
  line-height: 1.15;
}
.recip__item h4 em { font-style: italic; color: var(--tan-soft); }
.recip__item p {
  font-size: 14.5px; line-height: 1.6; color: rgba(246,243,236,0.75);
  margin: 0;
}
.recip__item .meta {
  margin-top: auto;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: var(--trk-caption);
  text-transform: uppercase; color: rgba(246,243,236,0.4);
  padding-top: 20px;
  border-top: 1px solid rgba(246,243,236,0.12);
}
.reciprocity__closer {
  margin-top: clamp(48px, 7vh, 80px);
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.3;
  color: var(--cream);
  max-width: 30ch;
  margin-inline: auto;
}
.reciprocity__closer em { font-style: italic; color: var(--tan-soft); }
.reciprocity__link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 22px;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(246,243,236,0.7);
  border-bottom: 1px solid rgba(246,243,236,0.25);
  padding-bottom: 4px;
  transition: color var(--dur-quick), border-color var(--dur-quick);
}
.reciprocity__link:hover { color: var(--cream); border-color: var(--cream); }

@media (max-width: 1000px) { .recip__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .recip__grid { grid-template-columns: 1fr; } }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--cream);
  padding: clamp(60px, 8vh, 100px) 0 40px;
  border-top: 1px solid rgba(31,42,34,0.08);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 70px;
}
.footer__brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: 26px;
}
.footer__brand svg { width: 32px; height: 32px; color: var(--jungle-deep); }
.footer__brand-mark {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  object-fit: contain;
  display: block;
}
.footer__brand + p {
  margin-top: 18px;
  font-size: 15px; color: var(--ink-soft);
  max-width: 38ch; line-height: 1.6;
}
.footer__col h5 {
  font-family: var(--font-mono); font-size: 10.5px;
  letter-spacing: var(--trk-caption);
  text-transform: uppercase; color: var(--ink-quiet);
  margin: 0 0 18px; font-weight: 400;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer__col a { font-size: 15px; color: var(--ink); transition: color var(--dur-quick); }
.footer__col a:hover { color: var(--jungle-deep); }
.footer__word {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(58px, 14vw, 220px);
  line-height: 0.9; letter-spacing: -0.03em;
  color: var(--ink);
  white-space: nowrap;
  margin-block: clamp(40px, 8vh, 80px);
  overflow: hidden;
}
.footer__word em { color: var(--jungle-deep); }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 30px; border-top: 1px solid rgba(31,42,34,0.1);
  font-family: var(--font-mono); font-size: 10.5px;
  letter-spacing: var(--trk-caption); text-transform: uppercase;
  color: var(--ink-quiet);
}
.footer__bottom .set { display: flex; gap: 22px; }
.footer__bottom a:hover { color: var(--ink); }
@media (max-width: 900px) { .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 500px) { .footer__top { grid-template-columns: 1fr; } .footer__bottom { flex-direction: column; gap: 14px; align-items: flex-start; } }

/* =========================================================
   RECIPROCITY — single glass panel over land imagery
   One calm container. All data inside. No external lines.
   ========================================================= */
.recip2 {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(90px, 13vh, 160px) var(--gutter);
  background: #0c1410;
}
.recip2__bg {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden;
}
.recip2__bg .img { width: 100%; height: 100%; aspect-ratio: auto; --ratio: auto; }
.recip2__bg .img-inner {
  animation: recip2-drift 180s linear infinite alternate;
}
@keyframes recip2-drift {
  0%   { transform: scale(1.05) translate(0, 0); }
  100% { transform: scale(1.12) translate(-1.2%, -0.8%); }
}
.recip2__shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(8,14,10,0.35) 0%, rgba(8,14,10,0.2) 50%, rgba(8,14,10,0.4) 100%);
}

.recip2__stage {
  position: relative; z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
}

/* THE GLASS PANEL — single, generous, holds everything */
.recip2__glass {
  position: relative;
  padding: clamp(44px, 6vh, 72px) clamp(36px, 5vw, 72px);
  border-radius: 32px;
  background: rgba(20, 30, 22, 0.32);
  backdrop-filter: blur(28px) saturate(120%);
  -webkit-backdrop-filter: blur(28px) saturate(120%);
  border: 1px solid rgba(246, 243, 236, 0.14);
  box-shadow:
    0 40px 100px -30px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(246, 243, 236, 0.08);
  color: var(--cream);
}

.recip2__eyebrow {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: var(--trk-caption); text-transform: uppercase;
  color: rgba(246, 243, 236, 0.6);
  display: flex; align-items: center; gap: 14px;
  justify-content: center;
  margin-bottom: clamp(24px, 3.5vh, 40px);
}
.recip2__eyebrow .sep { width: 32px; height: 1px; background: currentColor; opacity: 0.4; }

.recip2__headline {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: normal;
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin: 0 0 24px;
  text-align: center;
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}
.recip2__headline em {
  font-style: italic;
  color: var(--tan, #d9c6a8);
}

.recip2__lede {
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.75;
  color: rgba(246, 243, 236, 0.78);
  font-weight: 300;
  text-align: center;
  max-width: 56ch;
  margin: 0 auto clamp(44px, 6vh, 64px);
  text-wrap: pretty;
}

.recip2__pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 3vw, 44px);
  margin-bottom: clamp(36px, 5vh, 56px);
}
.recip2__pillar {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.recip2__pillar .num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: var(--trk-caption);
  color: var(--tan, #d9c6a8);
  opacity: 0.75;
}
.recip2__pillar h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.3;
  color: var(--cream);
  margin: 0 0 4px;
}
.recip2__pillar p {
  font-size: 13.5px;
  line-height: 1.65;
  color: rgba(246, 243, 236, 0.7);
  margin: 0;
  font-weight: 300;
}

.recip2__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: var(--trk-caption);
  text-transform: uppercase;
  color: rgba(246, 243, 236, 0.8);
  padding: 14px 24px;
  border: 1px solid rgba(246, 243, 236, 0.2);
  border-radius: 999px;
  width: max-content;
  margin: 0 auto;
  transition: all 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.recip2__link:hover {
  color: var(--cream);
  border-color: rgba(246, 243, 236, 0.45);
  background: rgba(246, 243, 236, 0.05);
}

@media (prefers-reduced-motion: reduce) {
  .recip2__bg .img-inner { animation: none !important; }
}

/* Tablet — 2 columns */
@media (max-width: 900px) {
  .recip2__pillars { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

/* Mobile — single column */
@media (max-width: 560px) {
  .recip2__glass { padding: 36px 24px; border-radius: 24px; }
  .recip2__pillars { grid-template-columns: 1fr; gap: 28px; }
  .recip2__headline { font-size: 30px; }
}

/* =========================================================
   CLOSING MOMENT — short band, single-line phrase over drone shot
   Max ~30vh. Phrase on one line in a quieter, wide-tracked style.
   ========================================================= */
.closing {
  position: relative;
  height: clamp(200px, 30vh, 340px);
  overflow: hidden;
  isolation: isolate;
  display: grid;
  place-items: center;
  background: #111c14;
}
.closing__bg {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden;
}
.closing__bg .img {
  width: 100%; height: 100%;
  --ratio: auto;
  aspect-ratio: auto;
}
.closing__bg .img-inner {
  /* very slow drift, 120s */
  animation: closing-drift 120s linear infinite alternate;
}
@keyframes closing-drift {
  0%   { transform: scale(1.04) translate(0%, 0%); }
  100% { transform: scale(1.10) translate(-1.2%, -0.8%); }
}
.closing__shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,18,12,0.55) 0%, rgba(10,18,12,0.35) 40%, rgba(10,18,12,0.55) 100%),
    radial-gradient(ellipse at 50% 50%, rgba(10,18,12,0.15) 0%, rgba(10,18,12,0.45) 80%);
}

.closing__content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 0 var(--gutter);
  width: 100%;
}
.closing__phrase {
  margin: 0;
  /* Hand-drawn script — soft, connected, no hard edges. */
  font-family: 'Caveat', 'Cormorant Garamond', cursive;
  font-weight: 600;
  font-style: normal;
  font-size: clamp(36px, 5.6vw, 76px);
  letter-spacing: 0.002em;
  line-height: 1.1;
  color: var(--cream);
  /* Slow, breath-long reveal. */
  opacity: 0;
  transition: opacity 3000ms cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity;
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}
.closing.in .closing__phrase {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .closing__bg .img-inner { animation: none !important; }
  .closing__phrase { opacity: 1 !important; }
}

/* Mobile — keep the phrase generous, it's the closing breath */
@media (max-width: 520px) {
  .closing__phrase { font-size: 46px; line-height: 1.1; max-width: 14ch; }
  .closing { height: clamp(240px, 34vh, 320px); }
}
@media (max-width: 360px) {
  .closing__phrase { font-size: 40px; max-width: 13ch; }
}

/* Real photos — fill their .img-inner slot, cover from center */
.img-inner > img.photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  z-index: 1;
}
/* Hide the placeholder label & gradient when a real photo is present */
.img-inner:has(> img.photo) > .ph,
.img-inner:has(> img.photo) > .ph-label { display: none; }

/* =========================================================
   CORNER SOFTNESS — global tweak
   "default" leaves everything as it is.
   "soft" adds generous radii ONLY to elements that are currently
   square (content blocks, images, containers) — without changing
   anything that is already rounded (buttons, pills, circles).
   ========================================================= */

/* Smooth transition so the switch feels gentle — scoped to the
   elements we actually soften, to avoid disturbing other transitions. */
body[data-corners="soft"] .section,
body[data-corners="soft"] .strip,
body[data-corners="soft"] .container,
body[data-corners="soft"] .container.broad,
body[data-corners="soft"] .container.reading,
body[data-corners="soft"] .img,
body[data-corners="soft"] .img-inner,
body[data-corners="soft"] .ph,
body[data-corners="soft"] .testimonial,
body[data-corners="soft"] .ceremony__card,
body[data-corners="soft"] .ceremony-card,
body[data-corners="soft"] .card,
body[data-corners="soft"] .spaces__card,
body[data-corners="soft"] .space,
body[data-corners="soft"] .team__member,
body[data-corners="soft"] .team-card,
body[data-corners="soft"] .food-card,
body[data-corners="soft"] .discovery__card,
body[data-corners="soft"] .reveal__stage,
body[data-corners="soft"] .reveal__side,
body[data-corners="soft"] .finder__container,
body[data-corners="soft"] .finder__ambient .layer,
body[data-corners="soft"] .opt,
body[data-corners="soft"] .recip2__pillar,
body[data-corners="soft"] .hero__corner .img {
  transition: border-radius 800ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* SOFT values — apply only on data-corners="soft".
   Use generous radii on content blocks & imagery. */
body[data-corners="soft"] .img,
body[data-corners="soft"] .img-inner {
  border-radius: 28px;
  overflow: hidden;
}
body[data-corners="soft"] .ph {
  border-radius: 28px;
}
body[data-corners="soft"] .testimonial {
  border-radius: 24px;
}
body[data-corners="soft"] .ceremony__card,
body[data-corners="soft"] .ceremony-card,
body[data-corners="soft"] .spaces__card,
body[data-corners="soft"] .space,
body[data-corners="soft"] .team__member,
body[data-corners="soft"] .team-card,
body[data-corners="soft"] .food-card,
body[data-corners="soft"] .card {
  border-radius: 28px;
}
body[data-corners="soft"] .opt {
  border-radius: 22px;
}
body[data-corners="soft"] .reveal__stage,
body[data-corners="soft"] .reveal__side {
  border-radius: 28px;
}
body[data-corners="soft"] .finder__container {
  border-radius: 36px;
}
body[data-corners="soft"] .discovery__card {
  border-radius: 32px;
}
/* The glass in reciprocity — bump it up for extra softness */
body[data-corners="soft"] .recip2__glass {
  border-radius: 44px;
}
/* Full-bleed section backgrounds (hero, closing, recip bg, finder ambient)
   intentionally stay edge-to-edge — rounding them creates weird gaps. */

/* =========================================================
   FAQ — accordion of common questions
   Uses native <details>/<summary> for accessibility + no-JS expand.
   ========================================================= */
.faq { background: var(--paper); }
.faq .h-display { max-width: 18ch; }

.faq__list {
  margin-top: clamp(40px, 6vh, 72px);
  border-top: 1px solid rgba(31, 42, 34, 0.12);
}
.faq__item {
  border-bottom: 1px solid rgba(31, 42, 34, 0.12);
}
.faq__q {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 2vw, 32px);
  padding: clamp(20px, 2.4vh, 28px) 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(19px, 1.5vw, 24px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--ink);
  transition: color 300ms var(--ease-out);
}
/* Safari needs this explicit removal of the default disclosure triangle */
.faq__q::-webkit-details-marker { display: none; }
.faq__q::marker { content: ""; }
.faq__q:hover { color: var(--jungle-deep); }
.faq__q:focus-visible { outline: 1.5px solid var(--jungle); outline-offset: 4px; border-radius: 2px; }

.faq__q-text {
  flex: 1;
  text-wrap: balance;
}

.faq__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--ink-quiet);
  transition: transform 500ms var(--ease-out), color 400ms var(--ease-out);
}
.faq__item[open] .faq__icon {
  transform: rotate(45deg);
  color: var(--jungle-deep);
}

.faq__a {
  padding: 4px 0 clamp(22px, 3vh, 32px);
  max-width: 68ch;
  font-size: clamp(15.5px, 1.1vw, 17.5px);
  line-height: 1.7;
  color: var(--ink-soft);
}
.faq__a p { margin: 0 0 0.9em; }
.faq__a p:last-child { margin-bottom: 0; }
.faq__a em { font-style: italic; color: var(--ink); }
.faq__a ul, .faq__a ol {
  margin: 0.3em 0 1em;
  padding-left: 1.4em;
}
.faq__a li {
  margin-bottom: 0.4em;
  line-height: 1.6;
}
.faq__a li:last-child { margin-bottom: 0; }
.faq__a li strong {
  color: var(--ink);
  font-weight: 500;
}
.faq__a a { color: var(--jungle-deep); border-bottom: 1px solid rgba(47, 74, 58, 0.3); transition: border-color 300ms; }
.faq__a a:hover { border-bottom-color: var(--jungle-deep); }

.faq__footer {
  margin-top: clamp(36px, 5vh, 56px);
  text-align: center;
  font-size: clamp(14.5px, 1.05vw, 16px);
  color: var(--ink-soft);
  line-height: 1.6;
}
.faq__footer a {
  color: var(--ink);
  border-bottom: 1px solid rgba(31, 42, 34, 0.3);
  transition: color 300ms, border-color 300ms;
}
.faq__footer a:hover {
  color: var(--jungle-deep);
  border-bottom-color: var(--jungle-deep);
}

/* =========================================================
   TESTIMONIALS PAGE — testimonials.html only
   ========================================================= */

/* Compact header — nav fixes the top, so generous top padding.
   Bottom padding is tight so the first section reads as a continuation. */
.t-header {
  position: relative;
  padding: clamp(120px, 18vh, 200px) 0 clamp(28px, 4vh, 52px);
  background: var(--paper);
  overflow: hidden;
  isolation: isolate;
}
/* The first section after the header sits closer to the lede so the
   page title and the section heading don't read as two slabs. */
.t-header + .section {
  padding-top: clamp(44px, 6.5vh, 88px);
}

/* Subordinate section titles — smaller than the page title so the
   hierarchy is obvious: one page title, three quieter subsections. */
.t-section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(26px, 3.2vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
  max-width: 18ch;
  text-wrap: balance;
}
.t-section-title em { font-style: italic; color: var(--jungle-deep); }
.t-header::before {
  content: "";
  position: absolute;
  inset: auto -10% -60% auto;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(138, 168, 138, 0.25) 0%, rgba(138, 168, 138, 0) 70%);
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
}
.t-header > .container { position: relative; z-index: 1; }
.t-header__title {
  font-family: var(--font-display);
  font-size: clamp(44px, 6.5vw, 96px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--ink);
  max-width: 14ch;
  margin: clamp(14px, 2vh, 24px) 0 0;
  text-wrap: balance;
}
.t-header__title em { font-style: italic; color: var(--jungle-deep); }
.t-header__lede {
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 54ch;
  margin-top: clamp(20px, 3vh, 32px);
  text-wrap: pretty;
}

/* Reviews wall — masonry of review cards.
   Each card reads as its own unit: stars, title, body, author + date. */
.reviews-wall {
  column-count: 3;
  column-gap: clamp(20px, 2vw, 32px);
  margin-top: clamp(40px, 6vh, 72px);
}

/* Wall cards override the bare .testimonial style used on the main page.
   Here each one is a proper review card with padding, background, shadow. */
.reviews-wall .testimonial {
  break-inside: avoid;
  margin: 0 0 clamp(20px, 2vw, 32px);
  padding: clamp(24px, 2.2vw, 36px);
  background: #ffffff;
  border: 1px solid rgba(31, 42, 34, 0.06);
  border-radius: 20px;
  box-shadow:
    0 18px 40px -20px rgba(31, 42, 34, 0.10),
    0 2px 6px -2px rgba(31, 42, 34, 0.04);
  font-family: var(--font-body);
  font-size: clamp(15px, 1.05vw, 16.5px);
  line-height: 1.65;
  color: var(--ink-soft);
  position: relative;
}
/* Remove the jungle-green dash that the main-page testimonials have */
.reviews-wall .testimonial::before { display: none; }

/* Paragraphs breathe inside the card */
.reviews-wall .testimonial p {
  margin: 0 0 0.85em;
}
.reviews-wall .testimonial p:last-of-type { margin-bottom: 0; }
.reviews-wall .testimonial em {
  font-style: italic;
  color: var(--ink);
}

/* 5 golden stars — honest amber, not neon yellow */
.testimonial__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
  color: #C9A13A;
}
.testimonial__stars svg {
  width: 15px;
  height: 15px;
  display: block;
}

/* Review title — the user's own headline, now the strongest element */
.testimonial__title {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 500;
  font-size: clamp(20px, 1.6vw, 26px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 14px;
  text-wrap: balance;
}

/* The hidden rest of the review, revealed by the Read more button */
.testimonial__rest { margin-top: 0; }
.testimonial__rest[hidden] { display: none; }
.testimonial__rest > p:first-child { margin-top: 0.85em; }

/* Read more / Read less toggle — micro mono label, underlined */
.testimonial__toggle {
  display: inline-block;
  margin-top: 14px;
  padding: 0 0 3px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(31, 42, 34, 0.22);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: var(--trk-caption);
  text-transform: uppercase;
  color: var(--ink-soft);
  cursor: pointer;
  transition: color 400ms var(--ease-out), border-color 400ms var(--ease-out);
}
.testimonial__toggle:hover {
  color: var(--ink);
  border-color: var(--ink);
}
.testimonial__toggle[aria-expanded="true"] { color: var(--ink-quiet); }

/* Bottom meta row — author + date, separated by a subtle dot */
.testimonial__meta {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(31, 42, 34, 0.06);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: var(--trk-caption);
  text-transform: uppercase;
  flex-wrap: wrap;
}
.testimonial__author {
  color: var(--ink);
  font-weight: 500;
}
.testimonial__sep {
  color: var(--ink-whisper);
}
.testimonial__date {
  color: var(--ink-quiet);
}

@media (max-width: 1100px) {
  .reviews-wall { column-count: 2; }
}
@media (max-width: 640px) {
  .reviews-wall { column-count: 1; }
  .reviews-wall .testimonial { padding: 22px 22px 20px; }
}

/* WhatsApp wall — flex wrap so 2 or 10 screenshots all center nicely.
   Each card respects native aspect (9:~19.5 for a phone screenshot). */
.wa-wall {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(16px, 1.8vw, 28px);
  margin-top: clamp(40px, 6vh, 72px);
}
.wa-screenshot {
  flex: 0 1 clamp(240px, 24vw, 340px);
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}
.wa-screenshot img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  background: var(--paper-deep);
  box-shadow:
    0 18px 40px -18px rgba(31, 42, 34, 0.18),
    0 2px 6px -2px rgba(31, 42, 34, 0.04);
}
/* Small caption under each screenshot — same mono treatment as video captions */
.wa-caption {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: var(--trk-caption);
  text-transform: uppercase;
  color: var(--ink-quiet);
  text-align: center;
}
@media (max-width: 560px) {
  .wa-screenshot { flex: 0 1 clamp(220px, 72vw, 320px); }
}

/* Closing CTA — quiet but definitive */
.t-cta {
  padding: clamp(90px, 14vh, 160px) 0;
  background: var(--cream);
  border-top: 1px solid rgba(31, 42, 34, 0.08);
  text-align: center;
}
.t-cta__inner {
  max-width: 720px;
  margin: 0 auto;
  padding-inline: var(--gutter);
}
.t-cta h2 {
  font-size: clamp(40px, 5.5vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  max-width: 14ch;
  margin: clamp(20px, 3vh, 32px) auto 0;
  text-wrap: balance;
}
.t-cta h2 em { font-style: italic; color: var(--jungle-deep); }
.t-cta p {
  max-width: 52ch;
  margin: clamp(20px, 3vh, 32px) auto;
  font-size: clamp(16px, 1.15vw, 18.5px);
  line-height: 1.65;
  color: var(--ink-soft);
}
.t-cta__actions {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: clamp(8px, 1vh, 16px);
}
.t-cta .btn--ghost {
  padding: 15px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  color: var(--ink);
  font-size: 14px;
  letter-spacing: 0.01em;
}
.t-cta .btn--ghost:hover {
  color: var(--jungle-deep);
}


