/* =====================================================================
   My Bangkok Holiday — Brand Stylesheet
   Palette: Black (#0e0e10) + Orange (#ff7a00) + Cream/Sand warmth
   Fonts: Playfair Display (display) + Poppins (body)
   ===================================================================== */

/* ---------- Design tokens ---------- */
:root {
  --ink:        #0e0e10;   /* logo black */
  --ink-soft:   #1c1b1e;
  --orange:     #ff7a00;   /* logo "B" orange */
  --orange-2:   #ff9433;
  --orange-dk:  #e85d00;
  --bronze:     #af8c68;
  --sand:       #f3e5d6;
  --cream:      #f8f4ef;
  --cream-2:    #fdfbf8;
  --line:       #ece3d8;
  --text:       #2a2724;
  --muted:      #6f6a64;
  --white:      #ffffff;

  --radius:     18px;
  --radius-sm:  12px;
  --radius-lg:  28px;
  --shadow:     0 18px 50px -22px rgba(20,12,4,.35);
  --shadow-sm:  0 10px 30px -18px rgba(20,12,4,.30);
  --maxw:       1200px;
  --ease:       cubic-bezier(.22,.61,.36,1);
  --header-h:   76px;

  --font-body:  "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-disp:  "Playfair Display", Georgia, "Times New Roman", 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(--text);
  background: var(--cream-2);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-disp); font-weight: 700; line-height: 1.12; color: var(--ink); letter-spacing: -.01em; }

/* ---------- Layout helpers ---------- */
.container { width: min(100% - 40px, var(--maxw)); margin-inline: auto; }
.section { padding: clamp(56px, 8vw, 110px) 0; }
.section--sand { background: var(--sand); }
.section--cream { background: var(--cream); }
.section--ink { background: var(--ink); color: #eee; }
.center { text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 600; font-size: .72rem;
  letter-spacing: .22em; text-transform: uppercase; color: var(--orange-dk);
  margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--orange); border-radius: 2px; }
.eyebrow--center::after { content: ""; width: 26px; height: 2px; background: var(--orange); border-radius: 2px; }
.section--ink .eyebrow { color: var(--orange-2); }
.h-xl { font-size: clamp(2rem, 4.6vw, 3.5rem); }
.h-lg { font-size: clamp(1.7rem, 3.4vw, 2.6rem); }
.lead { font-size: clamp(1rem, 1.4vw, 1.12rem); color: var(--muted); max-width: 62ch; }
.center .lead { margin-inline: auto; }
.section-head { max-width: 720px; margin-bottom: clamp(34px, 5vw, 56px); }
.section-head.center { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-body); font-weight: 600; font-size: .95rem;
  padding: 14px 26px; border-radius: 100px; line-height: 1;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--orange); color: #1a0f00; box-shadow: 0 12px 28px -10px rgba(255,122,0,.7); }
