/* =========================================================================
   CHOCOVALET — DESIGN SYSTEM
   1. Reset
   2. Design tokens (mobile-first, desktop overrides at breakpoints)
   3. Base elements
   4. Layout / utility
   5. Components (header, nav, hero, cards, form, ticket, faq, footer, floating bar)
   6. Responsive breakpoints: 480 / 768 / 1024 / 1280
   ========================================================================= */

/* ---------------------------------------------------------------------
   1. RESET
   --------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-behavior: smooth; }
html, body { height: 100%; }
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, svg, video { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; color: inherit; letter-spacing: inherit; }
button { background: none; border: none; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
table { border-collapse: collapse; width: 100%; }
fieldset { border: none; }
legend { padding: 0; }
h1, h2, h3, h4, h5, h6 { font-weight: inherit; font-size: inherit; }
:focus-visible { outline: 2px solid var(--sky-600); outline-offset: 2px; }

/* ---------------------------------------------------------------------
   2. DESIGN TOKENS — mobile-first defaults
   --------------------------------------------------------------------- */
:root {
  /* --- Color: 6 named hex values --- */
  --navy-950: #0B1B2B;   /* primary dark / headings / header bg */
  --sky-500:  #17ABDB;   /* primary accent — brand blue */
  --sky-600:  #0E8FBD;   /* accent hover / active */
  --sand-100: #F5F0E6;   /* warm surface — fare card */
  --coral-500:#FF7A45;   /* secondary accent — numbers, alerts */
  --gray-50:  #F3F6F8;   /* page background */

  --gray-100: #E6EBEF;
  --gray-200: #D7DEE5;
  --gray-400: #98A5B3;
  --gray-500: #64748B;
  --gray-700: #33434F;
  --gray-900: #14212F;
  --white: #FFFFFF;

  --success-500:#2AA96A;

  /* --- Typography --- */
  --font-body: 'PretendardVariable', 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-num:  'Space Grotesk', var(--font-body);

  /* Font sizes — mobile floor is 13px, base body is 15px per spec */
  --fs-2xs: 13px;
  --fs-xs:  14px;
  --fs-sm:  14px;
  --fs-base:15px;
  --fs-md:  17px;
  --fs-lg:  20px;
  --fs-xl:  25px;
  --fs-2xl: 32px;
  --fs-3xl: 40px;

  --lh-tight: 1.2;
  --lh-normal: 1.5;
  --lh-loose: 1.7;

  /* --- Spacing scale (mobile) --- */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 24px;
  --sp-6: 32px;
  --sp-7: 48px;
  --sp-8: 64px;

  /* --- Radius / shadow / motion --- */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 8px rgba(11,27,43,0.06);
  --shadow-md: 0 8px 24px rgba(11,27,43,0.10);
  --shadow-lg: 0 16px 40px rgba(11,27,43,0.16);

  --ease: cubic-bezier(.4,0,.2,1);
  --dur-fast: .15s;
  --dur-base: .25s;

  /* --- Layout --- */
  --container-w: 1200px;
  --container-pad: 20px;
  --header-h: 60px;
  --floating-bar-h: 60px;

  /* Page rhythm: section-to-section / content inside a section */
  --section-space: var(--sp-7);
  --section-content-space: var(--sp-6);
}

body[data-brand="cookie"] {
  --sky-500: #0ac36d;
  --sky-600: #079f59;
  --sand-100: #edfdf5;
}

body[data-brand="choco"] {
  --sky-500: #fdaa07;
  --sky-600: #dd9000;
  --sand-100: #fff7e8;
}

body[data-brand="toy"] {
  --sky-500: #00c9b5;
  --sky-600: #00a795;
  --sand-100: #edfffc;
}

/* Desktop token overrides — exact values, not fluid interpolation */
@media (min-width: 768px) {
  :root {
    --fs-2xs: 13px;
    --fs-xs:  14px;
    --fs-sm:  15px;
    --fs-base:16px;
    --fs-md:  19px;
    --fs-lg:  24px;
    --fs-xl:  34px;
    --fs-2xl: 48px;
    --fs-3xl: 68px;

    --sp-4: 20px;
    --sp-5: 32px;
    --sp-6: 48px;
    --sp-7: 64px;
    --sp-8: 96px;

    --container-pad: 32px;
    --header-h: 84px;
  }
}

@media (min-width: 1280px) {
  :root { --container-pad: 40px; }
}

/* ---------------------------------------------------------------------
   3. BASE ELEMENTS
   --------------------------------------------------------------------- */
body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  color: var(--gray-900);
  background: var(--gray-50);
}

body.modal-open,
body.mobile-nav-open {
  overflow: hidden;
}

h1, h2, h3 { font-weight: 800; letter-spacing: -0.02em; color: var(--navy-950); }
.num { font-family: var(--font-num); font-weight: 600; font-variant-numeric: tabular-nums; }

/* ---------------------------------------------------------------------
   4. LAYOUT / UTILITY
   --------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.section { padding-block: var(--section-space); }
.section-muted { background: var(--white); border-radius: var(--radius-lg); }
.container.section-muted {
  width: calc(100% - (var(--container-pad) * 2));
  max-width: calc(var(--container-w) - (var(--container-pad) * 2));
}

.eyebrow {
  font-size: var(--fs-2xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--sky-600);
  margin-bottom: var(--sp-2);
}

.section-head { margin-bottom: var(--section-content-space); }
.section-title { font-size: var(--fs-xl); line-height: var(--lh-tight); }

.text-accent { color: var(--sky-500); }
.only-mobile { display: inline; }
@media (min-width: 768px) { .only-mobile { display: none; } }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-weight: 700;
  font-size: var(--fs-sm);
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
  white-space: nowrap;
}
.btn:active { transform: scale(0.98); }
.btn:disabled { cursor: not-allowed; opacity: 0.55; transform: none; }
.btn-primary { background: var(--navy-950); color: var(--white); }
.btn-primary:hover { background: var(--sky-600); }
.btn-primary:disabled:hover { background: var(--navy-950); }
.btn-outline { background: transparent; color: var(--navy-950); border: 1.5px solid var(--gray-200); }
.btn-outline:hover { border-color: var(--sky-500); color: var(--sky-600); }
.btn-ghost { background: transparent; color: var(--gray-700); }
.btn-ghost:hover { color: var(--sky-600); }
.btn-lg { padding: 15px 28px; font-size: var(--fs-md); }
.btn-block { width: 100%; }

/* ---------------------------------------------------------------------
   5. COMPONENTS
   --------------------------------------------------------------------- */

