/* ============================================================
   DIVYARATH CABS — Design System
   Concept: "the divine chariot" — Divyarath translates from
   Sanskrit roughly as "celestial chariot." The palette and the
   wheel/ray motif used throughout are drawn from that meaning
   and from the shop's own black-and-gold signage, not a generic
   template.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,600&family=Work+Sans:wght@400;500;600;700&display=swap');

:root{
  /* --- color tokens --- */
  --ink:        #0c0a08;   /* primary background — warm near-black */
  --ink-raised: #17130f;   /* panel / alternate section */
  --ink-raised-2:#211a13;  /* hover / third layer */
  --gold:       #c9a24b;   /* primary accent */
  --gold-light: #e6c878;   /* hover / bright accent */
  --gold-dim:   rgba(201,164,75,.35);
  --gold-line:  rgba(201,164,75,.16);
  --oxblood:    #7c2e2e;   /* secondary accent */
  --oxblood-light:#a34c42;
  --ivory:      #ece4d3;   /* primary text on dark */
  --ivory-dim:  #b3a996;   /* secondary text on dark */
  --ivory-faint:#948b78; /* lightened from #7d7666 — original failed WCAG AA (4.38:1); this passes at 5.8–6:1 */
  --shadow:     rgba(0,0,0,.5);

  /* --- type --- */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* --- layout --- */
  --container: 1240px;
  --pad: clamp(20px, 5vw, 64px);
  --radius-sm: 3px;
  --radius-md: 6px;

  --nav-h: 108px;
}

@media (max-width: 720px){
  :root{ --nav-h: 96px; }
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; scroll-padding-top: var(--nav-h); overflow-x: hidden; }
@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; }
}

