/* =============================================================
   XE GHÉP MẠNH CUONG · Design System v3 — Premium Utilitarian
   Vibe   : Warm Monochrome × Vietnamese Sans × Document Flat
   Layout : Asymmetric Bento + 2-col Masonry Testimonials
   Motion : Quiet Sophistication cubic-bezier(0.16,1,0.3,1)
   Fonts  : Be Vietnam Pro (Vietnamese-first typography)
   ============================================================= */

/* ─────────────────────────── Tokens ─────────────────────────── */
:root {
  /* Warm Monochrome Surface Palette */
  --c-bg:          #FDFBF7;
  --c-bg-alt:      #FBFBFA;
  --c-surface:     #FFFFFF;
  --c-ink:         #111111;
  --c-ink-2:       #2F3437;
  --c-muted:       #787774;
  --c-line:        #EAEAEA;
  --c-line-strong: rgba(0,0,0,.12);

  /* Brand — desaturated for editorial restraint */
  --c-primary:     #111111;
  --c-primary-2:   #333333;
  --c-accent:      #C8680C;
  --c-accent-2:    #A85408;
  --c-success:     #346538;
  --c-zalo:        #1F6C9F;

  /* Muted pastel accents (semantic only) */
  --p-amber-bg:  #FBF3DB; --p-amber-tx: #956400;
  --p-green-bg:  #EDF3EC; --p-green-tx: #346538;
  --p-blue-bg:   #E1F3FE; --p-blue-tx:  #1F6C9F;
  --p-red-bg:    #FDEBEC; --p-red-tx:   #9F2F2D;

  /* Layout */
  --container:        1200px;
  --container-narrow: 860px;

  /* Radii — utilitarian (≤16px) for documents/inputs, showcase (22-32px) for hero containers */
  --r-xs: 4px; --r-sm: 6px; --r: 8px; --r-lg: 12px; --r-xl: 16px;
  --r-2xl: 22px;   /* premium squircle — buttons, mid cards */
  --r-3xl: 28px;   /* showcase shells — booking, hero containers */

  /* Ultra-diffuse shadows — opacity < 0.05 */
  --s-1: 0 0 0 1px var(--c-line), 0 2px 8px rgba(0,0,0,.03);
  --s-2: 0 0 0 1px var(--c-line), 0 4px 16px rgba(0,0,0,.04);
  --s-3: 0 0 0 1px var(--c-line), 0 8px 32px rgba(0,0,0,.04);
  --s-glow:  0 0 0 1px rgba(0,0,0,.08);
  --s-pill:  0 0 0 1px rgba(0,0,0,.07), 0 4px 20px rgba(0,0,0,.05),
             inset 0 1px 0 rgba(255,255,255,.9);
  /* Card border — 1px solid #EAEAEA, ultra-diffuse floating lift on hover */
  --s-bezel: 0 0 0 1px var(--c-line);
  --s-hover: 0 0 0 1px rgba(0,0,0,.08), 0 4px 6px rgba(0,0,0,.02),
             0 12px 40px rgba(0,0,0,.06), 0 32px 80px rgba(0,0,0,.04);
  /* Showcase ambient — booking shell, hero showcase containers */
  --s-showcase: 0 0 0 1px rgba(0,0,0,.04),
                0 1px 0 rgba(255,255,255,.95) inset,
                0 24px 48px -12px rgba(17,17,17,.10),
                0 48px 96px -24px rgba(17,17,17,.06),
                0 80px 160px -40px rgba(17,17,17,.04);
  /* Magnetic CTA lift — soft directional shadow on hover */
  --s-cta-hover: 0 1px 0 rgba(255,255,255,.16) inset,
                 0 8px 16px -4px rgba(17,17,17,.18),
                 0 16px 40px -8px rgba(17,17,17,.14);

  /* Motion — quiet, invisible */
  --ease:        cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.34, 1.2, 0.64, 1);
  --ease-soft:   cubic-bezier(0.22, 0.61, 0.36, 1);
  --t-1: 200ms; --t-2: 380ms; --t-3: 600ms;

  /* Typography — Vietnamese-first, consistent diacritics */
  --font-sans: "Be Vietnam Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: var(--font-sans);
  --font-mono: var(--font-sans);
}

/* ─────────────────────────── Reset ──────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%; scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
}
body {
  margin: 0;
  background: var(--c-bg);
  color: var(--c-ink);
  font-family: var(--font-sans);
  font-feature-settings: "kern", "liga", "calt";
  font-size: 16px; line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Grain overlay — fixed, pointer-events-none, no GPU hit on scroll */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 9998; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 180px;
  opacity: .028;
  mix-blend-mode: multiply;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; }
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 2px solid var(--c-accent); outline-offset: 3px; border-radius: 6px; }
::selection { background: var(--c-accent); color: #1a0800; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ─────────────────────────── Typography ─────────────────────── */
h1, h2 {
  font-family: var(--font-display);
  font-weight: 700; line-height: 1.12; letter-spacing: -.018em;
  margin: 0 0 .5em; color: var(--c-ink);
}
h3, h4, h5 {
  font-family: var(--font-sans);
  font-weight: 700; line-height: 1.2; letter-spacing: -.012em;
  margin: 0 0 .5em; color: var(--c-ink);
}
h1 { font-size: clamp(2.35rem, 5vw, 4.25rem); }
h2 { font-size: clamp(1.75rem, 3.4vw, 2.8rem); }
h3 { font-size: clamp(1.1rem, 1.6vw, 1.35rem); }
h4 { font-size: .85rem; text-transform: uppercase; letter-spacing: .1em; }
p  { margin: 0 0 1em; color: var(--c-ink-2); }

.grad {
  background: linear-gradient(120deg, var(--c-accent) 0%, var(--c-accent-2) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Eyebrow pill — muted per minimalist-ui spec */
.kicker {
  display: inline-flex; align-items: center; gap: .5em;
  font-family: var(--font-sans);
  font-weight: 600; font-size: .7rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--c-muted);
  background: #F7F6F3;
  border: 1px solid var(--c-line);
  padding: .5em 1em; border-radius: 999px;
  margin-bottom: 1.2rem;
}
.kicker::before {
  content: ""; width: 5px; height: 5px; background: var(--c-muted);
  border-radius: 50%;
}

/* ─────────────────────────── Layout ─────────────────────────── */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.container--narrow { max-width: var(--container-narrow); }

.section { padding: clamp(28px, 3vw, 44px) 0; position: relative; }
.section--alt {
  background-color: var(--c-bg-alt);
  background-image: radial-gradient(circle, rgba(0,0,0,.055) 1px, transparent 1px);
  background-size: 28px 28px;
}
.section--dark {
  background: #111111;
  color: rgba(255,255,255,.85); position: relative; overflow: hidden;
  /* Subtle warm dot grid on dark */
  background-image:
    radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 32px 32px;
  background-color: #111111;
}
.section--dark::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(700px 500px at 10% 0%, rgba(200,104,12,.08), transparent 60%),
    radial-gradient(900px 600px at 100% 100%, rgba(255,255,255,.03), transparent 60%);
}
.section--cta { padding: clamp(28px, 3vw, 40px) 0; }

/* DESIGN_VARIANCE=8 — Anti-center bias: section heads are LEFT aligned by default */
.section__head {
  max-width: 820px;
  margin: 0 0 24px;
  text-align: left;
  position: relative;
  padding-bottom: 16px;
}
/* Decorative editorial rule below section head */
.section__head::after {
  content: "";
  position: absolute; bottom: 0; left: 0;
  width: 48px; height: 2px;
  background: var(--c-ink);
  border-radius: 2px;
}
.section__head--center::after { left: 50%; transform: translateX(-50%); }
.section__head p {
  color: var(--c-muted); font-size: 1.05rem;
  max-width: 58ch;
}
/* Optional center override for specific sections */
.section__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section__head--center p { max-width: none; }
.section__head--light h2 { color: #fff; }
.section__head--light p  { color: rgba(255,255,255,.72); }

/* Oversized section index label — decorative depth */
.section__head[data-index]::before {
  content: attr(data-index);
  position: absolute;
  right: 0; top: -12px;
  font-family: var(--font-sans); font-weight: 800;
  font-size: clamp(5rem, 9vw, 8rem); line-height: 1;
  letter-spacing: -.04em;
  color: var(--c-ink); opacity: .04;
  user-select: none; pointer-events: none;
}

/* ─────────────────────────── Buttons ────────────────────────── */
/*
  System rules:
  · Default `.btn`     → 22px squircle (premium soft rectangle)
  · `.btn--xl`         → full pill (showcase CTAs, hero, booking submit)
  · `.btn--mini`       → full pill (route quick-actions)
  · Magnetic press: hover lifts -2px with directional shadow,
    :active scales to 0.97 to simulate physical press
  · Trailing `.btn__icon` is its own circle that translates + scales on hover
*/
.btn {
  --bg: var(--c-primary); --fg: #fff; --bd: var(--c-primary);
  --btn-radius: var(--r-2xl);
  display: inline-flex; align-items: center; justify-content: center; gap: .65em;
  padding: .88em 1.5em;
  font-family: var(--font-sans); font-weight: 700;
  font-size: .94rem; letter-spacing: -.012em;
  background: var(--bg); color: var(--fg);
  border: 1.5px solid var(--bd); border-radius: var(--btn-radius);
  transition:
    transform   320ms var(--ease),
    box-shadow  420ms var(--ease),
    background  220ms var(--ease),
    border-color 220ms var(--ease),
    color       220ms var(--ease);
  white-space: nowrap; will-change: transform; user-select: none;
  position: relative; overflow: hidden;
  -webkit-tap-highlight-color: transparent;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(.97); transition-duration: 120ms; }

/* Button-in-button trailing icon — tighter, more deliberate magnetic motion */
.btn__icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,.16);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  margin-right: -8px;
  transition:
    transform  380ms var(--ease-bounce),
    background 220ms var(--ease);
}
.btn:hover .btn__icon {
  transform: translate(3px, -1px) scale(1.08);
  background: rgba(255,255,255,.28);
}