/* ---- Header ---- */
.site-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 200;
  height: var(--header-h);
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  transition: transform 90ms var(--ease);
  will-change: transform;
}
.site-header.is-scroll-hidden { transform: translateY(calc(-100% - 1px)); }

main {
  padding-top: var(--header-h);
}
.header-inner {
  max-width: var(--container-w);
  margin-inline: auto;
  height: 100%;
  padding-inline: var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
}
.logo { display: flex; align-items: center; gap: 8px; }
.logo-mark {
  display: block;
  flex: 0 0 auto;
  width: 34px;
  height: 32px;
  object-fit: contain;
}
.logo-text { font-size: var(--fs-md); font-weight: 800; letter-spacing: -0.02em; color: var(--navy-950); }
.logo-text em { font-style: normal; color: var(--sky-500); }

.main-nav { display: none; }
.nav-list { display: flex; gap: var(--sp-6); }
.nav-link {
  position: relative;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--gray-700);
  padding-block: 6px;
}
.nav-link::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -1px; height: 2px;
  background: var(--sky-500); transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur-base) var(--ease);
}
.nav-link:hover { color: var(--navy-950); }
.nav-link.is-active { color: var(--navy-950); }
.nav-link.is-active::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: var(--sp-3); }
.header-check-btn { display: none; }
.header-reserve-btn { display: none; }

.hamburger {
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; align-items: center;
}
.hamburger span { width: 20px; height: 2px; background: var(--navy-950); border-radius: 2px; transition: transform var(--dur-base) var(--ease), opacity var(--dur-base) var(--ease); }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Mobile nav drawer ---- */
.mobile-nav-scrim {
  position: fixed; inset: 0; background: rgba(11,27,43,0.45);
  z-index: 250; opacity: 0; visibility: hidden; transition: opacity var(--dur-base) var(--ease);
}
.mobile-nav-scrim.is-open { opacity: 1; visibility: visible; }

.mobile-nav {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(78vw, 320px);
  background: var(--white);
  z-index: 260;
  padding: 84px var(--sp-5) var(--sp-6);
  display: flex; flex-direction: column; gap: var(--sp-6);
  transform: translateX(100%);
  transition: transform var(--dur-base) var(--ease);
  box-shadow: var(--shadow-lg);
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav-list { display: flex; flex-direction: column; gap: var(--sp-1); }
.mobile-nav-link {
  display: block; padding: 14px 4px; font-size: var(--fs-md); font-weight: 700;
  color: var(--gray-700); border-bottom: 1px solid var(--gray-100);
}
.mobile-nav-link.is-active { color: var(--sky-600); }

/* ---- Tab panels ---- */
.tab-panel { display: none; }
.tab-panel.is-active { display: block; animation: fadeIn var(--dur-base) var(--ease); }
.tab-panel:not([data-panel="intro"]) { padding-bottom: var(--section-space); }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

/* ---- Hero (intro) ---- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--navy-950);
  padding-block: var(--sp-8) calc(var(--sp-7) + var(--sp-5));
}
.hero-word {
  position: absolute;
  top: 46%; left: 50%; transform: translate(-50%,-50%);
  font-family: var(--font-num);
  font-weight: 700;
  font-size: clamp(90px, 26vw, 320px);
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.08);
  letter-spacing: 0.02em;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
.hero-inner { position: relative; z-index: 1; max-width: 720px; }
.hero .eyebrow { color: var(--sky-500); }
.hero-title { font-size: var(--fs-2xl); line-height: var(--lh-tight); color: var(--white); margin-bottom: var(--sp-4); }
.hero-desc { font-size: var(--fs-base); color: var(--gray-200); line-height: var(--lh-loose); max-width: 46ch; margin-bottom: var(--sp-6); }
.hero-cta { display: flex; flex-wrap: wrap; gap: var(--sp-3); }
.hero .btn-primary {
  background: var(--sky-500);
  border: 1.5px solid var(--sky-500);
  color: var(--navy-950);
}
.hero .btn-primary:hover {
  background: var(--sky-600);
  border-color: var(--sky-600);
  color: var(--white);
}
.hero .btn-outline { color: var(--white); border-color: rgba(255,255,255,0.28); }
.hero .btn-outline:hover { border-color: var(--sky-500); color: var(--sky-500); }

/* ---- Stat strip ---- */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4);
  margin-top: calc(var(--sp-7) * -1);
  position: relative;
  z-index: 2;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--sp-5);
}
.stat-strip li {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  align-content: center;
  align-items: baseline;
  justify-content: center;
  text-align: center;
}
.stat-num,
.stat-unit {
  color: var(--navy-950);
  font-family: var(--font-body);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.035em;
  font-variant-numeric: proportional-nums;
}
.stat-num { font-size: clamp(24px, 2vw, 28px); }
.stat-unit {
  margin-left: 2px;
  font-size: var(--fs-xs);
}
.stat-label {
  display: block;
  flex-basis: 100%;
  margin-top: 8px;
  color: var(--gray-500);
  font-size: var(--fs-2xs);
  line-height: 1.4;
}