body{
  margin: 0;
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

img, svg{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ list-style: none; margin: 0; padding: 0; }
button{ font-family: inherit; cursor: pointer; }
input, select, textarea{ font-family: inherit; font-size: 16px; }

h1, h2, h3, h4{
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  margin: 0;
  color: var(--ivory);
  letter-spacing: -0.01em;
}
h1{ font-size: clamp(2.4rem, 5.5vw, 4.2rem); font-weight: 500; }
h2{ font-size: clamp(1.9rem, 3.6vw, 2.75rem); }
h3{ font-size: clamp(1.3rem, 2vw, 1.6rem); font-weight: 600; }
p{ margin: 0 0 1em; max-width: 62ch; }
.container p, .card p{ max-width: 56ch; }

:focus-visible{
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}

.container{
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.skip-link{
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: var(--ink);
  padding: 12px 20px;
  z-index: 999;
  font-weight: 600;
}
.skip-link:focus{ left: 12px; top: 12px; }

section{ padding: clamp(56px, 9vw, 112px) 0; position: relative; }
.section-alt{ background: var(--ink-raised); }

.eyebrow{
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}

.lede{
  color: var(--ivory-dim);
  font-size: clamp(1.02rem, 1.4vw, 1.15rem);
  max-width: 58ch;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .98rem;
  border: 1px solid transparent;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn-gold{
  background: var(--gold);
  color: var(--ink);
}
.btn-gold:hover{ background: var(--gold-light); }
.btn-ghost{
  border-color: var(--gold-dim);
  color: var(--ivory);
  background: transparent;
}
.btn-ghost:hover{ border-color: var(--gold); background: rgba(201,164,75,.08); }
.btn-oxblood{
  background: var(--oxblood);
  color: var(--ivory);
}
.btn-oxblood:hover{ background: var(--oxblood-light); }
.btn-block{ width: 100%; justify-content: center; }
.btn-sm{ padding: 10px 18px; font-size: .88rem; }

.cta-row{ display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* ============================================================
   UTILITY BAR + NAV
   ============================================================ */
.utility-bar{
  background: #060504;
  border-bottom: 1px solid var(--gold-line);
  font-size: .82rem;
  color: var(--ivory-dim);
}
.utility-bar .container{
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 38px;
  gap: 16px;
}
.utility-bar a{ color: var(--ivory-dim); transition: color .15s; }
.utility-bar a:hover{ color: var(--gold-light); }
.utility-links{ display: flex; gap: 20px; align-items: center; }
.utility-links .dot{ color: var(--gold-dim); }
.utility-hide-mobile{ display: inline; }

header.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12,10,8,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
header.site-header.scrolled{
  border-bottom-color: var(--gold-line);
  box-shadow: 0 12px 30px -20px rgba(0,0,0,.8);
}

.nav-wrap{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: calc(var(--nav-h) - 38px);
}

.logo{
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ivory);
  letter-spacing: .01em;
}
.logo .mark{ width: 34px; height: 34px; flex-shrink: 0; }
.logo strong{ font-weight: 600; color: var(--gold-light); }

.main-nav{ display: flex; align-items: center; gap: 34px; }
.main-nav a{
  font-size: .95rem;
  color: var(--ivory-dim);
  position: relative;
  padding: 6px 0;
  transition: color .15s;
}
.main-nav a:hover, .main-nav a[aria-current="page"]{ color: var(--ivory); }
.main-nav a[aria-current="page"]::after{
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--gold);
}

.nav-actions{ display: flex; align-items: center; gap: 12px; }

.nav-toggle{
  display: none;
  background: none;
  border: 1px solid var(--gold-line);
  border-radius: var(--radius-sm);
  width: 44px; height: 44px;
  color: var(--ivory);
  align-items: center;
  justify-content: center;
}

@media (max-width: 980px){
  .main-nav{
    position: fixed;
    inset: calc(var(--nav-h)) 0 0 0;
    background: var(--ink);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 36px var(--pad);
    gap: 6px;
    transform: translateX(100%);
    transition: transform .28s ease;
    overflow-y: auto;
  }
  .main-nav.open{ transform: translateX(0); }
  .main-nav a{
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid var(--gold-line);
    font-size: 1.1rem;
  }
  .nav-toggle{ display: inline-flex; }
  .nav-actions .btn-ghost{ display: none; }
  .utility-hide-mobile{ display: none; }
}

/* ============================================================
   WHEEL / RAY MOTIF (brand signature — used sparingly)
   ============================================================ */
.wheel-motif{
  position: absolute;
  pointer-events: none;
  opacity: .9;
}
.wheel-motif svg{ width: 100%; height: 100%; }
.wheel-spin{
  animation: spin 100s linear infinite;
  transform-origin: center;
}
@keyframes spin{ to{ transform: rotate(360deg); } }
@keyframes drawIn{
  from{ stroke-dashoffset: var(--dash, 900); opacity: 0; }
  to{ stroke-dashoffset: 0; opacity: 1; }
}
@keyframes riseIn{
  from{ opacity: 0; transform: translateY(16px); }
  to{ opacity: 1; transform: translateY(0); }
}

/* ============================================================
   HERO
   ============================================================ */
.hero{
  padding-top: clamp(64px, 10vw, 120px);
  padding-bottom: clamp(64px, 10vw, 120px);
  overflow: hidden;
  position: relative;
}
.hero .container{
  display: grid;
  grid-template-columns: minmax(0,1.15fr) minmax(280px, 0.85fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}
@media (max-width: 860px){
  .hero .container{ grid-template-columns: 1fr; }
  .hero-art{ margin-top: 20px; max-width: 320px; }
}
.hero-copy h1{ animation: riseIn .8s ease both; }
.hero-copy .lede{ animation: riseIn .8s .12s ease both; }
.hero-copy .cta-row{ margin-top: 30px; animation: riseIn .8s .22s ease both; }
.hero-copy .eyebrow{ animation: riseIn .7s ease both; }

.hero-art{ position: relative; aspect-ratio: 1/1; max-width: 420px; margin: 0 auto; }

.trust-strip{
  margin-top: 46px;
  display: flex;
  flex-wrap: wrap;
  gap: 28px 40px;
  padding-top: 30px;
  border-top: 1px solid var(--gold-line);
  animation: riseIn .8s .3s ease both;
}
.trust-item{ display: flex; flex-direction: column; }
.trust-item .num{ font-family: var(--font-display); font-size: 1.7rem; color: var(--gold-light); line-height: 1; }
.trust-item .label{ font-size: .84rem; color: var(--ivory-dim); margin-top: 6px; }

/* ============================================================
   QUICK BOOKING WIDGET
   ============================================================ */
.quick-book{
  background: var(--ink-raised);
  border: 1px solid var(--gold-line);
  border-radius: var(--radius-md);
  padding: clamp(22px, 3vw, 34px);
  margin-top: -64px;
  position: relative;
  z-index: 5;
}
.quick-book h2{ font-size: 1.3rem; margin-bottom: 4px; }
.quick-book .lede{ font-size: .95rem; margin-bottom: 22px; }
.form-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px,1fr));
  gap: 16px;
}
.field{ display: flex; flex-direction: column; gap: 7px; }
.field label{ font-size: .8rem; color: var(--ivory-dim); font-weight: 500; }
.field input, .field select, .field textarea{
  background: var(--ink);
  border: 1px solid var(--gold-line);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--ivory);
}
.field input:focus, .field select:focus, .field textarea:focus{
  border-color: var(--gold);
  outline: none;
}
.field textarea{ resize: vertical; min-height: 100px; }
.form-actions{ margin-top: 20px; display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.form-note{ font-size: .82rem; color: var(--ivory-faint); }

/* ============================================================
   WHY / FEATURES
   ============================================================ */
.feature-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px,1fr));
  gap: 40px;
  margin-top: 50px;
}
.feature{ border-top: 1px solid var(--gold-line); padding-top: 22px; }
.feature .icon{ width: 40px; height: 40px; color: var(--gold); margin-bottom: 18px; }
.feature h3{ margin-bottom: 10px; }
.feature p{ color: var(--ivory-dim); font-size: .95rem; }