.btn--primary {
  --bg: #111111; --fg: #fff; --bd: #111111;
  box-shadow:
    0 1px 0 rgba(255,255,255,.10) inset,
    0 1px 2px rgba(17,17,17,.20),
    0 4px 12px -2px rgba(17,17,17,.18);
}
.btn--primary:hover  { --bg: #1c1c1c; --bd: #1c1c1c; box-shadow: var(--s-cta-hover); }
.btn--primary:active { box-shadow: 0 1px 0 rgba(255,255,255,.10) inset, 0 1px 2px rgba(17,17,17,.20); }

.btn--ghost {
  --bg: rgba(255,255,255,.62); --fg: var(--c-ink); --bd: rgba(0,0,0,.10);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
}
.btn--ghost:hover { --bg: var(--c-ink); --fg: #fff; --bd: var(--c-ink); }

.btn--zalo {
  --bg: var(--c-zalo); --fg: #fff; --bd: var(--c-zalo);
  box-shadow:
    0 1px 0 rgba(255,255,255,.18) inset,
    0 1px 2px rgba(31,108,159,.30),
    0 4px 12px -2px rgba(31,108,159,.22);
}
.btn--zalo:hover {
  --bg: #1a5f8c; --bd: #1a5f8c;
  box-shadow:
    0 1px 0 rgba(255,255,255,.18) inset,
    0 8px 16px -4px rgba(31,108,159,.32),
    0 16px 40px -8px rgba(31,108,159,.28);
}

.zalo-icon {
  width: 1.25em; height: 1.25em;
  display: block; flex: 0 0 auto;
  object-fit: contain; border-radius: 50%;
}

/* Showcase pill — true 999px radius for hero/booking primary CTAs */
.btn--xl {
  padding: 1.1em 1.9em 1.1em 2.05em;
  font-size: 1rem; letter-spacing: -.014em;
  --btn-radius: 999px;
}
.btn--block { width: 100%; }
.btn--mini {
  padding: .5em 1.05em; font-size: .82rem;
  --btn-radius: 999px;
  background: var(--c-ink); color: #fff; border-color: var(--c-ink);
}
.btn--mini:hover { background: var(--c-accent-2); border-color: var(--c-accent-2); color: #fff; }
.btn--phone { color: var(--c-accent-2); border-color: rgba(168,84,8,.18); background: var(--p-amber-bg); }
.btn--phone:hover { background: var(--c-accent-2); color: #fff; border-color: var(--c-accent-2); }

/* ─────────────────────── Announcement ──────────────────────── */
.announcement {
  background: #111111;
  color: #fff; font-size: .86rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.announcement__inner {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  padding: 10px 24px; flex-wrap: wrap; text-align: center;
}
.announcement__badge {
  background: rgba(255,255,255,.12); color: #fff;
  font-weight: 700; font-size: .68rem; letter-spacing: .12em;
  padding: 3px 10px; border-radius: 5px;
  border: 1px solid rgba(255,255,255,.16);
}
.announcement p { margin: 0; color: rgba(255,255,255,.9); }
.announcement__cta { font-weight: 700; color: var(--c-accent); white-space: nowrap; flex-shrink: 0; }
.announcement__cta:hover { text-decoration: underline; }

/* Kinetic marquee */
.announcement__marquee {
  flex: 1; min-width: 0; overflow: hidden; mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
}
.announcement__track {
  display: inline-flex; gap: 0; white-space: nowrap;
  animation: marquee-scroll 26s linear infinite;
  will-change: transform;
}
.announcement__track:hover { animation-play-state: paused; }
.announcement__track > span { padding: 0 48px; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─────────────────────── Header / Nav ──────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 40;
  padding: 8px 20px 0;
  background: transparent;
  /* Full-width wrapper — the pill is .site-header__inner */
}
.site-header__inner {
  /* Override .container so the pill spans full max-width */
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 6px 7px 6px 18px !important;
  min-height: unset;
  /* The floating pill */
  background: rgba(253,251,247,.92);
  backdrop-filter: saturate(220%) blur(24px);
  -webkit-backdrop-filter: saturate(220%) blur(24px);
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 999px;
  box-shadow: var(--s-pill);
  transition: background var(--t-2) var(--ease), box-shadow var(--t-2) var(--ease);
}
.site-header.is-scrolled .site-header__inner {
  background: rgba(253,251,247,.98);
  box-shadow: 0 0 0 1px rgba(0,0,0,.06),
              0 4px 8px rgba(0,0,0,.03),
              0 16px 48px rgba(0,0,0,.08),
              inset 0 1px 0 rgba(255,255,255,.95);
}

.brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand__logo {
  height: 44px; width: auto; display: block; object-fit: contain;
  border-radius: 6px;
  transition: transform var(--t-1) var(--ease-bounce);
}
.brand:hover .brand__logo { transform: scale(1.04); }
.brand__logo--footer { height: 70px; }

.primary-nav { flex: 1; min-width: 0; overflow: hidden; }
.primary-nav ul {
  display: flex; gap: 2px; list-style: none; padding: 0; margin: 0;
  flex-wrap: nowrap; white-space: nowrap;
}
.primary-nav a {
  display: inline-block; padding: .42em .72em; border-radius: 999px;
  font-weight: 600; font-size: .83rem; letter-spacing: -.005em; color: var(--c-ink-2);
  position: relative; overflow: hidden; isolation: isolate;
  transition: color var(--t-1) var(--ease), transform var(--t-1) var(--ease-bounce);
}
/* Directional fill — enter direction set by JS via --nav-fill-origin */
.primary-nav a::before {
  content: '';
  position: absolute; inset: 0; border-radius: inherit; z-index: -1;
  background: var(--c-bg-alt);
  transform-origin: var(--nav-fill-origin, 50% 100%);
  transform: scale(0);
  transition: transform 280ms cubic-bezier(0.32, 0.72, 0, 1);
}
.primary-nav a:hover::before { transform: scale(1); }
.primary-nav a:hover { color: var(--c-ink); transform: translateY(-1px); }

.header-cta { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

/* Hamburger — morphs to X */
.hamburger {
  display: none; position: relative;
  width: 40px; height: 40px; align-items: center; justify-content: center;
  border: 1px solid var(--c-line-strong); border-radius: 999px;
  background: rgba(255,255,255,.7);
  transition: background var(--t-1) var(--ease), border-color var(--t-1) var(--ease);
}
.hamburger span {
  position: absolute; left: 50%; width: 18px; height: 1.5px;
  background: var(--c-ink); border-radius: 2px;
  transform-origin: center;
  transition: transform var(--t-2) var(--ease), opacity var(--t-1) var(--ease);
}
.hamburger span:nth-child(1) { transform: translate(-50%, -5px); }
.hamburger span:nth-child(2) { transform: translate(-50%, 0); }
.hamburger span:nth-child(3) { transform: translate(-50%, 5px); }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translate(-50%, 0) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: translate(-50%, 0) scaleX(0); }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translate(-50%, 0) rotate(-45deg); }
.hamburger:hover { background: var(--c-bg-alt); }

/* Mobile menu — full-screen glass overlay */
.mobile-menu {
  display: none; flex-direction: column; gap: 4px;
  position: fixed; inset: 0; z-index: 39;
  padding: 100px 28px 40px;
  background: rgba(253,251,247,.96);
  backdrop-filter: blur(28px) saturate(200%);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
  border-top: 1px solid var(--c-line);
  overflow-y: auto;
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a {
  padding: 16px 20px; border-radius: var(--r);
  font-weight: 700; font-size: 1.4rem; letter-spacing: -.02em;
  color: var(--c-ink); opacity: 0;
  transform: translateY(16px);
  transition: background var(--t-1) var(--ease), color var(--t-1) var(--ease);
}
.mobile-menu a:hover { background: var(--c-bg-alt); }
.mobile-menu.is-open a { animation: navItemReveal 500ms var(--ease-soft) forwards; }
.mobile-menu.is-open a:nth-child(1)  { animation-delay:  60ms; }
.mobile-menu.is-open a:nth-child(2)  { animation-delay: 100ms; }
.mobile-menu.is-open a:nth-child(3)  { animation-delay: 140ms; }
.mobile-menu.is-open a:nth-child(4)  { animation-delay: 180ms; }
.mobile-menu.is-open a:nth-child(5)  { animation-delay: 220ms; }
.mobile-menu.is-open a:nth-child(6)  { animation-delay: 260ms; }
.mobile-menu.is-open a:nth-child(7)  { animation-delay: 300ms; }
.mobile-menu.is-open a:nth-child(8)  { animation-delay: 340ms; }
@keyframes navItemReveal {
  to { opacity: 1; transform: none; }
}

/* ─────────────────────────── Hero ───────────────────────────── */
.hero {
  position: relative; isolation: isolate; overflow: hidden;
  background:
    radial-gradient(1100px 700px at 90% -5%, rgba(200,104,12,.05), transparent 55%),
    radial-gradient(900px 600px at 5% 105%, rgba(0,0,0,.025), transparent 55%),
    radial-gradient(600px 400px at 50% 50%, rgba(255,255,255,.6), transparent 70%),
    var(--c-bg);
  padding: clamp(20px, 2.5vw, 32px) 0 clamp(32px, 4vw, 48px);
}
.hero__bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.hero__grid { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .18; }
.hero__glow {
  position: absolute; border-radius: 50%;
  filter: blur(90px); opacity: .45;
  animation: float 16s var(--ease-soft) infinite; will-change: transform;
}
.hero__glow--1 {
  width: 560px; height: 560px; top: -160px; right: -80px;
  background: radial-gradient(circle, rgba(200,104,12,.12), transparent 70%);
  opacity: .6;
}
.hero__glow--2 {
  width: 700px; height: 700px; bottom: -240px; left: -200px;
  background: radial-gradient(circle, rgba(0,0,0,.06), transparent 70%);
  animation-delay: -8s;
}
@keyframes float {
  0%,100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-36px) scale(1.04); }
}

.hero__inner {
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 64px; align-items: start;
}
.hero__copy {
  max-width: 680px;
  padding-left: 32px;
  border-left: 1px solid var(--c-line);
  position: relative;
}
/* Editorial accent rule replacing flat 2px border — punctuates the rule */
.hero__copy::before {
  content: ""; position: absolute; left: -1px; top: 0;
  width: 1px; height: 56px;
  background: linear-gradient(180deg, var(--c-accent) 0%, transparent 100%);
}

/* Eyebrow pill */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .8rem; font-weight: 600; color: var(--c-ink-2);
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(0,0,0,.08);
  padding: 8px 16px 8px 12px; border-radius: 999px;
  box-shadow: var(--s-1);
  margin-bottom: 32px;
  transition: transform 320ms var(--ease), box-shadow 320ms var(--ease), background 220ms var(--ease);
}
.eyebrow:hover {
  transform: translateY(-1px);
  background: #fff;
  box-shadow: 0 0 0 1px rgba(0,0,0,.06), 0 6px 20px rgba(0,0,0,.06);
}
.eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--c-success);
  box-shadow: 0 0 0 4px rgba(22,163,74,.16);
  animation: pulse 2s var(--ease) infinite;
}
@keyframes pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.3); } }