/* ---- Responsive YouTube feature video ---- */
.service-video-shell {
  width: 100%;
  margin-bottom: var(--sp-7);
}

.service-video-shell[hidden] {
  display: none;
}

.service-video-player {
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--navy-950);
  box-shadow: var(--shadow-md);
}

.service-video-player iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---- Review cards ---- */
.section-copy {
  margin-top: var(--sp-2);
  color: var(--gray-500);
  font-size: var(--fs-sm);
}

.review-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: calc(100% - (var(--container-pad) * 2));
  max-width: calc(var(--container-w) - (var(--container-pad) * 2));
  padding: var(--sp-6);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 92% 6%, color-mix(in srgb, var(--sky-500) 28%, transparent) 0, transparent 34%),
    linear-gradient(145deg, #0b1b2b 0%, #112c43 58%, #173a50 100%);
  box-shadow: var(--shadow-lg);
}

.review-section::before {
  content: '';
  position: absolute;
  z-index: -1;
  right: -90px;
  bottom: -130px;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 42px rgba(255,255,255,.025),
    0 0 0 84px rgba(255,255,255,.018);
  pointer-events: none;
}

.review-section .section-head {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.review-section .eyebrow {
  color: var(--sky-500);
}

.review-section .section-title {
  color: var(--white);
}

.review-section .section-copy {
  color: rgba(255,255,255,.72);
}

.review-proof-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-3);
  margin: var(--sp-5) 0 var(--sp-4);
}

.review-proof-grid > div {
  display: grid;
  min-height: 124px;
  padding: var(--sp-5) var(--sp-4);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
  backdrop-filter: blur(8px);
  place-content: center;
  text-align: center;
}

.review-proof-grid strong {
  font-family: var(--font-num);
  color: var(--sky-500);
  font-size: var(--fs-xl);
  line-height: 1.1;
}

.review-proof-value > span {
  margin: 0;
  color: inherit;
  font: inherit;
}

.review-proof-value small {
  margin-left: 3px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: .48em;
  font-weight: 800;
}

.review-proof-grid > div > span {
  margin-top: 7px;
  color: rgba(255,255,255,.72);
  font-size: var(--fs-sm);
  font-weight: 700;
}

.review-trust-list {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: var(--sp-5);
}

.review-trust-list li {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,.1);
  color: var(--white);
  font-size: var(--fs-2xs);
  font-weight: 700;
}

.review-trust-list li::before {
  content: '\2713';
  margin-right: 5px;
  color: var(--sky-500);
  font-weight: 900;
}

.review-stars {
  color: var(--sky-500);
  letter-spacing: .08em;
}

.review-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
}

.review-card {
  display: flex;
  flex-direction: column;
  min-height: 260px;
  padding: var(--sp-5);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(4,14,24,.18);
  transition: transform var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease);
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(4,14,24,.24);
}

.review-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
}

.review-card-head em {
  padding: 5px 9px;
  border-radius: var(--radius-pill);
  background: var(--gray-50);
  color: var(--gray-500);
  font-size: var(--fs-2xs);
  font-style: normal;
  font-weight: 700;
}

.review-card > p {
  flex: 1;
  margin: var(--sp-4) 0;
  color: var(--gray-700);
  font-size: var(--fs-sm);
  line-height: var(--lh-loose);
}

.review-customer {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-customer > span {
  display: inline-grid;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--navy-950);
  color: var(--white);
  font-size: var(--fs-sm);
  font-weight: 800;
  place-items: center;
}

.review-customer div {
  display: grid;
  gap: 2px;
}

.review-customer strong {
  color: var(--navy-950);
  font-size: var(--fs-sm);
}

.review-customer small {
  color: var(--gray-400);
  font-size: var(--fs-2xs);
}

/* ---- Feature grid ---- */
.feature-grid { display: grid; gap: var(--sp-4); grid-template-columns: 1fr; }
.feature-card {
  background: var(--white); border-radius: var(--radius-md);
  padding: var(--sp-5); box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
}
.feature-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: var(--radius-sm);
  background: var(--gray-50); color: var(--sky-600);
  font-family: var(--font-num); font-weight: 700; font-size: var(--fs-xs);
  margin-bottom: var(--sp-4);
}
.feature-card h3 { font-size: var(--fs-md); margin-bottom: var(--sp-2); }
.feature-card p { color: var(--gray-500); font-size: var(--fs-sm); line-height: var(--lh-loose); }

/* ---- CTA band ---- */
.cta-band {
  margin-top: var(--section-space);
  background: var(--sand-100);
}
.cta-band-inner {
  display: flex; flex-direction: column; gap: var(--sp-4);
  padding-block: var(--sp-6); align-items: flex-start;
}
.cta-band h2 { font-size: var(--fs-lg); margin-bottom: 4px; }
.cta-band p { color: var(--gray-500); font-size: var(--fs-sm); }

/* ---- Page hero (sub pages) ---- */
.page-hero { background: var(--white); border-bottom: 1px solid var(--gray-100); padding-block: var(--sp-6); }
.page-title { font-size: var(--fs-xl); margin-bottom: var(--sp-2); }
.page-desc { color: var(--gray-500); font-size: var(--fs-sm); }

/* ---- Step list (guide) ---- */
.step-list { display: flex; flex-direction: column; gap: var(--sp-5); }
.step-item { display: flex; gap: var(--sp-4); }
.step-num {
  flex: none; width: 36px; height: 36px; border-radius: 50%;
  background: var(--navy-950); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-num); font-weight: 700; font-size: var(--fs-sm);
}
.step-item h3 { font-size: var(--fs-md); margin-bottom: 4px; }
.step-item p { color: var(--gray-500); font-size: var(--fs-sm); line-height: var(--lh-loose); }

