/* ==========================================================================
   Midwest Air Link — light premium redesign
   An NX Aviation company · Beechcraft Baron 58 charter
   Palette: warm paper + ink + signal red.  Type: Sora / Inter
   ========================================================================== */

:root {
  --ink: #15181d;          /* headings / strong text */
  --text: #3b414b;         /* body text */
  --muted: #5a616c;        /* secondary text — AA on white, bone & bone-2 */
  --paper: #ffffff;
  --bone: #f7f5f1;         /* warm light section */
  --bone-2: #efece4;       /* deeper warm (footer, fills) */
  --line: #e7e3db;         /* hairlines */
  --line-2: #dcd7cd;
  --red: #c8362b;
  --red-2: #a92a20;        /* small text / eyebrows (AA on light) */
  --amber: #e0922f;        /* decorative warm accent (non-text) */

  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 26px;
  --shadow-sm: 0 2px 10px rgba(21, 24, 29, .05);
  --shadow: 0 16px 40px rgba(21, 24, 29, .10);
  --shadow-lg: 0 34px 80px rgba(21, 24, 29, .16);

  --display: "Sora", "Inter", system-ui, sans-serif;
  --body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono: ui-monospace, "SF Mono", "JetBrains Mono", Menlo, monospace;

  --header-h: 78px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  font-family: var(--body);
  font-size: 1.02rem;
  line-height: 1.68;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

.container { width: min(1200px, 100% - 48px); margin-inline: auto; }
.container--narrow { width: min(900px, 100% - 48px); margin-inline: auto; }
@media (max-width: 560px) { .container, .container--narrow { width: calc(100% - 36px); } }

/* ---------- typography ---------- */

h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--ink);
  line-height: 1.07;
  letter-spacing: -0.02em;
  font-weight: 700;
}
h1 { font-size: clamp(2.5rem, 5.4vw, 4.3rem); }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.95rem); }
h3 { font-size: 1.32rem; letter-spacing: -0.01em; }
h4 { font-size: 1.05rem; }

p { text-wrap: pretty; }
.lede { font-size: clamp(1.08rem, 1.7vw, 1.28rem); line-height: 1.55; color: var(--text); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--body);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--red-2);
}
.eyebrow::before { content: ""; width: 30px; height: 2px; background: currentColor; opacity: .85; }
.eyebrow.center { justify-content: center; }

.accent { color: var(--red); }

/* ---------- section scaffolding ---------- */

.section { padding: clamp(64px, 8.5vw, 116px) 0; }
.section--bone { background: var(--bone); }
.section--tint { background: linear-gradient(180deg, var(--bone), var(--paper)); }

.section-head { max-width: 680px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { margin-top: 16px; }
.section-head p { margin-top: 16px; color: var(--muted); font-size: 1.08rem; }

/* ---------- buttons ---------- */

.btn {
  --bg: var(--red); --fg: #fff; --bd: var(--red);
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 28px; border-radius: 999px;
  border: 1.5px solid var(--bd); background: var(--bg); color: var(--fg);
  font-family: var(--display); font-weight: 600; font-size: .96rem; letter-spacing: -.01em;
  text-decoration: none; cursor: pointer;
  transition: transform .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
  white-space: nowrap;
}
.btn svg { transition: transform .2s var(--ease); }
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(200, 54, 43, .28); }
.btn:hover svg { transform: translateX(3px); }
.btn--red:hover { --bg: var(--red-2); --bd: var(--red-2); }
.btn--ghost { --bg: transparent; --fg: var(--ink); --bd: var(--line-2); }
.btn--ghost:hover { --bg: var(--ink); --fg: #fff; --bd: var(--ink); box-shadow: none; }
.btn--ghost-light { --bg: rgba(255,255,255,.08); --fg: #fff; --bd: rgba(255,255,255,.55); }
.btn--ghost-light:hover { --bg: rgba(255,255,255,.18); --bd: #fff; box-shadow: none; }

.textlink {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--display); font-weight: 600; font-size: .96rem;
  color: var(--red-2); text-decoration: none;
}
.textlink svg { transition: transform .2s var(--ease); }
.textlink:hover svg { transform: translateX(4px); }

/* ---------- skip link ---------- */
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 300; background: var(--ink); color: #fff; padding: 12px 20px; border-radius: 0 0 10px 0; }
.skip-link:focus { left: 0; }

/* ---------- header ---------- */

.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--header-h);
  display: flex; align-items: center;
  background: rgba(255, 255, 255, .86);
  backdrop-filter: blur(14px) saturate(1.3);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  border-bottom: 1px solid var(--line);
  transition: background .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; width: min(1280px, 100% - 48px); }