.hero__title {
  margin-top: 0;
  font-size: clamp(2.5rem, 5.6vw, 4.75rem);
  font-weight: 700; line-height: 1.04;
  letter-spacing: -.028em;
}

/* Italic accent — editorial luxury punctuation in warm copper */
.hero__title em {
  font-style: italic; font-weight: 600;
  color: var(--c-accent);
  letter-spacing: -.034em;
}
/* Smaller weight subtitle line — humble counterweight to the bold display */
.hero__title-sub {
  display: block;
  font-family: var(--font-sans);
  font-size: clamp(.95rem, 1.35vw, 1.15rem);
  font-weight: 500; letter-spacing: .02em;
  color: var(--c-muted);
  margin-top: .85em; line-height: 1.4;
}

.hero__sub {
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  color: var(--c-muted); max-width: 560px; line-height: 1.7;
  margin-top: 24px;
}
.hero__sub strong { color: var(--c-ink-2); font-weight: 600; }

.hero__usps {
  list-style: none; padding: 0; margin: 32px 0 40px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px 28px;
}
.hero__usps li {
  display: flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: .94rem; color: var(--c-ink-2);
}
.hero__usps svg {
  width: 20px; height: 20px; padding: 3px;
  background: rgba(22,163,74,.12); color: var(--c-success);
  border-radius: 50%; flex-shrink: 0;
}
.hero__cta {
  display: flex; gap: 14px; flex-wrap: wrap;
  align-items: center;
}
.hero__trust {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  margin-top: 36px; padding-top: 28px;
  border-top: 1px dashed rgba(0,0,0,.12);
  font-size: .84rem; color: var(--c-muted);
}
.hero__trust em { font-style: normal; font-weight: 700; color: var(--c-ink-2); }

