/* ============================================================================
   BUSINESS SURGE 5.0 — Singapore & Thailand Executive Business Immersion
   Design system: cream #f4f1ea · ink-green #132a1e / #0d2417 / #0a1c12
                  gold #8a6a2e / #c69a4c · muted #3a4a40 / #7a8a80
   Fonts: Marcellus (display serif) + Manrope (sans)
   Aesthetic: warm editorial luxury + restrained glassmorphism.
   ============================================================================ */

:root {
  --cream: #f4f1ea;
  --cream-2: #fdfcf8;
  --green: #132a1e;
  --green-d: #0d2417;
  --green-dd: #0a1c12;
  --gold: #8a6a2e;
  --gold-l: #c69a4c;
  --gold-hi: #e4c47e;
  --muted: #3a4a40;
  --muted-l: #7a8a80;
  --line: rgba(19, 42, 30, .12);
  --line-2: rgba(19, 42, 30, .08);

  /* Gradients */
  --gold-grad: linear-gradient(115deg, #d9b366 0%, #c69a4c 38%, #e4c47e 50%, #c69a4c 62%, #b98d3f 100%);
  --green-grad: linear-gradient(115deg, #173420 0%, #132a1e 38%, #234c34 50%, #132a1e 62%, #0d2417 100%);

  /* Glass */
  --glass-dark-bg: rgba(255, 255, 255, .055);
  --glass-dark-brd: rgba(255, 255, 255, .15);
  --glass-dark-hi: inset 0 1px 0 rgba(255, 255, 255, .16);

  /* Radii */
  --r-sm: 10px;
  --r: 16px;
  --r-lg: 22px;

  /* Shadows */
  --sh-sm: 0 4px 16px -10px rgba(19, 42, 30, .35);
  --sh-md: 0 20px 44px -26px rgba(19, 42, 30, .45);
  --sh-lg: 0 40px 80px -40px rgba(19, 42, 30, .55);
  --sh-gold: 0 16px 34px -14px rgba(138, 106, 46, .5);

  --ease: cubic-bezier(.22, .61, .36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  font-family: Manrope, system-ui, sans-serif;
  color: var(--green);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

img, video { max-width: 100%; display: block; }

a { color: var(--gold); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: #6f531f; }

h1, h2, h3 { font-family: Marcellus, serif; font-weight: 400; margin: 0; }

p { margin: 0; }

::selection { background: rgba(138, 106, 46, .22); color: var(--green-d); }

:focus-visible {
  outline: 2px solid var(--gold-l);
  outline-offset: 3px;
  border-radius: 4px;
}

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 40px; }
.wrap-narrow { max-width: 860px; margin: 0 auto; padding: 0 40px; }

/* ---- Scroll reveal ---------------------------------------------------------
   HTML gains `.js` (set inline in <head>) so nothing hides without JS. */
.js [data-reveal],
.js [data-reveal-group] > * {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  will-change: opacity, transform;
}
.js [data-reveal].is-visible,
.js [data-reveal-group] > *.is-visible {
  opacity: 1;
  transform: none;
}

/* ---- Eyebrow / labels ---- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  font: 500 12px Manrope, sans-serif;
  letter-spacing: .28em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
  opacity: .55;
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::after {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
  opacity: .55;
}

/* ---- Buttons ---- */
.btn-g, .btn-o, .btn-w {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-radius: 100px;
  cursor: pointer;
  transition: background-position .6s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease), background-color .2s var(--ease), color .2s var(--ease);
}
.btn-g {
  padding: 16px 32px;
  background: var(--green-grad);
  background-size: 220% 100%;
  background-position: 100% 0;
  color: #fff;
  font: 700 14px Manrope, sans-serif;
  border: none;
  box-shadow: 0 10px 26px -16px rgba(13, 36, 23, .8);
}
.btn-g:hover { color: #fff; background-position: 0 0; transform: translateY(-2px); box-shadow: 0 18px 34px -16px rgba(13, 36, 23, .7); }
.btn-o {
  padding: 16px 32px;
  border: 1px solid rgba(19, 42, 30, .4);
  color: var(--green);
  font: 600 14px Manrope, sans-serif;
  background: transparent;
}
.btn-o:hover { background: var(--green); color: #fff; border-color: var(--green); transform: translateY(-2px); }
.btn-w {
  padding: 17px 36px;
  background: var(--gold-grad);
  background-size: 220% 100%;
  background-position: 100% 0;
  color: var(--green-d);
  font: 700 15px Manrope, sans-serif;
  border: none;
  box-shadow: var(--sh-gold);
}
.btn-w:hover { background-position: 0 0; color: var(--green-d); transform: translateY(-2px); box-shadow: 0 22px 40px -14px rgba(138, 106, 46, .6); }
.btn-lg { padding: 19px 44px; font-size: 16px; }

/* ---- Image placeholders (swap for real photos) ---- */
.ph {
  background-color: #e7e3d8;
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, .5), rgba(255, 255, 255, 0) 45%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='52' height='52' viewBox='0 0 24 24' fill='none' stroke='%238c9890' stroke-width='1.25' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Ccircle cx='8.5' cy='10' r='1.5'/%3E%3Cpath d='M21 15l-4.5-4.5L9 18'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.ph-lbl {
  position: absolute; left: 50%; bottom: 16px; transform: translateX(-50%);
  font: 500 10.5px ui-monospace, Menlo, monospace; letter-spacing: .04em;
  padding: 5px 12px; border: 1px solid rgba(19, 42, 30, .14); border-radius: 100px;
  color: var(--muted-l); background: rgba(255, 255, 255, .6); white-space: nowrap; z-index: 2;
  backdrop-filter: blur(4px);
}

/* ---- Scroll progress (JS-injected element) ---- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0;
  background: var(--gold-grad); background-size: 100% 100%;
  z-index: 60; transition: width .1s linear;
  box-shadow: 0 0 10px rgba(198, 154, 76, .6);
}

/* ---- Nav ---- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(244, 241, 234, .72);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid rgba(19, 42, 30, .07);
  transition: height .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
}
.nav--scrolled {
  background: rgba(244, 241, 234, .86);
  box-shadow: 0 10px 30px -22px rgba(19, 42, 30, .55);
  border-bottom-color: rgba(19, 42, 30, .1);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; transition: height .3s var(--ease); }
.nav--scrolled .nav-inner { height: 62px; }
.brand { font: 400 18px Marcellus, serif; letter-spacing: .06em; color: var(--green); }
.brand span { color: var(--gold); }
.nav-links { display: flex; gap: 30px; align-items: center; }
.navlink { position: relative; color: var(--green); font: 500 13.5px Manrope, sans-serif; letter-spacing: .01em; padding: 4px 0; }
.navlink::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px;
  height: 1.5px; background: var(--gold-grad); border-radius: 2px;
  transition: right .3s var(--ease);
}
.navlink:hover { color: var(--gold); }
.navlink:hover::after { right: 0; }

/* ---- Sections ---- */
.section { padding: 108px 0; }
.section--tight { padding: 84px 0; }
.section--white { background: #fff; border-top: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2); }
.section--green { background: var(--green); color: #fff; }
.section--green-d { background: var(--green-d); color: #fff; }
.section--green, .section--green-d { position: relative; overflow: hidden; }
/* Ambient glow on dark sections */
.section--green::before, .section--green-d::before {
  content: ""; position: absolute; top: -30%; left: 50%; transform: translateX(-50%);
  width: 900px; height: 900px; pointer-events: none;
  background: radial-gradient(circle, rgba(198, 154, 76, .1), transparent 62%);
}
.section--green > *, .section--green-d > * { position: relative; z-index: 1; }
.section--green .eyebrow, .section--green-d .eyebrow { color: var(--gold-l); }
.section--green h2, .section--green h3, .section--green-d h2, .section--green-d h3 { color: #fff; }

.h2 { font-size: clamp(32px, 4.4vw, 46px); line-height: 1.08; letter-spacing: -.01em; }
.lead { font: 300 clamp(17px, 2.2vw, 19px)/1.7 Manrope, sans-serif; color: var(--muted); }
.section--green .lead, .section--green-d .lead { color: rgba(255, 255, 255, .75); }
.center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ---- Prose blocks (stacked short lines, the site's cadence) ---- */
.prose p { font: 300 18px/1.7 Manrope, sans-serif; color: var(--muted); margin-top: 20px; }
.prose p:first-child { margin-top: 0; }
.prose .em { color: var(--green); font-weight: 500; }
.section--green .prose p, .section--green-d .prose p { color: rgba(255, 255, 255, .78); }
.section--green .prose .em, .section--green-d .prose .em { color: #fff; }

/* ---- HERO ---- */
.hero-media { position: relative; height: clamp(440px, 64vh, 660px); }
.hero-media .ph { position: absolute; inset: 0; }
.hero-media video, .hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(10, 28, 18, 0) 40%, rgba(10, 28, 18, .35) 100%),
    linear-gradient(180deg, rgba(10, 28, 18, .18) 0%, rgba(10, 28, 18, .1) 45%, rgba(10, 28, 18, .62) 100%);
}
.hero-quote { position: absolute; z-index: 3; left: 0; right: 0; bottom: 0; padding: 0 40px 56px; }
.hero-quote p {
  max-width: 900px; margin: 0 auto; text-align: center; color: #fff;
  font: italic 400 clamp(22px, 3.4vw, 38px)/1.3 Marcellus, serif;
  text-shadow: 0 2px 30px rgba(0, 0, 0, .5);
}

.hero-body { position: relative; overflow: hidden; padding: 66px 0 88px; text-align: center; }
.hero-body::before {
  content: ""; position: absolute; top: -160px; left: 50%; transform: translateX(-50%);
  width: 720px; height: 720px; pointer-events: none;
  background: radial-gradient(circle, rgba(198, 154, 76, .16), transparent 60%);
}
.hero-body .wrap { position: relative; z-index: 1; }
.hero-title { font-size: clamp(44px, 5.8vw, 78px); line-height: 1; letter-spacing: -.01em; }
.hero-title span { color: var(--gold); }
.hero-sub { margin-top: 12px; font: 400 clamp(17px, 2.2vw, 22px) Marcellus, serif; color: var(--green); }
.hero-meta { margin-top: 22px; display: inline-flex; gap: 14px; align-items: center; justify-content: center; flex-wrap: wrap; font: 500 12px Manrope, sans-serif; letter-spacing: .16em; color: var(--muted-l); text-transform: uppercase; }
.hero-sep { color: var(--gold); }
.hero-fine { margin: 20px auto 0; max-width: 460px; font: 400 13.5px/1.6 Manrope, sans-serif; color: var(--muted-l); }

/* ---- Investment / pricing ---- */
.invest {
  position: relative;
  margin: 40px auto 0; max-width: 560px;
  background: linear-gradient(180deg, #fff, var(--cream-2));
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 34px 42px 30px;
  box-shadow: var(--sh-lg);
  overflow: hidden;
}
/* gold hairline accent along the top */
.invest::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gold-grad);
}
.invest-eyebrow { font: 600 11px Manrope, sans-serif; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); text-align: center; margin-bottom: 22px; }
.invest-row { display: flex; justify-content: center; }
.invest-tier { flex: 1; min-width: 140px; text-align: center; padding: 0 14px; }
.invest-tier + .invest-tier { border-left: 1px solid var(--line); }
.invest-label { font: 600 11px Manrope, sans-serif; letter-spacing: .16em; text-transform: uppercase; color: var(--muted-l); }
.invest-price { margin-top: 12px; font: 400 clamp(32px, 4.4vw, 44px)/1 Marcellus, serif; color: var(--green); display: inline-flex; align-items: baseline; }
.invest-price .cur { font-family: Manrope, sans-serif; font-weight: 600; font-size: .48em; color: var(--gold); margin-right: .06em; }
.invest-price .mil { font-family: Manrope, sans-serif; font-weight: 600; font-size: .29em; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-l); margin-left: .32em; align-self: center; }
.invest-save { display: inline-block; margin-top: 20px; padding: 8px 20px; background: rgba(138, 106, 46, .12); color: var(--gold); border: 1px solid rgba(138, 106, 46, .2); border-radius: 100px; font: 600 12px Manrope, sans-serif; letter-spacing: .04em; }
.invest-note { margin: 16px auto 0; max-width: 420px; font: 300 13.5px/1.6 Manrope, sans-serif; color: var(--muted-l); text-align: center; }
.invest-note strong { color: var(--green); font-weight: 600; }
.section--green .invest-note strong, .section--green-d .invest-note strong { color: #fff; }

/* ---- CTA block (button + urgency microcopy) ---- */
.hero-cta { margin-top: 36px; }
.cta-micro { margin: 16px auto 0; font: 500 13px/1.5 Manrope, sans-serif; letter-spacing: .02em; color: var(--muted-l); }
.cta-micro strong { color: var(--green); font-weight: 700; }
.cta-micro--dark { color: rgba(255, 255, 255, .7); }
.cta-micro--dark strong { color: var(--gold-l); }

/* Investment card on dark-green backgrounds (final CTA) — real glass */
.section--green .invest, .section--green-d .invest {
  background: var(--glass-dark-bg);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-color: var(--glass-dark-brd);
  box-shadow: var(--glass-dark-hi), 0 30px 60px -34px rgba(0, 0, 0, .6);
}
.section--green .invest-price, .section--green-d .invest-price { color: #fff; }
.section--green .invest-eyebrow, .section--green-d .invest-eyebrow { color: var(--gold-l); }
.section--green .invest-tier + .invest-tier, .section--green-d .invest-tier + .invest-tier { border-color: rgba(255, 255, 255, .16); }
.section--green .invest-note, .section--green-d .invest-note { color: rgba(255, 255, 255, .6); }
.section--green .invest-price .mil, .section--green-d .invest-price .mil { color: rgba(255, 255, 255, .6); }

/* ---- Checklist (✓ takeaways / inclusions) ---- */
.checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
.checklist.cols2 { grid-template-columns: 1fr 1fr; gap: 16px 40px; }
.checklist li { display: flex; gap: 14px; align-items: flex-start; font: 400 16px/1.55 Manrope, sans-serif; color: var(--muted); }
.section--green .checklist li, .section--green-d .checklist li { color: rgba(255, 255, 255, .82); }
.check {
  flex: none; width: 26px; height: 26px; border-radius: 100px;
  border: 1px solid var(--gold); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font: 600 13px Manrope, sans-serif; margin-top: 1px;
}
.section--green .check, .section--green-d .check { border-color: var(--gold-l); color: var(--gold-l); }

/* Simple bullet list */
.bullets { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.bullets.cols2 { grid-template-columns: 1fr 1fr; gap: 12px 40px; }
.bullets li { display: flex; gap: 12px; align-items: flex-start; font: 400 16px/1.5 Manrope, sans-serif; color: var(--muted); }
.bullets li::before { content: "•"; color: var(--gold); font-size: 20px; line-height: 1.2; }
.section--green .bullets li, .section--green-d .bullets li { color: rgba(255, 255, 255, .82); }
.section--green .bullets li::before, .section--green-d .bullets li::before { color: var(--gold-l); }

/* ---- Video frame (rounded, cropped) ---- */
.video-frame { position: relative; overflow: hidden; background: var(--green-d); border-radius: var(--r-lg) !important; box-shadow: var(--sh-lg); }
.video-frame::after { content: ""; position: absolute; inset: 0; border-radius: inherit; box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1); pointer-events: none; }
.video-frame video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ---- Itinerary / timeline ---- */
.timeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.day {
  position: relative;
  background: linear-gradient(180deg, #fff, var(--cream-2));
  border: 1px solid var(--line); border-radius: var(--r);
  padding: 34px 30px; display: flex; flex-direction: column;
  box-shadow: var(--sh-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.day::before {
  content: ""; position: absolute; top: 0; left: 30px; right: 30px; height: 2px;
  background: var(--gold-grad); border-radius: 2px; opacity: 0; transition: opacity .35s var(--ease);
}
.day:hover { transform: translateY(-6px); box-shadow: var(--sh-md); border-color: rgba(138, 106, 46, .35); }
.day:hover::before { opacity: 1; }
.day-no { font: 500 12px Manrope, sans-serif; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); }
.day-title { margin: 12px 0 18px; font-size: 26px; line-height: 1.15; }
.day ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.day li { font: 400 15px/1.5 Manrope, sans-serif; color: var(--muted); padding-left: 16px; position: relative; }
.day li::before { content: ""; position: absolute; left: 0; top: 9px; width: 6px; height: 6px; border-radius: 100px; background: var(--gold-l); }

/* ---- Feature grid (why it feels different) — glass tiles ---- */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.feat {
  position: relative; overflow: hidden;
  background: var(--glass-dark-bg);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  border: 1px solid var(--glass-dark-brd);
  border-radius: var(--r);
  padding: 32px 28px;
  box-shadow: var(--glass-dark-hi);
  transition: transform .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease);
}
.feat::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 120% at 0% 0%, rgba(198, 154, 76, .16), transparent 55%);
  opacity: 0; transition: opacity .35s var(--ease);
}
.feat:hover { transform: translateY(-5px); background: rgba(255, 255, 255, .09); border-color: rgba(198, 154, 76, .4); }
.feat:hover::after { opacity: 1; }
.feat h3 { position: relative; z-index: 1; font-size: 20px; color: #fff; }

/* ---- Testimonials / reviews ---- */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card {
  padding: 0; border: 1px solid var(--line); background: var(--cream-2);
  border-radius: var(--r); overflow: hidden; cursor: zoom-in;
  box-shadow: var(--sh-sm); position: relative; display: block;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.review-card img { width: 100%; height: auto; }
.review-card:hover, .review-card:focus-visible {
  transform: translateY(-5px); box-shadow: var(--sh-md); border-color: rgba(138, 106, 46, .4);
}
.review-card:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
/* Zoom affordance — only meaningful once JS has wired the lightbox up. */
.review-zoom {
  position: absolute; right: 12px; bottom: 12px;
  width: 34px; height: 34px; border-radius: 100px;
  display: none; align-items: center; justify-content: center;
  background: rgba(253, 252, 248, .82); border: 1px solid var(--line);
  color: var(--gold); font-size: 15px; backdrop-filter: blur(4px);
  opacity: 0; transition: opacity .3s var(--ease);
}
.js .review-zoom { display: flex; }
.review-card:hover .review-zoom, .review-card:focus-visible .review-zoom { opacity: 1; }
/* Extra cards stay collapsed until "Read all 13 testimonials" is pressed (JS only). */
.js .review-card.is-collapsed { display: none; }

/* ---- Testimonial lightbox ---- */
.lightbox {
  position: fixed; inset: 0; z-index: 90;
  display: flex; align-items: center; justify-content: center;
  gap: 10px; padding: 24px;
  background: rgba(10, 28, 18, .88); backdrop-filter: blur(6px);
  animation: lb-in .25s var(--ease) both;
}
.lightbox[hidden] { display: none; }
@keyframes lb-in { from { opacity: 0; } to { opacity: 1; } }
.lightbox-img {
  max-width: min(560px, 100%); max-height: calc(100vh - 108px);
  width: auto; height: auto; object-fit: contain;
  border-radius: var(--r); box-shadow: var(--sh-lg);
}
.lightbox-close, .lightbox-nav {
  flex: none; cursor: pointer; color: #fff;
  background: rgba(255, 255, 255, .09); border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 100px; transition: background .25s var(--ease), border-color .25s var(--ease);
}
.lightbox-close:hover, .lightbox-nav:hover { background: rgba(255, 255, 255, .2); border-color: var(--gold-l); }
.lightbox-close {
  position: absolute; top: 18px; right: 18px; z-index: 2;
  width: 44px; height: 44px; font: 400 28px/1 Manrope, sans-serif;
}
.lightbox-nav { width: 46px; height: 46px; font: 400 30px/1 Manrope, sans-serif; }
.lightbox-count {
  position: absolute; left: 50%; bottom: 20px; transform: translateX(-50%);
  font: 500 12px Manrope, sans-serif; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255, 255, 255, .72);
}

/* ---- Convener ---- */
.convener { display: grid; grid-template-columns: .8fr 1.2fr; gap: 56px; align-items: center; }
.convener .ph, .convener-photo { height: 460px; border-radius: var(--r-lg); box-shadow: var(--sh-md); }
.convener-photo { overflow: hidden; background: #e7e3d8; }
.convener-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 18%; }

/* ---- FAQ accordion — cards ---- */
.faq { display: grid; gap: 12px; }
.faq-item {
  background: linear-gradient(180deg, var(--cream-2), #fff);
  border: 1px solid var(--line); border-radius: var(--r);
  overflow: hidden;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.faq-item:hover { border-color: rgba(138, 106, 46, .32); box-shadow: var(--sh-sm); }
.faq-item:has(.faq-q[aria-expanded="true"]) { border-color: rgba(138, 106, 46, .4); box-shadow: var(--sh-sm); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 24px 26px; font-family: Marcellus, serif;
}
.faq-q > span:first-child { font-size: 21px; color: var(--green); }
.faq-plus { font: 300 30px Manrope, sans-serif; color: var(--gold); line-height: 1; transition: transform .3s var(--ease); flex: none; }
.faq-q[aria-expanded="true"] .faq-plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a p { margin: 0 26px 24px; font: 300 16px/1.7 Manrope, sans-serif; color: var(--muted); max-width: 700px; }

/* ---- Contact strip inside FAQ ---- */
.contact-card {
  position: relative; overflow: hidden;
  margin-top: 44px; background: var(--green); color: #fff;
  border-radius: var(--r-lg); padding: 44px; text-align: center;
  box-shadow: var(--sh-lg);
}
.contact-card::before {
  content: ""; position: absolute; top: -40%; right: -10%;
  width: 460px; height: 460px; pointer-events: none;
  background: radial-gradient(circle, rgba(198, 154, 76, .22), transparent 62%);
}
.contact-card > * { position: relative; z-index: 1; }
.contact-card h3 { color: #fff; font-size: 26px; }
.contact-card p { margin-top: 10px; color: rgba(255, 255, 255, .78); font: 300 16px Manrope, sans-serif; }
.contact-actions { margin-top: 26px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---- Final CTA ---- */
.final-media { position: relative; font-size: 0; }
.final-media img { display: block; width: 100%; height: clamp(320px, 40vw, 520px); object-fit: cover; }
/* blend the image into the dark-green closing section below */
.final-media::after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 48%; background: linear-gradient(to bottom, rgba(13, 36, 23, 0), var(--green-d)); pointer-events: none; }

/* ---- Footer ---- */
.footer { background: var(--green-dd); color: rgba(255, 255, 255, .6); padding: 46px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer .brand { color: #fff; font-size: 16px; }
.footer a { color: rgba(255, 255, 255, .7); }
.footer a:hover { color: #fff; }
.footer-links { display: flex; gap: 22px; font: 400 14px Manrope, sans-serif; }

/* ============================================================================
   APPLICATION FORM
   ============================================================================ */
.form-hero { position: relative; overflow: hidden; padding: 74px 0 20px; }
.form-hero::before {
  content: ""; position: absolute; top: -180px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 700px; pointer-events: none;
  background: radial-gradient(circle, rgba(198, 154, 76, .14), transparent 60%);
}
.form-hero .wrap-narrow { position: relative; z-index: 1; }

.form-wrap {
  max-width: 760px; margin: 40px auto 100px;
  background: linear-gradient(180deg, #fff, var(--cream-2));
  border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 48px 48px 52px;
  box-shadow: var(--sh-lg);
}
.form-section { margin-top: 40px; padding-top: 36px; border-top: 1px solid var(--line); }
.form-section:first-of-type { border-top: none; margin-top: 8px; padding-top: 0; }
.form-step { font: 600 11px Manrope, sans-serif; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); }
.form-legend { margin: 8px 0 6px; font-size: 26px; }
.form-hint { font: 300 14px/1.6 Manrope, sans-serif; color: var(--muted-l); margin-bottom: 8px; }

.field { margin-top: 22px; }
.field > label { display: block; font: 600 14px Manrope, sans-serif; color: var(--green); margin-bottom: 8px; }
.field .req { color: var(--gold); }
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field textarea,
.field select {
  width: 100%; font: 400 16px Manrope, sans-serif; color: var(--green);
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-sm);
  padding: 14px 16px; transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: #a9b4ab; }
.field input:hover, .field textarea:hover, .field select:hover { border-color: rgba(138, 106, 46, .4); }
.field textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(138, 106, 46, .14);
}
.field-help { margin-top: 6px; font: 300 13px/1.5 Manrope, sans-serif; color: var(--muted-l); }

/* Radio / choice groups */
.choices { display: grid; gap: 12px; margin-top: 6px; }
.choice {
  display: flex; align-items: flex-start; gap: 14px; cursor: pointer;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-sm); padding: 16px 18px;
  transition: border-color .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease), transform .15s var(--ease);
  font: 400 15.5px Manrope, sans-serif; color: var(--green);
}
.choice:hover { border-color: var(--gold); transform: translateY(-1px); }
.choice input { margin: 2px 0 0; accent-color: var(--green); width: 18px; height: 18px; flex: none; }
.choice:has(input:checked) { border-color: var(--green); background: #fbfaf6; box-shadow: 0 0 0 1px var(--green) inset; }

/* Consent checkbox */
.consent { display: flex; gap: 14px; align-items: flex-start; margin-top: 8px; font: 400 15px/1.55 Manrope, sans-serif; color: var(--muted); cursor: pointer; }
.consent input { margin-top: 3px; width: 20px; height: 20px; accent-color: var(--green); flex: none; }

.form-actions { margin-top: 40px; }
.form-note { margin-top: 16px; font: 300 13px/1.6 Manrope, sans-serif; color: var(--muted-l); }
.field-error { color: #a3341f; font: 500 13px Manrope, sans-serif; margin-top: 6px; display: none; }
.field.invalid input, .field.invalid textarea { border-color: #a3341f; }
.field.invalid .field-error { display: block; }

/* ---- Success page ---- */
.success { min-height: 74vh; display: flex; align-items: center; position: relative; overflow: hidden; }
.success::before {
  content: ""; position: absolute; top: -10%; left: 50%; transform: translateX(-50%);
  width: 760px; height: 760px; pointer-events: none;
  background: radial-gradient(circle, rgba(198, 154, 76, .14), transparent 60%);
}
.success-card {
  position: relative; z-index: 1;
  max-width: 700px; margin: 0 auto; text-align: center; padding: 56px 44px;
  background: linear-gradient(180deg, #fff, var(--cream-2));
  border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
}
.success-mark {
  width: 80px; height: 80px; border-radius: 100px;
  background: var(--gold-grad); color: var(--green-d);
  display: flex; align-items: center; justify-content: center;
  font: 700 36px Manrope, sans-serif; margin: 0 auto 28px;
  box-shadow: var(--sh-gold);
  animation: pop .6s var(--ease) both;
}
@keyframes pop { 0% { transform: scale(.5); opacity: 0; } 60% { transform: scale(1.08); } 100% { transform: scale(1); opacity: 1; } }
.success-list { text-align: left; max-width: 420px; margin: 30px auto 0; }

/* ============================================================================
   RESPONSIVE
   ============================================================================ */
@media (max-width: 980px) {
  .nav-links .navlink { display: none; }
  .timeline { grid-template-columns: 1fr; }
  .feat-grid { grid-template-columns: 1fr 1fr; }
  .review-grid { grid-template-columns: repeat(2, 1fr); }
  .convener { grid-template-columns: 1fr; gap: 36px; }
  .convener .ph, .convener-photo { height: 420px; }
  .checklist.cols2, .bullets.cols2 { grid-template-columns: 1fr; }
  .section { padding: 78px 0; }
}
@media (max-width: 620px) {
  .wrap, .wrap-narrow { padding: 0 22px; }
  .form-hero .wrap { padding-left: 22px; padding-right: 22px; }
  .form-wrap { padding: 32px 22px 36px; margin: 32px 22px 72px; }
  .feat-grid { grid-template-columns: 1fr; }
  .invest { padding: 28px 22px; }
  .invest-tier + .invest-tier { border-left: none; border-top: 1px solid var(--line); padding-top: 18px; margin-top: 4px; }
  .contact-card { padding: 34px 24px; }
  .review-grid { grid-template-columns: 1fr; gap: 16px; }
  .lightbox { padding: 16px; gap: 4px; }
  .lightbox-img { max-height: calc(100vh - 96px); }
  .lightbox-nav { width: 38px; height: 38px; font-size: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; scroll-behavior: auto !important; animation: none !important; }
  .js [data-reveal], .js [data-reveal-group] > * { opacity: 1 !important; transform: none !important; }
}