/* ============================================================
   SERVICE ROWS (alternating, connected by a route line)
   ============================================================ */
.service-rail{ position: relative; margin-top: 30px; }
.service-rail::before{
  content: "";
  position: absolute;
  left: 50%;
  top: 8px; bottom: 8px;
  width: 1px;
  background: linear-gradient(var(--gold-line), var(--gold), var(--gold-line));
  opacity: .5;
}
.service-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 50px 0;
  position: relative;
}
.service-row:not(:last-child){ border-bottom: 1px solid var(--gold-line); }
.service-row:nth-child(even) .service-visual{ order: 2; }
.service-num{
  font-family: var(--font-display);
  font-size: .9rem;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  border-radius: 50%;
  width: 34px; height: 34px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.service-copy h3{ font-size: clamp(1.4rem,2.4vw,1.8rem); margin-bottom: 14px; }
.service-copy p{ color: var(--ivory-dim); }
.service-tags{ display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0 22px; }
.tag{
  font-size: .78rem;
  color: var(--gold-light);
  border: 1px solid var(--gold-dim);
  padding: 5px 12px;
  border-radius: 30px;
}
.service-visual{
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  background: var(--ink-raised);
  border: 1px solid var(--gold-line);
  border-radius: var(--radius-md);
}
.service-visual svg{ width: 62%; }

@media (max-width: 860px){
  .service-row, .service-row:nth-child(even){ grid-template-columns: 1fr; }
  .service-row:nth-child(even) .service-visual{ order: 0; }
  .service-rail::before{ display: none; }
}

/* ============================================================
   FLEET SPEC CARDS
   ============================================================ */
.fleet-list{ display: flex; flex-direction: column; gap: 24px; margin-top: 46px; }
.fleet-card{
  display: grid;
  grid-template-columns: 240px 1fr auto;
  gap: 34px;
  align-items: center;
  background: var(--ink-raised);
  border: 1px solid var(--gold-line);
  border-radius: var(--radius-md);
  padding: 30px;
}
.fleet-card.featured{ border-color: var(--gold-dim); background: linear-gradient(135deg, var(--ink-raised), var(--ink-raised-2)); }
.fleet-visual{ aspect-ratio: 16/10; display: flex; align-items: center; justify-content: center; }
.fleet-visual svg{ width: 90%; color: var(--gold); }
.fleet-name{ display: flex; align-items: baseline; gap: 12px; margin-bottom: 8px; flex-wrap: wrap; }
.fleet-name h3{ margin: 0; }
.fleet-name .badge{
  font-size: .72rem;
  background: var(--oxblood);
  color: var(--ivory);
  padding: 4px 10px;
  border-radius: 30px;
  font-weight: 600;
}
.spec-list{ display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 14px; }
.spec-list div{ font-size: .86rem; color: var(--ivory-dim); }
.spec-list strong{ color: var(--ivory); display: block; font-size: .78rem; text-transform: none; color: var(--gold-light); margin-bottom: 2px; }

@media (max-width: 780px){
  .fleet-card{ grid-template-columns: 1fr; text-align: left; }
  .fleet-card .btn{ width: 100%; justify-content: center; }
}

/* ============================================================
   TRUST / RATING BLOCK (honest, real-data based)
   ============================================================ */
.rating-block{
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 46px;
  align-items: center;
  background: var(--ink-raised);
  border: 1px solid var(--gold-line);
  border-radius: var(--radius-md);
  padding: clamp(28px,4vw,48px);
}
.rating-figure{ text-align: center; }
.rating-figure .stars{ color: var(--gold); font-size: 1.3rem; letter-spacing: 3px; margin-bottom: 8px; }
.rating-figure .score{ font-family: var(--font-display); font-size: 3.4rem; color: var(--gold-light); line-height: 1; }
.rating-figure .count{ font-size: .85rem; color: var(--ivory-dim); margin-top: 8px; }
.sentiment-tags{ display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
@media (max-width: 700px){ .rating-block{ grid-template-columns: 1fr; text-align: center; } .sentiment-tags{ justify-content: center; } }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list{ margin-top: 40px; border-top: 1px solid var(--gold-line); }
.faq-item{ border-bottom: 1px solid var(--gold-line); }
.faq-q{
  width: 100%;
  background: none;
  border: none;
  color: var(--ivory);
  text-align: left;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: var(--font-display);
  font-size: 1.08rem;
}
.faq-q .plus{
  flex-shrink: 0;
  width: 22px; height: 22px;
  position: relative;
  color: var(--gold);
}
.faq-q .plus::before, .faq-q .plus::after{
  content: "";
  position: absolute;
  background: currentColor;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
}
.faq-q .plus::before{ width: 14px; height: 2px; }
.faq-q .plus::after{ width: 2px; height: 14px; transition: transform .2s ease; }
.faq-item[data-open="true"] .plus::after{ transform: translate(-50%,-50%) rotate(90deg) scaleY(0); }
.faq-a{
  max-height: 0;
  overflow: hidden;
  transition: max-height .28s ease;
}
.faq-a p{ padding-bottom: 24px; color: var(--ivory-dim); max-width: 68ch; }

/* ============================================================
   CARDS (generic, kept visually distinct per context — no
   single repeated "SaaS card" treatment)
   ============================================================ */
.plain-card{
  border: 1px solid var(--gold-line);
  border-radius: var(--radius-md);
  padding: 30px;
}

/* ============================================================
   STEPS (booking process — a genuine sequence)
   ============================================================ */
.steps{ display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 34px; margin-top: 44px; counter-reset: step; }
.step{ position: relative; padding-left: 54px; }
.step::before{
  counter-increment: step;
  content: counter(step);
  position: absolute; left: 0; top: 0;
  width: 38px; height: 38px;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
}
.step h3{ font-size: 1.15rem; margin-bottom: 8px; }
.step p{ color: var(--ivory-dim); font-size: .93rem; }

/* ============================================================
   LANDMARK / SERVICE-AREA SHOWCASE (gallery.html)
   ============================================================ */
.landmark-grid{ display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 26px; margin-top: 44px; }
.landmark-card{
  background: var(--ink-raised);
  border: 1px solid var(--gold-line);
  border-radius: var(--radius-md);
  padding: 26px;
  text-align: center;
}
.landmark-card svg{ width: 100%; height: 110px; color: var(--gold); margin-bottom: 18px; }
.landmark-card h3{ font-size: 1.05rem; margin-bottom: 6px; }
.landmark-card p{ font-size: .85rem; color: var(--ivory-dim); margin: 0; }

.coming-soon{
  margin-top: 60px;
  border: 1px dashed var(--gold-dim);
  border-radius: var(--radius-md);
  padding: clamp(36px,6vw,64px);
  text-align: center;
}
.coming-soon svg{ width: 64px; height: 64px; color: var(--gold); margin: 0 auto 20px; }
.coming-soon h3{ margin-bottom: 10px; }
.coming-soon p{ color: var(--ivory-dim); max-width: 46ch; margin-left: auto; margin-right: auto; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 40px; }
address{ font-style: normal; }
.contact-block{ margin-bottom: 30px; }
.contact-block h3{ font-size: .82rem; text-transform: none; color: var(--gold-light); margin-bottom: 10px; letter-spacing: .02em; }
.contact-block p{ color: var(--ivory-dim); margin: 0; }
.contact-block a:hover{ color: var(--gold-light); }
.map-frame{ border: 1px solid var(--gold-line); border-radius: var(--radius-md); overflow: hidden; height: 100%; min-height: 340px; }
.map-frame iframe{ width: 100%; height: 100%; min-height: 340px; border: 0; filter: grayscale(.3) invert(.92) contrast(.9); }
@media (max-width: 860px){ .contact-grid{ grid-template-columns: 1fr; } }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner{
  text-align: center;
  padding: clamp(50px,8vw,90px) var(--pad);
  background: linear-gradient(160deg, var(--ink-raised), var(--ink));
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
}
.cta-banner h2{ margin-bottom: 18px; }
.cta-banner .lede{ margin: 0 auto 30px; }
.cta-banner .cta-row{ justify-content: center; }

/* ============================================================
   FOOTER
   ============================================================ */
footer.site-footer{
  background: #060504;
  padding: 64px 0 26px;
  border-top: 1px solid var(--gold-line);
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-col h4{
  font-family: var(--font-body);
  font-size: .82rem;
  color: var(--gold-light);
  margin-bottom: 16px;
  font-weight: 600;
}
.footer-col p, .footer-col li{ color: var(--ivory-dim); font-size: .9rem; margin-bottom: 10px; }
.footer-col a:hover{ color: var(--gold-light); }
.footer-brand p{ max-width: 34ch; }
.footer-bottom{
  border-top: 1px solid var(--gold-line);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .8rem;
  color: var(--ivory-faint);
}
@media (max-width: 860px){ .footer-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px){ .footer-grid{ grid-template-columns: 1fr; } }

/* ============================================================
   FLOATING ACTIONS (WhatsApp + mobile sticky bar)
   ============================================================ */
.whatsapp-float{
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px rgba(0,0,0,.4);
  z-index: 90;
  color: #06210f;
}
.whatsapp-float svg{ width: 28px; height: 28px; }

.call-float{
  position: fixed;
  right: 22px;
  bottom: 90px;
  width: 56px; height: 56px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px rgba(0,0,0,.4);
  z-index: 90;
  color: var(--ink);
}
.call-float svg{ width: 26px; height: 26px; }
.call-float:hover{ background: var(--gold-light); }

.mobile-cta-bar{ display: none; }
@media (max-width: 720px){
  .mobile-cta-bar{
    display: flex;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 95;
    background: var(--ink-raised);
    border-top: 1px solid var(--gold-line);
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    gap: 10px;
  }
  .mobile-cta-bar .btn{ flex: 1; }
  .whatsapp-float{ bottom: 84px; }
  .call-float{ bottom: 152px; }
  body{ padding-bottom: 88px; }
}

/* back to top */
.to-top{
  position: fixed;
  right: 22px;
  bottom: 158px;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--ink-raised);
  border: 1px solid var(--gold-dim);
  color: var(--gold);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 89;
}
.to-top.show{ display: flex; }
@media (max-width: 720px){ .to-top{ display: none !important; } }

/* ============================================================
   PAGE HEADER (interior pages)
   ============================================================ */
.page-header{
  padding: clamp(70px,10vw,120px) 0 clamp(40px,6vw,60px);
  position: relative;
  overflow: hidden;
}
.page-header .eyebrow{ margin-bottom: 18px; }
.page-header .lede{ margin-top: 18px; }
.breadcrumb{ font-size: .82rem; color: var(--ivory-faint); margin-bottom: 22px; }
.breadcrumb a:hover{ color: var(--gold-light); }

/* ============================================================
   OUTSTATION DESTINATION PAGES
   ============================================================ */
.destination-grid{ display: grid; grid-template-columns: repeat(auto-fit,minmax(270px,1fr)); gap: 26px; margin-top: 40px; }
.destination-card{
  background: var(--ink-raised);
  border: 1px solid var(--gold-line);
  border-radius: var(--radius-md);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color .15s ease;
}
.destination-card:hover{ border-color: var(--gold-dim); }
.destination-card .cat{ font-size: .74rem; color: var(--gold-light); font-weight: 600; }
.destination-card h3{ font-size: 1.2rem; margin: 0; }
.destination-card .meta{ font-size: .84rem; color: var(--ivory-dim); display: flex; gap: 14px; flex-wrap: wrap; }
.destination-card p{ font-size: .88rem; color: var(--ivory-dim); margin: 0; flex-grow: 1; }
.destination-card .btn{ align-self: flex-start; margin-top: 6px; }

.category-filter{ display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.category-filter span{
  font-size: .8rem; color: var(--ivory-dim);
  border: 1px solid var(--gold-line);
  padding: 6px 14px; border-radius: 30px;
}

.related-routes{ margin-top: 20px; display: flex; flex-wrap: wrap; gap: 10px; }
.related-routes a.tag:hover{ background: rgba(201,164,75,.1); }

.infra-note{
  display: flex; gap: 14px; align-items: flex-start;
  background: rgba(201,164,75,.06);
  border: 1px solid var(--gold-line);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  margin: 26px 0;
}
.infra-note svg{ width: 22px; height: 22px; flex-shrink: 0; color: var(--gold); margin-top: 2px; }
.infra-note p{ margin: 0; font-size: .9rem; color: var(--ivory-dim); }
.infra-note strong{ color: var(--gold-light); }

/* ============================================================
   MISC
   ============================================================ */
.two-col{ display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
@media (max-width: 860px){ .two-col{ grid-template-columns: 1fr; } }
.stat-row{ display: flex; flex-wrap: wrap; gap: 36px 50px; margin-top: 40px; }
.stat-row .num{ font-family: var(--font-display); font-size: 2.3rem; color: var(--gold-light); }
.stat-row .label{ font-size: .85rem; color: var(--ivory-dim); margin-top: 4px; }

.value-list{ display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 30px; margin-top: 40px; }
.value-list li{ border-left: 2px solid var(--gold); padding-left: 18px; }
.value-list h3{ font-size: 1.05rem; margin-bottom: 8px; }
.value-list p{ color: var(--ivory-dim); font-size: .92rem; margin: 0; }

.badge-note{
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .8rem; color: var(--ivory-faint);
  border: 1px dashed var(--ivory-faint);
  padding: 8px 14px; border-radius: 30px;
  margin-top: 8px;
}

.visually-hidden{
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap;
}