/* ---- Price table ---- */
.table-wrap { overflow-x: auto; border-radius: var(--radius-md); border: 1px solid var(--gray-100); }
.price-table { min-width: 480px; background: var(--white); }
.price-table th, .price-table td { text-align: left; padding: 14px 18px; font-size: var(--fs-sm); }
.price-table thead th { background: var(--gray-50); color: var(--gray-500); font-weight: 700; font-size: var(--fs-2xs); }
.price-table tbody tr:not(:last-child) td { border-bottom: 1px solid var(--gray-100); }
.price-table td:last-child { font-weight: 700; color: var(--navy-950); }
.table-note { margin-top: var(--sp-3); font-size: var(--fs-2xs); color: var(--gray-500); }

@media (max-width: 767px) {
  .table-wrap {
    overflow-x: visible;
  }

  .price-table {
    min-width: 0;
    table-layout: fixed;
  }

  .price-table th,
  .price-table td {
    padding: 11px 8px;
    font-size: var(--fs-2xs);
    line-height: var(--lh-normal);
    white-space: normal;
    word-break: keep-all;
    overflow-wrap: anywhere;
  }

  .price-table th:nth-child(1),
  .price-table td:nth-child(1) {
    width: 25%;
  }

  .price-table th:nth-child(2),
  .price-table td:nth-child(2) {
    width: 35%;
  }

  .price-table th:nth-child(3),
  .price-table td:nth-child(3) {
    width: 40%;
  }
}

.guide-notices {
  margin-top: var(--section-space);
}

.guide-notices-head {
  max-width: 720px;
  margin-bottom: var(--section-content-space);
}

.guide-notices-head .section-title {
  margin-bottom: var(--sp-3);
}

.guide-notices-head > p:last-child {
  color: var(--gray-500);
  font-size: var(--fs-sm);
  line-height: var(--lh-loose);
}

.guide-notice-grid {
  counter-reset: guide-notice;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
}

.guide-notice-card {
  counter-increment: guide-notice;
  position: relative;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  column-gap: var(--sp-4);
  row-gap: var(--sp-3);
  overflow: hidden;
  padding: var(--sp-5);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, var(--white) 0%, var(--gray-50) 100%);
  box-shadow: var(--shadow-sm);
}

.guide-notice-card::before {
  content: counter(guide-notice, decimal-leading-zero);
  grid-column: 1;
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--navy-950);
  color: var(--white);
  font-family: var(--font-num);
  font-size: var(--fs-sm);
  font-weight: 700;
}

.guide-notice-card::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--sky-500);
}

.guide-notice-card h3 {
  grid-column: 2;
  color: var(--navy-950);
  font-size: var(--fs-md);
  line-height: var(--lh-tight);
}

.guide-notice-card ul {
  grid-column: 2;
  display: grid;
  gap: var(--sp-2);
  padding: 0;
  color: var(--gray-600);
  font-size: var(--fs-sm);
  line-height: var(--lh-loose);
}

.guide-notice-card li {
  position: relative;
  padding-left: 20px;
}

.guide-notice-card li::before {
  content: "\2713";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--sky-500);
  font-weight: 800;
}

/* ---- Reservation layout ---- */
.reserve-layout { display: flex; flex-direction: column; gap: var(--sp-6); }

.form-fieldset { background: var(--white); border-radius: var(--radius-md); padding: var(--sp-5); border: 1px solid var(--gray-100); margin-bottom: var(--sp-4); }

.form-section { margin-bottom: var(--section-content-space); }

.form-section-title {
  margin: 0 0 var(--sp-4);
  padding-inline: 2px;
  font-size: var(--fs-md);
  font-weight: 800;
  color: var(--navy-950);
}

.form-section > .form-fieldset {
  margin-bottom: 0;
}

.form-grid { display: grid; gap: var(--sp-4); }
.form-grid-2 { grid-template-columns: 1fr; }
.form-field-wide { grid-column: 1 / -1; }

.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: var(--sp-4); }
.form-grid > .form-field { margin-bottom: 0; }
.form-field:last-child { margin-bottom: 0; }
.form-field label, .form-label-static { font-size: var(--fs-sm); font-weight: 700; color: var(--gray-700); }
.req { color: var(--coral-500); font-style: normal; font-size: var(--fs-2xs); font-weight: 700; margin-left: 4px; }

.form-field input[type="text"],
.form-field input[type="tel"],
.form-field input[type="password"],
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 13px 14px;
  font-size: var(--fs-base);
  background: var(--white);
  color: var(--gray-900);
  transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--gray-400); }
.form-field .secure-entry { -webkit-text-security: disc; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--sky-500); box-shadow: 0 0 0 3px color-mix(in srgb, var(--sky-500) 15%, transparent);
}
.form-field textarea { resize: vertical; min-height: 96px; font-family: var(--font-body); }

.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1L6 6L11 1' stroke='%2364748B' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.phone-group { display: flex; align-items: center; gap: 8px; }
.phone-group select { flex: 0 0 84px; }
.phone-group input { flex: 1; min-width: 0; text-align: center; }
.phone-sep { color: var(--gray-400); }

/* Radio pills */
.radio-pills { display: flex; gap: var(--sp-2); flex-wrap: wrap; }
.radio-pill { position: relative; }
.radio-pill input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.radio-pill span {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 10px 16px; border-radius: var(--radius-pill);
  border: 1.5px solid var(--gray-200); font-size: var(--fs-sm); font-weight: 600; color: var(--gray-700);
  transition: all var(--dur-fast) var(--ease);
}
.radio-pill input:checked + span { background: var(--navy-950); border-color: var(--navy-950); color: var(--white); }
.radio-pill input:focus-visible + span { outline: 2px solid var(--sky-600); outline-offset: 2px; }