.btn--primary:hover { background: var(--orange-dk); color: #fff; transform: translateY(-3px); box-shadow: 0 18px 34px -10px rgba(255,122,0,.75); }
.btn--ink { background: var(--ink); color: #fff; }
.btn--ink:hover { background: var(--ink-soft); 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(4px); }
.btn--ghost:hover { background: #fff; color: var(--ink); transform: translateY(-3px); }
.btn--outline { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn--outline:hover { border-color: var(--orange); color: var(--orange-dk); transform: translateY(-3px); }
.btn--wa { background: #25d366; color: #07301a; }
.btn--wa:hover { background: #1ebe5a; transform: translateY(-3px); }
.btn--lg { padding: 17px 34px; font-size: 1rem; }
.btn--block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), backdrop-filter .35s;
}
.site-header.transparent { background: linear-gradient(180deg, rgba(8,6,4,.55), rgba(8,6,4,0)); }
.site-header.solid { background: rgba(255,255,255,.92); backdrop-filter: blur(14px); box-shadow: 0 1px 0 rgba(0,0,0,.06); }
.nav { display: flex; align-items: center; justify-content: space-between; width: min(100% - 40px, var(--maxw)); margin-inline: auto; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 44px; width: auto; border-radius: 10px; background: #fff; padding: 5px 11px; box-shadow: 0 3px 14px rgba(0,0,0,.14); }
.footer-brand .brand img { height: 50px; }
.brand-text { display: none; }
.brand-text strong { font-family: var(--font-disp); font-size: 1.12rem; display: block; letter-spacing: -.01em; }
.brand-text span { font-size: .64rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 600; opacity: .8; }
.transparent .brand-text, .transparent .nav-links a { color: #fff; }
.solid .brand-text, .solid .nav-links a { color: var(--ink); }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: .93rem; font-weight: 500; position: relative; transition: color .2s; }
.nav-links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0; background: var(--orange); transition: width .25s var(--ease);
}
.nav-links a:not(.btn):hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--orange-dk) !important; }
.nav-cta { display: flex; align-items: center; gap: 14px; }

.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 12px; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.nav-toggle span { width: 22px; height: 2px; background: currentColor; border-radius: 2px; transition: transform .3s, opacity .3s; }
.transparent .nav-toggle { color: #fff; } .solid .nav-toggle { color: var(--ink); }
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: clamp(560px, 88vh, 820px);
  display: flex; align-items: flex-end;
  padding: 0 0 clamp(48px, 7vw, 90px);
  color: #fff; isolation: isolate;
}
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,8,5,.35) 0%, rgba(10,8,5,.25) 38%, rgba(10,8,5,.82) 100%);
}
.hero--page { min-height: clamp(420px, 62vh, 560px); align-items: center; text-align: center; }
.hero__inner { max-width: 760px; }
.hero--page .hero__inner { margin-inline: auto; }
.hero h1 { color: #fff; font-size: clamp(2.3rem, 5.6vw, 4.1rem); text-shadow: 0 4px 30px rgba(0,0,0,.4); }
.hero h1 .accent { color: var(--orange-2); }
.hero p { font-size: clamp(1.02rem, 1.6vw, 1.25rem); color: rgba(255,255,255,.92); margin: 18px 0 30px; max-width: 60ch; }
.hero--page p { margin-inline: auto; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero--page .hero__cta { justify-content: center; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 34px; }
.hero__badge { display: flex; align-items: center; gap: 9px; font-size: .88rem; font-weight: 500; }
.hero__badge svg { width: 20px; height: 20px; color: var(--orange-2); flex: none; }
.breadcrumb { font-size: .82rem; color: rgba(255,255,255,.8); margin-bottom: 14px; font-weight: 500; }
.breadcrumb a:hover { color: var(--orange-2); }

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--ink); color: #f3ece2; }
.trust-strip .container { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 22px; padding: 26px 0; }
.trust-item { display: flex; align-items: center; gap: 12px; font-size: .9rem; font-weight: 500; }
.trust-item svg { width: 26px; height: 26px; color: var(--orange-2); flex: none; }
.trust-item strong { display: block; font-family: var(--font-disp); font-size: 1.05rem; color: #fff; }
.trust-item small { color: #b7ada1; font-size: .76rem; }

/* ---------- Welcome / split ---------- */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(34px, 5vw, 72px); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media { position: relative; }
.split__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; aspect-ratio: 4/3.4; object-fit: cover; }
.split__media .media-tag {
  position: absolute; left: 24px; bottom: 24px; background: rgba(255,255,255,.95); color: var(--ink);
  padding: 14px 20px; border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); display: flex; gap: 12px; align-items: center;
}
.media-tag .num { font-family: var(--font-disp); font-size: 1.7rem; color: var(--orange-dk); line-height: 1; }
.media-tag small { font-size: .76rem; color: var(--muted); }
.feature-list { display: grid; gap: 16px; margin-top: 26px; }
.feature-list li { display: flex; gap: 14px; align-items: flex-start; }
.feature-list .ico { flex: none; width: 42px; height: 42px; border-radius: 12px; background: var(--sand); display: grid; place-items: center; color: var(--orange-dk); }
.feature-list .ico svg { width: 22px; height: 22px; }
.feature-list strong { display: block; color: var(--ink); font-weight: 600; }
.feature-list span { font-size: .9rem; color: var(--muted); }

/* ---------- Service cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card {
  background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid var(--line); display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.card__media { position: relative; aspect-ratio: 16/11; overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.card:hover .card__media img { transform: scale(1.07); }
.card__tag {
  position: absolute; top: 14px; left: 14px; background: var(--orange); color: #2a1500;
  font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 7px 12px; border-radius: 100px;
}
.card__tag--dark { background: var(--ink); color: #fff; }
.card__body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.card__body h3 { font-size: 1.32rem; margin-bottom: 8px; }
.card__body p { font-size: .92rem; color: var(--muted); margin-bottom: 16px; }
.card__meta { display: flex; align-items: center; gap: 14px; font-size: .8rem; color: var(--muted); margin-bottom: 18px; flex-wrap: wrap; }
.card__meta span { display: inline-flex; align-items: center; gap: 6px; }
.card__meta svg { width: 15px; height: 15px; color: var(--bronze); }
.card__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid var(--line); }
.price { line-height: 1.1; }
.price small { display: block; font-size: .68rem; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; }
.price strong { font-family: var(--font-disp); font-size: 1.45rem; color: var(--ink); }
.price strong span { color: var(--orange-dk); }
.card__link { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; font-size: .9rem; color: var(--orange-dk); }
.card__link svg { width: 16px; height: 16px; transition: transform .25s; }
.card:hover .card__link svg { transform: translateX(4px); }

/* ---------- Why choose / feature grid ---------- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; transition: transform .3s var(--ease), box-shadow .3s; }
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-sm); }
.why-card .ico { width: 54px; height: 54px; border-radius: 14px; background: linear-gradient(135deg, var(--orange), var(--orange-2)); display: grid; place-items: center; color: #fff; margin-bottom: 18px; box-shadow: 0 10px 22px -8px rgba(255,122,0,.6); }
.why-card .ico svg { width: 26px; height: 26px; }
.why-card h3 { font-size: 1.18rem; margin-bottom: 8px; }
.why-card p { font-size: .9rem; color: var(--muted); }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; counter-reset: step; }
.step { position: relative; padding: 30px 26px; background: var(--cream-2); border: 1px solid var(--line); border-radius: var(--radius); }
.step__num { font-family: var(--font-disp); font-size: 2.4rem; color: var(--orange); line-height: 1; opacity: .9; }
.step h3 { font-size: 1.16rem; margin: 8px 0; }
.step p { font-size: .9rem; color: var(--muted); }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 180px; gap: 14px; }
.gallery a { position: relative; overflow: hidden; border-radius: var(--radius-sm); cursor: pointer; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery a:hover img { transform: scale(1.08); }
.gallery a::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.35)); opacity: 0; transition: opacity .3s; }
.gallery a:hover::after { opacity: 1; }
.gallery .tall { grid-row: span 2; }
.gallery .wide { grid-column: span 2; }

/* ---------- Inclusions list ---------- */
.incl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 34px; }
.incl-grid li { display: flex; gap: 12px; align-items: flex-start; font-size: .95rem; }
.incl-grid li svg { width: 22px; height: 22px; flex: none; margin-top: 2px; }
.incl-grid .yes svg { color: #1f9d55; }
.incl-grid .no { color: var(--muted); }
.incl-grid .no svg { color: #c4493f; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; }
.stat .num { font-family: var(--font-disp); font-size: clamp(2.2rem, 5vw, 3.2rem); color: var(--orange-2); line-height: 1; }
.stat .lbl { display: block; margin-top: 8px; font-size: .86rem; letter-spacing: .12em; text-transform: uppercase; color: #c7bdb0; }

/* ---------- Testimonials ---------- */
.tnav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tcard { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; box-shadow: var(--shadow-sm); }
.tcard .stars { color: var(--orange); letter-spacing: 2px; margin-bottom: 14px; }
.tcard p { font-style: italic; color: #4a453f; margin-bottom: 20px; }
.tcard .who { display: flex; align-items: center; gap: 12px; }
.tcard .who .av { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg,var(--bronze),var(--sand)); color: #fff; display: grid; place-items: center; font-weight: 700; font-family: var(--font-disp); }
.tcard .who strong { display: block; font-size: .92rem; color: var(--ink); }
.tcard .who small { color: var(--muted); font-size: .8rem; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 18px; padding: 22px 4px; font-weight: 600; font-size: 1.04rem; color: var(--ink); }
.faq-q .ic { flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--sand); display: grid; place-items: center; transition: background .25s, transform .3s; color: var(--orange-dk); }
.faq-q .ic svg { width: 16px; height: 16px; }
.faq-item.open .faq-q .ic { background: var(--orange); color: #fff; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a p { padding: 0 4px 22px; color: var(--muted); font-size: .95rem; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; isolation: isolate; color: #fff; text-align: center; overflow: hidden; }
.cta-band__bg { position: absolute; inset: 0; z-index: -2; }
.cta-band__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(14,10,6,.9), rgba(232,93,0,.72)); }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.92); max-width: 56ch; margin: 16px auto 30px; }
.cta-band .hero__cta { justify-content: center; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #b9b0a5; padding-top: clamp(56px, 7vw, 84px); }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-brand .brand-text strong, .footer-brand .brand-text span { color: #fff; }
.footer-brand p { margin: 18px 0 20px; font-size: .92rem; max-width: 34ch; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 40px; height: 40px; border-radius: 11px; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #fff; transition: background .25s, transform .25s; }
.footer-social a:hover { background: var(--orange); transform: translateY(-3px); }
.footer-social svg { width: 19px; height: 19px; }
.footer-col h4 { color: #fff; font-family: var(--font-body); font-size: .82rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { display: grid; gap: 11px; }
.footer-col a { font-size: .92rem; transition: color .2s, padding .2s; }
.footer-col a:hover { color: var(--orange-2); padding-left: 4px; }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; font-size: .92rem; margin-bottom: 14px; }
.footer-contact svg { width: 18px; height: 18px; color: var(--orange-2); flex: none; margin-top: 3px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 50px; padding: 24px 0; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .82rem; }
.footer-bottom a:hover { color: var(--orange-2); }

/* ---------- Floating WhatsApp ---------- */
.fab-wa {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  display: inline-flex; align-items: center; gap: 10px;
  background: #25d366; color: #07301a; font-weight: 600; font-size: .9rem;
  padding: 14px 18px; border-radius: 100px; box-shadow: 0 14px 34px -10px rgba(37,211,102,.7);
  transition: transform .25s var(--ease), box-shadow .25s;
}
.fab-wa:hover { transform: translateY(-3px) scale(1.03); }
.fab-wa svg { width: 22px; height: 22px; }
.fab-wa .lbl { white-space: nowrap; }

/* ---------- Forms ---------- */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(26px, 4vw, 44px); box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .82rem; font-weight: 600; color: var(--ink); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; font-family: inherit; font-size: .95rem; color: var(--text);
  padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--radius-sm); background: var(--cream-2);
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,122,0,.15); background: #fff; }
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: .8rem; color: var(--muted); margin-top: 8px; }
.form-success { display: none; background: #effaf2; border: 1px solid #b8e6c6; color: #1f7a44; padding: 16px 18px; border-radius: var(--radius-sm); font-size: .92rem; margin-bottom: 18px; }
.form-success.show { display: block; }

/* contact methods */
.contact-methods { display: grid; gap: 16px; }
.cmethod { display: flex; gap: 16px; align-items: center; padding: 20px 22px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); transition: transform .25s, box-shadow .25s; }
.cmethod:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.cmethod .ico { flex: none; width: 50px; height: 50px; border-radius: 14px; background: var(--sand); display: grid; place-items: center; color: var(--orange-dk); }
.cmethod .ico svg { width: 24px; height: 24px; }
.cmethod small { display: block; font-size: .76rem; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; }
.cmethod strong { font-size: 1.05rem; color: var(--ink); }