/* ── Booking form — Refined Double-Bezel (28px shell · 22px core) ── */
.booking {
  background: var(--c-bg-alt);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--r-3xl);
  padding: 6px;
  box-shadow: var(--s-showcase);
  position: relative;
  isolation: isolate;
}
/* Subtle inner ring to reinforce the bezel between shell and core */
.booking::before {
  content: ""; position: absolute; inset: 6px; pointer-events: none;
  border-radius: calc(var(--r-3xl) - 6px);
  box-shadow: 0 0 0 1px rgba(0,0,0,.04);
  z-index: 1;
}
.booking__inner {
  position: relative; z-index: 2;
  background: var(--c-surface);
  border-radius: calc(var(--r-3xl) - 6px);
  padding: 26px 28px 22px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.95),
    0 1px 2px rgba(0,0,0,.02);
}
.booking__head { margin-bottom: 16px; }
.booking__head h2 {
  font-size: 1.35rem; margin-bottom: 4px;
  letter-spacing: -.024em;
}
.booking__head p { font-size: .85rem; color: var(--c-muted); margin: 0; }

.booking__form { display: grid; gap: 10px; }
.field { display: grid; gap: 5px; }
.field label {
  font-size: .68rem; font-weight: 700; color: var(--c-muted);
  letter-spacing: .12em; text-transform: uppercase;
}
.field input, .field select, .field textarea {
  padding: .78em 1.05em;
  border: 1.5px solid rgba(0,0,0,.10);
  background: var(--c-bg);
  border-radius: var(--r-lg); font-size: .92rem;
  transition:
    border-color 220ms var(--ease),
    box-shadow   220ms var(--ease),
    background   220ms var(--ease);
  width: 100%;
}
.field input:hover, .field select:hover, .field textarea:hover {
  border-color: rgba(0,0,0,.18);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0; border-color: var(--c-accent); background: #fff;
  box-shadow: 0 0 0 4px rgba(200,104,12,.14);
}
.field textarea { resize: vertical; min-height: 56px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.booking__form > .field-row:nth-of-type(2) { grid-template-columns: 1fr 1fr 1fr; }
.booking__legal { font-size: .72rem; color: var(--c-muted); text-align: center; margin: 2px 0 0; }
.booking__legal a { color: var(--c-ink-2); text-decoration: underline; }
.booking-handoff {
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid rgba(48, 132, 78, .28);
  border-radius: var(--r-sm);
  background: rgba(48, 132, 78, .08);
}
.booking-handoff[hidden] { display: none; }
.booking-handoff__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.booking-handoff__head strong {
  font-size: .82rem;
  color: var(--c-ink);
}
.booking-handoff__copy {
  flex: 0 0 auto;
  border: 1px solid rgba(48, 132, 78, .32);
  border-radius: 999px;
  background: var(--c-surface);
  color: var(--c-ink);
  padding: .42em .75em;
  font-size: .76rem;
  font-weight: 700;
  cursor: pointer;
}
.booking-handoff p {
  margin: 0;
  color: var(--c-muted);
  font-size: .78rem;
  line-height: 1.45;
}
.booking-handoff textarea {
  width: 100%;
  resize: vertical;
  min-height: 120px;
  border: 1px solid rgba(48, 132, 78, .3);
  border-radius: var(--r-sm);
  background: #fff;
  padding: .75em;
  color: var(--c-ink);
  font-size: .78rem;
  line-height: 1.45;
}

/* Metrics strip — editorial document style */
.metrics {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  margin-top: clamp(24px, 3vw, 36px); padding: 0;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.metric { text-align: center; padding: 32px 16px; border-right: 1px solid var(--c-line); position: relative; }
.metric:last-child { border-right: 0; }
/* Subtle warm accent line at top of each metric */
.metric::before {
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 32px; height: 2px;
  background: var(--c-accent); opacity: .5;
}
.metric strong {
  display: block;
  font-family: var(--font-mono); font-weight: 700;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem); letter-spacing: -.03em;
  color: var(--c-ink);
}
.metric span { font-size: .82rem; color: var(--c-muted); font-weight: 500; }

/* ─────────────────────── Services — Bento ───────────────────── */
.services {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: auto;
  gap: 14px;
  align-items: start;
}

/* Bento spans */
.service:nth-child(1) { grid-column: span 7; }
.service:nth-child(2) { grid-column: span 5; grid-row: span 2; }
.service:nth-child(3) { grid-column: span 4; }
.service:nth-child(4) { grid-column: span 3; }
.service:nth-child(5) { grid-column: span 6; }
.service:nth-child(6) { grid-column: span 6; }

.service {
  position: relative;
  background: #fff;
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--s-bezel);
  transition: transform var(--t-3) var(--ease), box-shadow var(--t-3) var(--ease);
  height: 100%;
  /* Outer shell — inset ring simulates double-bezel depth */
  outline: 4px solid var(--c-bg-alt);
  outline-offset: -5px;
}
.service:hover {
  transform: translateY(-4px);
  box-shadow: var(--s-hover);
  outline-color: transparent;
}

/* Featured dark bento card */
.service--feat {
  background: #111111;
  box-shadow: 0 0 0 1px rgba(255,255,255,.10);
  display: flex; flex-direction: column;
}
.service--feat h3 { color: #fff; }
.service--feat p  { color: rgba(255,255,255,.72); }
.service--feat .service__more { color: var(--c-accent); }
.service--feat .service__icon {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--c-accent);
}

.service__icon {
  width: 56px; height: 56px; display: grid; place-items: center;
  background: var(--c-bg-alt);
  border: 1px solid var(--c-line);
  color: var(--c-ink-2);
  border-radius: var(--r);
  margin-bottom: 20px;
  transition: transform var(--t-1) var(--ease-bounce), background var(--t-1) var(--ease);
}
.service:hover .service__icon { transform: scale(1.08) rotate(-3deg); }
.service__icon svg { width: 26px; height: 26px; }
.service h3 { font-size: 1.15rem; margin-bottom: 10px; }
.service p  { color: var(--c-muted); font-size: .93rem; line-height: 1.6; }
.service__more { color: var(--c-accent-2); font-weight: 700; font-size: .88rem; letter-spacing: -.005em; }
.service__more:hover { text-decoration: underline; }

/* Ribbon badge */
.ribbon {
  position: absolute; top: 20px; right: 20px;
  background: var(--p-amber-bg); color: var(--p-amber-tx);
  font-weight: 700; font-size: .65rem; letter-spacing: .12em;
  padding: 5px 12px; border-radius: 999px; text-transform: uppercase;
  border: 1px solid rgba(149,100,0,.15);
}

/* ─────────────────────────── Routes v2 — Transport Ticket ───── */
.routes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.route {
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--s-bezel);
  display: flex; flex-direction: column;
  transition: transform var(--t-2) var(--ease), box-shadow var(--t-2) var(--ease);
}
.route:hover { transform: translateY(-4px); box-shadow: var(--s-hover); }

/* Dark rail header */
.route__rail {
  background: #111;
  padding: 16px 18px 14px;
  display: flex; align-items: center; gap: 8px;
  position: relative;
}
.route__rail::before {
  content: "";
  position: absolute; top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(180deg, var(--c-accent), var(--c-accent-2));
}

.route__terminal {
  display: flex; flex-direction: column; align-items: flex-start; gap: 4px; flex-shrink: 0;
}
.route__terminal--end { align-items: flex-end; text-align: right; }

.route__pin {
  display: inline-grid; place-items: center;
  min-width: 36px; height: 24px; padding: 0 7px;
  background: var(--c-accent); color: #fff;
  font-family: var(--font-mono);
  font-weight: 800; font-size: .68rem; letter-spacing: .05em;
  border-radius: 4px;
}
.route__pin--airport { background: var(--c-zalo); }

.route__city {
  color: rgba(255,255,255,.82);
  font-size: .78rem; font-weight: 600;
  font-family: var(--font-sans);
}

/* Track connector */
.route__track {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; gap: 5px; padding: 0 6px;
}

.route__track-info {
  display: flex; gap: 6px; align-items: center;
  color: rgba(255,255,255,.48);
  font-size: .62rem; font-weight: 600; letter-spacing: .04em; white-space: nowrap;
}

.route__track-line {
  width: 100%; height: 2px; position: relative;
  background: repeating-linear-gradient(
    90deg,
    rgba(200,104,12,.65) 0px, rgba(200,104,12,.65) 5px,
    transparent 5px, transparent 10px
  );
}
.route__track-line::before,
.route__track-line::after {
  content: ""; position: absolute; top: 50%; transform: translateY(-50%);
  width: 7px; height: 7px; background: var(--c-accent); border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(200,104,12,.22);
}
.route__track-line::before { left: -2px; }
.route__track-line::after  { right: -2px; }

/* Price grid */
.route__prices {
  display: grid; grid-template-columns: 1fr 1fr;
  flex: 1;
}

.route__price-item {
  padding: 14px 16px;
  display: flex; flex-direction: column; gap: 3px;
  border-bottom: 1px solid var(--c-line);
}
.route__price-item + .route__price-item { border-left: 1px solid var(--c-line); }

.route__price-label {
  font-size: .62rem; color: var(--c-muted);
  font-weight: 700; text-transform: uppercase; letter-spacing: .07em;
}

.route__price-value {
  font-size: .98rem; font-weight: 800; color: var(--c-ink);
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums; letter-spacing: -.02em;
}

/* Footer CTA row */
.route__footer {
  padding: 11px 16px;
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
}
.route__schedule {
  font-size: .68rem; color: var(--c-muted); font-weight: 600;
}

.routes__note {
  text-align: center; margin-top: 24px; padding: 16px 22px;
  background: rgba(255,255,255,.7);
  border-radius: var(--r); border: 1px dashed rgba(0,0,0,.14);
  color: var(--c-muted); font-size: .94rem;
}
.routes__note strong { color: var(--c-ink); }
.routes__note a { color: var(--c-accent-2); font-weight: 700; }
.routes__note p { margin: 0; }

/* ─────────────────────────── Pricing ────────────────────────── */
.pricing-tabs {
  display: inline-flex; gap: 4px; padding: 6px;
  background: rgba(255,255,255,.9); border: 1px solid rgba(0,0,0,.07);
  border-radius: 999px; margin: 0 auto 24px;
  box-shadow: var(--s-1);
  width: max-content; max-width: 100%;
}
.pricing-panel-wrap { display: block; }
.pricing-tabs { display: flex; justify-content: center; flex-wrap: wrap; margin-left: auto; margin-right: auto; }
.pricing-tab {
  padding: .72em 1.4em; border-radius: 999px; font-weight: 700; font-size: .9rem;
  color: var(--c-muted);
  transition: background var(--t-1) var(--ease), color var(--t-1) var(--ease), transform var(--t-1) var(--ease-bounce);
}
.pricing-tab:hover { color: var(--c-ink); }
.pricing-tab.is-active { background: var(--c-primary); color: #fff; transform: scale(1.02); }

.pricing-panel { display: none; }
.pricing-panel.is-active { display: block; animation: fadeSlideUp var(--t-3) var(--ease); }
@keyframes fadeSlideUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.pricing-table-wrap {
  background: var(--c-surface); border-radius: var(--r-lg);
  border: 1px solid var(--c-line);
  box-shadow: 0 8px 32px rgba(0,0,0,.04), 0 32px 64px rgba(0,0,0,.03);
  overflow: hidden; overflow-x: auto;
}
.pricing-table { width: 100%; border-collapse: collapse; min-width: 720px; }
.pricing-table thead {
  background: linear-gradient(180deg, var(--c-bg), var(--c-bg-alt));
  border-bottom: 1px solid var(--c-line);
}
.pricing-table th, .pricing-table td { padding: 14px 20px; text-align: left; }
.pricing-table th { font-family: var(--font-sans); font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--c-muted); font-weight: 700; }
.pricing-table tbody tr { border-bottom: 1px solid var(--c-line); transition: background var(--t-1) var(--ease); }
.pricing-table tbody tr:hover { background: var(--c-bg-alt); }
.pricing-table tbody tr:last-child { border-bottom: 0; }
.pricing-table td { font-size: .95rem; }
.pricing-table td b { color: var(--c-ink); font-weight: 800; }
.pricing-foot {
  margin-top: 16px; padding: 16px 20px;
  background: var(--p-amber-bg); border-radius: var(--r);
  border: 1px solid rgba(149,100,0,.12); color: var(--c-ink-2); font-size: .9rem;
}
.pricing-foot strong { color: var(--c-accent-2); }
.pricing-foot p { margin: 0; }

/* ─────────────────────────── Why Us ─────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.why {
  position: relative;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  padding: 24px;
  transition: transform var(--t-2) var(--ease), background var(--t-2) var(--ease), border-color var(--t-2) var(--ease);
}
.why:hover { transform: translateY(-3px); background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.14); }
.why__num {
  font-family: var(--font-mono); font-weight: 700; font-size: 2rem;
  color: rgba(255,255,255,.25);
  margin-bottom: 14px; display: block;
}
.why h3 { color: rgba(255,255,255,.92); font-size: 1.05rem; margin-bottom: 8px; }
.why p  { color: rgba(255,255,255,.55); font-size: .9rem; margin: 0; line-height: 1.65; }
.why b  { color: rgba(255,255,255,.85); }

/* ─────────────────────── Fleet — Z-Axis Cascade ─────────────── */
.fleet {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  padding-top: 8px;
}
.fleet-card {
  position: relative;
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: var(--s-bezel);
  transition: transform var(--t-2) var(--ease), box-shadow var(--t-2) var(--ease);
}
/* Z-axis cascade — more dramatic tilt per high-end-visual-design v2 */
.fleet-card:nth-child(2) { transform: rotate(.8deg) translateY(-3px); }
.fleet-card:nth-child(3) { transform: rotate(-1deg) translateY(2px); }
.fleet-card:nth-child(4) { transform: rotate(.6deg) translateY(-1px); }
.fleet-card:hover { transform: translateY(-8px) rotate(0deg) !important; box-shadow: var(--s-hover); }
.fleet-card--feat { border: 1px solid rgba(0,0,0,.12); }
.fleet-card__media { aspect-ratio: 16 / 9; background: var(--c-bg-alt); overflow: hidden; }
.fleet-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform var(--t-3) var(--ease); }
.fleet-card:hover .fleet-card__media img { transform: scale(1.04); }
.fleet-card h3 { padding: 20px 22px 0; font-size: 1.1rem; margin-bottom: 6px; }
.fleet-card p  { padding: 0 22px; color: var(--c-muted); font-size: .9rem; }
.fleet-card__feats {
  list-style: none; padding: 0 22px; margin: 14px 0 18px;
  display: flex; flex-wrap: wrap; gap: 6px;
}
.fleet-card__feats li {
  background: var(--c-bg-alt); color: var(--c-ink-2);
  padding: 4px 11px; border-radius: 999px; font-size: .74rem; font-weight: 600;
}
.fleet-card__foot {
  margin-top: auto; padding: 16px 22px;
  border-top: 1px solid var(--c-line);
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
}
.fleet-card__foot span { font-size: .84rem; color: var(--c-muted); }
.fleet-card__foot b { color: var(--c-ink); font-size: 1.05rem; font-family: var(--font-sans); font-weight: 800; }

/* ─────────────────────────── Steps ──────────────────────────── */
.steps {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  counter-reset: step;
}
.steps li {
  position: relative;
  background: var(--c-surface); border-radius: var(--r-lg);
  padding: 24px 22px;
  border: 1px solid var(--c-line);
  transition: transform var(--t-2) var(--ease), box-shadow var(--t-2) var(--ease);
}
.steps li:hover { transform: translateY(-3px); box-shadow: var(--s-hover); }
.steps li::after {
  content: ""; position: absolute; top: 50%; right: -18px;
  width: 36px; height: 2px;
  background: repeating-linear-gradient(90deg, var(--c-line) 0px, var(--c-line) 4px, transparent 4px, transparent 8px);
}
.steps li:last-child::after { display: none; }
.steps__num {
  width: 46px; height: 46px; border-radius: var(--r-sm);
  background: #111111;
  color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-mono); font-weight: 700; font-size: 1.1rem;
  margin-bottom: 18px;
  border: 1px solid var(--c-line);
}
.steps h3 { font-size: 1.05rem; margin-bottom: 8px; }
.steps p  { color: var(--c-muted); font-size: .9rem; margin: 0; line-height: 1.6; }
.steps a  { color: var(--c-accent-2); font-weight: 700; }

/* ─────────────────────────── Places ─────────────────────────── */
.places { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.place {
  background: #fff; border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--s-bezel);
  transition: transform var(--t-2) var(--ease), box-shadow var(--t-2) var(--ease);
}
.place:hover { transform: translateY(-3px); box-shadow: var(--s-hover); }
.place__media { aspect-ratio: 16 / 10; overflow: hidden; }
.place__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform var(--t-3) var(--ease); }
.place:hover .place__media img { transform: scale(1.05); }
.place__body { padding: 22px 24px 26px; }
.place__body h3 { font-size: 1.1rem; }
.place__body p  { color: var(--c-muted); font-size: .9rem; margin: 0 0 16px; line-height: 1.6; }
.place__meta { display: flex; flex-wrap: wrap; gap: 6px; }
.place__meta span, .place__tag {
  background: var(--c-bg-alt); padding: 5px 12px;
  border-radius: 999px; font-size: .76rem; font-weight: 600; color: var(--c-ink-2);
}
/* Semantic place tag variants (no emojis) */
.place__tag--dist::before  { content: ""; display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--c-ink-2); margin-right: 5px; vertical-align: middle; }
.place__tag--time::before  { content: ""; display: inline-block; width: 6px; height: 6px; border: 1.5px solid currentColor; border-radius: 50%; margin-right: 5px; vertical-align: middle; }
.place__tag--price { background: var(--p-amber-bg); color: var(--p-amber-tx); font-weight: 700; }

/* ─────────────────────── Testimonials — CSS Masonry 2-col ───── */
/* DESIGN_VARIANCE=8: No 3-equal-column card layouts */
.testimonials {
  columns: 2; column-gap: 20px;
  display: block;
}
.testimonial {
  background: #fff; border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--s-bezel);
  break-inside: avoid; margin-bottom: 20px;
  display: block;
  transition: transform var(--t-2) var(--ease), box-shadow var(--t-2) var(--ease);
}
.testimonial:hover { transform: translateY(-3px); box-shadow: var(--s-hover); }
/* Editorial quote mark */
.testimonial::before {
  content: "\201C";
  font-family: var(--font-display);
  font-size: 4rem; line-height: 1;
  color: var(--c-line);
  display: block; margin-bottom: -12px;
  margin-left: -4px;
}
.testimonial__head { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.testimonial__head strong { display: block; font-size: .95rem; }
.testimonial__head span  { font-size: .78rem; color: var(--c-muted); display: block; }
.avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: #111111;
  display: grid; place-items: center;
  font-family: var(--font-sans); font-weight: 700; color: #fff; font-size: .9rem;
  flex-shrink: 0;
  border: 1px solid var(--c-line);
}
.stars { color: #FFB020; font-size: .8rem; letter-spacing: 1px; }
.testimonial p  {
  font-size: .97rem; color: var(--c-ink-2); line-height: 1.75;
  font-family: var(--font-display);
  font-style: italic;
}
.testimonial em {
  font-style: normal; font-size: .78rem; color: var(--c-muted);
  border-top: 1px solid var(--c-line); padding-top: 14px; display: block; margin-top: 4px;
}

/* ─────────────────────────── FAQ ────────────────────────────── */
/* Stripped to border-bottom dividers per minimalist-ui spec */
.faq { display: flex; flex-direction: column; gap: 0; }
.faq__item {
  background: transparent;
  border-radius: 0;
  border-bottom: 1px solid var(--c-line);
  box-shadow: none;
  transition: none;
}
.faq__item:first-child { border-top: 1px solid var(--c-line); }
.faq__item[open] { box-shadow: none; }
.faq__item summary {
  list-style: none; cursor: pointer; padding: 20px 0;
  font-family: var(--font-sans); font-weight: 600; font-size: 1rem;
  color: var(--c-ink);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq__item summary::-webkit-details-marker { display: none; }
/* Sharp + / − toggle per minimalist-ui spec */
.faq__item summary::after {
  content: "+";
  font-family: var(--font-mono);
  font-size: 1.3rem; font-weight: 300; line-height: 1;
  color: var(--c-muted); flex-shrink: 0;
  transition: color var(--t-1) var(--ease);
}
.faq__item[open] summary::after { content: "−"; color: var(--c-ink); }
.faq__body { padding: 0 0 20px; color: var(--c-ink-2); animation: fadeSlideUp var(--t-2) var(--ease); }
.faq__body p:last-child { margin-bottom: 0; }
.faq__body ul, .faq__body ol { margin: 0 0 10px; padding-left: 20px; }
.faq__body a { color: var(--c-accent-2); font-weight: 600; }
.faq__body a:hover { text-decoration: underline; }

/* ─────────────────────────── CTA card ──────────────────────── */
.cta-card {
  background: #111111;
  color: #fff; border-radius: var(--r-xl);
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 0; overflow: hidden;
  position: relative;
  border: 1px solid rgba(255,255,255,.08);
}
.cta-card::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(700px 400px at 0% 100%, rgba(255,255,255,.03), transparent 65%);
}
.cta-card__copy { padding: clamp(32px, 4.5vw, 64px); position: relative; z-index: 1; }
.cta-card__copy h2 { color: #fff; }
.cta-card__copy p  { color: rgba(255,255,255,.72); font-size: 1.02rem; line-height: 1.7; }
.cta-card__buttons { display: flex; gap: 12px; flex-wrap: wrap; margin: 28px 0; }
.cta-card__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; font-size: .92rem; color: rgba(255,255,255,.82); }
.cta-card__list b { color: var(--c-accent); margin-right: 6px; }
.cta-card__list a { color: #fff; border-bottom: 1px dashed rgba(255,255,255,.28); }
.cta-card__list a:hover { color: var(--c-accent); }
.cta-card__map { background: #0a0a0a; min-height: 420px; }
.cta-card__map iframe { width: 100%; height: 100%; border: 0; min-height: 420px; }

/* ─────────────────────────── Footer ─────────────────────────── */
.site-footer {
  background: #111111;
  color: rgba(255,255,255,.65);
  padding: 72px 0 28px;
}
.site-footer__grid {
  display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.2fr; gap: 40px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-col h4 { color: rgba(255,255,255,.95); margin-bottom: 16px; font-family: var(--font-sans); letter-spacing: .1em; font-size: .72rem; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.footer-col a { color: rgba(255,255,255,.68); font-size: .92rem; transition: color var(--t-1) var(--ease), transform var(--t-1) var(--ease); display: inline-block; }
.footer-col a:hover { color: var(--c-accent); transform: translateX(3px); }
.footer-col p { color: rgba(255,255,255,.58); font-size: .9rem; max-width: 360px; line-height: 1.7; }
.footer-col--brand .brand { color: #fff; margin-bottom: 18px; }

/* Logo wrapper in dark footer — subtle light halo */
.brand__logo--footer {
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  padding: 6px;
  box-shadow: 0 0 0 1px rgba(255,255,255,.1);
  filter: none;
}

.footer-contact b { color: var(--c-accent); font-weight: 700; }

.socials { display: flex; gap: 8px; margin-top: 18px; }
.socials a {
  width: 40px; height: 40px; display: grid; place-items: center;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r-sm); color: rgba(255,255,255,.8);
  transition: background var(--t-2) var(--ease), color var(--t-1) var(--ease),
              transform var(--t-1) var(--ease-bounce), border-color var(--t-1) var(--ease);
}
.socials a:hover { transform: translateY(-3px) scale(1.05); border-color: transparent; }
.socials a[aria-label="Facebook"]:hover  { background: #1877F2; color: #fff; }
.socials a[aria-label="Zalo"]:hover      { background: #0068FF; color: #fff; }
.socials a[aria-label="TikTok"]:hover    { background: #010101; color: #fff; }
.socials a[aria-label="YouTube"]:hover   { background: #FF0000; color: #fff; }
.socials .zalo-icon--social { width: 24px; height: 24px; }

.site-footer__bottom {
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap;
  font-size: .8rem; color: rgba(255,255,255,.4);
}
.site-footer__bottom ul { list-style: none; padding: 0; margin: 0; display: flex; gap: 20px; flex-wrap: wrap; }
.site-footer__bottom a:hover { color: var(--c-accent); }

/* ─────────────────────── Sticky mobile CTA ──────────────────── */
.sticky-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 38;
  background: rgba(253,251,247,.97); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(0,0,0,.07);
  box-shadow: 0 -8px 40px rgba(0,0,0,.10);
  padding: 10px 14px env(safe-area-inset-bottom);
  gap: 8px;
}
.sticky-cta__btn {
  flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 13px 8px; border-radius: var(--r);
  font-weight: 700; font-size: .9rem; letter-spacing: -.005em; white-space: nowrap;
}
.sticky-cta__btn--call { background: var(--c-success); color: #fff; }
.sticky-cta__btn--zalo { background: var(--c-zalo); color: #fff; }
.sticky-cta__btn--book { background: #111111; color: #fff; }

/* ─────────────────────── FAB Stack (phone + zalo) ──────────────── */
.fab-stack {
  position: fixed;
  right: clamp(18px, 3vw, 34px);
  /* sits directly above scroll-top: scroll-top.bottom(28) + scroll-top.h(52) + gap(8) = 88px */
  bottom: 88px;
  z-index: 39;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.fab {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
  box-shadow:
    0 4px 14px rgba(0,0,0,.2),
    0 0 0 1px rgba(255,255,255,.12);
  transition:
    transform 180ms var(--ease),
    box-shadow 180ms var(--ease);
}
.fab:hover  { transform: translateY(-3px); box-shadow: 0 8px 22px rgba(0,0,0,.24), 0 0 0 1px rgba(255,255,255,.12); }
.fab:active { transform: translateY(0) scale(.96); }

.fab--phone { background: var(--c-success); color: #fff; }
.fab--zalo  { background: var(--c-zalo); color: #fff; overflow: hidden; }
.fab--zalo img { width: 30px; height: 30px; object-fit: contain; display: block; }

/* Hide FABs on mobile — sticky-cta bar already covers these actions */
@media (max-width: 720px) { .fab-stack { display: none; } }

/* ───────────────────────── Scroll to top ───────────────────────── */
.scroll-top {
  position: fixed; right: clamp(18px, 3vw, 34px); bottom: 28px; z-index: 39;
  width: 52px; height: 52px; display: grid; place-items: center;
  border-radius: 50%;
  background: #111111; color: #fff;
  box-shadow: 0 10px 34px rgba(0,0,0,.18), 0 0 0 1px rgba(255,255,255,.14);
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(14px) scale(.96);
  transition:
    opacity var(--t-2) var(--ease),
    transform var(--t-2) var(--ease),
    visibility var(--t-2) var(--ease),
    background var(--t-1) var(--ease);
}
.scroll-top.is-visible {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateY(0) scale(1);
}
.scroll-top:hover { background: var(--c-accent-2); transform: translateY(-2px) scale(1.02); }
.scroll-top:active { transform: translateY(0) scale(.98); }

/* ─────────────────────────── Toast ──────────────────────────── */
.toast {
  position: fixed; bottom: 28px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--c-ink); color: #fff;
  padding: 14px 22px; border-radius: var(--r); box-shadow: var(--s-3);
  font-weight: 600; font-size: .92rem;
  opacity: 0;
  transition: opacity var(--t-2) var(--ease), transform var(--t-2) var(--ease);
  z-index: 100;
}
.toast.is-visible { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast.is-success { background: var(--c-success); }

/* ─────────────────── Booking Success Modal ──────────────────── */
.booking-modal {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.booking-modal[hidden] { display: none; }

.booking-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(17,17,17,.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
}

.booking-modal__box {
  position: relative; z-index: 1;
  background: var(--c-surface);
  border-radius: var(--r-3xl);
  box-shadow: 0 0 0 1px rgba(0,0,0,.07), 0 32px 80px rgba(0,0,0,.2);
  width: 100%; max-width: 440px;
  overflow: hidden;
  animation: modal-in 300ms cubic-bezier(.34,1.4,.64,1) both;
}
@keyframes modal-in {
  from { opacity: 0; transform: translateY(28px) scale(.93); }
  to   { opacity: 1; transform: none; }
}

/* ── Close button ── */
.booking-modal__close {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  width: 30px; height: 30px;
  border: 1px solid var(--c-line); background: var(--c-surface); border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  color: var(--c-muted);
  transition: background 150ms, color 150ms, border-color 150ms;
}
.booking-modal__close:hover { background: var(--c-bg-alt); color: var(--c-ink); border-color: var(--c-line-strong); }

/* ── Head — subtle success tint ── */
.booking-modal__head {
  background: linear-gradient(170deg, rgba(52,101,56,.08) 0%, rgba(52,101,56,.02) 55%, transparent 100%);
  border-bottom: 1px solid var(--c-line);
  padding: 36px 28px 24px;
  text-align: center;
}

.booking-modal__icon {
  width: 60px; height: 60px;
  margin: 0 auto 14px;
  background: var(--c-success); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 6px 20px rgba(52,101,56,.32);
}

.booking-modal__title {
  font-size: 1.35rem; font-weight: 800;
  letter-spacing: -.025em; color: var(--c-ink);
  margin: 0 0 6px;
}

.booking-modal__message {
  font-size: .9rem; color: var(--c-muted); line-height: 1.6;
  margin: 0;
}
.booking-modal__message strong { color: var(--c-ink-2); font-weight: 700; }

/* ── Summary list ── */
.booking-modal__summary {
  margin: 0;
  padding: 0 28px;
  display: grid; grid-template-columns: 6.5rem 1fr; gap: 0;
}
.booking-modal__summary dt,
.booking-modal__summary dd {
  padding: 11px 0;
  border-bottom: 1px solid var(--c-line);
  font-size: .875rem; line-height: 1.45;
}
.booking-modal__summary dt {
  color: var(--c-muted); font-weight: 500;
  padding-right: 12px; white-space: nowrap;
}
.booking-modal__summary dd {
  margin: 0; font-weight: 600; color: var(--c-ink-2);
  word-break: break-word;
}
.booking-modal__summary dt:last-of-type,
.booking-modal__summary dd:last-of-type { border-bottom: none; }

/* ── Footer ── */
.booking-modal__footer { padding: 20px 28px; }
.booking-modal__btn { width: 100%; }

/* ─────────────────────── Scroll Reveals ─────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(8px);
  filter: blur(4px);
  transition:
    opacity     900ms var(--ease),
    transform   900ms var(--ease),
    filter      700ms var(--ease);
}
[data-reveal].is-revealed { opacity: 1; transform: none; filter: blur(0); }

/* ─────────────── Spotlight Border Card (MOTION_INTENSITY=6) ──── */
/* JS sets --spotlight-x and --spotlight-y on mousemove */
.spotlight {
  position: relative; isolation: isolate;
}
.spotlight::after {
  content: '';
  position: absolute; inset: 0; border-radius: inherit;
  background: radial-gradient(
    280px circle at var(--spotlight-x, 50%) var(--spotlight-y, 50%),
    rgba(0,0,0,.06) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 380ms var(--ease);
  pointer-events: none; z-index: 1;
}
.spotlight:hover::after { opacity: 1; }

/* Shimmer loading skeleton */
@keyframes shimmer {
  from { background-position: -200% center; }
  to   { background-position:  200% center; }
}
.shimmer {
  background: linear-gradient(90deg, var(--c-bg-alt) 25%, rgba(255,255,255,.7) 50%, var(--c-bg-alt) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.6s infinite;
}

/* ─────────────────────────── Responsive ─────────────────────── */
@media (max-width: 1100px) {
  .services { grid-template-columns: repeat(6, 1fr); }
  .service:nth-child(1) { grid-column: span 4; }
  .service:nth-child(2) { grid-column: span 2; grid-row: span 2; }
  .service:nth-child(3) { grid-column: span 3; }
  .service:nth-child(4) { grid-column: span 1; }
  .service:nth-child(5) { grid-column: span 3; }
  .service:nth-child(6) { grid-column: span 3; }
  .why-grid, .fleet, .steps { grid-template-columns: repeat(2, 1fr); }
  .steps li::after { display: none; }
  .metrics { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .metric { border-right: 0; border-bottom: 1px dashed var(--c-line); padding-bottom: 16px; }
  .metric:nth-last-child(-n+2) { border-bottom: 0; padding-bottom: 0; padding-top: 12px; }
  .routes, .testimonials, .places { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 880px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__copy  { padding-left: 0; border-left: none; }
  .hero__copy::before { display: none; }
  .hero__usps  { grid-template-columns: 1fr; }
  .services    { grid-template-columns: 1fr 1fr; }
  .service:nth-child(1), .service:nth-child(2), .service:nth-child(3),
  .service:nth-child(4), .service:nth-child(5), .service:nth-child(6) {
    grid-column: span 1; grid-row: span 1;
  }
  .section__head { padding-bottom: 14px; }
}

@media (max-width: 720px) {
  .primary-nav { display: none; }
  .header-cta .btn--phone, .header-cta .btn--primary { display: none; }
  .hamburger { display: inline-flex; }
  .booking__inner { padding: 22px; }
  .booking__form > .field-row:nth-of-type(2) { grid-template-columns: 1fr 1fr; }
  .cta-card { grid-template-columns: 1fr; }
  .cta-card__map { min-height: 300px; }
  .cta-card__map iframe { min-height: 300px; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .sticky-cta { display: flex; }
  .scroll-top {
    right: 14px;
    bottom: calc(88px + env(safe-area-inset-bottom));
    width: 46px; height: 46px;
  }
  body { padding-bottom: 76px; }
  /* Remove z-axis cascade rotations on mobile — touch targets */
  .fleet-card:nth-child(2),
  .fleet-card:nth-child(3),
  .fleet-card:nth-child(4) { transform: none; }
  /* Remove dot-grid on mobile — performance */
  .section--alt { background-image: none; }
  .section--dark { background-image: none; }
}

@media (max-width: 600px) {
  .services, .routes, .places, .why-grid, .fleet, .steps { grid-template-columns: 1fr; }
  /* testimonials uses CSS columns, not grid */
  .testimonials { columns: 1; }
  .field-row, .booking__form > .field-row:nth-of-type(2) { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .pricing-tab { padding: .62em 1em; font-size: .84rem; }
  .pricing-table th, .pricing-table td { padding: 12px 14px; font-size: .87rem; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { flex: none; width: 100%; }
  .section__head { margin-bottom: 24px; }
  .site-header { padding: 8px 12px 0; }
}

@media (max-width: 480px) {
  .announcement__marquee { display: none; }
  .announcement__inner { justify-content: center; }
  .announcement p { font-size: .8rem; display: block; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
  [data-reveal] { filter: none; }
}

/* Print */
@media print {
  .site-header, .sticky-cta, .scroll-top, .announcement, .booking, .cta-card__map, .site-footer { display: none; }
  body { background: #fff; }
}