/* Checkbox */
.checkbox-row { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; margin-bottom: var(--sp-3); font-size: var(--fs-sm); color: var(--gray-700); }
.checkbox-row:last-child { margin-bottom: 0; }
.checkbox-row input { position: absolute; opacity: 0; width: 0; height: 0; }
.checkbox-box {
  flex: none; width: 20px; height: 20px; margin-top: 1px; border-radius: 6px;
  border: 1.5px solid var(--gray-200); position: relative; transition: all var(--dur-fast) var(--ease);
}
.checkbox-row input:checked + .checkbox-box { background: var(--sky-500); border-color: var(--sky-500); }
.checkbox-box::after {
  content: ''; position: absolute; left: 6px; top: 2px; width: 5px; height: 10px;
  border: solid var(--white); border-width: 0 2px 2px 0; transform: rotate(45deg) scale(0);
  transition: transform var(--dur-fast) var(--ease);
}
.checkbox-row input:checked + .checkbox-box::after { transform: rotate(45deg) scale(1); }
.checkbox-row input:focus-visible + .checkbox-box { outline: 2px solid var(--sky-600); outline-offset: 2px; }

.agreement-fieldset {
  display: grid;
  gap: var(--sp-3);
}

.agreement-fieldset.is-invalid {
  border-color: var(--coral-500);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--coral-500) 12%, transparent);
}

.agreement-link {
  display: inline;
  padding: 0;
  border: 0;
  color: var(--sky-600);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.optional-label {
  color: var(--gray-400);
  font-size: var(--fs-2xs);
  font-weight: 600;
}

.reservation-status {
  margin-top: var(--sp-3);
  color: var(--success-500);
  font-size: var(--fs-2xs);
  font-weight: 700;
  text-align: center;
}
.reservation-status:empty { display: none; }
.reservation-followup-note {
  margin-top: var(--sp-1);
  color: var(--coral-500);
  font-size: var(--fs-2xs);
  font-weight: 700;
  text-align: center;
}
.reservation-status:empty + .reservation-followup-note { display: none; }

/* ---- Ticket / boarding-pass style date-time card ---- */
.ticket-fieldset { padding: 0; overflow: visible; background: transparent; border: none; }
.ticket-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.ticket-stub { padding: var(--sp-5); }
.ticket-stub-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--sp-4); }
.ticket-stub-label { font-family: var(--font-num); font-weight: 700; font-size: var(--fs-xs); letter-spacing: 0.06em; color: var(--sky-600); }
.ticket-plane { font-size: 18px; color: var(--sky-500); display: inline-block; }
.ticket-plane-in { transform: scaleX(-1); color: var(--coral-500); }
[data-stub="in"] .ticket-stub-label { color: var(--coral-500); }

.ticket-perforation { position: relative; height: 22px; display: flex; align-items: center; }
.dash-line { flex: 1; height: 0; border-top: 2px dashed var(--gray-200); margin-inline: 8px; }
.notch { width: 22px; height: 22px; border-radius: 50%; background: var(--gray-50); flex: none; }
.notch-left { margin-left: -11px; }
.notch-right { margin-right: -11px; }

/* Date calendar + separate hour/minute controls */
.journey-datetime-control {
  display: grid;
  gap: var(--sp-3);
}

.journey-date-field,
.journey-time-field {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 6px;
}

.journey-time-selects {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 6px;
}

.journey-time-selects select {
  min-width: 0;
}

.journey-time-separator {
  color: var(--gray-500);
  font-weight: 700;
  line-height: 1;
}

.journey-datetime-help {
  min-height: 42px;
  margin-top: 10px;
  color: var(--gray-500);
  font-size: var(--fs-2xs);
  line-height: var(--lh-loose);
}

/* flatpickr date-calendar theming to match design system */
.flatpickr-calendar { box-shadow: var(--shadow-lg) !important; border-radius: var(--radius-md) !important; font-family: var(--font-body) !important; }
.flatpickr-day.selected, .flatpickr-day.selected:hover { background: var(--sky-500) !important; border-color: var(--sky-500) !important; }
.flatpickr-day.today { border-color: var(--sky-500) !important; }
.flatpickr-time input:hover, .flatpickr-time .flatpickr-am-pm:hover,
.flatpickr-time input:focus, .flatpickr-time .flatpickr-am-pm:focus { background: var(--gray-50); }
.flatpickr-current-month .flatpickr-monthDropdown-months,
.numInputWrapper span.arrowUp:after { border-bottom-color: var(--sky-500); }

/* ---- Fare summary card ---- */
.fare-card {
  background: var(--sand-100);
  border-radius: var(--radius-lg);
  padding: var(--sp-5);
  align-self: flex-start;
  position: static;
}
.fare-label { font-size: var(--fs-sm); font-weight: 700; color: var(--gray-700); margin-bottom: 4px; }
.fare-amount { font-family: var(--font-num); font-size: var(--fs-2xl); font-weight: 700; color: var(--navy-950); line-height: 1.1; }
.fare-amount .num { font-size: inherit; }
.fare-sub { font-size: var(--fs-2xs); color: var(--gray-500); margin-bottom: var(--sp-4); }

.fare-breakdown { border-top: 1px solid rgba(11,27,43,0.08); padding-top: var(--sp-3); margin-bottom: var(--sp-4); }
.fare-breakdown li { display: flex; justify-content: space-between; font-size: var(--fs-sm); padding-block: 6px; color: var(--gray-700); }
.fare-breakdown li .num { font-weight: 600; color: var(--navy-950); }

.fare-notes { font-size: var(--fs-2xs); color: var(--gray-500); margin-bottom: var(--sp-3); padding-left: 16px; list-style: disc; }
.fare-disclaimer { font-size: var(--fs-2xs); color: var(--gray-400); line-height: var(--lh-loose); }