.site-header.is-solid {
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 6px 26px rgba(21, 24, 29, .08);
}

.brand { display: inline-flex; align-items: center; gap: 13px; text-decoration: none; flex-shrink: 0; color: var(--ink); }
.brand-logo {
  display: inline-flex; align-items: center; gap: 1px;
  font-family: var(--display); font-weight: 800; font-size: 1.5rem; line-height: 1;
  letter-spacing: -.04em; padding: 7px 11px; border-radius: 9px;
  background: var(--ink); color: #fff;
}
.brand-logo b { color: #fff; font-weight: 800; }
.brand-logo .r { color: #ff6b5e; }
.brand-word { font-family: var(--display); font-weight: 700; font-size: 1.12rem; letter-spacing: -.02em; color: var(--ink); }
.brand-word .r { color: var(--red); }
@media (max-width: 420px) { .brand-word { display: none; } }

.nav { display: flex; align-items: center; gap: clamp(6px, 1.4vw, 22px); }
.nav-link {
  position: relative;
  font-family: var(--body); font-size: .93rem; font-weight: 500;
  color: var(--ink); text-decoration: none;
  padding: 8px 4px; background: none; border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 5px;
  transition: color .18s var(--ease);
}
.nav-link:hover, .nav-link[aria-current="page"] { color: var(--red); }
.nav-link[aria-current="page"]::after { content: ""; position: absolute; left: 4px; right: 4px; bottom: 0; height: 2px; background: var(--red); border-radius: 2px; }

.nav-group { position: relative; }
.nav-group > .nav-link svg { transition: transform .2s var(--ease); }
.nav-group:hover > .nav-link svg, .nav-group:focus-within > .nav-link svg { transform: rotate(180deg); }
.nav-menu {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 250px; background: #fff;
  border: 1px solid var(--line); border-radius: 14px;
  padding: 10px; box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
}
/* transparent hover bridge so the menu doesn't close in the gap below the link */
.nav-menu::before { content: ""; position: absolute; left: 0; right: 0; top: -14px; height: 14px; }
.nav-group:hover .nav-menu, .nav-group:focus-within .nav-menu { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.nav-menu a { display: flex; gap: 12px; align-items: center; padding: 11px 12px; border-radius: 10px; text-decoration: none; color: var(--ink); transition: background .15s var(--ease); }
.nav-menu a:hover { background: var(--bone); }
.nav-menu .nm-title { font-family: var(--display); font-weight: 600; font-size: .96rem; }
.nav-menu .nm-sub { display: block; font-size: .78rem; color: var(--muted); font-weight: 400; }
.nav-menu .nm-ico { width: 38px; height: 38px; border-radius: 9px; background: rgba(200,54,43,.1); color: var(--red); display: grid; place-items: center; flex-shrink: 0; }

.nav-cta {
  margin-left: 6px; display: inline-flex; align-items: center; gap: 8px;
  background: var(--red); color: #fff; text-decoration: none;
  font-family: var(--display); font-weight: 600; font-size: .9rem;
  padding: 11px 20px; border-radius: 999px; white-space: nowrap;
  transition: background .18s var(--ease), transform .18s var(--ease);
}
.nav-cta:hover { background: var(--red-2); transform: translateY(-1px); }

.nav-phone { display: inline-flex; align-items: center; gap: 7px; font-family: var(--display); font-weight: 600; font-size: .92rem; color: var(--ink); text-decoration: none; white-space: nowrap; transition: color .15s var(--ease); }
.nav-phone svg { color: var(--red); }
.nav-phone:hover { color: var(--red); }

.menu-toggle { display: none; background: none; border: none; color: var(--ink); cursor: pointer; padding: 8px; margin: -8px; }

@media (max-width: 1040px) {
  .menu-toggle { display: inline-flex; }
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff;
    padding: 14px 22px 26px; max-height: calc(100vh - var(--header-h)); overflow-y: auto;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow-lg);
    transform: translateY(-12px); opacity: 0; visibility: hidden;
    transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
  }
  .nav.is-open { transform: none; opacity: 1; visibility: visible; }
  .nav-link { font-size: 1.06rem; padding: 16px 4px; border-bottom: 1px solid var(--line); justify-content: space-between; }
  .nav-link[aria-current="page"]::after { display: none; }
  .nav-group { position: static; }
  .nav-menu { position: static; transform: none; opacity: 1; visibility: visible; pointer-events: auto; background: none; border: none; box-shadow: none; padding: 0 0 8px 8px; min-width: 0; display: none; }
  .nav-group.open .nav-menu { display: block; }
  .nav-group.open > .nav-link svg { transform: rotate(180deg); }
  .nav-phone { padding: 16px 4px; border-bottom: 1px solid var(--line); justify-content: flex-start; font-size: 1.05rem; }
  .nav-cta { margin: 18px 0 0; justify-content: center; padding: 15px; font-size: 1rem; }
}

/* ---------- hero (page-wide photo, warm fade) ---------- */

.hero {
  position: relative; min-height: min(92vh, 900px);
  display: flex; align-items: flex-end;
  color: #fff; isolation: isolate; overflow: hidden;
  padding-top: var(--header-h);
}
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 60% center; }
/* warm tonal scrim — toasted browns/amber rather than flat black, fading at top */
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(to top, rgba(28,17,10,.88) 0%, rgba(34,21,13,.52) 34%, rgba(40,26,16,.16) 60%, rgba(40,26,16,.05) 100%),
    linear-gradient(105deg, rgba(24,15,10,.55) 0%, rgba(24,15,10,.12) 48%, rgba(255,170,80,.10) 100%);
}
/* soft fade into the page below */
.hero::before {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 120px; z-index: -1;
  background: linear-gradient(to top, var(--paper), rgba(255,255,255,0));
  opacity: .14; pointer-events: none;
}
.hero-inner { padding-bottom: clamp(52px, 7.5vw, 104px); max-width: 760px; }
.hero .eyebrow { color: #f4c07a; }
.hero .eyebrow::before { background: #f4c07a; }
.hero h1 { color: #fff; margin-top: 20px; text-shadow: 0 2px 30px rgba(0,0,0,.4); }
.hero h1 .accent { color: #ffc36b; }
.hero .lede { margin-top: 22px; color: rgba(255,255,255,.92); max-width: 580px; text-shadow: 0 1px 18px rgba(0,0,0,.35); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: clamp(20px, 3vw, 44px); margin-top: 40px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.22); }
.hero-trust div strong { font-family: var(--display); font-weight: 700; font-size: 1.5rem; color: #fff; display: block; line-height: 1; }
.hero-trust div strong .u { font-size: .9rem; color: #ffc36b; margin-left: 2px; }
.hero-trust div span { font-size: .82rem; color: rgba(255,255,255,.78); }
@media (max-width: 680px) { .hero { min-height: 88vh; } }

/* ---------- page hero (inner, light band) ---------- */

.page-hero { background: linear-gradient(170deg, var(--bone), var(--paper)); padding-top: calc(var(--header-h) + clamp(40px, 6vw, 84px)); padding-bottom: clamp(36px, 5vw, 64px); }
.page-hero .eyebrow { color: var(--red-2); }
.page-hero h1 { margin-top: 16px; max-width: 18ch; }
.page-hero p { margin-top: 18px; max-width: 600px; color: var(--text); font-size: 1.12rem; }

/* ---------- value props ---------- */

.props { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .props { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; } }
.prop { padding: 6px 4px; }
.prop .prop-ico { width: 52px; height: 52px; border-radius: 13px; background: linear-gradient(140deg, rgba(200,54,43,.12), rgba(224,146,47,.16)); color: var(--red); display: grid; place-items: center; margin-bottom: 20px; }
.prop h3 { margin-bottom: 9px; }
.prop p { color: var(--muted); font-size: .98rem; }

/* ---------- split feature ---------- */

.feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 5vw, 80px); align-items: center; }
@media (max-width: 920px) { .feature { grid-template-columns: 1fr; } }
.feature + .feature { margin-top: clamp(56px, 8vw, 100px); }
.feature.flip > .feature-media { order: 2; }
@media (max-width: 920px) { .feature.flip > .feature-media { order: 0; } }
.feature-media { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4 / 3; }
.feature-media img { width: 100%; height: 100%; object-fit: cover; }
.feature-copy h2 { margin-top: 16px; }
.feature-copy p { margin-top: 17px; color: var(--muted); }
.feature-copy .btn, .feature-copy .textlink { margin-top: 26px; }

.checklist { margin-top: 22px; list-style: none; display: grid; gap: 13px; }
.checklist li { display: flex; gap: 13px; align-items: flex-start; color: var(--text); }
.checklist li::before {
  content: ""; flex-shrink: 0; width: 22px; height: 22px; margin-top: 2px; border-radius: 50%;
  background: var(--red);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="3"><path d="M5 13l4 4 10-10"/></svg>') center / 13px no-repeat;
          mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="3"><path d="M5 13l4 4 10-10"/></svg>') center / 13px no-repeat;
}

/* ---------- service / photo cards ---------- */

.svc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
@media (max-width: 880px) { .svc-grid { grid-template-columns: 1fr; } }
.svc-card { position: relative; display: block; border-radius: var(--radius); overflow: hidden; text-decoration: none; color: #fff; min-height: 420px; isolation: isolate; box-shadow: var(--shadow-sm); }
.svc-card img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.svc-card:hover img { transform: scale(1.05); }
.svc-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(to top, rgba(15,18,23,.9), rgba(15,18,23,.08) 64%); }
.svc-card .svc-body { position: absolute; inset: auto 0 0 0; padding: 32px; }
.svc-card h3 { color: #fff; font-size: 1.6rem; }
.svc-card p { margin-top: 10px; color: rgba(255,255,255,.88); max-width: 440px; }
.svc-card .textlink { margin-top: 16px; color: #ffd9a0; }

/* ---------- fleet card (light) ---------- */

.fleet-card { display: grid; grid-template-columns: 1.15fr 1fr; gap: 0; align-items: stretch; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
@media (max-width: 860px) { .fleet-card { grid-template-columns: 1fr; } }
.fleet-card .fc-media { position: relative; min-height: 360px; }
.fleet-card .fc-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.fleet-card .fc-body { padding: clamp(28px, 4vw, 48px); display: flex; flex-direction: column; justify-content: center; }
.fleet-card .fc-body h3 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
.fleet-card .fc-tag { color: var(--red-2); font-family: var(--body); font-weight: 600; letter-spacing: .04em; font-size: .85rem; margin-bottom: 8px; }
.fleet-card .fc-body p { color: var(--muted); margin-top: 12px; }
.fleet-card .fc-mini { display: flex; flex-wrap: wrap; gap: 26px; margin: 24px 0 28px; }
.fleet-card .fc-mini div strong { font-family: var(--display); font-weight: 700; font-size: 1.5rem; color: var(--ink); display: block; line-height: 1; }
.fleet-card .fc-mini div span { font-size: .76rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }

/* ---------- stat band (light) ---------- */

.statband { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 760px) { .statband { grid-template-columns: 1fr 1fr; } }
.statband .stat { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px; box-shadow: var(--shadow-sm); }
.statband .stat strong { font-family: var(--display); font-weight: 700; font-size: clamp(2rem, 3.4vw, 2.7rem); color: var(--ink); display: block; line-height: 1; letter-spacing: -.02em; }
.statband .stat strong .u { font-size: .9rem; color: var(--red); font-weight: 600; margin-left: 4px; letter-spacing: 0; }
.statband .stat span { display: block; margin-top: 8px; font-size: .85rem; color: var(--muted); }

/* ---------- team credentials ---------- */

.creds { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 8px; }
@media (max-width: 860px) { .creds { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .creds { grid-template-columns: 1fr; } }
.cred { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 22px; box-shadow: var(--shadow-sm); }
.cred .cred-ico { width: 44px; height: 44px; border-radius: 11px; background: rgba(200,54,43,.1); color: var(--red); display: grid; place-items: center; margin-bottom: 16px; }
.cred h3 { font-size: 1.05rem; margin-bottom: 6px; }
.cred p { font-size: .92rem; color: var(--muted); }

.pillars { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.pillars .pill { display: inline-flex; align-items: center; gap: 9px; background: var(--bone); border: 1px solid var(--line); border-radius: 999px; padding: 10px 18px; font-family: var(--display); font-weight: 600; font-size: .95rem; color: var(--ink); }
.pillars .pill::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--red); }

/* ---------- cabin gallery (baron page) ---------- */
.cabin-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cabin-grid figure { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.cabin-grid figure img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cabin-grid figure:not(.tall) { aspect-ratio: 16 / 10; }
.cabin-grid .tall { grid-row: span 2; }
@media (max-width: 640px) { .cabin-grid { grid-template-columns: 1fr; } .cabin-grid .tall { grid-row: auto; aspect-ratio: 4 / 3; } }

/* ---------- spec table ---------- */

.specs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 56px; }
@media (max-width: 720px) { .specs { grid-template-columns: 1fr; } }
.specs .row { display: flex; justify-content: space-between; gap: 18px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.specs .row dt { color: var(--muted); font-size: .96rem; }
.specs .row dd { font-family: var(--display); font-weight: 600; color: var(--ink); text-align: right; }

/* ---------- range map (light) ---------- */

.rangemap { display: grid; grid-template-columns: 1.25fr 1fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
@media (max-width: 920px) { .rangemap { grid-template-columns: 1fr; } }
.rangemap-figure { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow-sm); }
.rangemap-figure svg { width: 100%; height: auto; display: block; }
.rangemap-legend { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line); }
.rangemap-legend .lg { display: inline-flex; align-items: center; gap: 8px; font-size: .82rem; color: var(--muted); }
.rangemap-legend .dot { width: 12px; height: 12px; border-radius: 50%; }
.rangelist { list-style: none; display: grid; gap: 14px; margin-top: 24px; }
.rangelist li { display: flex; justify-content: space-between; gap: 16px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.rangelist li b { font-family: var(--display); color: var(--ink); font-weight: 600; }
.rangelist li span { color: var(--muted); font-family: var(--mono); font-size: .9rem; }

/* ---------- destinations ---------- */

.dest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 880px) { .dest-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .dest-grid { grid-template-columns: 1fr; } }
.dest { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 3; isolation: isolate; box-shadow: var(--shadow-sm); }
.dest img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.dest:hover img { transform: scale(1.06); }
.dest::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,18,23,.78), transparent 58%); }
.dest .meta { position: absolute; left: 20px; bottom: 16px; z-index: 1; color: #fff; }
.dest .meta small { display: block; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.8); }
.dest .meta strong { font-family: var(--display); font-size: 1.25rem; font-weight: 600; }

/* ---------- destination gem tiles ---------- */
.gem-cat + .gem-cat { margin-top: clamp(40px, 5vw, 64px); }
.gem-cat-head { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.gem-cat-head .ico { width: 40px; height: 40px; flex-shrink: 0; border-radius: 11px; background: rgba(200,54,43,.1); color: var(--red); display: grid; place-items: center; }
.gem-cat-head h2 { font-size: 1.25rem; }
.gem-cat-head .count { margin-left: auto; font-size: .82rem; color: var(--muted); }
.gem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 900px) { .gem-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .gem-grid { grid-template-columns: 1fr; } }
.gem { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 0; overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .2s var(--ease), box-shadow .2s var(--ease); display: flex; flex-direction: column; }
.gem:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.gem-img { aspect-ratio: 16 / 10; background: linear-gradient(135deg, var(--bone-2), #e4dbcb); overflow: hidden; }
.gem-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gem:hover .gem-img img { transform: scale(1.05); }
.gem-body { padding: 18px 20px 16px; display: flex; flex-direction: column; flex: 1; }
.gem .gem-top { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; }
.gem h3 { font-size: 1.1rem; }
.gem .st { font-size: .78rem; font-weight: 600; color: var(--muted); letter-spacing: .04em; }
.gem p { color: var(--muted); font-size: .92rem; margin-top: 8px; line-height: 1.55; }
.gem .meta { display: flex; gap: 16px; align-items: center; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line); font-size: .82rem; }
.gem .meta .code { font-family: var(--mono); color: var(--ink); font-weight: 600; letter-spacing: .02em; }
.gem .meta .nm { color: var(--red-2); font-weight: 600; }
.credits { margin-top: clamp(40px, 5vw, 60px); font-size: .82rem; color: var(--muted); border-top: 1px solid var(--line); padding-top: 18px; }
.credits summary { cursor: pointer; font-family: var(--display); font-weight: 600; color: var(--text); }
.credits p { margin: 12px 0; max-width: 70ch; }
.credits ul { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 4px 28px; }
@media (max-width: 640px) { .credits ul { grid-template-columns: 1fr; } }
.credits li b { color: var(--text); font-weight: 600; }

/* ---------- testimonials ---------- */

.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .quotes { grid-template-columns: 1fr; } }
.quote-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 30px; display: flex; flex-direction: column; gap: 16px; box-shadow: var(--shadow-sm); }
.quote-card .stars { color: var(--red); letter-spacing: 3px; font-size: .9rem; }
.quote-card blockquote { font-size: 1rem; color: var(--text); flex: 1; line-height: 1.6; }
.quote-card cite { font-style: normal; font-family: var(--display); font-weight: 600; font-size: .9rem; color: var(--ink); }

.quote-full { background: var(--paper); border: 1px solid var(--line); border-left: 4px solid var(--red); border-radius: var(--radius); padding: clamp(28px, 4vw, 46px); margin-bottom: 24px; box-shadow: var(--shadow-sm); }
.quote-full blockquote p { margin-bottom: 14px; color: var(--text); }
.quote-full blockquote p:last-child { margin-bottom: 0; }
.quote-full cite { display: block; margin-top: 18px; font-style: normal; font-family: var(--display); font-weight: 600; color: var(--ink); }

/* ---------- CTA band (light) ---------- */

.cta-band { background: linear-gradient(160deg, var(--bone-2), var(--bone)); text-align: center; padding: clamp(64px, 9vw, 108px) 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.cta-band .eyebrow { color: var(--red-2); }
.cta-band h2 { margin-top: 16px; }
.cta-band p { max-width: 560px; margin: 16px auto 0; color: var(--muted); font-size: 1.1rem; }
.cta-band .actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }

/* ---------- FAQ ---------- */

.faq-list { max-width: 820px; }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list details:first-child { border-top: 1px solid var(--line); }
.faq-list summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 24px 4px; font-family: var(--display); font-weight: 600; font-size: 1.12rem; color: var(--ink); }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: ""; flex-shrink: 0; width: 22px; height: 22px; background: var(--red); -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2.4"><path d="M12 5v14M5 12h14"/></svg>') center / 18px no-repeat; mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2.4"><path d="M12 5v14M5 12h14"/></svg>') center / 18px no-repeat; transition: transform .25s var(--ease); }
.faq-list details[open] summary::after { transform: rotate(135deg); }
.faq-list .answer { padding: 0 4px 26px; color: var(--text); }
.faq-list .answer p + p { margin-top: 12px; }

/* ---------- forms ---------- */

.form-shell { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(26px, 4vw, 44px); box-shadow: var(--shadow); }
.quote-embed { min-height: 440px; }
.quote-embed iframe { width: 100%; border: 0; }
.quote-embed noscript p { color: var(--muted); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } .form-grid .full { grid-column: auto; } }
fieldset.field { border: none; padding: 0; margin: 0; min-inline-size: 0; }
.field label, .field legend { display: block; font-family: var(--display); font-weight: 600; font-size: .88rem; color: var(--ink); margin-bottom: 8px; padding: 0; }
.field label .req { color: var(--red); }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 15px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: #fff; font-family: var(--body); font-size: .97rem; color: var(--ink);
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(200,54,43,.13); }
.field .hint { font-size: .82rem; color: var(--muted); margin-top: 6px; }
.radio-row { display: flex; gap: 22px; padding-top: 4px; }
.radio-row label { display: inline-flex; align-items: center; gap: 8px; font-family: var(--body); font-weight: 400; font-size: .95rem; color: var(--text); margin: 0; cursor: pointer; }
.radio-row input { width: auto; accent-color: var(--red); }
.form-section-title { grid-column: 1 / -1; font-family: var(--display); font-weight: 600; font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--red-2); border-top: 1px solid var(--line); padding-top: 24px; margin-top: 8px; }
.form-section-title:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.form-note { font-size: .86rem; color: var(--muted); margin-top: 18px; }

