/* ============================================================
   Dunellen's BEST Summer Camp — Design System
   Brand-locked: Poppins (display) + Inter (body)
   Royal blue #1745C2 · Lime #76C900 · Summer sun #FFC42E
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --blue:        #1745C2;
  --blue-deep:   #0E2E86;
  --blue-ink:    #0A1A47;
  --lime:        #76C900;
  --lime-deep:   #5BA300;
  --sun:         #FFC42E;
  --coral:       #FF6B4A;
  --sky:         #E9F0FF;
  --cream:       #FFFDF7;
  --bg:          #FCFCFC;
  --ink:         #14161B;
  --muted:       #5B6472;
  --line:        #E7EBF2;
  --white:       #ffffff;

  --radius:      22px;
  --radius-lg:   30px;
  --radius-pill: 999px;

  --shadow-sm:   0 2px 10px rgba(10,26,71,.06);
  --shadow:      0 14px 40px rgba(10,26,71,.12);
  --shadow-lg:   0 30px 70px rgba(10,26,71,.20);
  --shadow-lime: 0 14px 30px rgba(118,201,0,.32);

  --container:   1180px;
  --ease:        cubic-bezier(.22,.61,.36,1);

  --font-display:'Poppins', system-ui, sans-serif;
  --font-body:   'Inter', system-ui, sans-serif;
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
h1,h2,h3,h4 { font-family: var(--font-display); line-height: 1.05; letter-spacing: -.02em; font-weight: 800; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 22px; }
.section { padding: clamp(64px, 9vw, 120px) 0; position: relative; }
.section--tight { padding: clamp(48px, 6vw, 80px) 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--blue);
  background: var(--sky);
  padding: 8px 16px; border-radius: var(--radius-pill);
}
.eyebrow--sun { color: #7a5200; background: #FFF1CC; }
.eyebrow--lime { color: var(--lime-deep); background: #EAF7D6; }

.section-head { max-width: 720px; margin-bottom: 54px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(32px, 5vw, 54px); margin: 18px 0 14px; }
.section-head p { font-size: clamp(17px, 2vw, 20px); color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700; font-size: 16px;
  padding: 16px 28px; border-radius: var(--radius-pill);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s;
  white-space: nowrap; will-change: transform;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn--lime { background: var(--lime); color: #0c2400; box-shadow: var(--shadow-lime); }
.btn--lime:hover { background: #82d80a; transform: translateY(-3px); box-shadow: 0 20px 40px rgba(118,201,0,.42); }
.btn--blue { background: var(--blue); color: #fff; box-shadow: 0 14px 30px rgba(23,69,194,.32); }
.btn--blue:hover { background: var(--blue-deep); transform: translateY(-3px); }
.btn--ghost { background: rgba(255,255,255,.12); color: #fff; border: 1.5px solid rgba(255,255,255,.55); backdrop-filter: blur(6px); }
.btn--ghost:hover { background: rgba(255,255,255,.22); transform: translateY(-3px); }
.btn--outline { background: #fff; color: var(--blue); border: 1.5px solid var(--line); box-shadow: var(--shadow-sm); }
.btn--outline:hover { border-color: var(--blue); transform: translateY(-3px); }
.btn--lg { padding: 19px 34px; font-size: 17px; }
.btn--block { width: 100%; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  transition: background .3s, box-shadow .3s, padding .3s;
  padding: 16px 0;
}
.site-header.scrolled { background: rgba(255,255,255,.92); backdrop-filter: blur(14px); box-shadow: var(--shadow-sm); padding: 10px 0; }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 46px; height: 46px; border-radius: 50%; box-shadow: var(--shadow-sm); background:#fff;}
.brand-text { font-family: var(--font-display); line-height: 1; }
.brand-text b { display: block; font-weight: 800; font-size: 16px; color: var(--ink); }
.brand-text span { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--lime-deep); }
.site-header:not(.scrolled) .brand-text b { color: #fff; }
.site-header:not(.scrolled) .nav-link { color: rgba(255,255,255,.9); }

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-link { font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--ink); transition: color .2s; position: relative; }
.nav-link:hover { color: var(--blue); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 26px; height: 2.5px; background: currentColor; border-radius: 2px; transition: .3s; }
.site-header:not(.scrolled) .nav-toggle { color: #fff; }

/* ---------- Hero ---------- */
.hero { position: relative; color: #fff; overflow: hidden; padding-bottom: clamp(80px, 12vw, 150px); margin-top: -86px; padding-top: 130px; }
.hero__bg { position: absolute; inset: 0; z-index: -2; background:
   radial-gradient(1100px 600px at 78% -8%, #3a6bff 0%, transparent 55%),
   radial-gradient(900px 500px at 8% 12%, #2452d6 0%, transparent 50%),
   linear-gradient(160deg, #1c50d6 0%, #0e2e86 60%, #0a1f5f 100%); }
.hero__photo {
  position: absolute; right: -2%; top: 0; bottom: 0; width: 52%; z-index: -1;
  background: var(--_img) center/cover no-repeat;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 26%);
  mask-image: linear-gradient(90deg, transparent 0, #000 26%);
  opacity: .9;
}
.hero__photo::after { content:""; position:absolute; inset:0; background: linear-gradient(160deg, rgba(14,46,134,.35), rgba(10,31,95,.65)); }
.hero__blob { position: absolute; border-radius: 50%; filter: blur(2px); z-index: -1; opacity: .9; }
.hero__inner { position: relative; max-width: 660px; }
.hero h1 { font-size: clamp(42px, 7vw, 86px); font-weight: 800; }
.hero h1 .swoosh { color: var(--sun); display: inline-block; position: relative; }
.hero h1 .swoosh::after { content:""; position:absolute; left:0; right:0; bottom:.05em; height:.14em; background: var(--lime); border-radius: 4px; transform: rotate(-1.2deg); z-index:-1; }
.hero__lede { font-size: clamp(17px, 2.2vw, 21px); color: rgba(255,255,255,.86); margin: 22px 0 8px; max-width: 540px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero__pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 600; font-size: 14px;
  padding: 9px 16px; border-radius: var(--radius-pill);
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22); backdrop-filter: blur(6px);
}
.pill b { color: var(--sun); }
.hero__scarce {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 26px;
  font-weight: 600; font-size: 14.5px; color: #fff;
  background: rgba(255,107,74,.16); border: 1px solid rgba(255,107,74,.4);
  padding: 10px 18px; border-radius: var(--radius-pill);
}
.hero__scarce .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 0 rgba(255,107,74,.6); animation: pulse 1.8s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(255,107,74,.6)} 70%{box-shadow:0 0 0 10px rgba(255,107,74,0)} 100%{box-shadow:0 0 0 0 rgba(255,107,74,0)} }

/* curved divider */
.hero__wave { position: absolute; left: 0; right: 0; bottom: -1px; z-index: 0; line-height: 0; }
.hero__wave svg { width: 100%; height: clamp(40px, 7vw, 90px); display: block; }

/* ---------- Marquee strip ---------- */
.strip { background: var(--lime); color: #0c2400; overflow: hidden; padding: 14px 0; }
.strip__track { display: flex; gap: 48px; white-space: nowrap; animation: marquee 28s linear infinite; font-family: var(--font-display); font-weight: 700; font-size: 15px; letter-spacing: .02em; }
.strip__track span { display: inline-flex; align-items: center; gap: 12px; }
.strip__track span::before { content: "★"; color: var(--blue); }
@keyframes marquee { from { transform: translateX(0) } to { transform: translateX(-50%) } }

/* ---------- Opt-in form ---------- */
.optin { background: linear-gradient(180deg, #fff 0%, var(--sky) 100%); }
.optin__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 54px; align-items: center; }
.optin__list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 14px; }
.optin__list li { display: flex; gap: 12px; align-items: flex-start; font-size: 16.5px; }
.optin__list .tick { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--lime); color: #0c2400; display: grid; place-items: center; font-size: 14px; font-weight: 800; margin-top: 1px; }
.optin__note { margin-top: 24px; display: inline-flex; gap: 10px; align-items: center; color: var(--muted); font-size: 14.5px; }

.card-form { background: #fff; border-radius: var(--radius-lg); padding: clamp(26px, 4vw, 40px); box-shadow: var(--shadow); border: 1px solid var(--line); position: relative; }
.card-form__badge { position: absolute; top: -18px; right: 26px; background: var(--sun); color: #5a3d00; font-family: var(--font-display); font-weight: 800; font-size: 13px; padding: 9px 18px; border-radius: var(--radius-pill); transform: rotate(3deg); box-shadow: var(--shadow-sm); }
.card-form h3 { font-size: 25px; margin-bottom: 6px; }
.card-form > p { color: var(--muted); font-size: 15px; margin-bottom: 22px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-family: var(--font-display); font-weight: 600; font-size: 13.5px; margin-bottom: 7px; color: #2a3242; }
.field label .req { color: var(--coral); }
.field input, .field select {
  width: 100%; padding: 14px 16px; font-family: inherit; font-size: 16px; color: var(--ink);
  background: #fff; border: 1.5px solid var(--line); border-radius: 13px; transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus { outline: 0; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(23,69,194,.12); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-msg { margin-top: 14px; font-size: 14.5px; font-weight: 600; border-radius: 12px; padding: 12px 14px; display: none; }
.form-msg.show { display: block; }
.form-msg.ok { background: #EAF7D6; color: var(--lime-deep); }
.form-msg.err { background: #FDE7E1; color: #c0341a; }
.form-fine { margin-top: 14px; font-size: 12.5px; color: var(--muted); text-align: center; display:flex; gap:7px; justify-content:center; align-items:center;}

/* ---------- Feature cards ---------- */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.feat {
  background: #fff; border-radius: var(--radius-lg); padding: 36px 30px; border: 1px solid var(--line);
  box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s; position: relative; overflow: hidden;
}
.feat:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.feat__ic { width: 60px; height: 60px; border-radius: 18px; display: grid; place-items: center; font-size: 28px; margin-bottom: 20px; }
.feat:nth-child(1) .feat__ic { background: #EAF7D6; }
.feat:nth-child(2) .feat__ic { background: var(--sky); }
.feat:nth-child(3) .feat__ic { background: #FFF1CC; }
.feat h3 { font-size: 21px; margin-bottom: 10px; }
.feat p { color: var(--muted); font-size: 15.5px; }
.feat::after { content:""; position:absolute; right:-40px; top:-40px; width:120px; height:120px; border-radius:50%; background: currentColor; opacity:.04; }

/* ---------- Activities ---------- */
.acts { background: var(--blue-ink); color: #fff; }
.acts .section-head h2, .acts .section-head p { color: #fff; }
.acts .section-head p { color: rgba(255,255,255,.7); }
.act-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.act { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; box-shadow: var(--shadow); }
.act img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.act:hover img { transform: scale(1.07); }
.act__label { position: absolute; left: 18px; bottom: 18px; right: 18px; }
.act__label b { font-family: var(--font-display); font-weight: 800; font-size: 22px; color: #fff; display: block; }
.act__label span { font-size: 14px; color: rgba(255,255,255,.82); }
.act::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 40%, rgba(7,18,52,.85)); }
.act__chip { position:absolute; top:16px; left:16px; z-index:2; background: var(--lime); color:#0c2400; font-family:var(--font-display); font-weight:700; font-size:12px; padding:6px 12px; border-radius:var(--radius-pill);}
.acts__more { text-align:center; margin-top: 36px; font-size: 16px; color: rgba(255,255,255,.8); }
.acts__more b { color: var(--sun); }

/* ---------- Field trips ---------- */
.trip-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.trip { background:#fff; border-radius: var(--radius-lg); overflow:hidden; border:1px solid var(--line); box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s; }
.trip:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.trip__img { aspect-ratio: 16/11; overflow:hidden; }
.trip__img img { width:100%; height:100%; object-fit:cover; transition: transform .6s var(--ease); }
.trip:hover .trip__img img { transform: scale(1.06); }
.trip__body { padding: 22px 24px 26px; }
.trip__loc { font-size: 12.5px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color: var(--blue); }
.trip__body h3 { font-size: 20px; margin: 8px 0 8px; }
.trip__body p { color: var(--muted); font-size: 15px; }

/* ---------- Pricing ---------- */
.pricing { background: linear-gradient(180deg, var(--sky), #fff); }
.price-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 26px; max-width: 960px; margin-inline:auto; }
.price {
  background:#fff; border-radius: var(--radius-lg); padding: clamp(28px,4vw,42px); border:1.5px solid var(--line);
  position: relative; box-shadow: var(--shadow-sm);
}
.price--feature { border-color: var(--lime); box-shadow: var(--shadow-lime); }
.price__tag { position:absolute; top:-15px; left:50%; transform:translateX(-50%); background: var(--lime); color:#0c2400; font-family:var(--font-display); font-weight:800; font-size:12.5px; letter-spacing:.06em; padding:8px 18px; border-radius:var(--radius-pill); white-space:nowrap; }
.price h3 { font-size: 24px; }
.price__sub { color: var(--muted); font-size: 14.5px; margin-top: 4px; }
.price__amt { font-family:var(--font-display); font-weight:800; font-size: clamp(40px,6vw,58px); color: var(--blue-ink); margin: 18px 0 2px; letter-spacing:-.03em; }
.price__amt small { font-size: 18px; color: var(--muted); font-weight:600; }
.price__save { display:inline-block; background:#FFF1CC; color:#7a5200; font-weight:700; font-size:13.5px; padding:6px 14px; border-radius:var(--radius-pill); margin-bottom: 20px; }
.price ul { list-style:none; padding:0; margin: 0 0 26px; display:grid; gap:12px; }
.price li { display:flex; gap:11px; font-size:15.5px; align-items:flex-start; }
.price li .tick { flex:none; width:22px; height:22px; border-radius:50%; background:var(--lime); color:#0c2400; display:grid; place-items:center; font-size:12px; font-weight:800; margin-top:2px; }
.price__foot { text-align:center; font-size:13px; color:var(--muted); margin-top:14px; }
.pricing__incl { display:flex; flex-wrap:wrap; gap:12px; justify-content:center; margin-top:40px; }
.incl-chip { display:inline-flex; align-items:center; gap:8px; background:#fff; border:1px solid var(--line); padding:10px 18px; border-radius:var(--radius-pill); font-family:var(--font-display); font-weight:600; font-size:14.5px; box-shadow:var(--shadow-sm); }

/* ---------- Stats ---------- */
.stats { background: var(--blue); color:#fff; }
.stat-grid { display:grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align:center; }
.stat b { font-family:var(--font-display); font-weight:800; font-size: clamp(38px,6vw,56px); display:block; color: var(--sun); letter-spacing:-.03em; }
.stat span { font-size: 15px; color: rgba(255,255,255,.82); font-weight:500; }

/* ---------- Reviews ---------- */
.rev-grid { display:grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.rev { background:#fff; border-radius: var(--radius-lg); padding: 30px 28px; border:1px solid var(--line); box-shadow:var(--shadow-sm); display:flex; flex-direction:column; }
.rev__stars { color: var(--sun); font-size: 18px; letter-spacing: 2px; margin-bottom: 14px; }
.rev__quote { font-size: 16.5px; color: #2a3242; flex:1; }
.rev__by { display:flex; align-items:center; gap:12px; margin-top: 22px; }
.rev__by .av { width:44px; height:44px; border-radius:50%; object-fit:cover; }
.rev__by .ava { width:44px; height:44px; border-radius:50%; background:var(--blue); color:#fff; display:grid; place-items:center; font-family:var(--font-display); font-weight:800; }
.rev__by b { font-family:var(--font-display); font-size:15px; display:block; }
.rev__by span { font-size: 13px; color: var(--muted); }

/* ---------- Gallery ---------- */
.gallery { columns: 4; column-gap: 16px; }
.gallery img { width:100%; border-radius: 16px; margin-bottom: 16px; box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s; break-inside: avoid; cursor: zoom-in; }
.gallery img:hover { transform: scale(1.03) rotate(-.6deg); box-shadow: var(--shadow); }

/* ---------- Final CTA ---------- */
.final { position: relative; color:#fff; overflow:hidden; text-align:center; }
.final__bg { position:absolute; inset:0; z-index:-1; background:
   radial-gradient(800px 400px at 50% 0%, #3a6bff, transparent 60%),
   linear-gradient(160deg, var(--blue) 0%, var(--blue-deep) 100%); }
.final h2 { font-size: clamp(34px,5.5vw,60px); max-width: 760px; margin: 14px auto 16px; }
.final p { font-size: 18.5px; color: rgba(255,255,255,.86); max-width: 560px; margin: 0 auto 30px; }
.final__cta { display:flex; flex-wrap:wrap; gap:14px; justify-content:center; }
.final__confetti { position:absolute; inset:0; z-index:-1; opacity:.5; }

/* ---------- Footer ---------- */
.footer { background: var(--blue-ink); color: rgba(255,255,255,.7); padding: 64px 0 30px; }
.footer__top { display:grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer__brand { display:flex; align-items:center; gap:12px; margin-bottom: 16px; }
.footer__brand img { width:48px; height:48px; border-radius:50%; background:#fff; }
.footer__brand b { font-family:var(--font-display); color:#fff; font-size:17px; }
.footer p { font-size: 14.5px; max-width: 320px; }
.footer h4 { font-family:var(--font-display); color:#fff; font-size:15px; margin-bottom: 16px; letter-spacing:.04em; }
.footer ul { list-style:none; padding:0; display:grid; gap:11px; }
.footer a { font-size: 14.5px; transition: color .2s; }
.footer a:hover { color: var(--sun); }
.footer__bottom { padding-top: 24px; display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px; font-size: 13px; }

/* ---------- Sticky mobile CTA ---------- */
.mobile-cta { position: fixed; left:0; right:0; bottom:0; z-index:70; display:none; gap:10px; padding:12px 16px calc(12px + env(safe-area-inset-bottom)); background: rgba(255,255,255,.94); backdrop-filter: blur(12px); box-shadow: 0 -8px 30px rgba(10,26,71,.12); }
.mobile-cta .btn { flex:1; padding: 14px; font-size: 15px; }

/* ---------- Tour booking page ---------- */
.subhero { background: linear-gradient(160deg, var(--blue) 0%, var(--blue-deep) 100%); color:#fff; padding: 120px 0 70px; margin-top:-86px; text-align:center; }
.subhero .eyebrow { background: rgba(255,255,255,.14); color:#fff; }
.subhero h1 { font-size: clamp(34px,5.5vw,60px); margin: 18px 0 14px; }
.subhero p { font-size: 18px; color: rgba(255,255,255,.85); max-width: 600px; margin: 0 auto; }
.subhero__pills { display:flex; flex-wrap:wrap; gap:10px; justify-content:center; margin-top: 26px; }

.tour-grid { display:grid; grid-template-columns: 1fr 1.1fr; gap: 40px; align-items:start; }
.info-card { background:#fff; border-radius:var(--radius-lg); padding: 34px; border:1px solid var(--line); box-shadow: var(--shadow-sm); margin-bottom: 22px; }
.info-card h3 { font-size: 20px; margin-bottom: 18px; }
.info-list { list-style:none; padding:0; display:grid; gap:13px; }
.info-list li { display:flex; gap:12px; font-size:15.5px; align-items:flex-start; }
.info-list .tick { flex:none; width:24px;height:24px;border-radius:50%;background:var(--sky);color:var(--blue);display:grid;place-items:center;font-size:12px;font-weight:800;margin-top:1px;}
.detail-row { display:flex; gap:14px; padding: 14px 0; border-bottom:1px solid var(--line); }
.detail-row:last-child { border-bottom:0; }
.detail-row .ic { font-size: 22px; }
.detail-row b { font-family:var(--font-display); display:block; font-size:15px; }
.detail-row span { color: var(--muted); font-size: 14.5px; }
.embed-slot { background:#fff; border-radius:var(--radius-lg); border:1px solid var(--line); box-shadow:var(--shadow); padding: clamp(24px,3vw,36px); }
.amen-grid { display:grid; grid-template-columns: repeat(2,1fr); gap:10px; margin-top:6px; }
.amen { display:flex; align-items:center; gap:10px; font-size:14.5px; font-weight:500; padding:8px 0; }
.amen .e { font-size: 20px; }

/* ---------- Reveal animation ---------- */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal-stagger] > * { opacity: 0; transform: translateY(26px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
[data-reveal-stagger].in > * { opacity: 1; transform: none; }
[data-reveal-stagger].in > *:nth-child(2){ transition-delay:.08s } [data-reveal-stagger].in > *:nth-child(3){ transition-delay:.16s }
[data-reveal-stagger].in > *:nth-child(4){ transition-delay:.24s } [data-reveal-stagger].in > *:nth-child(5){ transition-delay:.32s }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  [data-reveal],[data-reveal-stagger]>* { opacity:1; transform:none; }
}

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset:0; z-index:100; background: rgba(7,18,52,.92); display:none; align-items:center; justify-content:center; padding:30px; }
.lightbox.open { display:flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: 14px; box-shadow: var(--shadow-lg); }
.lightbox__close { position:absolute; top:24px; right:28px; color:#fff; font-size:34px; line-height:1; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .optin__grid, .tour-grid { grid-template-columns: 1fr; gap: 36px; }
  .feat-grid, .act-grid, .trip-grid, .rev-grid { grid-template-columns: 1fr 1fr; }
  .price-grid { grid-template-columns: 1fr; max-width: 460px; }
  .stat-grid { grid-template-columns: 1fr 1fr; gap: 32px 20px; }
  .gallery { columns: 2; }
  .hero__photo { display:none; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav-links { position: fixed; inset: 0 0 0 auto; width: min(78vw, 320px); flex-direction: column; align-items: flex-start;
    background:#fff; padding: 90px 30px 30px; box-shadow: var(--shadow-lg); transform: translateX(110%); transition: transform .35s var(--ease); z-index: 65; }
  .nav-links.open { transform: none; }
  .nav-links .nav-link { color: var(--ink); font-size: 19px; }
  .nav-toggle { display: flex; }
  .nav-cta .btn:not(.nav-toggle){ display:none; }
  .feat-grid, .act-grid, .trip-grid, .rev-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .mobile-cta { display: flex; }
  body { padding-bottom: 76px; }
  .footer__top { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { justify-content: center; text-align:center; }
}