/* ---- Facility grid ---- */
.facility-grid { display: grid; gap: var(--sp-4); grid-template-columns: 1fr; }
.facility-card { background: var(--white); border-radius: var(--radius-md); padding: var(--sp-5); border: 1px solid var(--gray-100); text-align: center; }
.facility-icon { font-size: 26px; color: var(--sky-500); margin-bottom: var(--sp-3); }
.facility-card h3 { font-size: var(--fs-md); margin-bottom: 6px; }
.facility-card p { font-size: var(--fs-sm); color: var(--gray-500); line-height: var(--lh-loose); }

.facility-document-section {
  margin-top: var(--section-content-space);
}
.facility-subhead {
  margin-bottom: var(--sp-5);
}
.facility-subhead h2 {
  margin-top: 4px;
  font-size: var(--fs-xl);
}
.facility-subhead > p:last-child {
  margin-top: var(--sp-2);
  color: var(--gray-500);
  font-size: var(--fs-sm);
  line-height: var(--lh-loose);
}
.facility-document-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
}
.facility-document-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  text-align: left;
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}
.facility-document-card:hover {
  transform: translateY(-2px);
  border-color: var(--sky-500);
  box-shadow: var(--shadow-md);
}
.facility-document-card:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--sky-500) 32%, transparent);
  outline-offset: 3px;
}
.facility-document-image {
  display: grid;
  width: 100%;
  aspect-ratio: 2 / 3;
  padding: var(--sp-4);
  background: linear-gradient(145deg, #e2e8f0, #edf1f6);
  place-items: center;
}
.facility-document-image img {
  width: 100%;
  height: auto;
  max-height: 100%;
  border: 1px solid #d3dbe5;
  background: var(--white);
  box-shadow: 0 8px 20px rgba(11, 27, 43, .12);
  object-fit: contain;
}
.facility-document-card strong {
  display: flex;
  width: 100%;
  min-height: 72px;
  align-items: center;
  justify-content: center;
  padding: var(--sp-4);
  border-top: 1px solid var(--gray-100);
  background: var(--white);
  color: var(--navy-950);
  font-size: var(--fs-sm);
  line-height: var(--lh-tight);
  text-align: center;
}

.facility-photo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
  margin-top: var(--section-content-space);
}

.facility-photo-placeholder {
  display: grid;
  width: 100%;
  min-height: 260px;
  overflow: hidden;
  border-radius: var(--radius-md);
  background:
    linear-gradient(145deg, rgba(11,27,43,.82), rgba(11,27,43,.58)),
    var(--gray-700);
  color: rgba(255,255,255,.72);
  font-size: var(--fs-2xs);
  font-weight: 700;
  place-items: center;
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}
.facility-photo-placeholder:hover {
  transform: translateY(-2px);
  border-color: var(--sky-500);
  box-shadow: var(--shadow-md);
}
.facility-photo-placeholder:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--sky-500) 32%, transparent);
  outline-offset: 3px;
}
.facility-photo-placeholder img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

/* ---- FAQ ---- */
.faq-list { display: flex; flex-direction: column; gap: var(--sp-3); }
.faq-item { background: var(--white); border-radius: var(--radius-md); border: 1px solid var(--gray-100); overflow: hidden; }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: var(--sp-4) var(--sp-5); text-align: left;
  font-size: var(--fs-md); font-weight: 700; color: var(--navy-950);
}
.faq-toggle { font-family: var(--font-num); font-size: 22px; color: var(--sky-500); transition: transform var(--dur-base) var(--ease); flex: none; margin-left: var(--sp-3); }
.faq-question[aria-expanded="true"] .faq-toggle { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height var(--dur-base) var(--ease); }
.faq-answer p { padding: 0 var(--sp-5) var(--sp-4); font-size: var(--fs-sm); color: var(--gray-500); line-height: var(--lh-loose); }

/* ---- Contact card ---- */
.contact-card {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  padding: var(--sp-6);
}
.contact-card h2 {
  margin-bottom: 6px;
  font-size: var(--fs-lg);
}
.contact-heading p {
  color: var(--gray-500);
  font-size: var(--fs-sm);
  line-height: var(--lh-loose);
}
.contact-actions {
  display: grid;
  width: 100%;
  gap: var(--sp-3);
}
.contact-number-card {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: var(--sp-3);
  min-width: 0;
  padding: var(--sp-4);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}
.contact-number-card:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--sky-500) 35%, var(--gray-100));
  box-shadow: var(--shadow-md);
}
.contact-number-card:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--sky-500) 28%, transparent);
  outline-offset: 3px;
}
.contact-number-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: color-mix(in srgb, var(--sky-500) 12%, var(--white));
  color: var(--sky-600);
}
.contact-number-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}
.contact-number-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 2px;
}
.contact-number-copy strong {
  color: var(--gray-500);
  font-size: var(--fs-2xs);
}
.contact-number-copy em {
  color: var(--navy-950);
  font-family: var(--font-num);
  font-size: var(--fs-md);
  font-style: normal;
  font-weight: 700;
  white-space: nowrap;
}
.contact-call-label {
  padding: 6px 9px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--sky-500) 12%, var(--white));
  color: var(--sky-600);
  font-size: var(--fs-2xs);
  font-weight: 700;
  white-space: nowrap;
}