/* pills */
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.pill { display: inline-flex; align-items: center; gap: 7px; background: #fff; border: 1px solid var(--line); border-radius: 100px; padding: 9px 16px; font-size: .84rem; font-weight: 500; }
.pill svg { width: 15px; height: 15px; color: var(--orange-dk); }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(8,6,4,.92); display: none; align-items: center; justify-content: center; padding: 30px; }
.lightbox.show { display: flex; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: 10px; box-shadow: 0 30px 80px rgba(0,0,0,.6); }
.lightbox__close { position: absolute; top: 22px; right: 26px; color: #fff; font-size: 2rem; line-height: 1; width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,.12); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .cards, .why-grid, .steps, .tnav { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; gap: 34px 24px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 34px; }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .nav-cta .btn:not(.nav-book) { display: none; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; inset: var(--header-h) 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; padding: 12px 20px 24px; box-shadow: 0 24px 40px -20px rgba(0,0,0,.3);
    transform: translateY(-130%); transition: transform .4s var(--ease); border-top: 1px solid var(--line);
  }
  body.nav-open .nav-links { transform: none; }
  .nav-links a:not(.btn) { color: var(--ink) !important; padding: 15px 4px; border-bottom: 1px solid var(--line); }
  .nav-links a:not(.btn)::after { display: none; }
  .nav-links .btn { margin-top: 14px; }
  .cards, .why-grid, .steps, .tnav, .incl-grid, .form-row { grid-template-columns: 1fr; }
  .trust-strip .container { gap: 16px; justify-content: flex-start; }
  .trust-item { width: calc(50% - 11px); }
  .fab-wa .lbl { display: none; }
  .fab-wa { padding: 15px; }
  .footer-top { grid-template-columns: 1fr; }
  .gallery { grid-auto-rows: 150px; }
}
@media (max-width: 480px) {
  .stats { grid-template-columns: 1fr 1fr; }
  .hero__badges { gap: 14px; }
  .trust-item { width: 100%; }
}

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