/* ============================================================
   KMA — Malaysia Private Journeys · luxury landing + register
   A hybrid of the existing KMA system and the editorial, video-led
   Belmond aesthetic. index.html loads only this stylesheet, so the
   rules apply unscoped — the former `.lp` <body> wrapper is gone.
   ============================================================ */

/* ============================================================
   SHARED BASE STYLES — duplicated verbatim from oldStyles.css
   These are the global resets, design tokens and shared classes
   that index.html relies on from oldStyles.css: the base reset,
   inline-icon helpers, the injected header topbar / footer bottom
   bar, and the scroll-reveal system. Copied here intentionally so
   styles.css is self-sufficient; oldStyles.css is left untouched.
   ============================================================ */
:root {
  --ink: #0f172a;
  --bg: #f6f8fb;
  --white: #ffffff;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(2, 6, 23, .08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* Inline icons */
.ico { width: 1em; height: 1em; display: inline-block; vertical-align: -0.14em; flex: none; }
.ico-wrap { display: inline-flex; align-items: center; }
[data-ico] { display: inline-flex; align-items: center; justify-content: center; }

/* Topbar */
.topbar { background: #000; color: #fff; font-size: .82rem; }
.topbar__inner { display: flex; gap: 28px; justify-content: center; align-items: center; padding: 9px 20px; flex-wrap: wrap; }

/* Logo image (injected header) */
.logo__img { height: 46px; width: auto; display: block; }

/* Hero logo — overlaps the video, sits above scrim */
.hero .logo {
  position: absolute; top: clamp(20px, 3vw, 34px); left: clamp(20px, 4vw, 60px);
  z-index: 3; display: inline-block;
}

/* Footer bottom bar */
.footer__bottom-inner { display: flex; justify-content: space-between; padding: 16px 20px; font-size: .82rem; color: #94a3b8; flex-wrap: wrap; gap: 8px; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal[data-reveal="left"] { transform: translateX(-42px); }
.reveal[data-reveal="right"] { transform: translateX(42px); }
.reveal[data-reveal="up"] { transform: translateY(36px); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

body {
  /* Palette — deep emerald + muted gold + warm ivory */
  --ink:      #1b2620;
  --forest:   #1e4535;
  --forest-2: #163329;
  --gold:     #a98b52;
  --gold-2:   #c2a878;
  --cream:    #f5f1e8;
  --sand:     #ece5d6;
  --sage:     #8c9a8c;
  --muted:    #6a7169;
  --line:     rgba(27, 38, 32, .16);

  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:  'Montserrat', 'Plus Jakarta Sans', system-ui, sans-serif;

  background: var(--cream);
  color: var(--ink);
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* ---- Layout primitives ---- */
.container { max-width: 1260px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 52px); }
.section { padding: clamp(60px, 9vw, 128px) 0; }
.section--tight { padding: clamp(44px, 6vw, 80px) 0; }
.center { text-align: center; margin: 0 auto; }
.narrow { max-width: 720px; }

/* ---- Type ---- */
.eyebrow {
  display: inline-block; font-family: var(--sans); text-transform: uppercase;
  letter-spacing: .3em; font-size: .72rem; font-weight: 600; color: var(--gold);
}
.eyebrow--light { color: var(--gold-2); }
.display {
  font-family: var(--serif); font-weight: 500; line-height: 1.05;
  letter-spacing: .003em; color: var(--ink);
} 
h1.display { font-size: clamp(2.8rem, 6.4vw, 5.6rem); }
h2.display { font-size: clamp(2.1rem, 4.4vw, 3.6rem); }
h3.display { font-size: clamp(1.5rem, 2.4vw, 2rem); }
.kicker { margin-bottom: 20px; }
.lede { color: var(--muted); font-size: 1.06rem; line-height: 1.75; max-width: 60ch; }
.sectionhead { max-width: 680px; }
.sectionhead .display { margin: 14px 0 16px; }

/* ---- Buttons & links ---- */
.btn {
  display: inline-flex; align-items: center; gap: .7em; cursor: pointer;
  font-family: var(--sans); text-transform: uppercase; letter-spacing: .2em;
  font-size: .74rem; font-weight: 600; padding: 17px 38px; border: 1px solid var(--ink);
  color: var(--ink); background: transparent; border-radius: 0; transition: all .35s ease;
}
.btn:hover { background: var(--ink); color: #fff; }
.btn--solid { background: var(--forest); border-color: var(--forest); color: #fff; }
.btn--solid:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.btn--gold { background: var(--gold); border-color: var(--gold); color: #fff; }
.btn--gold:hover { background: #fff; border-color: #fff; color: var(--ink); }
.btn--light { color: #fff; border-color: rgba(255, 255, 255, .75); }
.btn--light:hover { background: #fff; color: var(--ink); }
.btn--block { width: 100%; justify-content: center; }

.underline {
  display: inline-flex; align-items: center; gap: .6em; font-family: var(--sans);
  text-transform: uppercase; letter-spacing: .18em; font-size: .74rem; font-weight: 600;
  color: var(--ink); padding-bottom: 6px; border-bottom: 1px solid var(--gold);
  transition: color .3s ease, gap .3s ease;
}
.underline:hover { color: var(--gold); gap: 1em; }
.underline--light { color: #fff; border-bottom-color: rgba(255, 255, 255, .6); }
.underline--light:hover { color: var(--gold-2); }

/* ============================================================
   Harmonise the shared header/footer with the luxury theme
   (applies to the injected header/footer on this page)
   ============================================================ */
.header { box-shadow: inset 0 -1px 0 var(--line); }
.header .btn--primary {
  background: var(--forest); border-radius: 0; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; font-size: .72rem; padding: 12px 22px;
}
.header .btn--primary:hover { background: var(--gold); }
.nav a { font-weight: 500; }
.nav a:hover, .nav a.active { color: var(--forest); border-bottom-color: var(--gold); }
.icon-btn { color: var(--ink); }
.topbar { background: var(--ink); padding-top: 20px; padding-bottom: 20px}

/* Footer — same background as the header/topbar */
.footer { background: var(--ink); color: #fff; padding-top: 20px; padding-bottom: 20px; }
.inquiries { text-align: center; padding-top: 1rem; padding-top: 60px; padding-bottom: 60px;}
.inquiries__label { color: var(--gold); }
.inquiries a { transition: color .3s ease; }
.inquiries a:hover { color: var(--gold-2); }
.socials { display: flex; gap: 10px; justify-content: center; }
.socials span { background: rgba(255,255,255,.13); width: 50px; height: 50px; border-radius: 50%; display: grid; place-items: center; cursor: pointer; }

/* ============================================================
   1 · HERO (video background)
   ============================================================ */
.hero {
  position: relative; min-height: 92vh; display: flex; align-items: flex-end;
  overflow: hidden; color: #fff; background: #0e150f;
}
.hero__media, .hero__poster {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
}
.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(14, 21, 15, .55) 0%, rgba(14, 21, 15, .12) 38%, rgba(14, 21, 15, .82) 100%);
}
.hero__inner {
  position: relative; z-index: 2; width: 100%;
  padding-bottom: clamp(56px, 8vw, 116px); padding-top: 120px;
}
.hero__inner .container { max-width: 1000px; margin: 0; }
.hero .eyebrow { color: var(--gold-2); }
.hero h1 { color: #fff; margin: 22px 0 24px; max-width: 15ch; }
.hero p {
  color: rgba(255, 255, 255, .92); font-size: clamp(1rem, 1.4vw, 1.2rem); line-height: 1.7;
  max-width: 54ch; margin-bottom: 38px; text-shadow: 0 1px 16px rgba(0, 0, 0, .3);
}
.hero__actions { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.hero__note { font-family: var(--sans); font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(255, 255, 255, .78); }
.hero__scroll {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 2;
  font-family: var(--sans); font-size: .64rem; letter-spacing: .3em; text-transform: uppercase;
  color: rgba(255, 255, 255, .8); display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hero__scroll::after { content: ""; width: 1px; height: 46px; background: linear-gradient(rgba(255,255,255,.8), rgba(255,255,255,0)); animation: scroll 2.2s ease-in-out infinite; }
@keyframes scroll { 0%, 100% { opacity: .3; transform: scaleY(.5); transform-origin: top; } 50% { opacity: 1; transform: scaleY(1); } }
@media (prefers-reduced-motion: reduce) { .hero__scroll::after { animation: none; } }

/* ============================================================
   2 · INTRO statement
   ============================================================ */
.intro { text-align: center; padding-bottom: clamp(22px, 3vw, 40px); }
#trips.section--tight { padding-top: clamp(24px, 3vw, 44px); }
.intro__statement {
  font-family: var(--serif); font-weight: 400; font-size: clamp(1.7rem, 3.4vw, 2.9rem);
  line-height: 1.28; letter-spacing: .004em; color: var(--ink); max-width: 34ch; margin: 22px auto 30px;
}
.intro__statement em { font-style: italic; color: var(--forest); }
.rule { width: 54px; height: 1px; background: var(--gold); margin: 0 auto; border: 0; }

/* Intro triptych — a curated preview of Malaysia */
.triptych { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: clamp(44px, 6vw, 78px) auto clamp(34px, 5vw, 60px); text-align: left; }
.triptych figure { position: relative; overflow: hidden; margin: 0; height: clamp(200px, 26vw, 360px); }
.triptych img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s ease; }
.triptych figure:hover img { transform: scale(1.06); }
.triptych figure::after { content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, transparent 52%, rgba(14, 21, 15, .58)); }
.triptych figcaption { position: absolute; left: 16px; bottom: 14px; z-index: 2; color: #fff;
  font-family: var(--sans); text-transform: uppercase; letter-spacing: .2em; font-size: .64rem; font-weight: 600; }

/* ============================================================
   3 · TWO TRIP OPTIONS  (alternating editorial split)
   ============================================================ */
.trips { }
/* Divider between Option One and Option Two */
.trip-sep { display: flex; align-items: center; justify-content: center; gap: clamp(16px, 4vw, 30px);
  background: var(--cream); padding: clamp(30px, 5vw, 58px) 20px; }
.trip-sep::before, .trip-sep::after { content: ""; height: 1px; width: clamp(48px, 14vw, 150px);
  background: var(--gold); opacity: .55; }
.trip-sep span { font-family: var(--serif); font-style: italic; font-size: clamp(1.2rem, 2vw, 1.6rem); color: var(--gold); }
.trip { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.trip__media { position: relative; min-height: 560px; overflow: hidden; }
.trip__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s ease; }
.trip:hover .trip__media img { transform: scale(1.05); }
.trip__tag {
  position: absolute; top: 26px; left: 26px; z-index: 2; font-family: var(--sans);
  text-transform: uppercase; letter-spacing: .22em; font-size: .66rem; font-weight: 600; color: #fff;
  background: rgba(20, 30, 24, .38); backdrop-filter: blur(4px); padding: 9px 16px;
  border: 1px solid rgba(255, 255, 255, .35);
}
.trip__body { padding: clamp(40px, 5.5vw, 92px); display: flex; flex-direction: column; justify-content: center; }
.trip__body .display { margin: 16px 0 18px; }
.trip__body > p { color: var(--muted); line-height: 1.75; margin-bottom: 26px; max-width: 46ch; }

/* Light (cream) and dark (forest) variants */
.trip--light .trip__body { background: var(--cream); }
.trip--dark .trip__body { background: var(--forest); color: #fff; }
.trip--dark .display { color: #fff; }
.trip--dark .trip__body > p { color: rgba(255, 255, 255, .82); }
.trip--dark .eyebrow { color: var(--gold-2); }
.trip--dark .usp li { color: rgba(255, 255, 255, .9); }
.trip--dark .usp .ico-wrap { color: var(--gold-2); }
.trip--dark .underline { color: #fff; border-bottom-color: rgba(255, 255, 255, .55); }
.trip--dark .underline:hover { color: var(--gold-2); }

/* USP list */
.usp { list-style: none; display: flex; flex-direction: column; gap: 13px; margin: 0 0 34px; }
.usp li { display: flex; align-items: flex-start; gap: 13px; font-size: .96rem; line-height: 1.5; color: var(--ink); }
.usp .ico-wrap { flex: none; width: 20px; height: 20px; color: var(--gold); margin-top: 2px; }
.usp .ico { width: 18px; height: 18px; }

/* Package spec groups — mirrors a comparison table, row by row */
.trip__specs { display: flex; flex-direction: column; margin: 2px 0 34px; }
.spec {
  display: grid; grid-template-columns: minmax(112px, 148px) 1fr; gap: clamp(14px, 2.2vw, 30px);
  padding: 18px 0; border-top: 1px solid var(--line);
}
.spec:first-child { border-top: 0; padding-top: 4px; }
.spec__label {
  font-family: var(--sans); text-transform: uppercase; letter-spacing: .2em;
  font-size: .66rem; font-weight: 600; color: var(--gold); padding-top: 3px;
}
.spec ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.spec li { font-size: .95rem; line-height: 1.45; color: var(--ink); }
.spec li span { display: block; color: var(--muted); font-size: .82rem; letter-spacing: .01em; margin-top: 3px; }
.spec li em { font-style: italic; color: var(--muted); }

/* Dark (forest) variant of the spec groups */
.trip--dark .spec { border-top-color: rgba(255, 255, 255, .16); }
.trip--dark .spec__label { color: var(--gold-2); }
.trip--dark .spec li { color: rgba(255, 255, 255, .9); }
.trip--dark .spec li span { color: rgba(255, 255, 255, .6); }
.trip--dark .spec li em { color: rgba(255, 255, 255, .62); }

/* Media on the right for the reversed row */
.trip--rev .trip__media { order: 2; }
.trip--rev .trip__body { order: 1; }

/* ============================================================
   4 · WHY MALAYSIA — pillar cards
   ============================================================ */
.why { background: var(--sand); }
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 56px; }
.pillar { background: var(--cream); }
.pillar__media { position: relative; height: 260px; overflow: hidden; }
.pillar__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s ease; }
.pillar:hover .pillar__media img { transform: scale(1.06); }
.pillar__num {
  position: absolute; top: 16px; left: 18px; font-family: var(--serif); font-size: 1.5rem;
  color: #fff; z-index: 2; text-shadow: 0 1px 10px rgba(0, 0, 0, .5);
}
.pillar__body { padding: 30px 30px 38px; }
.pillar__body .display { margin: 12px 0 12px; }
.pillar__body p { color: var(--muted); font-size: .94rem; line-height: 1.7; }

/* ============================================================
   Editorial gallery (image-rich mosaic)
   ============================================================ */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 16px; margin-top: 52px; }
.gallery figure { position: relative; overflow: hidden; margin: 0; }
.gallery figure:first-child { grid-column: span 2; grid-row: span 2; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.gallery figure:hover img { transform: scale(1.07); }
.gallery figure::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(14, 21, 15, .6) 100%);
}
.gallery figcaption {
  position: absolute; left: 18px; bottom: 15px; z-index: 2; color: #fff; font-family: var(--sans);
  text-transform: uppercase; letter-spacing: .2em; font-size: .66rem; font-weight: 600;
}

/* ============================================================
   Cinematic quote band (video)
   ============================================================ */
.band { position: relative; overflow: hidden; color: #fff; text-align: center; }
.band__media, .band__poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.band__scrim { position: absolute; inset: 0; z-index: 1; background: rgba(14, 21, 15, .55); }
.band__inner { position: relative; z-index: 2; padding: clamp(90px, 15vw, 210px) 0; }
.band__quote {
  font-family: var(--serif); font-weight: 400; font-style: italic;
  font-size: clamp(1.7rem, 3.6vw, 3rem); line-height: 1.3; max-width: 22ch; margin: 20px auto 0; color: #fff;
}

/* ============================================================
   5 · REGISTER CTA (dark) + steps
   ============================================================ */
.cta { background: var(--forest); color: #fff; text-align: center; }
.cta .display { color: #fff; margin: 16px 0 18px; }
.cta__lede { color: rgba(255, 255, 255, .82); font-size: 1.06rem; line-height: 1.75; max-width: 58ch; margin: 0 auto 12px; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; margin: 56px auto 52px; max-width: 940px; text-align: left; }
.step { border-top: 1px solid rgba(255, 255, 255, .22); padding-top: 22px; }
.step__num { font-family: var(--serif); font-size: 2rem; color: var(--gold-2); line-height: 1; }
.step h4 { font-family: var(--sans); text-transform: uppercase; letter-spacing: .14em; font-size: .82rem; font-weight: 600; margin: 16px 0 10px; }
.step p { color: rgba(255, 255, 255, .74); font-size: .92rem; line-height: 1.65; }

/* Inline register form embedded in the CTA — compact, split like the register page */
.cta__grid { display: grid; grid-template-columns: 1fr 1.02fr; gap: clamp(30px, 5vw, 68px); align-items: center; text-align: left; }
.cta__intro .cta__lede { margin: 16px 0 26px; max-width: 44ch; }
.cta__card { background: var(--cream); color: var(--ink); text-align: left; padding: clamp(26px, 3.4vw, 40px); box-shadow: 0 24px 60px rgba(14, 21, 15, .28); }
.cta__card .display { color: var(--ink); }
.cta__card .field { margin-bottom: 15px; }
.cta__card .form__row { gap: 18px; }
.cta__card .field textarea { min-height: 62px; }
.cta__card .success { padding: 8px 0; }
.field label .opt { text-transform: none; letter-spacing: 0; font-weight: 500; color: #a7a99f; }

/* ============================================================
   REGISTER PAGE
   ============================================================ */
.reg { display: grid; grid-template-columns: 1fr 1.05fr; min-height: 78vh; }
.reg__aside { position: relative; overflow: hidden; color: #fff; display: flex; }
.reg__aside img, .reg__aside video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.reg__aside::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(160deg, rgba(20, 44, 34, .58), rgba(14, 21, 15, .82)); }
.reg__asideinner { position: relative; z-index: 2; margin-top: auto; padding: clamp(40px, 5vw, 72px); }
.reg__asideinner .display { color: #fff; margin: 18px 0 18px; }
.reg__asideinner p { color: rgba(255, 255, 255, .85); line-height: 1.75; margin-bottom: 26px; max-width: 42ch; }
.reg__list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.reg__list li { display: flex; gap: 14px; align-items: flex-start; }
.reg__list .n { font-family: var(--serif); color: var(--gold-2); font-size: 1.2rem; line-height: 1.2; flex: none; }
.reg__list strong { display: block; font-family: var(--sans); text-transform: uppercase; letter-spacing: .12em; font-size: .74rem; font-weight: 600; }
.reg__list span { color: rgba(255, 255, 255, .74); font-size: .88rem; }

.reg__formwrap { background: var(--cream); padding: clamp(40px, 5.5vw, 88px); display: flex; align-items: center; }
.form { width: 100%; max-width: 520px; margin: 0 auto; }
.form__head { margin-bottom: 30px; }
.form__head .display { margin: 12px 0 10px; }
.form__head p { color: var(--muted); font-size: .96rem; line-height: 1.6; }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.field label { font-family: var(--sans); text-transform: uppercase; letter-spacing: .14em; font-size: .68rem; font-weight: 600; color: var(--muted); }
.field label .req { color: var(--gold); }
.field input, .field select, .field textarea {
  font: inherit; font-size: .96rem; color: var(--ink); background: transparent;
  border: 0; border-bottom: 1px solid var(--line); padding: 11px 2px; outline: none; width: 100%;
  border-radius: 0; transition: border-color .3s ease;
}
.field textarea { resize: vertical; min-height: 80px; }
.field input:focus, .field select:focus, .field textarea:focus { border-bottom-color: var(--gold); }
.field input::placeholder, .field textarea::placeholder { color: #a7a99f; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.form__actions { margin-top: 12px; }
.form__fine { margin-top: 16px; font-size: .78rem; color: var(--muted); line-height: 1.6; }
.back { display: inline-flex; align-items: center; gap: 8px; font-family: var(--sans); font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: 26px; }
.back:hover { color: var(--forest); }

/* Success state */
.success { text-align: center; padding: 20px 0; }
.success__mark { width: 62px; height: 62px; border-radius: 50%; background: var(--forest); color: #fff; display: grid; place-items: center; margin: 0 auto 24px; }
.success__mark .ico { width: 28px; height: 28px; }
.success .display { margin-bottom: 14px; }
.success p { color: var(--muted); line-height: 1.7; max-width: 40ch; margin: 0 auto 26px; }

/* ============================================================
   Scroll reveal (reuses .reveal/.in from styles.css if present;
   defined here too so landing works standalone)
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .trip { grid-template-columns: 1fr; }
  .trip__media { min-height: 340px; order: 1 !important; }
  .trip__body { order: 2 !important; }
  .pillars { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
  .steps { grid-template-columns: 1fr; gap: 26px; }
  .cta__grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .cta__intro .cta__lede { margin-left: auto; margin-right: auto; }
  .cta__intro .reg__list { text-align: left; max-width: 420px; margin: 0 auto; }
  .reg { grid-template-columns: 1fr; }
  .reg__aside { min-height: 300px; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery figure:first-child { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 560px) {
  .hero { min-height: 88vh; }
  .hero__scroll { display: none; }
  .hero__actions { gap: 16px; }
  .btn { width: 100%; justify-content: center; }
  .form__row { grid-template-columns: 1fr; gap: 0; }
  .triptych { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .gallery figure:first-child { grid-column: span 1; }
  .spec { grid-template-columns: 1fr; gap: 8px; }
  .spec__label { padding-top: 0; }
}