/* ---- Footer ---- */
.site-footer { background: var(--navy-950); color: var(--gray-200); padding-top: var(--sp-7); margin-top: 0; }
.footer-inner { display: flex; flex-direction: column; gap: var(--sp-6); padding-bottom: var(--sp-6); }
.footer-logo { width: fit-content; }
.footer-brand .logo-text { color: var(--white); }
.footer-brand .logo-text em { color: var(--sky-500); }
.footer-desc { margin-top: var(--sp-3); font-size: var(--fs-sm); color: var(--gray-400); }
.footer-cols { display: grid; grid-template-columns: 1fr; gap: var(--sp-5); }
.footer-col h4 { font-size: var(--fs-sm); color: var(--white); margin-bottom: var(--sp-3); }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col li, .footer-col a { font-size: var(--fs-2xs); color: var(--gray-400); line-height: var(--lh-loose); }
.footer-col a:hover { color: var(--sky-500); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-block: var(--sp-4); }
.footer-bottom-inner { display: flex; flex-direction: column; gap: var(--sp-2); font-size: var(--fs-2xs); color: var(--gray-400); }
.footer-legal { display: flex; gap: var(--sp-4); }
.footer-legal button { color: inherit; font-size: inherit; }
.footer-legal a:hover,
.footer-legal button:hover { color: var(--sky-500); }

/* Reserve mobile/pc floating space so footer never hidden under floating bar */
.site-footer { padding-bottom: calc(var(--floating-bar-h) + var(--sp-4)); }
@media (min-width: 1024px) { .site-footer { padding-bottom: var(--sp-4); } }

/* ---- Floating reserve bar ---- */
.floating-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 150;
  display: flex; height: var(--floating-bar-h);
  box-shadow: 0 -4px 20px rgba(11,27,43,0.12);
  transition: transform var(--dur-base) var(--ease);
}
.floating-bar.is-tab-hidden { display: none; }
.floating-btn { flex: 1; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: var(--fs-md); }
.floating-btn-check { background: var(--white); color: var(--navy-950); }
.floating-btn-reserve { background: var(--sky-500); color: var(--white); }

/* ---- Modal layers ---- */
.landing-modal {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--sp-4);
}

.landing-modal.is-open {
  display: flex;
}

.landing-modal-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(11,27,43,.66);
  backdrop-filter: blur(3px);
}

.landing-modal-dialog {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: min(100%, 680px);
  max-height: min(86vh, 760px);
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.landing-modal-dialog-confirm {
  width: min(100%, 620px);
}

.landing-modal-dialog-image {
  width: min(100%, 1080px);
  height: auto;
  max-height: 92vh;
}

.landing-modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-5);
  border-bottom: 1px solid var(--gray-100);
}

.landing-modal-head .eyebrow {
  margin-bottom: 4px;
}

.landing-modal-head h2 {
  font-size: var(--fs-xl);
}

.landing-modal-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gray-50);
  color: var(--gray-700);
}

.landing-modal-close svg,
.landing-toast-close svg {
  display: block;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.landing-modal-body {
  overflow-y: auto;
  padding: var(--sp-5);
}

.legal-content {
  display: grid;
  gap: var(--sp-5);
}

.legal-content h3 {
  margin-bottom: 6px;
  font-size: var(--fs-md);
}

.legal-content p {
  color: var(--gray-500);
  font-size: var(--fs-sm);
  line-height: var(--lh-loose);
}

.legal-content ul,
.legal-content ol {
  display: grid;
  gap: 6px;
  padding-left: 20px;
  color: var(--gray-500);
  font-size: var(--fs-sm);
  line-height: var(--lh-loose);
}

.legal-content ul {
  list-style: disc;
}

.legal-content ol {
  list-style: decimal;
}

.legal-content a {
  color: var(--sky-600);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.reservation-lookup-guide {
  display: grid;
  gap: var(--sp-5);
}

.reservation-lookup-intro {
  color: var(--gray-700);
  font-size: var(--fs-sm);
  font-weight: 600;
  line-height: var(--lh-loose);
}

.reservation-lookup-steps {
  display: grid;
  gap: var(--sp-3);
}

.reservation-lookup-steps li {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  align-items: start;
  gap: var(--sp-3);
}

.reservation-lookup-steps li > span {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: color-mix(in srgb, var(--sky-500) 13%, var(--white));
  color: var(--sky-600);
  font-family: var(--font-num);
  font-size: var(--fs-2xs);
  font-weight: 700;
}

.reservation-lookup-steps p {
  padding-top: 4px;
  color: var(--gray-600);
  font-size: var(--fs-sm);
  line-height: var(--lh-loose);
}

.reservation-lookup-steps strong {
  color: var(--navy-950);
}

.reservation-cancel-guide {
  padding: var(--sp-4);
  border: 1px solid color-mix(in srgb, var(--sky-500) 22%, var(--gray-100));
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--sky-500) 7%, var(--white));
}

.reservation-cancel-guide strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy-950);
  font-size: var(--fs-sm);
}

.reservation-cancel-guide p {
  color: var(--gray-600);
  font-size: var(--fs-xs);
  line-height: var(--lh-loose);
}

.reservation-cancel-guide a {
  display: inline-block;
  margin-top: 8px;
  color: var(--sky-600);
  font-family: var(--font-num);
  font-size: var(--fs-md);
  font-weight: 700;
}

.facility-image-modal-body {
  display: grid;
  min-height: 0;
  overflow: auto;
  background: var(--navy-950);
  place-items: center;
}

.facility-image-modal-body img {
  display: block;
  width: 100%;
  max-height: calc(92vh - 92px);
  object-fit: contain;
}

.landing-toast-region {
  position: fixed;
  z-index: 1300;
  left: 50%;
  bottom: calc(var(--floating-bar-h) + var(--sp-4));
  display: grid;
  width: min(420px, calc(100vw - (var(--sp-4) * 2)));
  gap: 10px;
  pointer-events: none;
  transform: translateX(-50%);
}