/* ---------- contact ---------- */

.contact-grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.info-card { display: flex; gap: 16px; align-items: flex-start; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; background: var(--paper); margin-bottom: 16px; box-shadow: var(--shadow-sm); }
.info-card .ico { flex-shrink: 0; width: 46px; height: 46px; border-radius: 12px; background: rgba(200,54,43,.1); color: var(--red); display: grid; place-items: center; }
.info-card h3 { font-size: 1.05rem; }
.info-card p, .info-card a { font-size: .96rem; color: var(--text); text-decoration: none; }
.info-card a:hover { color: var(--red); }
.info-card .sub { color: var(--muted); font-size: .85rem; margin-top: 2px; }

/* ---------- thanks ---------- */
.thanks-hero { min-height: 72vh; display: grid; place-items: center; text-align: center; padding: 120px 24px 80px; background: linear-gradient(170deg, var(--bone), var(--paper)); }
.thanks-hero .ico { width: 76px; height: 76px; margin: 0 auto 24px; border-radius: 50%; background: rgba(200,54,43,.1); color: var(--red); display: grid; place-items: center; }

/* ---------- footer (light) ---------- */

.site-footer { background: var(--bone-2); color: var(--text); padding: 72px 0 0; font-size: .94rem; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.2fr; gap: 44px; padding-bottom: 50px; }
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .wordmark { font-family: var(--display); font-weight: 800; font-size: 1.3rem; color: var(--ink); text-decoration: none; letter-spacing: -.02em; display: inline-block; margin-bottom: 14px; }
.footer-brand .wordmark span { color: var(--red); }
.footer-brand p { max-width: 320px; line-height: 1.6; color: var(--muted); }
.footer-brand .nx { margin-top: 14px; font-size: .85rem; color: var(--text); }
.footer-brand .nx a { color: var(--red-2); text-decoration: none; font-weight: 600; }
.footer-brand .nx a:hover { text-decoration: underline; }
.site-footer h2 { color: var(--ink); font-size: .8rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 18px; }
.site-footer .col a { display: block; color: var(--text); text-decoration: none; padding: 6px 0; transition: color .15s var(--ease); }
.site-footer .col a:hover { color: var(--red-2); }
.site-footer address { font-style: normal; line-height: 1.9; color: var(--text); }
.site-footer address a { color: var(--text); text-decoration: none; }
.site-footer address a:hover { color: var(--red-2); }
.footer-bottom { border-top: 1px solid var(--line); padding: 24px 0; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: .84rem; color: var(--muted); }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }
