/* =========================================================
   Mangalore Cab Service
   Design system + components
   ========================================================= */

@font-face {
  font-family: "Outfit";
  src: url("/assets/fonts/outfit.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/manrope.woff2") format("woff2");
  font-weight: 200 800;
  font-display: swap;
}

:root {
  /* colour */
  --ink: #121212;
  --ink-2: #1c1a17;
  --ink-3: #2a2723;
  --gold: #f4b120;
  --gold-deep: #c98a00;
  --gold-soft: #fbe3a6;
  --cream: #fbf7ef;
  --paper: #fffdf8;
  --sand: #f1e8d8;
  --sand-2: #e6d8bf;
  --laterite: #9c4a2e;
  --text: #3a3834;
  --muted: #6b665d;
  --line: rgba(18, 18, 18, 0.12);
  --line-light: rgba(251, 247, 239, 0.12);
  --wa: #25d366;
  --wa-ink: #062f16;

  /* type */
  --f-display: "Outfit", "Trebuchet MS", sans-serif;
  --f-body: "Manrope", "Segoe UI", sans-serif;

  /* shape */
  --r-sm: 12px;
  --r: 22px;
  --r-lg: 32px;
  --shadow-sm: 0 1px 2px rgba(18, 18, 18, 0.06), 0 4px 14px rgba(18, 18, 18, 0.05);
  --shadow: 0 2px 6px rgba(18, 18, 18, 0.05), 0 18px 40px -12px rgba(18, 18, 18, 0.18);
  --shadow-lg: 0 4px 10px rgba(18, 18, 18, 0.04), 0 40px 80px -24px rgba(18, 18, 18, 0.28);

  /* motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  /* layout */
  --gutter: clamp(16px, 4vw, 40px);
  --hdr-h: 72px;
}

/* ---------- reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--hdr-h) + 16px); }
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 1rem;
  font-weight: 450;
  line-height: 1.65;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; }
picture { display: contents; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { font-family: var(--f-display); color: var(--ink); margin: 0; line-height: 1.08; letter-spacing: -0.02em; font-weight: 650; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
[hidden] { display: none !important; }

.sr, .skip:not(:focus) {
  position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}
.skip:focus { position: fixed; top: 12px; left: 12px; z-index: 100; background: var(--ink); color: var(--cream); padding: 0.7rem 1rem; border-radius: 10px; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 6px; }

.icon { width: 1.15em; height: 1.15em; flex: none; }
.wrap { width: 100%; max-width: 1240px; margin-inline: auto; padding-inline: var(--gutter); }

/* ---------- type helpers ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-family: var(--f-display); font-weight: 600; font-size: 0.76rem;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted);
  margin-bottom: 1rem;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--gold); border-radius: 2px; }
.eyebrow i { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); display: inline-block; }
.eyebrow--gold { color: var(--gold); }

.u, .mark {
  background-image: linear-gradient(transparent 64%, var(--gold-soft) 64%, var(--gold-soft) 92%, transparent 92%);
  -webkit-box-decoration-break: clone; box-decoration-break: clone;
  padding-inline: 0.05em;
}
.u--gold { background: none; color: var(--gold); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--f-display); font-weight: 600; text-decoration: none; color: var(--ink);
  padding-bottom: 3px; border-bottom: 2px solid var(--gold);
  transition: gap 0.4s var(--ease);
}
.link-arrow:hover { gap: 0.85rem; }
.link-arrow--light { color: var(--cream); }

/* ---------- buttons ---------- */
.btn {
  --bg: var(--ink); --fg: var(--cream);
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  min-height: 48px; padding: 0.8rem 1.35rem;
  font-family: var(--f-display); font-weight: 600; font-size: 1rem; line-height: 1.1; letter-spacing: -0.005em;
  color: var(--fg); background: var(--bg);
  border: 1.5px solid transparent; border-radius: 999px;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), background-color 0.3s, color 0.3s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 24px -10px rgba(18, 18, 18, 0.35); }
.btn:active { transform: translateY(0); }
.btn--gold { --bg: var(--gold); --fg: var(--ink); }
.btn--gold:hover { box-shadow: 0 14px 28px -10px rgba(201, 138, 0, 0.55); }
.btn--wa { --bg: var(--wa); --fg: var(--wa-ink); }
.btn--ink { --bg: var(--ink); --fg: var(--cream); }
.btn--ghost { --bg: transparent; --fg: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ink); box-shadow: none; }
.btn--lg { min-height: 56px; padding: 1rem 1.7rem; font-size: 1.05rem; }
.btn--sm { min-height: 42px; padding: 0.6rem 1.1rem; font-size: 0.95rem; }
.btn--block { width: 100%; }

/* ---------- header ---------- */
.hdr {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 247, 239, 0.86);
  -webkit-backdrop-filter: saturate(1.4) blur(14px); backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background-color 0.3s;
}
.hdr[data-scrolled] { border-bottom-color: var(--line); background: rgba(251, 247, 239, 0.94); }
.hdr__in { height: var(--hdr-h); display: flex; align-items: center; gap: 1.5rem; }

.brand { display: inline-flex; align-items: center; gap: 0.55rem; text-decoration: none; margin-right: auto; }
.brand__icon { height: 40px; width: auto; }
.brand__word { font-family: var(--f-display); font-weight: 800; font-size: 1.12rem; letter-spacing: -0.03em; color: var(--ink); }
.brand__word b { color: #e9a20c; font-weight: 800; }
.brand--light .brand__word { color: var(--cream); }
.brand--light .brand__word b { color: var(--gold); }

.nav { display: none; }
.nav ul { display: flex; gap: 0.3rem; }
.nav a {
  position: relative; display: block; padding: 0.55rem 0.8rem;
  font-weight: 600; font-size: 0.95rem; text-decoration: none; color: var(--text);
  border-radius: 999px; transition: color 0.2s, background-color 0.2s;
}
.nav a:hover { color: var(--ink); background: rgba(18, 18, 18, 0.05); }
.nav a[aria-current="page"] { color: var(--ink); }
.nav a[aria-current="page"]::after {
  content: ""; position: absolute; left: 50%; bottom: 2px; width: 5px; height: 5px; margin-left: -2.5px;
  border-radius: 50%; background: var(--gold);
}

.hdr__cta { display: none; align-items: center; gap: 1rem; }
.hdr__phone {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-family: var(--f-display); font-weight: 600; text-decoration: none; color: var(--ink);
}
.hdr__phone .icon { color: var(--gold-deep); }

.burger {
  display: grid; place-content: center; gap: 6px;
  width: 46px; height: 46px; border-radius: 50%;
  border: 1.5px solid var(--line); background: var(--paper); cursor: pointer;
}
.burger i { display: block; width: 18px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.4s var(--ease); }
.burger[aria-expanded="true"] i:first-of-type { transform: translateY(4px) rotate(45deg); }
.burger[aria-expanded="true"] i:last-of-type { transform: translateY(-4px) rotate(-45deg); }

.mnav {
  position: fixed; inset: var(--hdr-h) 0 0 0; z-index: 49;
  background: var(--ink); color: var(--cream);
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 2rem var(--gutter) calc(1.5rem + env(safe-area-inset-bottom));
  overflow-y: auto;
}
.mnav a:not(.btn) {
  display: block; padding: 0.55rem 0; text-decoration: none;
  font-family: var(--f-display); font-weight: 600; font-size: 2rem; letter-spacing: -0.02em; color: var(--cream);
  border-bottom: 1px solid var(--line-light);
}
.mnav a[aria-current="page"] { color: var(--gold); }
.mnav__foot { display: grid; gap: 0.75rem; margin-top: 2rem; }
.mnav__tag { text-align: center; font-family: var(--f-display); font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(251, 247, 239, 0.5); margin-top: 0.5rem; }
.js .mnav:not([hidden]) { animation: menuIn 0.5s var(--ease) both; }
.js .mnav:not([hidden]) li { animation: rise 0.6s var(--ease) both; }
.js .mnav:not([hidden]) li:nth-child(2) { animation-delay: 40ms; }
.js .mnav:not([hidden]) li:nth-child(3) { animation-delay: 80ms; }
.js .mnav:not([hidden]) li:nth-child(4) { animation-delay: 120ms; }
.js .mnav:not([hidden]) li:nth-child(5) { animation-delay: 160ms; }
body.menu-open { overflow: hidden; }

@media (min-width: 1024px) {
  .nav, .hdr__cta { display: flex; }
  .burger, .mnav { display: none !important; }
  .brand__icon { height: 44px; }
  .brand__word { font-size: 1.22rem; }
}
@media (max-width: 1179px) and (min-width: 1024px) {
  .hdr__phone span { display: none; }
}

/* ---------- sections ---------- */
.sec { padding-block: clamp(4.5rem, 3rem + 5vw, 8rem); position: relative; }
.sec__head { max-width: 760px; margin-bottom: clamp(2.2rem, 1.5rem + 2vw, 3.5rem); }
.sec__head h2 { font-size: clamp(2.05rem, 1.25rem + 2.9vw, 3.5rem); }
.sec__lede { margin-top: 1.1rem; font-size: 1.08rem; color: var(--muted); max-width: 600px; }
.sec__head--split { max-width: none; display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1.5rem 3rem; }
.sec__head--split h2 { max-width: 720px; }
.sec__head--center { margin-inline: auto; text-align: center; }
.sec__head--center .eyebrow::before { display: none; }

/* photo placeholder while real photos are pending */
.ph {
  display: grid; place-items: end start; padding: 1rem;
  background:
    radial-gradient(120% 80% at 80% 0%, rgba(244, 177, 32, 0.35), transparent 60%),
    repeating-linear-gradient(135deg, var(--sand) 0 14px, var(--sand-2) 14px 15px);
  color: var(--muted); font-size: 0.75rem; font-weight: 600; line-height: 1.3;
}
.ph span { background: rgba(255, 253, 248, 0.85); padding: 0.3rem 0.55rem; border-radius: 8px; max-width: 90%; }

/* ---------- hero ---------- */
.hero { position: relative; z-index: 2; overflow-x: clip; padding-top: clamp(1.5rem, 1rem + 2vw, 3.5rem); }
.hero__sun {
  position: absolute; z-index: 0; border-radius: 50%;
  width: 82%; aspect-ratio: 1;
  right: -14%; top: -9%;
  background: radial-gradient(circle at 40% 40%, #f8c54a, var(--gold) 60%, #eea514);
  opacity: 0.95;
}
.hero__road { position: absolute; z-index: 0; right: -4%; bottom: 40px; width: min(760px, 70vw); color: var(--gold-deep); opacity: 0.4; pointer-events: none; }
.hero__grid { position: relative; z-index: 1; display: grid; gap: 2.5rem; align-items: center; }
.hero__h1 {
  font-size: clamp(2.55rem, 1.2rem + 5.4vw, 5.25rem);
  font-weight: 700; line-height: 0.98; letter-spacing: -0.035em;
}
.hero__h1 .mark { font-weight: 700; }
.hero__lede { margin-top: 1.4rem; font-size: clamp(1.02rem, 0.95rem + 0.35vw, 1.2rem); max-width: 540px; color: var(--text); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 2rem; }
.hero__actions .btn { flex: 1 1 auto; }
@media (min-width: 640px) { .hero__actions .btn { flex: 0 0 auto; } }
.hero__call { margin-top: 1rem; color: var(--muted); font-size: 0.95rem; }
.hero__call a { font-family: var(--f-display); font-weight: 600; color: var(--ink); text-decoration-color: var(--gold); text-decoration-thickness: 2px; text-underline-offset: 4px; }

.hero__media { position: relative; margin-right: 6%; }
.hero__media .arch { z-index: 1; }
.hero__badge { z-index: 2; }
.arch {
  position: relative; overflow: hidden; margin-top: 8%;
  aspect-ratio: 5 / 4;
  border-radius: 999px 999px var(--r) var(--r);
  box-shadow: var(--shadow-lg);
  background: var(--sand);
  isolation: isolate;
}
.arch img, .arch .ph { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.arch::after { content: ""; position: absolute; inset: 0; border-radius: inherit; box-shadow: inset 0 0 0 1px rgba(18, 18, 18, 0.06); pointer-events: none; }
.js .arch img { animation: settle 2.8s var(--ease) both; }
.hero__badge {
  position: absolute; left: -8px; bottom: 18px;
  display: flex; align-items: center; gap: 0.8rem;
  padding: 0.8rem 1.1rem 0.8rem 0.9rem;
  background: var(--ink); color: rgba(251, 247, 239, 0.8);
  border-radius: 18px; box-shadow: var(--shadow);
  font-size: 0.8rem; line-height: 1.3;
}
.hero__badge-n { font-family: var(--f-display); font-size: 2.2rem; font-weight: 700; color: var(--gold); line-height: 1; }

.hero__form { position: relative; z-index: 2; margin-top: clamp(2rem, 1rem + 3vw, 3.5rem); margin-bottom: -3.25rem; }

@media (min-width: 1024px) {
  .hero__grid { grid-template-columns: 1.08fr 0.92fr; gap: 3.5rem; }
  .arch { aspect-ratio: 4 / 4.6; }
  .hero__badge { left: -32px; bottom: 44px; }
}

/* ---------- enquiry form ---------- */
.qf {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.25rem;
}
.qf--card { padding: clamp(1.4rem, 1rem + 1.5vw, 2.2rem); }
.qf__title { font-family: var(--f-display); font-weight: 650; font-size: 1.45rem; color: var(--ink); letter-spacing: -0.02em; line-height: 1.15; }
.qf__title:focus { outline: none; }
.qf__sub { color: var(--muted); font-size: 0.95rem; margin: 0.35rem 0 1.3rem; }
.qf__grid { display: grid; gap: 0.85rem; }
.fld { display: grid; gap: 0.35rem; position: relative; }
.fld label { font-family: var(--f-display); font-weight: 600; font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.fld input, .fld select, .fld textarea {
  width: 100%; min-height: 52px; padding: 0.7rem 1rem;
  font-size: 1rem; font-weight: 500; color: var(--ink);
  background: var(--cream); border: 1.5px solid var(--line); border-radius: 14px;
  transition: border-color 0.2s, box-shadow 0.2s, background-color 0.2s;
  -webkit-appearance: none; appearance: none;
}
.fld textarea { min-height: 76px; resize: vertical; }
.fld select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%23121212' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem;
}
.fld input::placeholder, .fld textarea::placeholder { color: #9d978c; }
.fld input:hover, .fld select:hover, .fld textarea:hover { border-color: rgba(18, 18, 18, 0.28); }
.fld input:focus, .fld select:focus, .fld textarea:focus { outline: none; background: #fff; border-color: var(--ink); box-shadow: 0 0 0 4px rgba(244, 177, 32, 0.35); }
.fld[data-invalid] input, .fld[data-invalid] select { border-color: var(--laterite); }
.fld__err { font-size: 0.8rem; font-weight: 600; color: var(--laterite); }
.qf__go { display: grid; align-items: end; }
.qf__go .btn { min-height: 52px; }
.qf__note { margin-top: 0.9rem; font-size: 0.88rem; color: var(--muted); }
.qf__note a { color: var(--ink); font-weight: 600; text-decoration-color: var(--gold); text-underline-offset: 3px; }
.qf__actions { display: flex; gap: 0.6rem; margin-top: 1.1rem; }
.qf__done { text-align: center; padding: 1.2rem 0.5rem; }
.qf__done .qf__sub { margin-bottom: 0; }
.qf__done a { color: var(--ink); font-weight: 600; }
.qf__tick { display: inline-grid; place-items: center; width: 56px; height: 56px; border-radius: 50%; background: var(--gold); color: var(--ink); margin-bottom: 0.9rem; }
.qf__tick .icon { width: 28px; height: 28px; }
.qf [data-step]:not([hidden]) { animation: rise 0.6s var(--ease) both; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

@media (min-width: 640px) {
  .qf__grid { grid-template-columns: 1fr 1fr; }
  .qf__go { grid-column: 1 / -1; }
  .fld--wide { grid-column: 1 / -1; }
}
@media (min-width: 1024px) {
  .qf--bar { padding: 1.1rem 1.1rem 0.9rem 1.5rem; }
  .qf--bar .qf__grid { grid-template-columns: 1.15fr 0.9fr 1fr 1fr auto; align-items: end; }
  .qf--bar .qf__go { grid-column: auto; }
  .qf--bar .qf__go .btn { padding-inline: 1.6rem; }
  .qf--bar .qf__grid--2 { grid-template-columns: repeat(3, 1fr); }
  .qf--bar .qf__note { margin-top: 0.7rem; }
  .qf--bar [data-step="2"] { padding: 0.6rem 0.4rem 0.4rem 0; }
}

/* ---------- facts band ---------- */
.facts { background: var(--ink); color: var(--cream); padding: 5.25rem 0 1.9rem; }
.facts__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.25rem; }
.facts li { display: flex; align-items: center; gap: 0.65rem; font-family: var(--f-display); font-weight: 500; font-size: 0.98rem; }
.facts .icon { color: var(--gold); width: 22px; height: 22px; }
.facts li:last-child { grid-column: 1 / -1; }
@media (min-width: 900px) {
  .facts__row { display: flex; justify-content: space-between; }
  .facts li:last-child { grid-column: auto; }
}

/* ---------- services bento ---------- */
.bento { display: grid; gap: 1rem; }
.svc {
  position: relative; display: flex; flex-direction: column; gap: 0.55rem;
  padding: 1.5rem; min-height: 100%;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r);
  text-decoration: none; color: var(--text);
  transition: transform 0.55s var(--ease), box-shadow 0.55s var(--ease), border-color 0.3s;
}
.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(201, 138, 0, 0.55); }
.svc h3 { font-size: 1.2rem; padding-right: 2rem; }
.svc p { font-size: 0.95rem; color: var(--muted); line-height: 1.55; }
.svc__ic { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 14px; background: var(--gold-soft); color: var(--ink); margin-bottom: 0.4rem; }
.svc__ic .icon { width: 22px; height: 22px; }
.svc > .svc__more { position: absolute; top: 1.4rem; right: 1.4rem; color: var(--muted); transition: transform 0.5s var(--ease), color 0.3s; }
.svc:hover > .svc__more { transform: translate(3px, -3px); color: var(--gold-deep); }

.svc--feature { padding: 0; overflow: hidden; background: var(--ink); border-color: var(--ink); color: rgba(251, 247, 239, 0.75); }
.svc--feature img, .svc--feature .ph { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; transition: transform 1.2s var(--ease); }
.svc--feature:hover img { transform: scale(1.04); }
.svc--feature .svc__body { padding: 1.6rem; display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.svc--feature h3 { color: var(--cream); font-size: clamp(1.45rem, 1.2rem + 0.8vw, 1.9rem); }
.svc--feature p { color: rgba(251, 247, 239, 0.72); font-size: 1rem; }
.svc--feature .svc__ic { background: var(--gold); }
.svc--feature .svc__more { margin-top: auto; padding-top: 0.8rem; display: inline-flex; align-items: center; gap: 0.4rem; font-family: var(--f-display); font-weight: 600; color: var(--gold); }

@media (min-width: 640px) {
  .bento { grid-template-columns: 1fr 1fr; }
  .svc--feature { grid-column: 1 / -1; }
}
@media (min-width: 1024px) {
  .bento { grid-template-columns: 1.25fr 1fr 1fr; grid-template-rows: repeat(3, auto); }
  .svc--feature { grid-column: 1; grid-row: 1 / span 3; }
  .svc--feature img, .svc--feature .ph { aspect-ratio: auto; flex: 1 1 260px; min-height: 260px; }
}

/* ---------- trip tickets ---------- */
.trips { background: var(--sand); }
.trips::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
  background-image: radial-gradient(rgba(18, 18, 18, 0.07) 1px, transparent 1px);
  background-size: 22px 22px;
  -webkit-mask-image: linear-gradient(180deg, #000, transparent 55%); mask-image: linear-gradient(180deg, #000, transparent 55%);
}
.tickets {
  display: grid; grid-auto-flow: column; grid-auto-columns: min(82%, 340px); gap: 1rem;
  overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding-inline: var(--gutter);
  margin-inline: calc(var(--gutter) * -1); padding: 0.5rem var(--gutter) 1.5rem;
  scrollbar-width: none;
}
.tickets::-webkit-scrollbar { display: none; }
.ticket { scroll-snap-align: start; }
.ticket__link {
  display: flex; flex-direction: column; height: 100%;
  background: var(--paper); border-radius: var(--r); text-decoration: none; color: var(--text);
  box-shadow: var(--shadow-sm);
  transition: transform 0.55s var(--ease), box-shadow 0.55s var(--ease);
}
.ticket__link:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.ticket__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; border-radius: var(--r) var(--r) 0 0; }
.ticket__media img, .ticket__media .ph { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.ticket__link:hover .ticket__media img { transform: scale(1.06); }
.ticket__tag {
  position: absolute; top: 0.9rem; left: 0.9rem;
  padding: 0.3rem 0.7rem; border-radius: 999px;
  background: rgba(18, 18, 18, 0.78); color: var(--cream);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  font-family: var(--f-display); font-weight: 600; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
}
.ticket__stub { position: relative; padding: 1.25rem 1.35rem 1.4rem; border-top: 2px dashed var(--sand-2); flex: 1; display: flex; flex-direction: column; gap: 0.35rem; }
.ticket__stub::before, .ticket__stub::after {
  content: ""; position: absolute; top: -12px; width: 22px; height: 22px; border-radius: 50%; background: var(--sand);
}
.ticket__stub::before { left: -11px; }
.ticket__stub::after { right: -11px; }
.ticket__route {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--f-display); font-weight: 600; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted);
}
.ticket__route span:last-child { color: var(--ink); }
.ticket__route svg { width: 46px; height: 10px; color: var(--gold-deep); flex: none; }
.ticket h3 { font-size: 1.22rem; margin-top: 0.15rem; }
.ticket__meta { display: flex; align-items: center; gap: 0.35rem; font-size: 0.88rem; color: var(--muted); margin-top: auto; padding-top: 0.35rem; }
.ticket__meta .icon { width: 15px; height: 15px; color: var(--gold-deep); }

@media (min-width: 720px) {
  .tickets { grid-auto-flow: row; grid-template-columns: repeat(2, 1fr); overflow: visible; margin: 0; padding: 0; }
}
@media (min-width: 1024px) {
  .tickets { grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
}

/* ---------- fleet ---------- */
.fleet { background: var(--ink); color: rgba(251, 247, 239, 0.75); overflow: hidden; }
.fleet h2 { color: var(--cream); }
.fleet .eyebrow::before { background: var(--gold); }
.seatpick { display: flex; flex-wrap: wrap; align-items: center; gap: 0.45rem; }
.seatpick__label { width: 100%; font-size: 0.82rem; color: rgba(251, 247, 239, 0.55); margin-bottom: 0.15rem; }
.seatpick button {
  min-height: 42px; padding: 0.45rem 1rem; border-radius: 999px; cursor: pointer;
  background: transparent; color: var(--cream); border: 1.5px solid rgba(251, 247, 239, 0.22);
  font-family: var(--f-display); font-weight: 600; font-size: 0.92rem;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}
.seatpick button:hover { border-color: var(--gold); }
.seatpick button[aria-pressed="true"] { background: var(--gold); color: var(--ink); border-color: var(--gold); }

.cars {
  display: grid; grid-auto-flow: column; grid-auto-columns: min(80%, 320px); gap: 1rem;
  overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding-inline: var(--gutter);
  margin-inline: calc(var(--gutter) * -1); padding: 0.25rem var(--gutter) 1rem; scrollbar-width: none;
}
.cars::-webkit-scrollbar { display: none; }
.car { scroll-snap-align: start; }
.car {
  display: flex; flex-direction: column; overflow: hidden;
  background: var(--ink-2); border: 1px solid var(--line-light); border-radius: var(--r);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease), filter 0.6s var(--ease), border-color 0.3s;
}
.car:hover { border-color: rgba(244, 177, 32, 0.45); }
.car[data-dim] { opacity: 0.28; filter: grayscale(1); transform: scale(0.98); }
.car__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: radial-gradient(90% 90% at 50% 100%, #3a342a, var(--ink-2)); }
.car__media img, .car__media .ph { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.car__media .ph { background: radial-gradient(100% 90% at 50% 100%, #4a4030, var(--ink-3)); color: rgba(251, 247, 239, 0.6); }
.car__media .ph span { background: rgba(18, 18, 18, 0.6); }
.car__media .ph, .vrow__media .ph { place-items: start end; }
.car:hover .car__media img { transform: scale(1.05); }
.car__seats {
  position: absolute; left: 0.9rem; bottom: 0.9rem;
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.35rem 0.75rem; border-radius: 999px; background: var(--gold); color: var(--ink);
  font-family: var(--f-display); font-weight: 700; font-size: 0.85rem;
}
.car__seats .icon { width: 16px; height: 16px; }
.car__body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; gap: 0.4rem; flex: 1; }
.car__group { font-family: var(--f-display); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.car h3 { color: var(--cream); font-size: 1.4rem; }
.car__body p:not(.car__group) { font-size: 0.95rem; }
.car__cta {
  margin-top: auto; padding-top: 0.9rem;
  display: inline-flex; align-items: center; gap: 0.45rem; align-self: flex-start;
  font-family: var(--f-display); font-weight: 600; color: var(--wa); text-decoration: none;
}
.car__cta:hover { text-decoration: underline; text-underline-offset: 4px; }
.fleet__foot { margin-top: 2.5rem; }

@media (min-width: 720px) { .cars { grid-auto-flow: row; grid-template-columns: 1fr 1fr; overflow: visible; margin: 0; padding: 0; } }
@media (min-width: 1024px) {
  .cars { grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
  .seatpick__label { width: auto; margin: 0 0.4rem 0 0; }
}

/* ---------- steps ---------- */
.stops__wrap { position: relative; }
.stops { position: relative; display: grid; gap: 1.6rem; }
.stops__line { position: absolute; left: 33px; top: 34px; bottom: 34px; border-left: 2px dashed rgba(201, 138, 0, 0.55); }
.stops li { position: relative; display: grid; grid-template-columns: 68px 1fr; column-gap: 1.2rem; align-items: start; }
.stops li h3, .stops li p { grid-column: 2; }
.stops li .stops__n { grid-row: 1 / span 2; margin-bottom: 0; }
.stops li h3 { margin-top: 0.7rem; }
.stops__n {
  display: inline-grid; place-items: center; width: 68px; height: 68px; border-radius: 50%;
  background: var(--gold); color: var(--ink); font-family: var(--f-display); font-weight: 700; font-size: 1.6rem;
  box-shadow: 0 0 0 10px var(--cream), 0 0 0 11px var(--sand-2);
  margin-bottom: 1.4rem;
}
.stops h3 { font-size: 1.35rem; margin-bottom: 0.45rem; }
.stops p { color: var(--muted); }
@media (min-width: 900px) {
  .stops { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
  .stops li { display: block; text-align: center; max-width: 340px; margin-inline: auto; }
  .stops li .stops__n { margin-bottom: 1.4rem; }
  .stops li h3 { margin-top: 0; }
  .stops__line { left: 17%; right: 17%; top: 33px; bottom: auto; border-left: 0; border-top: 2px dashed rgba(201, 138, 0, 0.55); }
}

/* ---------- local ---------- */
.local { background: var(--sand); overflow: hidden; }
.local__grid { display: grid; gap: 2.5rem; align-items: center; }
.local__media { position: relative; }
.local__media img, .local__media .ph {
  width: 100%; aspect-ratio: 4 / 3.3; object-fit: cover;
  border-radius: 200px var(--r) var(--r) var(--r); box-shadow: var(--shadow);
}
.local__stamp {
  position: absolute; right: -6px; top: -18px;
  width: 116px; height: 116px; border-radius: 50%;
  display: grid; place-content: center; text-align: center;
  background: var(--ink); color: var(--gold); transform: rotate(-10deg);
  font-family: var(--f-display); font-weight: 700; font-size: 0.9rem; letter-spacing: 0.14em; text-transform: uppercase; line-height: 1.3;
  box-shadow: 0 0 0 6px var(--sand), 0 0 0 7px rgba(18, 18, 18, 0.2);
}
.local__stamp span:last-child { color: rgba(251, 247, 239, 0.7); font-size: 0.62rem; font-weight: 600; letter-spacing: 0.24em; }
.local__copy h2 { font-size: clamp(2rem, 1.2rem + 2.6vw, 3.25rem); margin-bottom: 1.2rem; }
.local__copy > p:not(.eyebrow) { font-size: 1.06rem; }
.local__list { display: grid; gap: 0.75rem; margin-top: 1.6rem; }
.local__list li { display: flex; align-items: center; gap: 0.8rem; font-weight: 600; color: var(--ink); }
.local__list .icon { width: 36px; height: 36px; padding: 8px; border-radius: 50%; background: var(--paper); color: var(--gold-deep); }
@media (min-width: 1024px) {
  .local__grid { grid-template-columns: 1fr 1fr; gap: 5rem; }
  .local__stamp { right: -28px; top: -28px; width: 132px; height: 132px; }
}

/* ---------- why ---------- */
.why__grid { display: grid; gap: 1.8rem 1.5rem; }
.why__item { padding-top: 1.4rem; border-top: 1.5px solid var(--ink); }
.why__ic { display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: var(--gold-soft); color: var(--ink); margin-bottom: 1rem; }
.why__ic .icon { width: 21px; height: 21px; }
.why__item h3 { font-size: 1.22rem; margin-bottom: 0.45rem; }
.why__item p { color: var(--muted); font-size: 0.97rem; }
@media (min-width: 640px) { .why__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .why__grid { grid-template-columns: repeat(4, 1fr); } }

/* ---------- dev note ---------- */
.reviews { padding-top: 0; }
.devnote { border: 2px dashed rgba(156, 74, 46, 0.45); background: rgba(156, 74, 46, 0.05); border-radius: var(--r); padding: 1.6rem; color: var(--laterite); }
.devnote strong { font-weight: 700; }

/* ---------- faq ---------- */
.faq { background: var(--sand); }
.faq__grid { display: grid; gap: 2.5rem; }
.faq__intro h2 { font-size: clamp(2rem, 1.2rem + 2.4vw, 3rem); margin-bottom: 1rem; }
.faq__intro p { color: var(--muted); margin-bottom: 1.5rem; }
.qa { border-bottom: 1px solid rgba(18, 18, 18, 0.16); }
.qa:first-child { border-top: 1px solid rgba(18, 18, 18, 0.16); }
.qa summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.25rem 0; cursor: pointer; list-style: none;
  font-family: var(--f-display); font-weight: 600; font-size: clamp(1.05rem, 1rem + 0.3vw, 1.2rem); color: var(--ink);
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary i { position: relative; flex: none; width: 32px; height: 32px; border-radius: 50%; background: var(--paper); transition: background-color 0.3s, transform 0.5s var(--ease); }
.qa summary i::before, .qa summary i::after { content: ""; position: absolute; left: 50%; top: 50%; width: 12px; height: 2px; margin: -1px 0 0 -6px; background: var(--ink); border-radius: 2px; transition: transform 0.5s var(--ease); }
.qa summary i::after { transform: rotate(90deg); }
.qa[open] summary i { background: var(--gold); transform: rotate(180deg); }
.qa[open] summary i::after { transform: rotate(0deg); }
.qa__a { padding: 0 3rem 1.4rem 0; color: var(--text); }
.qa[open] .qa__a { animation: rise 0.5s var(--ease) both; }
@media (min-width: 1024px) {
  .faq__grid { grid-template-columns: 0.8fr 1.2fr; gap: 5rem; }
  .faq__intro { position: sticky; top: calc(var(--hdr-h) + 2rem); align-self: start; }
}

/* ---------- finale ---------- */
.finale { position: relative; overflow: hidden; background: var(--gold); padding-block: clamp(4.5rem, 3rem + 5vw, 7.5rem); }
.finale__sun { position: absolute; width: 700px; aspect-ratio: 1; border-radius: 50%; left: -260px; bottom: -380px; background: #f8c858; }
.finale__sun::after { content: ""; position: absolute; inset: 90px; border-radius: 50%; border: 2px dashed rgba(18, 18, 18, 0.18); }
.finale__grid { position: relative; display: grid; gap: 2.5rem; align-items: center; }
.finale h2 { font-size: clamp(2.4rem, 1.3rem + 4vw, 4.5rem); font-weight: 700; letter-spacing: -0.035em; max-width: 11ch; }
.finale__copy > p { margin-top: 1.1rem; font-size: 1.12rem; color: var(--ink); max-width: 460px; }
.finale__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }
.finale__mail { display: flex; align-items: center; gap: 0.5rem; margin-top: 1.4rem; color: var(--ink); font-weight: 600; overflow-wrap: anywhere; }
.finale__mail a { text-decoration-thickness: 1.5px; text-underline-offset: 4px; }
.finale .btn--wa { --bg: var(--paper); --fg: var(--ink); }
.finale .btn--wa .icon { color: #128c4a; }
@media (min-width: 1024px) { .finale__grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }

/* ---------- footer ---------- */
.ftr { position: relative; background: var(--ink); color: rgba(251, 247, 239, 0.66); padding-top: 5rem; font-size: 0.95rem; overflow: hidden; }
.ftr__road { position: absolute; top: 0; left: 0; width: 100%; height: 90px; color: var(--gold); opacity: 0.35; }
.ftr__grid { display: grid; gap: 2.5rem; padding-bottom: 3rem; }
.ftr__brand p { margin-top: 1.1rem; max-width: 360px; }
.ftr__loc { display: flex; gap: 0.5rem; align-items: flex-start; color: var(--cream); }
.ftr__loc .icon { color: var(--gold); margin-top: 0.2rem; }
.ftr__h { font-family: var(--f-display); font-size: 0.74rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.ftr__h--sp { margin-top: 2rem; }
.ftr ul { display: grid; gap: 0.5rem; }
.ftr a { text-decoration: none; transition: color 0.2s; }
.ftr a:hover { color: var(--gold); }
.ftr__contact a { display: inline-flex; align-items: center; gap: 0.55rem; color: var(--cream); overflow-wrap: anywhere; }
.ftr__contact .icon { color: var(--gold); }
.ftr__base { position: relative; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.6rem 2rem; padding-block: 1.5rem; font-size: 0.85rem; }
.ftr__base::before { content: ""; position: absolute; top: 0; left: var(--gutter); right: var(--gutter); border-top: 1px solid var(--line-light); }
.ftr__tag { font-family: var(--f-display); letter-spacing: 0.3em; text-transform: uppercase; font-size: 0.7rem; color: rgba(251, 247, 239, 0.45); }
@media (min-width: 640px) { .ftr__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .ftr__grid { grid-template-columns: 1.35fr 0.8fr 0.8fr 1.45fr; gap: 3rem; } }

/* ---------- mobile action bar + floating whatsapp ---------- */
.abar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 45;
  display: grid; grid-template-columns: 1fr 1.15fr 1fr;
  background: var(--ink); padding-bottom: env(safe-area-inset-bottom);
  box-shadow: 0 -8px 24px rgba(18, 18, 18, 0.18);
}
.abar a {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.2rem;
  min-height: 62px; text-decoration: none; color: var(--cream);
  font-family: var(--f-display); font-weight: 600; font-size: 0.78rem; letter-spacing: 0.02em;
}
.abar .icon { width: 21px; height: 21px; }
.abar__wa { background: var(--wa); color: var(--wa-ink) !important; }
.abar__quote { color: var(--gold) !important; }
body { padding-bottom: 62px; }

.wafloat {
  display: none; position: fixed; right: 24px; bottom: 24px; z-index: 45;
  width: 60px; height: 60px; border-radius: 50%; place-items: center;
  background: var(--wa); color: #fff; box-shadow: 0 16px 32px -10px rgba(18, 18, 18, 0.45);
  transition: transform 0.45s var(--ease);
}
.wafloat .icon { width: 30px; height: 30px; }
.wafloat:hover { transform: scale(1.07); }
.wafloat::before { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid var(--wa); animation: ring 2.4s var(--ease) 3s 2 both; }

@media (min-width: 1024px) {
  .abar { display: none; }
  body { padding-bottom: 0; }
  .wafloat { display: grid; }
}

/* ---------- motion ---------- */
@keyframes rise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
@keyframes menuIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes settle { from { transform: scale(1.1); } to { transform: scale(1); } }
@keyframes ring { 0% { transform: scale(1); opacity: 0.8; } 100% { transform: scale(1.6); opacity: 0; } }
@keyframes loadIn { from { opacity: 0; transform: translateY(22px); filter: blur(8px); } to { opacity: 1; transform: none; filter: blur(0); } }

.js [data-load] { animation: loadIn 1.1s var(--ease) both; }
.js [data-load="2"] { animation-delay: 90ms; }
.js [data-load="3"] { animation-delay: 200ms; }
.js [data-load="4"] { animation-delay: 320ms; }
.js [data-load="5"] { animation-delay: 440ms; }

.js [data-reveal] {
  opacity: 0; transform: translateY(26px); filter: blur(6px);
  transition: opacity 1s var(--ease) var(--d, 0ms), transform 1s var(--ease) var(--d, 0ms), filter 1s var(--ease) var(--d, 0ms);
}
.js [data-reveal].is-in { opacity: 1; transform: none; filter: none; }
.js .car[data-reveal].is-in[data-dim] { opacity: 0.28; transform: scale(0.98); filter: grayscale(1); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; transition-delay: 0ms !important; }
  .js [data-reveal] { opacity: 1; transform: none; filter: none; }
}

/* =========================================================
   Inner pages
   ========================================================= */
.sec--tight { padding-block: clamp(2.5rem, 2rem + 3vw, 5rem); }

/* ---------- page hero ---------- */
.phero { position: relative; overflow-x: clip; padding-block: clamp(2rem, 1.5rem + 3vw, 4.5rem) clamp(2.5rem, 2rem + 3vw, 4.5rem); border-bottom: 1px solid var(--line); }
.phero__sun {
  position: absolute; z-index: 0; border-radius: 50%; pointer-events: none;
  width: clamp(260px, 34vw, 520px); aspect-ratio: 1;
  right: clamp(-200px, -8vw, -60px); top: clamp(-260px, -14vw, -120px);
  background: radial-gradient(circle at 40% 40%, #f8c54a, var(--gold) 60%, #eea514);
}
.phero__road { position: absolute; z-index: 0; right: 0; bottom: 0; width: min(760px, 80vw); color: var(--gold-deep); opacity: 0.3; pointer-events: none; }
.phero__in { position: relative; z-index: 1; }
.phero__h1 { font-size: clamp(2.3rem, 1.3rem + 3.8vw, 4.2rem); font-weight: 700; letter-spacing: -0.035em; line-height: 1.02; max-width: 16ch; }
.phero__lede { margin-top: 1.2rem; font-size: clamp(1.02rem, 0.95rem + 0.3vw, 1.18rem); max-width: 620px; }
.phero__actions { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.8rem; }
.phero__actions .btn { flex: 1 1 auto; }
@media (min-width: 640px) { .phero__actions .btn { flex: 0 0 auto; } }

.crumbs { margin-bottom: 1.4rem; font-size: 0.86rem; }
.crumbs ol { display: flex; flex-wrap: wrap; align-items: center; gap: 0.35rem; }
.crumbs li { display: inline-flex; align-items: center; gap: 0.35rem; color: var(--muted); }
.crumbs li + li::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); margin-right: 0.1rem; }
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.crumbs [aria-current] { color: var(--ink); font-weight: 600; }

/* ---------- lists ---------- */
.ticks { display: grid; gap: 0.6rem; }
.ticks li { display: flex; gap: 0.6rem; align-items: flex-start; }
.ticks .icon { width: 20px; height: 20px; margin-top: 0.18rem; padding: 3px; border-radius: 50%; background: var(--gold); color: var(--ink); stroke-width: 3; }
.dots { display: grid; gap: 0.5rem; }
.dots li { position: relative; padding-left: 1.1rem; }
.dots li::before { content: ""; position: absolute; left: 0; top: 0.68em; width: 6px; height: 6px; border-radius: 50%; background: var(--gold-deep); }
.tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.tags li { padding: 0.3rem 0.75rem; border-radius: 999px; background: var(--sand); font-size: 0.85rem; font-weight: 600; color: var(--ink); }

/* ---------- services page ---------- */
.chipnav { position: sticky; top: var(--hdr-h); z-index: 20; background: rgba(251, 247, 239, 0.92); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.chipnav__list { display: flex; gap: 0.4rem; overflow-x: auto; padding-block: 0.7rem; scrollbar-width: none; margin-inline: calc(var(--gutter) * -1); padding-inline: var(--gutter); }
.chipnav__list::-webkit-scrollbar { display: none; }
.chipnav a {
  display: inline-flex; align-items: center; gap: 0.45rem; white-space: nowrap;
  min-height: 40px; padding: 0.4rem 0.9rem; border-radius: 999px;
  background: var(--paper); border: 1px solid var(--line); text-decoration: none;
  font-family: var(--f-display); font-weight: 600; font-size: 0.9rem; color: var(--ink);
  transition: background-color 0.3s, border-color 0.3s;
}
.chipnav a .icon { width: 17px; height: 17px; color: var(--gold-deep); }
.chipnav a:hover, .chipnav a[aria-current="true"] { background: var(--gold); border-color: var(--gold); }
.chipnav a[aria-current="true"] .icon { color: var(--ink); }
@media (min-width: 1100px) { .chipnav__list { justify-content: center; } }

.svcb { padding-block: clamp(3rem, 2rem + 4vw, 6rem); scroll-margin-top: calc(var(--hdr-h) + 60px); }
.svcb + .svcb { border-top: 1px solid var(--line); }
.svcb:nth-child(even) { background: var(--sand); }
.svcb:nth-child(even) .tags li, .svcb:nth-child(even) .vchips a { background: var(--paper); }
.svcb__grid { display: grid; gap: 2rem; align-items: center; }
.svcb__media { position: relative; }
.svcb__media img, .svcb__media .ph { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; border-radius: var(--r-lg); box-shadow: var(--shadow); }
.svcb__num { position: absolute; left: 1rem; top: 1rem; display: grid; place-items: center; width: 56px; height: 56px; border-radius: 50%; background: var(--ink); color: var(--gold); font-family: var(--f-display); font-weight: 700; font-size: 1.15rem; }
.svcb__kicker { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--f-display); font-weight: 600; font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.7rem; }
.svcb__kicker .icon { color: var(--gold-deep); }
.svcb h2 { font-size: clamp(1.9rem, 1.2rem + 2.2vw, 2.9rem); }
.svcb__intro { margin-top: 1rem; font-size: 1.06rem; }
.svcb__lists { display: grid; gap: 1.5rem; margin-top: 1.8rem; }
.svcb__lists h3 { font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 0.8rem; }
.svcb__lists li { font-size: 0.97rem; color: var(--ink); }
.svcb__extra { margin-top: 1.6rem; padding: 1.1rem 1.25rem; border-radius: var(--r); background: var(--ink); color: rgba(251, 247, 239, 0.8); }
.svcb__extra-h { display: flex; align-items: center; gap: 0.5rem; font-family: var(--f-display); font-weight: 600; color: var(--gold); margin-bottom: 0.3rem; }
.svcb__veh { margin-top: 1.6rem; }
.svcb__veh > p { font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); font-family: var(--f-display); font-weight: 600; margin-bottom: 0.6rem; }
.vchips { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.vchips a { display: inline-flex; align-items: baseline; gap: 0.35rem; padding: 0.4rem 0.8rem; border-radius: 999px; background: var(--sand); text-decoration: none; font-weight: 600; font-size: 0.9rem; color: var(--ink); border: 1px solid transparent; transition: border-color 0.3s; }
.vchips a:hover { border-color: var(--gold-deep); }
.vchips span { font-weight: 500; font-size: 0.78rem; color: var(--muted); }
.svcb__cta { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 2rem; }
@media (min-width: 640px) { .svcb__lists { grid-template-columns: 1.2fr 1fr; } }
@media (min-width: 1024px) {
  .svcb__grid { grid-template-columns: 1fr 1.05fr; gap: 4.5rem; }
  .svcb--flip .svcb__media { order: 2; }
  .svcb__media { position: sticky; top: calc(var(--hdr-h) + 90px); align-self: start; }
  .svcb__media img, .svcb__media .ph { aspect-ratio: 4 / 4.4; }
}

/* ---------- trip packages page ---------- */
.trips--page { background: var(--cream); }
.trips--page::before { display: none; }
.trips--page .ticket__stub::before, .trips--page .ticket__stub::after { background: var(--cream); }
.filter { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-bottom: 2rem; }
.filter button, .filter span {
  display: inline-flex; align-items: center; gap: 0.45rem;
  min-height: 44px; padding: 0.5rem 1.05rem; border-radius: 999px; cursor: pointer;
  background: var(--paper); color: var(--ink); border: 1.5px solid var(--line);
  font-family: var(--f-display); font-weight: 600; font-size: 0.95rem;
  transition: background-color 0.3s, border-color 0.3s;
}
.filter button span { min-height: 0; padding: 0.05rem 0.45rem; border: 0; border-radius: 999px; background: var(--sand); font-size: 0.75rem; cursor: inherit; }
.filter button:hover { border-color: var(--ink); }
.filter button[aria-pressed="true"], .filter .filter__on { background: var(--ink); border-color: var(--ink); color: var(--cream); }
.filter button[aria-pressed="true"] span { background: var(--gold); color: var(--ink); }
.filter--static span { cursor: default; }
.tickets--grid { grid-auto-flow: row; grid-template-columns: 1fr; overflow: visible; margin: 0; padding: 0; }
.ticket[data-hide] { display: none; }
.ticket--custom .ticket__link { background: var(--ink); color: rgba(251, 247, 239, 0.75); }
.ticket__custom { display: flex; flex-direction: column; gap: 0.8rem; padding: 1.6rem; height: 100%; position: relative; overflow: hidden; }
.ticket__custom::after { content: ""; position: absolute; right: -80px; bottom: -80px; width: 220px; height: 220px; border-radius: 50%; border: 2px dashed rgba(244, 177, 32, 0.4); }
.ticket__custom h3 { color: var(--cream); font-size: 1.6rem; margin-top: 2.2rem; }
.ticket__tag--gold { background: var(--gold); color: var(--ink); }
.ticket__actions { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: auto; padding-top: 0.6rem; position: relative; z-index: 1; }
.ticket--custom .btn--ink { --bg: var(--ink-3); }
@media (min-width: 640px) { .tickets--grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .tickets--grid { grid-template-columns: repeat(3, 1fr); gap: 1.4rem; } }

.combine { background: var(--sand); }
.combine__grid { display: grid; gap: 2.5rem; align-items: center; }
.combine h2 { font-size: clamp(1.9rem, 1.2rem + 2.2vw, 2.9rem); margin-bottom: 1rem; }
.combine__lede { margin-bottom: 1.6rem; max-width: 520px; }
.pairs { display: grid; gap: 0.8rem; }
.pairs li {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 0.2rem 0.9rem;
  padding: 1.1rem 1.3rem; border-radius: var(--r); background: var(--paper); box-shadow: var(--shadow-sm);
  font-family: var(--f-display); font-weight: 600; font-size: 1.1rem; color: var(--ink);
}
.pairs i { height: 2px; min-width: 30px; background: repeating-linear-gradient(90deg, var(--gold-deep) 0 5px, transparent 5px 10px); }
.pairs small { grid-column: 1 / -1; font-family: var(--f-body); font-weight: 500; font-size: 0.82rem; color: var(--muted); }
@media (min-width: 1024px) { .combine__grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }

/* ---------- package detail ---------- */
.pkhero { position: relative; overflow-x: clip; padding-block: clamp(1.5rem, 1rem + 2vw, 3.5rem) clamp(2.5rem, 2rem + 3vw, 4.5rem); border-bottom: 1px solid var(--line); }
.pkhero__grid { position: relative; z-index: 1; display: grid; gap: 2.2rem; align-items: center; }
.pkhero__route { margin-bottom: 0.9rem; }
.pkhero .phero__h1 { max-width: 14ch; }
.pkhero__media { position: relative; }
.arch--pkg { margin-top: 0; aspect-ratio: 4 / 3; border-radius: 240px 240px var(--r) var(--r); }
.pkhero__tag {
  position: absolute; left: 1rem; bottom: 1rem; z-index: 2;
  display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.5rem 0.9rem; border-radius: 999px;
  background: var(--ink); color: var(--cream); font-family: var(--f-display); font-weight: 600; font-size: 0.88rem;
}
.pkhero__tag .icon { color: var(--gold); }
@media (min-width: 1024px) {
  .pkhero__grid { grid-template-columns: 1fr 0.95fr; gap: 4rem; }
  .arch--pkg { aspect-ratio: 4 / 3.6; border-radius: 999px 999px var(--r) var(--r); }
}

.pkbody__grid { display: grid; gap: 2.5rem; }
.pkbody__main { display: grid; gap: clamp(2.5rem, 2rem + 2vw, 3.5rem); min-width: 0; }
.glance {
  margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 1px; overflow: hidden;
  border-radius: var(--r); background: var(--line); border: 1px solid var(--line);
}
.glance > div { background: var(--paper); padding: 1rem 1.15rem; }
.glance > div:last-child:nth-child(odd) { grid-column: 1 / -1; }
.glance dt { font-family: var(--f-display); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.glance dd { margin: 0.2rem 0 0; font-family: var(--f-display); font-weight: 600; font-size: 1.05rem; color: var(--ink); }
@media (min-width: 720px) { .glance { display: flex; flex-wrap: wrap; gap: 1px; } .glance > div { flex: 1 1 160px; } }

.prose { max-width: 720px; font-size: 1.05rem; }
.prose h2 { font-size: clamp(1.6rem, 1.2rem + 1.2vw, 2.2rem); margin: 0 0 1rem; }
.prose h3 { font-size: 1.25rem; margin: 2rem 0 0.9rem; }
.prose p + p { margin-top: 1rem; }
.prose > * + h2 { margin-top: 2.6rem; }
.prose ul:not(.ticks) { list-style: none; display: grid; gap: 0.5rem; margin: 1rem 0; }
.prose ul:not(.ticks) li { position: relative; padding-left: 1.2rem; }
.prose ul:not(.ticks) li::before { content: ""; position: absolute; left: 0; top: 0.7em; width: 6px; height: 6px; border-radius: 50%; background: var(--gold-deep); }
.prose a { color: var(--ink); font-weight: 600; text-decoration-color: var(--gold); text-decoration-thickness: 2px; text-underline-offset: 3px; }
.prose strong { color: var(--ink); }
.prose blockquote { margin: 1.8rem 0; padding: 1.2rem 1.4rem; border-left: 4px solid var(--gold); background: var(--sand); border-radius: 0 var(--r-sm) var(--r-sm) 0; font-family: var(--f-display); font-size: 1.15rem; color: var(--ink); }
.prose img { border-radius: var(--r); margin: 1.5rem 0; }

.pkveh h2, .pkfaq h2 { font-size: clamp(1.6rem, 1.2rem + 1.2vw, 2.2rem); margin-bottom: 0.6rem; }
.pkveh__lede { color: var(--muted); margin-bottom: 1.3rem; }
.pkveh__list { display: grid; gap: 0.6rem; }
.pkveh__list li { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 0.9rem; padding: 0.8rem 0.9rem 0.8rem 0.8rem; border-radius: var(--r-sm); background: var(--paper); border: 1px solid var(--line); }
.pkveh__ic { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; background: var(--gold-soft); color: var(--ink); }
.pkveh__name { display: flex; flex-direction: column; font-family: var(--f-display); font-weight: 600; color: var(--ink); line-height: 1.2; }
.pkveh__name small { font-family: var(--f-body); font-weight: 500; color: var(--muted); font-size: 0.82rem; }
.pkveh__list a { display: inline-flex; align-items: center; gap: 0.35rem; min-height: 40px; padding: 0.4rem 0.85rem; border-radius: 999px; background: var(--wa); color: var(--wa-ink); text-decoration: none; font-family: var(--f-display); font-weight: 600; font-size: 0.88rem; }
@media (min-width: 640px) { .pkveh__list { grid-template-columns: 1fr 1fr; } }

.pkbody__aside { scroll-margin-top: calc(var(--hdr-h) + 16px); }
.qf__trip { display: inline-flex; align-items: center; gap: 0.45rem; margin-top: 0.6rem; padding: 0.35rem 0.8rem; border-radius: 999px; background: var(--gold-soft); font-family: var(--f-display); font-weight: 600; font-size: 0.9rem; color: var(--ink); }
@media (min-width: 1024px) {
  .pkbody__grid { grid-template-columns: 1fr 400px; gap: 4rem; align-items: start; }
  .pkbody__sticky { position: sticky; top: calc(var(--hdr-h) + 24px); }
  .pkbody__aside .qf__grid { grid-template-columns: 1fr; }
}

.trips--nearby { background: var(--sand); }
.tickets--two { grid-auto-columns: min(82%, 340px); }
@media (min-width: 720px) { .tickets--two { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .tickets--two { grid-template-columns: repeat(3, 1fr); } }

/* ---------- vehicles page ---------- */
.vpage__bar { margin-bottom: 2rem; }
.seatpick--light button { color: var(--ink); border-color: var(--line); background: var(--paper); }
.seatpick--light button:hover { border-color: var(--ink); }
.seatpick--light .seatpick__label { color: var(--muted); }
.vlist { display: grid; gap: 1.25rem; }
.vrow {
  display: grid; overflow: hidden; scroll-margin-top: calc(var(--hdr-h) + 24px);
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease), filter 0.6s var(--ease), box-shadow 0.5s var(--ease);
}
.vrow:hover { box-shadow: var(--shadow); }
.vrow[data-dim] { opacity: 0.35; filter: grayscale(1); }
.js .vrow[data-reveal].is-in[data-dim] { opacity: 0.35; filter: grayscale(1); }
.vrow__media { position: relative; aspect-ratio: 16 / 10; background: var(--sand); }
.vrow__media img, .vrow__media .ph { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.vrow__body { padding: clamp(1.4rem, 1rem + 1.5vw, 2.2rem); display: flex; flex-direction: column; gap: 0.6rem; }
.car__group--dark { color: var(--gold-deep); }
.vrow h2 { font-size: clamp(1.7rem, 1.3rem + 1.2vw, 2.3rem); }
.vrow__desc { font-size: 1.02rem; }
.vrow__facts { display: grid; grid-template-columns: auto 1fr; gap: 0.3rem 1.5rem; margin: 0.6rem 0; padding: 0.9rem 0; border-block: 1px solid var(--line); }
.vrow__facts > div { display: contents; }
.vrow__facts dt { font-family: var(--f-display); font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); font-weight: 600; padding-top: 0.2rem; }
.vrow__facts dd { margin: 0; color: var(--ink); font-weight: 600; }
.vrow__cta { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1rem; }
@media (min-width: 900px) {
  .vrow { grid-template-columns: 1fr 1.1fr; }
  .vrow:nth-child(even) .vrow__media { order: 2; }
  .vrow__media { aspect-ratio: auto; min-height: 380px; }
}

.compare { background: var(--sand); }
.tablewrap { overflow-x: auto; border-radius: var(--r); border: 1px solid var(--line); background: var(--paper); -webkit-overflow-scrolling: touch; }
.ctable { width: 100%; min-width: 640px; border-collapse: collapse; font-size: 0.95rem; }
.ctable th, .ctable td { padding: 0.95rem 1rem; text-align: left; border-bottom: 1px solid var(--line); }
.ctable thead th { font-family: var(--f-display); font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); font-weight: 600; background: var(--cream); }
.ctable tbody th { font-family: var(--f-display); font-weight: 600; color: var(--ink); white-space: nowrap; }
.ctable tbody tr:last-child > * { border-bottom: 0; }
.ctable td:nth-child(n + 3), .ctable th:nth-child(n + 3) { text-align: center; }
.ctable .yes { display: inline-grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; background: var(--gold); color: var(--ink); }
.ctable .yes .icon { width: 16px; height: 16px; stroke-width: 3; }
.ctable .no { color: var(--muted); }
.compare__note { margin-top: 1rem; font-size: 0.9rem; color: var(--muted); }

/* ---------- contact ---------- */
.contact__grid { display: grid; gap: 2rem; }
.contact__cards { display: grid; gap: 0.9rem; align-content: start; }
.ccard {
  position: relative; display: grid; gap: 0.15rem; padding: 1.3rem 1.4rem 1.3rem 5rem; min-height: 96px; align-content: center;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); text-decoration: none; color: var(--ink);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.3s;
}
a.ccard:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: rgba(201, 138, 0, 0.5); }
.ccard__ic { position: absolute; left: 1.2rem; top: 50%; transform: translateY(-50%); display: grid; place-items: center; width: 50px; height: 50px; border-radius: 50%; background: var(--gold-soft); }
.ccard__ic .icon { width: 22px; height: 22px; }
.ccard--call .ccard__ic { background: var(--gold); }
.ccard--wa .ccard__ic { background: var(--wa); color: var(--wa-ink); }
.ccard--loc { align-content: start; }
.ccard--loc .ccard__ic { top: 1.3rem; transform: none; }
.ccard__label { font-family: var(--f-display); font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.ccard__value { font-family: var(--f-display); font-weight: 650; font-size: 1.35rem; letter-spacing: -0.01em; }
.ccard__value--sm { font-size: 1.02rem; overflow-wrap: anywhere; }
.ccard__go { position: absolute; right: 1.2rem; top: 1.2rem; color: var(--muted); }
.ccard__link { display: inline-flex; align-items: center; gap: 0.35rem; margin-top: 0.5rem; font-weight: 600; font-size: 0.9rem; color: var(--ink); text-decoration-color: var(--gold); text-underline-offset: 3px; }
.contact__tips { margin-top: 0.6rem; padding: 1.4rem; border-radius: var(--r); background: var(--sand); }
.contact__tips h2 { font-size: 1.15rem; margin-bottom: 0.9rem; }
.contact__form { scroll-margin-top: calc(var(--hdr-h) + 16px); }
@media (min-width: 1024px) {
  .contact__grid { grid-template-columns: 0.85fr 1.15fr; gap: 3.5rem; align-items: start; }
  .contact__form { position: sticky; top: calc(var(--hdr-h) + 24px); }
}

/* ---------- blog ---------- */
.posts { display: grid; gap: 1.4rem; }
.pcard__link { display: grid; height: 100%; overflow: hidden; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); text-decoration: none; color: var(--text); transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease); }
.pcard__link:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.pcard__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.pcard__media img, .pcard__media .ph { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.pcard__link:hover .pcard__media img { transform: scale(1.04); }
.pcard__body { padding: 1.4rem; display: flex; flex-direction: column; gap: 0.6rem; }
.pcard__body h2 { font-size: 1.4rem; }
.pcard__body > p:not(.pcard__meta) { color: var(--muted); }
.pcard__body .link-arrow { align-self: flex-start; margin-top: 0.5rem; }
.pcard__meta, .post__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 0.4rem 0.9rem; font-size: 0.85rem; color: var(--muted); }
.pcard__cat { padding: 0.2rem 0.65rem; border-radius: 999px; background: var(--gold-soft); color: var(--ink); font-weight: 700; font-size: 0.78rem; }
@media (min-width: 720px) { .posts { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) {
  .posts { grid-template-columns: repeat(3, 1fr); }
  .pcard--lead { grid-column: 1 / -1; }
  .pcard--lead .pcard__link { grid-template-columns: 1.2fr 1fr; }
  .pcard--lead .pcard__media { aspect-ratio: auto; min-height: 360px; }
  .pcard--lead .pcard__body { padding: 2.4rem; justify-content: center; }
  .pcard--lead h2 { font-size: 2.2rem; }
}
.empty { text-align: center; max-width: 520px; margin: 2rem auto; padding: 3rem 1.5rem; border: 1.5px dashed var(--sand-2); border-radius: var(--r-lg); }
.empty__ic { display: inline-grid; place-items: center; width: 64px; height: 64px; border-radius: 50%; background: var(--gold-soft); margin-bottom: 1rem; }
.empty h2 { font-size: 1.6rem; margin-bottom: 0.5rem; }
.empty p { color: var(--muted); margin-bottom: 1.4rem; }

.phero--post { border-bottom: 0; padding-bottom: 2rem; }
.post__h1 { max-width: 22ch; }
.post__meta { margin-top: 1.2rem; }
.devpill { display: inline-block; margin-bottom: 0.8rem; padding: 0.25rem 0.7rem; border-radius: 999px; background: rgba(156, 74, 46, 0.1); color: var(--laterite); font-size: 0.8rem; font-weight: 700; }
.post__cover img, .post__cover .ph { width: 100%; aspect-ratio: 21 / 10; object-fit: cover; border-radius: var(--r-lg); }
.post__grid { display: grid; gap: 2.5rem; padding-block: clamp(2.5rem, 2rem + 3vw, 4.5rem); }
.prose--post { font-size: 1.1rem; line-height: 1.75; }
.prose--post h2 { margin-top: 2.6rem; }
.post__card { padding: 1.5rem; border-radius: var(--r); background: var(--paper); border: 1px solid var(--line); display: grid; gap: 0.6rem; box-shadow: var(--shadow-sm); }
.post__card .qf__sub { margin: 0 0 0.4rem; }
@media (min-width: 1024px) {
  .post__grid { grid-template-columns: 1fr 320px; gap: 4rem; }
  .post__aside { position: relative; }
  .post__card { position: sticky; top: calc(var(--hdr-h) + 24px); }
}

/* ---------- legal ---------- */
.prose--legal { max-width: 760px; }
.prose--legal h2 { font-size: 1.5rem; margin-top: 2.4rem; }

/* ---------- 404 ---------- */
.nf { position: relative; overflow-x: clip; padding-block: clamp(3rem, 2rem + 6vw, 7rem); min-height: 70vh; display: grid; align-items: center; }
.nf .phero__sun { top: auto; bottom: -180px; right: -120px; width: 480px; }
.nf__in { position: relative; z-index: 1; }
.nf__code { font-family: var(--f-display); font-weight: 800; font-size: clamp(5rem, 3rem + 10vw, 11rem); line-height: 0.9; letter-spacing: -0.06em; color: var(--ink); margin-bottom: 1rem; }
.nf__code span { color: var(--gold); }
.nf__links { display: flex; flex-wrap: wrap; gap: 0.4rem 1.4rem; margin-top: 2rem; }
.nf__links a { font-family: var(--f-display); font-weight: 600; color: var(--ink); text-decoration-color: var(--gold); text-underline-offset: 4px; }
@media (min-width: 640px) { .ticket--custom { grid-column: 1 / -1; } }
@media (min-width: 1024px) {
  .ticket__custom { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 0.6rem 2.5rem; padding: 2rem 2.4rem; }
  .ticket__custom .ticket__tag { position: static; grid-row: 1; grid-column: 1; align-self: start; justify-self: start; }
  .ticket__custom h3 { grid-row: 2; grid-column: 1; margin: 0; max-width: 14ch; }
  .ticket__custom p { grid-row: 1 / span 2; grid-column: 2; max-width: 460px; }
  .ticket__custom .ticket__actions { grid-row: 1 / span 2; grid-column: 3; margin: 0; padding: 0; }
}
/* home fleet: 5 vehicles as 3 + 2 */
@media (min-width: 1024px) {
  .home .cars { grid-template-columns: repeat(6, 1fr); }
  .home .car { grid-column: span 2; }
  .home .car:nth-child(n + 4) { grid-column: span 3; }
  .home .car:nth-child(n + 4) .car__media { aspect-ratio: 16 / 8; }
}
.hero__badge-n { letter-spacing: -0.04em; }

.ctable--simple td:nth-child(n + 3), .ctable--simple th:nth-child(n + 3) { text-align: left; }
.ctable--simple tbody th a { color: var(--ink); text-decoration-color: var(--gold); text-underline-offset: 3px; }
.ctable--simple td:last-child { color: var(--muted); }

.farenote { display: flex; gap: 0.8rem; align-items: flex-start; margin-top: 2rem; padding: 1.1rem 1.3rem; border-radius: var(--r); background: var(--sand); color: var(--text); max-width: 860px; }
.farenote .icon { width: 36px; height: 36px; padding: 8px; border-radius: 50%; background: var(--gold); color: var(--ink); flex: none; }
.farenote strong { color: var(--ink); }

.ccard__live { display: inline-flex; align-items: center; gap: 0.3rem; margin-left: 0.45rem; padding: 0.05rem 0.45rem; border-radius: 999px; background: var(--ink); color: var(--gold); font-style: normal; letter-spacing: 0.06em; }
.ccard__live::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--wa); }
.contact__next { margin-top: 1rem; padding-top: 0.9rem; border-top: 1px solid rgba(18, 18, 18, 0.12); font-size: 0.95rem; color: var(--ink); }

.nf__call { margin-top: 1.4rem; color: var(--muted); }
.nf__call a { color: var(--ink); font-weight: 700; text-decoration-color: var(--gold); text-decoration-thickness: 2px; text-underline-offset: 4px; }