.landing-toast {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) 32px;
  align-items: center;
  gap: 10px;
  padding: 14px 12px 14px 16px;
  border: 1px solid var(--gray-100);
  border-left: 4px solid var(--sky-500);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-lg);
  color: var(--navy-950);
  opacity: 0;
  pointer-events: auto;
  transform: translateY(-10px);
  transition: opacity 180ms var(--ease), transform 180ms var(--ease);
}

.landing-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.landing-toast-success {
  border-left-color: var(--success-500);
}

.landing-toast-error {
  border-left-color: var(--coral-500);
}

.landing-toast-icon {
  display: inline-grid;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--sky-500) 12%, var(--white));
  color: var(--sky-600);
  place-items: center;
}

.landing-toast-success .landing-toast-icon {
  background: color-mix(in srgb, var(--success-500) 12%, var(--white));
  color: var(--success-500);
}

.landing-toast-error .landing-toast-icon {
  background: color-mix(in srgb, var(--coral-500) 12%, var(--white));
  color: var(--coral-500);
}

.landing-toast-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.landing-toast p {
  margin: 0;
  font-size: var(--fs-sm);
  font-weight: 700;
  line-height: 1.5;
}

.landing-toast-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: var(--gray-500);
}

.landing-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: var(--sp-3);
  padding: var(--sp-4) var(--sp-5);
  border-top: 1px solid var(--gray-100);
}

.landing-modal-actions-split {
  justify-content: stretch;
}

.landing-modal-actions-split .btn {
  flex: 1;
}

.reservation-confirm-list {
  display: grid;
  gap: 0;
}

.reservation-confirm-list > div {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  gap: var(--sp-3);
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
}

.reservation-confirm-list dt {
  color: var(--gray-500);
  font-size: var(--fs-sm);
}

.reservation-confirm-list dd {
  min-width: 0;
  color: var(--navy-950);
  font-size: var(--fs-sm);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.reservation-confirm-notice {
  margin-top: var(--sp-4);
  padding: var(--sp-3);
  border-radius: var(--radius-sm);
  background: var(--sand-100);
  color: var(--gray-700);
  font-size: var(--fs-2xs);
  line-height: var(--lh-loose);
}

.landing-preparing-page {
  min-height: 100%;
}

.landing-preparing {
  margin-top: var(--sp-5);
  padding: var(--sp-5);
  border: 1px dashed var(--gray-200);
  border-radius: var(--radius-md);
  background: var(--white);
}

.landing-preparing p {
  margin-top: var(--sp-2);
  color: var(--gray-500);
}

/* =========================================================================
   6. RESPONSIVE BREAKPOINTS
   ========================================================================= */

/* ---- Tablet up: 768px ---- */
@media (min-width: 768px) {
  .service-video-player { aspect-ratio: 16 / 9; }
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
  .facility-grid { grid-template-columns: repeat(2, 1fr); }
  .facility-document-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .facility-photo-grid { grid-template-columns: 1fr 1fr 1fr; }
  .review-proof-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .review-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .guide-notice-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .form-grid-2 { grid-template-columns: 1fr 1fr; }
  .cta-band-inner { flex-direction: row; align-items: center; justify-content: space-between; }
  .stat-strip { grid-template-columns: repeat(4, 1fr); }
  .contact-actions { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-cols { grid-template-columns: repeat(3, 1fr); }
}

/* ---- Desktop nav switch: 1024px ---- */
@media (min-width: 1024px) {
  .main-nav { display: block; }
  .hamburger { display: none; }
  .header-check-btn, .header-reserve-btn { display: inline-flex; }

  .hero-title { font-size: var(--fs-3xl); }
  .facility-grid { grid-template-columns: repeat(3, 1fr); }

  .reserve-layout { flex-direction: row; align-items: flex-start; gap: var(--sp-6); }
  .reserve-form { flex: 1; min-width: 0; }
  .fare-card { flex: 0 0 340px; position: sticky; top: calc(var(--header-h) + var(--sp-4)); }
  .contact-card { flex-direction: row; align-items: center; justify-content: space-between; }
  .contact-heading { max-width: 380px; }
  .contact-actions { max-width: 520px; grid-template-columns: 1fr; }

  .ticket-card { display: flex; }
  .ticket-stub { flex: 1; }
  .ticket-perforation { flex-direction: column; width: 22px; height: auto; align-self: stretch; }
  .dash-line { width: 0; height: auto; flex: 1; border-top: none; border-left: 2px dashed var(--gray-200); margin: 8px 0; }
  .notch-left { margin-left: 0; margin-top: -11px; }
  .notch-right { margin-right: 0; margin-bottom: -11px; }

  /* PC: floating bar becomes a compact bottom-right widget, not full-width */
  .floating-bar {
    left: auto; right: var(--sp-6); bottom: var(--sp-6);
    width: 300px; height: auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
  }
  .floating-btn { padding-block: 16px; }
  .site-footer { padding-bottom: var(--sp-4); }
  .landing-toast-region { bottom: var(--sp-6); }
}

@media (min-width: 1280px) {
  .hero-desc { font-size: var(--fs-md); }
}

@media (max-width: 480px) {
  .review-card {
    min-height: auto;
  }

  .landing-modal {
    align-items: flex-end;
    padding: 0;
  }

  .landing-modal-dialog {
    width: 100%;
    max-height: 92vh;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }

  .landing-modal-head,
  .landing-modal-body {
    padding: var(--sp-4);
  }

  .landing-modal-actions {
    padding: var(--sp-3) var(--sp-4) calc(var(--sp-3) + env(safe-area-inset-bottom));
  }

  .reservation-confirm-list > div {
    grid-template-columns: 82px minmax(0, 1fr);
  }
}

/* ---- Small phones floor: keep everything usable down to 360px ---- */
@media (max-width: 380px) {
  :root { --container-pad: 16px; }
  .stat-strip { padding: var(--sp-4); }
  .hero-title { font-size: 28px; }
}

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
