/* ==========================================================================
   Ferrari World Rides — stylesheet
   ========================================================================== */

:root {
  --ink: #12141c;
  --ink-2: #2a2e3a;
  --muted: #5f6573;
  --faint: #8a8f9c;
  --line: #e6e4df;
  --line-2: #efeee9;
  --bg: #ffffff;
  --canvas: #f7f6f2;
  --canvas-2: #f0eee8;
  --red: #d40000;
  --red-600: #b30000;
  --red-50: #fff1ef;
  --red-100: #ffe1dc;
  --yellow: #ffcc00;
  --wa: #0b7f45;
  --wa-600: #086a39;
  --good: #15803d;

  --radius-sm: 10px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 2px rgba(18, 20, 28, .06), 0 1px 1px rgba(18, 20, 28, .03);
  --shadow: 0 12px 32px -14px rgba(18, 20, 28, .22);
  --shadow-lg: 0 34px 70px -28px rgba(18, 20, 28, .38);

  --font: 'Inter', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  --font-display: 'Archivo', 'Inter', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  --container: 1240px;
  --gutter: clamp(16px, 4vw, 32px);
  --header-h: 72px;
  color-scheme: light;
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { transition: none !important; animation: none !important; } }
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font: 400 16px/1.6 var(--font); -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility; overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-stretch: 108%; font-weight: 800; letter-spacing: -.02em; line-height: 1.1; color: var(--ink); text-wrap: balance; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
figure { margin: 0; }
:focus-visible { outline: 2.5px solid var(--red); outline-offset: 2px; border-radius: 6px; }
::selection { background: var(--red); color: #fff; }

.ic { width: 1.15em; height: 1.15em; flex: none; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.sr { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip { position: absolute; left: 16px; top: -60px; z-index: 100; background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 8px; }
.skip:focus { top: 12px; }
.muted { color: var(--muted); }
.dot { color: var(--faint); margin: 0 .35em; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }

/* ---------- type helpers ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font: 700 12px/1 var(--font); letter-spacing: .14em; text-transform: uppercase; color: var(--red); margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 18px; height: 2px; background: currentColor; border-radius: 2px; }
.eyebrow--light { color: #fff; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--muted); max-width: 44em; margin-top: 14px; }
.section-lead { color: var(--muted); font-size: 1.05rem; margin-top: 12px; max-width: 40em; }

/* ---------- buttons ---------- */
.btn {
  --h: 46px;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: var(--h); padding: 0 20px; border-radius: 12px; border: 1.5px solid transparent;
  font-weight: 600; font-size: 15px; line-height: 1.1; white-space: nowrap; text-align: center;
  transition: background-color .18s, border-color .18s, color .18s, transform .18s, box-shadow .18s;
}
.btn:active { transform: translateY(1px); }
.btn-sm { --h: 40px; padding: 0 14px; font-size: 14px; border-radius: 10px; }
.btn-lg { --h: 54px; padding: 0 24px; font-size: 16px; }
.btn-block { width: 100%; }
.btn-primary { background: var(--red); color: #fff; box-shadow: 0 8px 20px -10px rgba(212, 0, 0, .7); }
.btn-primary:hover { background: var(--red-600); }
.btn-wa { background: var(--wa); color: #fff; box-shadow: 0 8px 20px -12px rgba(11, 127, 69, .8); }
.btn-wa:hover { background: var(--wa-600); }
.btn-outline { background: #fff; border-color: var(--line); color: var(--ink); }
.btn-outline:hover { border-color: var(--ink); }
.btn-white { background: #fff; color: var(--red); }
.btn-white:hover { background: var(--red-50); }
.btn-ghost-light { color: #fff; border-color: rgba(255, 255, 255, .45); }
.btn-ghost-light:hover { background: rgba(255, 255, 255, .12); border-color: #fff; }
.btn .ic { width: 18px; height: 18px; }

.link-arrow { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--ink); white-space: nowrap; }
.link-arrow .ic { transition: transform .2s; color: var(--red); }
.link-arrow:hover .ic { transform: translateX(4px); }

.chip {
  display: inline-flex; align-items: center; gap: 6px; padding: 6px 11px; border-radius: 999px;
  font-size: 12px; font-weight: 700; letter-spacing: .01em; line-height: 1;
}
.chip--light { background: rgba(255, 255, 255, .94); color: var(--ink); box-shadow: var(--shadow-sm); }
.chip--badge { background: var(--yellow); color: var(--ink); }
.chip--inline { margin-left: 8px; letter-spacing: 0; text-transform: none; }

/* ---------- top bar + header ---------- */
.topbar { background: var(--ink); color: #c9ccd4; font-size: 13px; }
.topbar-in { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 38px; }
.topbar p { display: flex; align-items: center; gap: 4px; }
.topbar .ic { width: 14px; height: 14px; color: #ff5a4f; margin-right: 4px; }
.topbar-contact { gap: 22px !important; }
.topbar-contact a { display: inline-flex; align-items: center; transition: color .15s; }
.topbar-contact a:hover { color: #fff; }

.header {
  position: sticky; top: 0; z-index: 50; background: rgba(255, 255, 255, .92);
  -webkit-backdrop-filter: saturate(180%) blur(14px); backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent; transition: border-color .2s, box-shadow .2s;
}
.header.is-scrolled { border-bottom-color: var(--line); box-shadow: 0 6px 24px -18px rgba(18, 20, 28, .4); }
.header-in { display: flex; align-items: center; gap: 28px; height: var(--header-h); }
.brand { display: inline-flex; align-items: center; gap: 12px; flex: none; }
.brand-mark { width: 40px; height: 40px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: var(--font-display); font-stretch: 112%; font-weight: 800; font-size: 18px; letter-spacing: -.02em; }
.brand-name b { color: var(--red); font-weight: 800; }
.brand-sub { font-size: 11.5px; color: var(--faint); font-weight: 500; letter-spacing: .01em; margin-top: 2px; }
.brand--light .brand-name { color: #fff; }
.brand--light .brand-name b { color: #ff4d42; }
.brand--light .brand-sub { color: #8f94a0; }

.nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav a { position: relative; padding: 10px 12px; border-radius: 10px; font-size: 15px; font-weight: 500; color: var(--ink-2); transition: color .15s, background-color .15s; }
.nav a:hover { color: var(--ink); background: var(--canvas); }
.nav a[aria-current="page"] { color: var(--red); }
.nav a[aria-current="page"]::after { content: ""; position: absolute; left: 12px; right: 12px; bottom: 3px; height: 2px; border-radius: 2px; background: var(--red); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.menu-btn { display: none; width: 44px; height: 44px; border-radius: 12px; border: 1.5px solid var(--line); background: #fff; align-items: center; justify-content: center; }
.menu-btn .ic { width: 22px; height: 22px; }

@media (max-width: 1080px) {
  .topbar-in > p:first-child { display: none; }
  .topbar-in { justify-content: center; }
  .menu-btn { display: inline-flex; }
  .header-actions { margin-left: auto; }
  .nav {
    position: absolute; left: 0; right: 0; top: 100%; margin: 0; padding: 12px var(--gutter) 20px;
    flex-direction: column; align-items: stretch; gap: 2px; background: #fff; border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 40px -24px rgba(18, 20, 28, .35);
    opacity: 0; visibility: hidden; transform: translateY(-6px); transition: opacity .2s, transform .2s, visibility .2s;
  }
  .nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .nav a { padding: 14px 12px; font-size: 16px; }
  .nav a[aria-current="page"]::after { display: none; }
  .nav a[aria-current="page"] { background: var(--red-50); }
}
@media (max-width: 560px) {
  :root { --header-h: 64px; }
  .topbar { display: none; }
  .brand-sub { display: none; }
  .brand-mark { width: 36px; height: 36px; }
  .header-cta span { display: none; }
  .header-cta { width: 44px; height: 44px; padding: 0; border-radius: 12px; }
}

/* ---------- sections ---------- */
.section { padding-block: clamp(56px, 8vw, 104px); }
.section--tight { padding-block: clamp(40px, 6vw, 72px); }
.section--flush-top { padding-top: 0; }
.section--canvas { background: var(--canvas); }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: clamp(28px, 4vw, 44px); }
.section-head h2 { font-size: clamp(1.75rem, 3.4vw, 2.6rem); }
@media (max-width: 720px) { .section-head { flex-direction: column; align-items: flex-start; } }

.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 1100px) { .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .grid-3, .grid-4 { grid-template-columns: minmax(0, 1fr); gap: 20px; } }

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; background: linear-gradient(180deg, #fff 0%, var(--canvas) 100%); padding-block: clamp(32px, 5vw, 64px) clamp(56px, 7vw, 88px); }
.hero-deco { position: absolute; inset: 0; pointer-events: none; }
.hero-deco::before {
  content: ""; position: absolute; right: -10%; top: -20%; width: 70%; height: 140%;
  background: radial-gradient(closest-side, rgba(212, 0, 0, .10), rgba(212, 0, 0, 0));
}
.hero-deco::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 6px;
  background: repeating-linear-gradient(90deg, var(--ink) 0 14px, #fff 14px 28px);
  opacity: .9;
}
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr); gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 10px; padding: 5px 14px 5px 5px; border-radius: 999px;
  background: #fff; border: 1px solid var(--line); font-size: 14px; font-weight: 600; color: var(--ink-2); box-shadow: var(--shadow-sm);
}
.hero-pill-ic { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; background: var(--red); color: #fff; }
.hero-pill-ic .ic { width: 15px; height: 15px; }
.hero h1 { margin-top: 22px; font-size: clamp(2.5rem, 5vw, 4.2rem); line-height: 1; letter-spacing: -.035em; font-stretch: 112%; }
.hl { color: var(--red); position: relative; z-index: 0; white-space: nowrap; }
.hl::after { content: ""; position: absolute; left: 2%; right: 2%; bottom: .02em; height: .14em; background: var(--yellow); z-index: -1; border-radius: 3px; transform: skewX(-18deg); }
.hero-lead { margin-top: 22px; font-size: clamp(1.05rem, 1.5vw, 1.2rem); color: var(--muted); max-width: 33em; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-stats { display: grid; grid-template-columns: repeat(3, auto); justify-content: start; gap: 0; margin: 40px 0 0; }
.hero-stats > div { display: flex; flex-direction: column-reverse; padding: 0 28px; border-left: 1px solid var(--line); }
.hero-stats > div:first-child { padding-left: 0; border-left: 0; }
.hero-stats dt { font-size: 13px; color: var(--muted); margin-top: 4px; }
.hero-stats dd { margin: 0; font-family: var(--font-display); font-stretch: 112%; font-weight: 800; font-size: clamp(1.7rem, 2.6vw, 2.2rem); letter-spacing: -.03em; line-height: 1; }
.hero-stats small { font-size: .5em; font-weight: 700; color: var(--red); margin-left: 4px; letter-spacing: 0; }

.hero-media { position: relative; padding: 0 0 34px 34px; }
.hero-img { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 1 / 1.02; background: var(--canvas-2); }
.hero-img img { width: 100%; height: 100%; object-fit: cover; object-position: 40% 50%; }
.hero-mini {
  position: absolute; left: 0; bottom: 0; width: 44%; aspect-ratio: 4 / 3; border-radius: var(--radius-lg); overflow: hidden;
  border: 6px solid #fff; box-shadow: var(--shadow-lg); background: var(--canvas-2);
}
.hero-mini img { width: 100%; height: 100%; object-fit: cover; }
.hero-card {
  position: absolute; right: -14px; top: 28px; display: flex; flex-direction: column; gap: 2px; padding: 16px 20px 16px 18px;
  background: #fff; border-radius: 18px; box-shadow: var(--shadow-lg); border: 1px solid var(--line-2); transition: transform .2s;
}
.hero-card:hover { transform: translateY(-3px); }
.hero-card-label { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 600; color: var(--muted); }
.hero-card-label .ic { color: var(--red); }
.hero-card-price { font-family: var(--font-display); font-stretch: 112%; font-weight: 800; font-size: 34px; letter-spacing: -.03em; line-height: 1.05; margin-top: 4px; }
.hero-card-price small { font-size: 15px; color: var(--red); font-weight: 800; letter-spacing: 0; }
.hero-card-sub { font-size: 13px; color: var(--muted); }

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr); }
  .hero-media { max-width: 620px; width: 100%; margin-inline: auto; }
  .hero-img { aspect-ratio: 4 / 3; }
}
@media (max-width: 560px) {
  .hero-stats { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .hero-stats > div { padding: 0 12px; }
  .hero-stats dt { font-size: 12px; }
  .hero-ctas .btn { flex: 1 1 100%; }
  .hero-media { padding: 0 0 26px 18px; }
  .hero-card { right: -6px; top: 14px; padding: 12px 14px; border-radius: 14px; }
  .hero-card-price { font-size: 26px; }
  .hero-mini { border-width: 4px; width: 46%; }
}

/* ---------- trust bar ---------- */
.trust { background: #fff; border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.trust-item { display: flex; align-items: center; gap: 14px; padding: 26px 20px; }
.trust-item + .trust-item { border-left: 1px solid var(--line-2); }
.trust-item b { display: block; font-size: 15px; font-weight: 700; }
.trust-item span:not(.trust-ic) { display: block; font-size: 13.5px; color: var(--muted); }
.trust-ic { display: grid; place-items: center; flex: none; width: 46px; height: 46px; border-radius: 14px; background: var(--red-50); color: var(--red); }
.trust-ic .ic { width: 22px; height: 22px; }
@media (max-width: 1000px) {
  .trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-item:nth-child(3) { border-left: 0; }
  .trust-item:nth-child(n+3) { border-top: 1px solid var(--line-2); }
}
@media (max-width: 520px) {
  .trust-grid { grid-template-columns: minmax(0, 1fr); }
  .trust-item { padding: 16px 4px; }
  .trust-item + .trust-item { border-left: 0; border-top: 1px solid var(--line-2); }
}

/* ---------- ticket cards ---------- */
.tcard {
  position: relative; display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden; transition: transform .25s, box-shadow .25s, border-color .25s;
}
.tcard:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.tcard:focus-within { box-shadow: var(--shadow); }
.tcard-media { position: relative; aspect-ratio: 16 / 11; overflow: hidden; background: var(--canvas-2); }
.tcard-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2, .7, .2, 1); }
.tcard:hover .tcard-media img { transform: scale(1.05); }
.tcard-media .chip { position: absolute; top: 14px; left: 14px; }
.tcard-media .chip--badge { left: auto; right: 14px; }
.tcard-body { padding: 20px 20px 16px; flex: 1; }
.tcard-title { font-size: 19px; line-height: 1.2; font-stretch: 104%; letter-spacing: -.015em; }
.tcard-title a::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.tcard-title a:focus-visible { outline: none; }
.tcard-title a:focus-visible::after { outline: 2.5px solid var(--red); outline-offset: -3px; border-radius: var(--radius-lg); }
.tcard-tag { margin-top: 6px; font-size: 14px; color: var(--muted); }
.tcard-meta { margin-top: 14px; display: grid; gap: 7px; font-size: 13.5px; color: var(--ink-2); }
.tcard-meta li { display: flex; align-items: center; gap: 8px; }
.tcard-meta .ic { color: var(--red); width: 16px; height: 16px; }
.tcard-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 20px 18px; border-top: 1px solid var(--line-2); }
.price { display: flex; flex-direction: column; }
.price-label { font-size: 12.5px; color: var(--muted); }
.price-val { font-family: var(--font-display); font-stretch: 108%; font-weight: 800; font-size: 24px; letter-spacing: -.02em; line-height: 1.15; }
.price-val small { font-size: 13px; color: var(--red); letter-spacing: 0; }
.tcard-go { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--ink); color: #fff; transition: background-color .2s, transform .2s; }
.tcard:hover .tcard-go { background: var(--red); transform: translateX(2px); }
.tcard[hidden] { display: none; }

/* ---------- bento ---------- */
.bento { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); grid-template-rows: repeat(2, 270px); gap: 16px; }
.bento-item { position: relative; border-radius: var(--radius-lg); overflow: hidden; background: var(--ink); isolation: isolate; }
.bento-item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2, .7, .2, 1); }
.bento-item:hover img { transform: scale(1.04); }
.bento-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10, 11, 16, 0) 38%, rgba(10, 11, 16, .82) 100%); }
.bento-item figcaption { position: absolute; left: 0; right: 0; bottom: 0; z-index: 1; padding: 22px; color: #fff; }
.bento-item h3 { color: #fff; font-size: 21px; }
.bento-item p { font-size: 14.5px; color: rgba(255, 255, 255, .86); margin-top: 6px; max-width: 30em; }
.bento-lg { grid-column: span 2; grid-row: span 2; }
.bento-lg h3 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
.bento-lg p { font-size: 16px; }
.bento-wide { grid-column: span 2; }
.bento-kicker { display: inline-flex; align-items: center; gap: 7px; padding: 6px 11px; border-radius: 999px; background: var(--red); font-size: 12px; font-weight: 700; margin-bottom: 12px; }
.bento-kicker .ic { width: 15px; height: 15px; }
@media (max-width: 900px) {
  .bento { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-rows: 340px 220px 220px; }
  .bento-lg { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 560px) {
  .bento { grid-template-columns: minmax(0, 1fr); grid-template-rows: none; grid-auto-rows: auto; }
  .bento-item { min-height: 240px; }
  .bento-lg, .bento-wide { grid-column: auto; grid-row: auto; }
  .bento-lg { min-height: 340px; }
}

/* ---------- parks ---------- */
.park { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; }
.park-media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--canvas-2); }
.park-media img { width: 100%; height: 100%; object-fit: cover; }
.park-body { padding: 18px 20px 22px; }
.park-tag { display: inline-block; font-size: 12px; font-weight: 700; color: var(--red); letter-spacing: .02em; }
.park h3 { font-size: 18px; margin-top: 6px; font-stretch: 104%; }
.park p { font-size: 14.5px; color: var(--muted); margin-top: 8px; }

/* ---------- split / steps ---------- */
.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(32px, 6vw, 88px); align-items: center; }
.split-media { position: relative; }
.split-media img { width: 100%; aspect-ratio: 4 / 4.4; object-fit: cover; border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); }
.split-badge {
  position: absolute; right: -18px; bottom: 32px; display: flex; align-items: center; gap: 12px; padding: 14px 18px;
  background: #fff; border-radius: 16px; box-shadow: var(--shadow-lg);
}
.split-badge b { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 12px; background: var(--red); color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 14px; }
.split-badge span { font-weight: 600; font-size: 14px; max-width: 9em; line-height: 1.3; }
.split-copy h2 { font-size: clamp(1.75rem, 3.4vw, 2.6rem); }
.steps { display: grid; gap: 4px; margin-top: 30px; counter-reset: s; }
.steps li { display: flex; gap: 18px; padding: 18px 0; border-top: 1px solid var(--line); }
.steps li:first-child { border-top: 0; padding-top: 4px; }
.step-n { flex: none; display: grid; place-items: center; width: 46px; height: 46px; border-radius: 14px; background: var(--red-50); color: var(--red); font-family: var(--font-display); font-stretch: 112%; font-weight: 800; font-size: 16px; }
.steps h3 { font-size: 18px; font-stretch: 104%; }
.steps p { color: var(--muted); margin-top: 4px; }
.steps--compact { margin-top: 18px; }
.steps--compact li { align-items: center; padding: 12px 0; }
.steps--compact p { color: var(--ink-2); margin: 0; }
.steps--compact .step-n { width: 40px; height: 40px; font-size: 14px; border-radius: 12px; }
@media (max-width: 900px) {
  .split { grid-template-columns: minmax(0, 1fr); }
  .split-media img { aspect-ratio: 16 / 11; }
  .split-badge { right: 14px; bottom: -18px; }
}

/* ---------- FAQ ---------- */
.faq-wrap { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(32px, 6vw, 88px); align-items: start; }
.faq-intro h2 { font-size: clamp(1.75rem, 3.4vw, 2.6rem); }
.faq-intro .btn { margin-top: 24px; }
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 20px 2px; cursor: pointer; font-weight: 600; font-size: 16.5px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--red); }
.faq-ic { width: 30px; height: 30px; padding: 6px; border-radius: 50%; background: var(--canvas-2); color: var(--ink); transition: transform .25s, background-color .2s, color .2s; }
.faq details[open] .faq-ic { transform: rotate(45deg); background: var(--red); color: #fff; }
.faq-a { padding: 0 48px 22px 2px; color: var(--muted); }
.section--canvas .faq-ic { background: #fff; }
@media (max-width: 900px) { .faq-wrap { grid-template-columns: minmax(0, 1fr); } .faq-a { padding-right: 8px; } }

/* ---------- CTA band ---------- */
.cta {
  position: relative; overflow: hidden; display: grid; grid-template-columns: minmax(0, 1.3fr) auto; gap: 32px; align-items: center;
  padding: clamp(32px, 5vw, 60px); border-radius: var(--radius-xl); color: #fff;
  background:
    radial-gradient(120% 140% at 100% 0%, rgba(255, 204, 0, .22), transparent 45%),
    linear-gradient(120deg, #c70000 0%, #e10600 55%, #b10000 100%);
  box-shadow: 0 30px 60px -30px rgba(179, 0, 0, .7);
}
.cta::after {
  content: ""; position: absolute; right: -60px; bottom: -60px; width: 320px; height: 320px; opacity: .14;
  background: repeating-linear-gradient(45deg, #fff 0 12px, transparent 12px 24px); border-radius: 50%;
}
.cta h2 { color: #fff; font-size: clamp(1.6rem, 3.2vw, 2.4rem); }
.cta p { color: rgba(255, 255, 255, .88); margin-top: 12px; max-width: 34em; }
.cta-actions { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 12px; }
@media (max-width: 900px) { .cta { grid-template-columns: minmax(0, 1fr); } .cta-actions { flex-direction: row; flex-wrap: wrap; } }
@media (max-width: 520px) { .cta-actions .btn { flex: 1 1 100%; } }

/* ---------- footer ---------- */
.footer { background: #0e1016; color: #a7abb6; padding-top: clamp(48px, 6vw, 80px); font-size: 14.5px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; }
.footer-brand p { margin: 18px 0 22px; max-width: 30em; }
.footer h3 { color: #fff; font-family: var(--font); font-size: 14px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 16px; }
.footer ul { display: grid; gap: 10px; }
.footer a:hover { color: #fff; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; }
.footer-contact .ic { color: #ff4d42; margin-top: 3px; }
.footer-legal { border-top: 1px solid #22252f; padding-block: 24px 32px; font-size: 13px; color: #7d8190; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; margin-top: 14px; }
.footer-bottom span:last-child { display: flex; gap: 20px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: minmax(0, 1fr); gap: 32px; } }

/* ---------- inner page hero ---------- */
.page-hero { padding-block: clamp(32px, 5vw, 56px) clamp(32px, 4vw, 48px); background: linear-gradient(180deg, #fff, var(--canvas)); margin-bottom: clamp(32px, 4vw, 48px); border-bottom: 1px solid var(--line-2); }
.page-hero h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); letter-spacing: -.03em; font-stretch: 112%; }
.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 13.5px; color: var(--muted); margin-bottom: 22px; }
.crumbs a:hover { color: var(--red); }
.crumbs > span:not([aria-current]) { color: var(--faint); }
.crumbs [aria-current] { color: var(--ink); font-weight: 500; }

/* ---------- filters ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.filter {
  display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; border-radius: 999px; border: 1.5px solid var(--line);
  background: #fff; font-weight: 600; font-size: 14.5px; transition: border-color .15s, background-color .15s, color .15s;
}
.filter span { display: grid; place-items: center; min-width: 22px; height: 22px; padding: 0 6px; border-radius: 999px; background: var(--canvas-2); font-size: 12px; }
.filter:hover { border-color: var(--ink); }
.filter[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: #fff; }
.filter[aria-pressed="true"] span { background: var(--red); color: #fff; }

/* ---------- rate table ---------- */
.rates-block + .rates-block { margin-top: 40px; }
.rates-head { margin-bottom: 14px; }
.rates-head h3 { font-size: 20px; font-stretch: 104%; }
.rates-head p { color: var(--muted); font-size: 14px; margin-top: 4px; }
.rates { background: #fff; border: 1px solid #d9dee6; border-radius: var(--radius-lg); overflow: hidden; }
.rates-row { display: grid; grid-template-columns: minmax(0, 2.3fr) minmax(0, 1.1fr) minmax(0, 1.4fr) minmax(0, 1fr) 120px; align-items: stretch; }
.rates-row > span { display: flex; flex-direction: column; justify-content: center; padding: 18px 20px; border-left: 1px solid #e5e9ef; font-size: 14.5px; color: var(--ink-2); }
.rates-row > span:first-child { border-left: 0; }
.rates-row + .rates-row { border-top: 1px solid #e5e9ef; }
.rates-row--head { background: #f1f4f8; }
.rates-row--head > span { font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: #3b4254; padding-block: 16px; }
.rates-name a { display: block; font-family: var(--font-display); font-stretch: 104%; font-weight: 700; font-size: 16.5px; color: var(--ink); letter-spacing: -.01em; line-height: 1.25; }
.rates-name a:hover { color: var(--red); }
.rates-name small, .rates-val small { display: block; font-size: 12.5px; color: var(--muted); margin-top: 3px; }
.rates-val { font-size: 14px !important; line-height: 1.45; }
.rates-val small:first-child { margin-top: 0; }
.rates-val small { margin-top: 6px; }
.rates-val b { font-weight: 400; }
.rates-price { font-family: var(--font-display); font-weight: 800; font-size: 18px !important; color: var(--ink) !important; }
.rates-price small { font-family: var(--font); font-weight: 500; font-size: 12.5px; color: var(--muted); }
.rates-act { align-items: center; }
@media (max-width: 900px) {
  .rates { border: 0; background: transparent; overflow: visible; display: grid; gap: 14px; }
  .rates-row--head { display: none; }
  .rates-row {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); background: #fff; border: 1px solid #d9dee6 !important; border-radius: var(--radius);
  }
  .rates-row > span { border-left: 0; padding: 12px 16px; }
  .rates-row > span[data-label]::before { content: attr(data-label); display: block; font-size: 11.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--faint); margin-bottom: 4px; }
  .rates-name { grid-column: 1 / -1; border-bottom: 1px solid #e5e9ef; padding-block: 16px !important; }
  .rates-val { grid-column: 1 / -1; order: 3; }
  .rates-price { order: 2; }
  .rates-act { grid-column: 1 / -1; order: 4; padding-top: 4px !important; padding-bottom: 16px !important; }
  .rates-act .btn { width: 100%; }
}

/* ---------- tour page ---------- */
.tour-top { padding-top: clamp(20px, 3vw, 32px); padding-bottom: clamp(28px, 4vw, 44px); }
.tour-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; }
.tour-head .eyebrow { margin-bottom: 10px; }
.tour-head h1 { font-size: clamp(2rem, 4.2vw, 3.2rem); letter-spacing: -.03em; font-stretch: 110%; }
.tour-sub { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; margin-top: 12px; color: var(--muted); font-size: 15px; }
.tour-sub > span:not(.dot) { display: inline-flex; align-items: center; gap: 6px; }
.tour-sub .ic { color: var(--red); }
.tour-head-price { flex: none; text-align: right; }
.tour-head-price span { display: block; font-size: 13px; color: var(--muted); }
.tour-head-price b { font-family: var(--font-display); font-stretch: 110%; font-weight: 800; font-size: 34px; letter-spacing: -.03em; }
.tour-head-price small { font-size: 16px; color: var(--red); letter-spacing: 0; }
.badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.badges li { display: inline-flex; align-items: center; gap: 7px; padding: 8px 13px; border-radius: 999px; background: var(--canvas); border: 1px solid var(--line-2); font-size: 13.5px; font-weight: 500; }
.badges .ic { color: var(--red); width: 16px; height: 16px; }
@media (max-width: 700px) {
  .tour-head { flex-direction: column; align-items: flex-start; }
  .tour-head-price { display: none; }
  .tour-sub { flex-direction: column; align-items: flex-start; gap: 2px; }
  .tour-sub .dot { display: none; }
  }
.nw { white-space: nowrap; }

.gallery { position: relative; display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 230px 230px; gap: 10px; margin-top: 26px; border-radius: var(--radius-lg); overflow: hidden; }
.g-item { position: relative; display: block; overflow: hidden; background: var(--canvas-2); }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2, .7, .2, 1), filter .3s; }
.g-item:hover img { transform: scale(1.04); filter: brightness(1.05); }
.g-main { grid-row: span 2; }
.g-hidden { display: none; }
.g-all {
  position: absolute; right: 16px; bottom: 16px; display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px;
  border-radius: 12px; border: 0; background: rgba(255, 255, 255, .96); font-weight: 600; font-size: 14px; box-shadow: var(--shadow);
}
.g-all:hover { background: #fff; color: var(--red); }
.g-note { display: flex; align-items: center; gap: 8px; margin-top: 12px; font-size: 13.5px; color: var(--muted); }
@media (max-width: 900px) {
  .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-rows: 280px 150px; }
  .g-main { grid-column: span 2; grid-row: auto; }
  .g-item:nth-child(n+4) { display: none; }
}
@media (max-width: 560px) {
  .gallery { grid-template-rows: 240px 120px; gap: 6px; border-radius: var(--radius); margin-inline: calc(var(--gutter) * -1 + 8px); }
}

.tour-layout { display: grid; grid-template-columns: minmax(0, 1fr) 390px; gap: clamp(32px, 4vw, 56px); align-items: start; }
.tour-aside { position: sticky; top: calc(var(--header-h) + 20px); }
@media (max-width: 1024px) {
  .tour-layout { grid-template-columns: minmax(0, 1fr); }
  .tour-aside { position: static; order: -1; }
}

.facts { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.facts > div { background: #fff; padding: 18px; display: flex; flex-direction: column; gap: 4px; }
.facts .ic { color: var(--red); width: 22px; height: 22px; margin-bottom: 6px; }
.facts > div > span { font-size: 12px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: var(--faint); }
.facts b { font-size: 14.5px; font-weight: 600; line-height: 1.35; }
@media (max-width: 1200px) and (min-width: 1025px) { .facts { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 760px) { .facts { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

.notice { display: flex; gap: 12px; margin-top: 24px; padding: 16px 18px; border-radius: var(--radius); background: #fff8e0; border: 1px solid #f3dc8a; color: #5c4700; font-size: 15px; }
.notice .ic { flex: none; color: #b58900; margin-top: 2px; }
.notice a { display: inline-flex; align-items: center; gap: 4px; font-weight: 600; color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.notice a .ic { color: currentColor; margin: 0; width: 15px; height: 15px; }

.block { padding-top: 40px; margin-top: 40px; border-top: 1px solid var(--line-2); }
.facts + .block, .notice + .block { border-top: 0; margin-top: 16px; }
.block h2 { font-size: clamp(1.4rem, 2.4vw, 1.75rem); margin-bottom: 14px; font-stretch: 106%; }
.block > p { color: var(--ink-2); font-size: 16.5px; }
.block > p + p { margin-top: 14px; }
.supplier-name { margin-top: 18px !important; font-size: 13.5px !important; color: var(--muted) !important; }
.supplier-name span { color: var(--ink-2); font-weight: 500; }

.list-check { display: grid; gap: 12px; }
.list-check li { display: flex; gap: 12px; font-size: 16px; }
.list-check .ic { flex: none; width: 24px; height: 24px; padding: 4px; margin-top: 1px; border-radius: 50%; background: var(--red); color: #fff; stroke-width: 3; }
.incl { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px 32px; }
.list-in, .list-out { display: grid; gap: 12px; align-content: start; }
.list-in li, .list-out li { display: flex; gap: 10px; font-size: 15.5px; }
.list-in .ic, .list-out .ic { flex: none; width: 21px; height: 21px; margin-top: 1px; }
.list-in .ic { color: var(--good); }
.list-out { color: var(--muted); }
.list-out .ic { color: #9aa0ac; }
@media (max-width: 640px) { .incl { grid-template-columns: minmax(0, 1fr); } }
.list-dot { display: grid; gap: 10px; }
.list-dot li { position: relative; padding-left: 22px; color: var(--ink-2); }
.list-dot li::before { content: ""; position: absolute; left: 4px; top: .62em; width: 7px; height: 7px; border-radius: 2px; background: var(--red); transform: rotate(45deg); }

.mini-parks { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 16px; }
.mini-park { display: flex; align-items: center; gap: 14px; padding: 10px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.mini-park img { width: 76px; height: 60px; object-fit: cover; border-radius: 10px; flex: none; }
.mini-park b { display: block; font-size: 15px; line-height: 1.3; }
.mini-park span { font-size: 13px; color: var(--muted); }
@media (max-width: 560px) { .mini-parks { grid-template-columns: minmax(0, 1fr); } }

.loc { display: flex; align-items: center; gap: 16px; padding: 18px; border-radius: var(--radius-lg); background: var(--canvas); border: 1px solid var(--line-2); }
.loc-ic { display: grid; place-items: center; flex: none; width: 48px; height: 48px; border-radius: 14px; background: #fff; color: var(--red); box-shadow: var(--shadow-sm); }
.loc b { display: block; }
.loc p { font-size: 14.5px; color: var(--muted); margin-top: 2px; }
.loc .btn { margin-left: auto; flex: none; }
@media (max-width: 640px) { .loc { flex-wrap: wrap; } .loc .btn { margin-left: 64px; } }

.block .faq { margin-top: 4px; }

/* ---------- booking card ---------- */
.book { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-xl); padding: 24px; box-shadow: var(--shadow); }
.book-top { padding-bottom: 18px; border-bottom: 1px solid var(--line-2); }
.book-kicker { font-size: 13px; color: var(--muted); }
.book-price { font-family: var(--font-display); font-stretch: 110%; font-weight: 800; letter-spacing: -.03em; line-height: 1.1; margin-top: 2px; }
.book-price small { font-size: 18px; color: var(--red); letter-spacing: 0; }
.book-price b { font-size: 40px; font-weight: 800; }
.book-price.is-na b { font-size: 26px; }
.book-note { font-size: 13.5px; color: var(--muted); margin-top: 4px; }

.book-addon { display: flex; align-items: flex-start; gap: 12px; margin-top: 16px; padding: 14px; border-radius: var(--radius); border: 1.5px dashed #e8b8b3; background: var(--red-50); cursor: pointer; transition: border-color .15s, background-color .15s; }
.book-addon:hover { border-color: var(--red); }
.book-addon input { position: absolute; opacity: 0; pointer-events: none; }
.book-addon-box { display: grid; place-items: center; flex: none; width: 22px; height: 22px; margin-top: 1px; border-radius: 7px; border: 2px solid #d6a19b; background: #fff; color: transparent; transition: all .15s; }
.book-addon-box .ic { width: 14px; height: 14px; stroke-width: 3.2; }
.book-addon input:checked + .book-addon-box { background: var(--red); border-color: var(--red); color: #fff; }
.book-addon input:focus-visible + .book-addon-box { outline: 2.5px solid var(--red); outline-offset: 2px; }
.book-addon b { display: block; font-size: 14.5px; }
.book-addon small { display: block; font-size: 12.5px; color: var(--muted); margin-top: 2px; }

.book-sec { padding-top: 18px; }
.book-label { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--faint); margin-bottom: 10px; }
.stepper-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 7px 0; }
.stepper-lbl b { display: block; font-size: 15px; font-weight: 600; }
.stepper-lbl small { font-size: 12.5px; color: var(--muted); }
.stepper { display: flex; align-items: center; gap: 4px; padding: 3px; border: 1px solid var(--line); border-radius: 12px; }
.stepper button { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 9px; border: 0; background: var(--canvas); color: var(--ink); transition: background-color .15s, color .15s; }
.stepper button:hover:not(:disabled) { background: var(--ink); color: #fff; }
.stepper button:disabled { opacity: .35; cursor: not-allowed; }
.stepper .ic { width: 16px; height: 16px; stroke-width: 2.4; }
.stepper output { min-width: 28px; text-align: center; font-weight: 700; font-variant-numeric: tabular-nums; }

.date-chips { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
.date-chip {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1px; min-height: 52px; padding: 6px 4px;
  border: 1.5px solid var(--line); border-radius: 12px; background: #fff; font-size: 13.5px; font-weight: 600; line-height: 1.2; text-align: center;
  transition: border-color .15s, background-color .15s, color .15s;
}
.date-chip small { font-size: 10.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--faint); }
.date-chip:hover:not(:disabled) { border-color: var(--ink); }
.date-chip[aria-pressed="true"] { border-color: var(--red); background: var(--red-50); color: var(--red); }
.date-chip[aria-pressed="true"] small { color: var(--red); }
.date-chip:disabled { opacity: .4; cursor: not-allowed; }
.date-chip .ic { width: 16px; height: 16px; color: var(--red); }
.date-input { display: block; margin-top: 8px; }
.date-input input { width: 100%; height: 46px; border: 1.5px solid var(--line); border-radius: 12px; padding: 0 12px; background: #fff; }
.date-input input:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 4px var(--red-50); }
.js .date-input { position: relative; height: 0; margin: 0; overflow: hidden; }
.js .show-date .date-input { height: auto; margin-top: 8px; overflow: visible; }

.book-sum { margin: 20px 0 16px; padding: 14px 16px; border-radius: var(--radius); background: var(--canvas); font-size: 14px; }
.book-sum:empty { display: none; }
.sum-row { display: flex; justify-content: space-between; gap: 12px; padding: 3px 0; color: var(--ink-2); }
.sum-row span:last-child { font-variant-numeric: tabular-nums; white-space: nowrap; }
.sum-total { margin-top: 8px; padding-top: 10px; border-top: 1px dashed #d8d5cd; font-weight: 700; color: var(--ink); font-size: 16px; align-items: baseline; }
.sum-total span:last-child { font-family: var(--font-display); font-stretch: 108%; font-size: 22px; font-weight: 800; letter-spacing: -.02em; }
.sum-date { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: 13px; margin-bottom: 8px; }
.sum-date .ic { width: 15px; height: 15px; color: var(--red); }
.book .btn + .btn { margin-top: 10px; }
.book-facts { display: grid; gap: 9px; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line-2); font-size: 13px; color: var(--muted); }
.book-facts li { display: flex; align-items: flex-start; gap: 9px; }
.book-facts .ic { width: 16px; height: 16px; color: var(--ink-2); margin-top: 1px; }
.book-facts b { color: var(--ink); font-weight: 600; }
@media (max-width: 1024px) { .book { max-width: 620px; } }
@media (max-width: 560px) { .book { padding: 20px 16px; border-radius: var(--radius-lg); } }

/* mobile booking bar */
.mbar { display: none; }
@media (max-width: 1024px) {
  .has-mbar { padding-bottom: 76px; }
  .mbar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 40; display: flex; align-items: center; justify-content: space-between; gap: 16px;
    padding: 12px var(--gutter) calc(12px + env(safe-area-inset-bottom)); background: rgba(255, 255, 255, .97);
    border-top: 1px solid var(--line); box-shadow: 0 -10px 30px -18px rgba(18, 20, 28, .4);
    transform: translateY(0); transition: transform .25s;
  }
  .mbar.is-hidden { transform: translateY(110%); }
  .mbar-price { font-family: var(--font-display); font-stretch: 108%; font-weight: 800; letter-spacing: -.02em; }
  .mbar-price b { font-size: 24px; }
  .mbar-price small { color: var(--red); font-size: 13px; }
  .mbar-price span { font-family: var(--font); font-weight: 500; font-size: 13px; color: var(--muted); margin-left: 4px; letter-spacing: 0; }
}

/* ---------- lightbox ---------- */
.lightbox { width: 100vw; height: 100vh; max-width: none; max-height: none; margin: 0; padding: 0; border: 0; background: transparent; color: #fff; }
.lightbox::backdrop { background: rgba(8, 9, 13, .92); }
html:has(.lightbox[open]) { overflow: hidden; }
.lightbox[open] { display: flex; align-items: center; justify-content: center; }
.lightbox figure { display: flex; flex-direction: column; align-items: center; max-width: min(1200px, 88vw); }
.lightbox img { max-width: 100%; max-height: 80vh; width: auto; height: auto; border-radius: 12px; }
.lightbox figcaption { margin-top: 14px; font-size: 13.5px; color: #c5c8d0; text-align: center; }
.lb-btn { position: absolute; display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; border: 0; background: rgba(255, 255, 255, .12); color: #fff; transition: background-color .15s; }
.lb-btn:hover { background: rgba(255, 255, 255, .25); }
.lb-btn .ic { width: 24px; height: 24px; }
.lb-close { top: 20px; right: 20px; }
.lb-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 20px; top: 50%; transform: translateY(-50%); }
@media (max-width: 640px) { .lb-prev, .lb-next { top: auto; bottom: 24px; transform: none; } .lb-prev { left: calc(50% - 60px); } .lb-next { right: calc(50% - 60px); } .lightbox figure { max-width: 96vw; } }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(28px, 4vw, 56px); align-items: start; }
.contact-cards { display: grid; gap: 14px; }
.ccard { position: relative; display: flex; align-items: flex-start; gap: 16px; padding: 20px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; transition: border-color .2s, box-shadow .2s; }
a.ccard:hover { border-color: transparent; box-shadow: var(--shadow); }
.ccard-ic { display: grid; place-items: center; flex: none; width: 48px; height: 48px; border-radius: 14px; background: var(--red-50); color: var(--red); }
.ccard-ic--wa { background: #e5f5ec; color: var(--wa); }
.ccard-ic .ic { width: 22px; height: 22px; }
.ccard b { display: block; font-size: 16px; }
.ccard > div > span { display: block; color: var(--ink-2); margin-top: 2px; word-break: break-word; }
.ccard small { display: block; color: var(--muted); font-size: 13px; margin-top: 2px; }
.ccard-go { position: absolute; right: 18px; top: 20px; color: var(--faint); }
a.ccard:hover .ccard-go { color: var(--red); }
.form-card { padding: clamp(22px, 3vw, 36px); border: 1px solid var(--line); border-radius: var(--radius-xl); background: #fff; box-shadow: var(--shadow); }
.form-card h2 { font-size: 26px; }
.form-card > p { margin-top: 6px; margin-bottom: 22px; }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.field label { font-size: 14px; font-weight: 600; }
.field input, .field select, .field textarea {
  width: 100%; min-height: 48px; padding: 10px 14px; border: 1.5px solid var(--line); border-radius: 12px; background: #fff;
  transition: border-color .15s, box-shadow .15s;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 4px var(--red-50); }
.field-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 14px; }
.field-row--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.form-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
.form-actions .btn { flex: 1 1 200px; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: minmax(0, 1fr); } }
@media (max-width: 520px) { .field-row, .field-row--3 { grid-template-columns: minmax(0, 1fr); } }

/* ---------- credits ---------- */
.credits { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 14px; }
.credit { display: flex; align-items: center; gap: 14px; padding: 12px; border: 1px solid var(--line); border-radius: var(--radius); font-size: 13.5px; }
.credit img { width: 84px; height: 64px; object-fit: cover; border-radius: 10px; flex: none; }
.credit b { display: block; font-size: 14px; line-height: 1.3; }
.credit span { display: block; color: var(--muted); }
.credit a { text-decoration: underline; text-underline-offset: 2px; }
.credit a:hover { color: var(--red); }

/* ---------- 404 ---------- */
.nf { min-height: 56vh; display: grid; place-items: center; text-align: center; }
.nf h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); letter-spacing: -.03em; }
.nf .lead { margin-inline: auto; }
.nf .hero-ctas { justify-content: center; }
.nf .eyebrow::before { display: none; }
