/* =========================================================
   Elite Finish Auto — Global Styles
   Premium monochrome automotive aesthetic
   ========================================================= */

:root {
  --black: #0a0a0a;
  --ink: #141414;
  --graphite: #1d1d1f;
  --slate: #4a4a4f;
  --mist: #8a8a92;
  --line: #dcebf5;
  --fog: #eaf5fc;         /* very light blue — section tint */
  --white: #ffffff;
  --accent: #2e9bd6;      /* brand light blue */
  --accent-dark: #1c7cb0;
  --navy: #0c2a3a;        /* deep blue for footer/grounding */
  --radius: 14px;
  --radius-sm: 8px;
  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 1px 2px rgba(0,0,0,.04), 0 12px 30px rgba(0,0,0,.06);
  --shadow-lg: 0 30px 80px rgba(0,0,0,.14);
}

@font-face { font-family: 'fallback'; src: local('Arial'); }

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: "Hanken Grotesk", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: inherit; text-decoration: none; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

h1, h2, h3 {
  font-family: "Fraunces", "Hanken Grotesk", Georgia, serif;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--black);
}

h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); }
h3 { font-size: 1.25rem; letter-spacing: -0.01em; }

p { color: var(--slate); }

.eyebrow {
  display: inline-block;
  font-family: "Hanken Grotesk", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 18px;
}

.section { padding: 96px 0; }
.section-tight { padding: 64px 0; }

/* ---------------- Navigation ---------------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; max-width: var(--maxw); margin: 0 auto; padding: 0 24px;
}
.brand {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600; font-size: 1.18rem; letter-spacing: -0.01em;
  color: var(--black); display: flex; align-items: center; gap: 9px;
}
.brand .mark {
  width: 34px; height: 34px;
  object-fit: contain; display: block;
}
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-size: 0.93rem; font-weight: 500; color: var(--slate);
  transition: color .2s var(--ease);
}
.nav-links a:hover { color: var(--black); }
.nav-cta {
  background: var(--accent); color: #fff !important;
  padding: 10px 18px; border-radius: 100px; font-weight: 600 !important;
  font-size: 0.9rem !important; transition: background .2s var(--ease);
}
.nav-cta:hover { background: var(--accent-dark); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; }
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: 68px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 16px 24px 24px; gap: 6px;
  }
  .nav-links.open a { padding: 12px 0; border-bottom: 1px solid var(--fog); }
  .nav-links.open .nav-cta { text-align: center; margin-top: 8px; border-bottom: 0; }
  .nav-toggle { display: block; font-size: 1.5rem; line-height: 1; color: var(--black); }
}

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 15px 28px; border-radius: 100px;
  font-weight: 600; font-size: 1rem; cursor: pointer;
  transition: transform .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
  border: 1px solid transparent;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-ghost { background: transparent; color: var(--accent-dark); border-color: rgba(46,155,214,.5); }
.btn-ghost:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-light { background: #fff; color: var(--accent-dark); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-outline { background: transparent; color: var(--accent-dark); border-color: var(--accent); }
.btn-outline:hover { border-color: var(--accent-dark); background: var(--accent); color: #fff; }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------------- Hero ---------------- */
.hero {
  position: relative; color: var(--ink); overflow: hidden;
  background:
    radial-gradient(120% 120% at 80% -10%, rgba(46,155,214,0.28), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #d4ecfb 100%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
}
.hero-inner { position: relative; z-index: 2; padding: 120px 0 110px; max-width: 820px; }
.hero h1 { color: var(--black); }
.hero p.lead { color: var(--slate); font-size: 1.2rem; margin: 22px 0 34px; max-width: 600px; }
.hero .btn-primary { background: var(--accent); color: #fff; }
.hero .btn-primary:hover { background: var(--accent-dark); }
.hero-note { font-size: 0.82rem; color: var(--mist); margin-top: 18px; }
.hero-meta {
  display: flex; gap: 28px; flex-wrap: wrap; margin-top: 46px;
  padding-top: 30px; border-top: 1px solid var(--line);
}
.hero-meta div { min-width: 90px; }
.hero-meta .n { font-family: "Fraunces", serif; font-size: 1.8rem; color: var(--black); line-height: 1; }
.hero-meta .l { font-size: 0.82rem; color: var(--mist); margin-top: 6px; }

/* ---------------- Grids & Cards ---------------- */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #dcdce0; }
.card .ic {
  width: 44px; height: 44px; border-radius: 11px; background: var(--fog);
  display: grid; place-items: center; margin-bottom: 18px; font-size: 1.3rem;
}
.card h3 { margin-bottom: 8px; }
.card p { font-size: 0.97rem; }

.area-card {
  display: block; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.area-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.area-card .ac-top {
  height: 150px; position: relative; color: #fff;
  display: flex; align-items: flex-end; padding: 20px;
  background: linear-gradient(160deg, var(--accent), var(--accent-dark));
}
.area-card .ac-top span {
  font-family: "Fraunces", serif; font-size: 1.35rem; font-weight: 600;
}
.area-card .ac-body { padding: 22px 22px 24px; }
.area-card .ac-body p { font-size: 0.95rem; }
.area-card .ac-link {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 14px;
  font-weight: 600; font-size: 0.92rem; color: var(--accent-dark);
}

/* ---------------- Split feature ---------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 36px; } }
.split .visual {
  border-radius: var(--radius); min-height: 360px;
  background:
    radial-gradient(100% 100% at 20% 10%, rgba(255,255,255,0.25), transparent 60%),
    linear-gradient(160deg, var(--accent), var(--accent-dark));
  position: relative; overflow: hidden; box-shadow: var(--shadow);
}
.split .visual .badge {
  position: absolute; bottom: 24px; left: 24px; right: 24px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px); border-radius: 12px; padding: 18px 20px; color: #fff;
}
.split .visual .badge .t { font-weight: 600; }
.split .visual .badge .s { font-size: 0.85rem; color: rgba(255,255,255,0.6); }

/* ---------------- Steps ---------------- */
.steps { counter-reset: step; }
.step {
  display: flex; gap: 22px; padding: 26px 0; border-bottom: 1px solid var(--line);
}
.step:last-child { border-bottom: 0; }
.step .num {
  counter-increment: step; flex: none;
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--black);
  display: grid; place-items: center; font-family: "Fraunces", serif;
  font-size: 1.1rem; color: var(--black);
}
.step .num::before { content: counter(step); }
.step h3 { margin-bottom: 4px; }

/* ---------------- Pricing ---------------- */
.price-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px; display: flex; flex-direction: column;
}
.price-card.featured { background: linear-gradient(165deg, var(--accent), var(--accent-dark)); color: #fff; border-color: var(--accent); }
.price-card.featured h3, .price-card.featured .price { color: #fff; }
.price-card.featured .tag { color: #fff; }
.price-card.featured p, .price-card.featured li { color: rgba(255,255,255,0.72); }
.price-card .tag {
  align-self: flex-start; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 14px;
}
.price-card .price { font-family: "Fraunces", serif; font-size: 2.4rem; color: var(--black); margin: 6px 0 2px; }
.price-card .price small { font-size: 0.9rem; color: var(--mist); font-family: inherit; }
.price-card ul { list-style: none; margin: 20px 0 26px; }
.price-card li { padding: 8px 0; font-size: 0.95rem; border-top: 1px solid var(--line); display: flex; gap: 10px; }
.price-card.featured li { border-top-color: rgba(255,255,255,0.12); }
.price-card li::before { content: "✓"; color: var(--accent-dark); font-weight: 700; }
.price-card.featured li::before { color: #fff; }
.price-card.featured .price small,
.price-card.featured .price-note { color: rgba(255,255,255,0.82); }
.price-card .btn { margin-top: auto; }

/* ---------------- FAQ ---------------- */
.faq details {
  border-bottom: 1px solid var(--line); padding: 4px 0;
}
.faq summary {
  list-style: none; cursor: pointer; padding: 22px 0;
  font-family: "Fraunces", serif; font-size: 1.15rem; font-weight: 600; color: var(--black);
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--mist); font-family: sans-serif; transition: transform .2s var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 0 24px; font-size: 1rem; max-width: 760px; }

/* ---------------- Trust strip ---------------- */
.trust-strip {
  background: var(--fog); border-radius: var(--radius); padding: 36px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center;
}
@media (max-width: 720px) { .trust-strip { grid-template-columns: repeat(2, 1fr); } }
.trust-strip .ts .n { font-family: "Fraunces", serif; font-size: 2rem; color: var(--black); }
.trust-strip .ts .l { font-size: 0.88rem; color: var(--slate); }

/* ---------------- CTA band ---------------- */
.cta-band {
  position: relative; overflow: hidden; border-radius: var(--radius); color: #fff;
  padding: 72px 48px; text-align: center;
  background:
    radial-gradient(120% 140% at 50% -20%, rgba(255,255,255,0.18), transparent 60%),
    linear-gradient(165deg, var(--accent), var(--accent-dark));
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.72); max-width: 560px; margin: 16px auto 30px; }
.cta-band .btn-row { justify-content: center; }
.cta-band .btn-primary { background: #fff; color: var(--accent-dark); }
.cta-band .btn-primary:hover { background: rgba(255,255,255,0.88); }
.cta-band .btn-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.cta-band .btn-light:hover { background: rgba(255,255,255,0.12); }

/* ---------------- Map ---------------- */
.map-wrap { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.map-wrap iframe { width: 100%; height: 380px; border: 0; display: block; filter: grayscale(1) contrast(1.05); }

/* ---------------- In-text links ---------------- */
.prose a, a.inline {
  color: var(--accent-dark); font-weight: 600;
  border-bottom: 1px solid rgba(168,132,58,0.35); transition: border-color .2s var(--ease);
}
.prose a:hover, a.inline:hover { border-color: var(--accent-dark); }
.prose p { margin-bottom: 18px; font-size: 1.05rem; }
.prose h2 { margin: 40px 0 16px; }

/* ---------------- Section headers ---------------- */
.sec-head { max-width: 640px; margin-bottom: 48px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head p { margin-top: 14px; font-size: 1.08rem; }

/* ---------------- Footer ---------------- */
.footer { background: var(--navy); color: rgba(255,255,255,0.65); padding: 70px 0 36px; }
.footer a { color: rgba(255,255,255,0.6); transition: color .2s var(--ease); }
.footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 44px; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer .brand { color: #fff; margin-bottom: 14px; }
.footer h4 { color: #fff; font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 16px; font-family: "Hanken Grotesk", Arial, sans-serif; }
.footer ul { list-style: none; }
.footer li { padding: 5px 0; font-size: 0.94rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 26px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 0.85rem; color: rgba(255,255,255,0.4);
}

/* ---------------- Mobile sticky call bar ---------------- */
.callbar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 60;
  background: #fff; padding: 10px 14px;
  gap: 10px; border-top: 1px solid var(--line); box-shadow: 0 -6px 20px rgba(0,0,0,0.06);
}
.callbar a { flex: 1; text-align: center; padding: 13px; border-radius: 100px; font-weight: 600; font-size: 0.95rem; }
.callbar .c { background: var(--accent); color: #fff; }
.callbar .b { background: var(--fog); color: var(--accent-dark); border: 1px solid var(--accent); }
@media (max-width: 860px) {
  .callbar { display: flex; }
  body { padding-bottom: 72px; }
  .callbar + * { } 
}

/* ---------------- Reveal animation ---------------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------------- Breadcrumb ---------------- */
.crumb { font-size: 0.85rem; color: var(--mist); padding: 22px 0 0; }
.crumb a { color: var(--slate); }
.crumb a:hover { color: var(--black); }

/* ---------------- Nearby links ---------------- */
.nearby { display: flex; gap: 14px; flex-wrap: wrap; }
.nearby a {
  border: 1px solid var(--line); border-radius: 100px; padding: 10px 20px;
  font-weight: 600; font-size: 0.92rem; color: var(--black);
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.nearby a:hover { border-color: var(--accent); background: var(--accent); color: #fff; }

/* ---------------- Pricing: vehicle toggle + discount ---------------- */
.veh-toggle {
  display: inline-flex; background: var(--fog); border: 1px solid var(--line);
  border-radius: 100px; padding: 5px; gap: 4px; margin: 0 auto 40px; flex-wrap: wrap;
}
.veh-toggle button {
  border: 0; background: transparent; cursor: pointer;
  font-family: inherit; font-weight: 600; font-size: 0.92rem; color: var(--slate);
  padding: 10px 20px; border-radius: 100px; transition: background .2s var(--ease), color .2s var(--ease);
}
.veh-toggle button.active { background: var(--accent); color: #fff; }
.toggle-wrap { text-align: center; }
.price-old {
  font-family: "Hanken Grotesk", Arial, sans-serif; font-size: 1.1rem;
  color: var(--mist); text-decoration: line-through; margin-right: 8px; font-weight: 500;
}
.price-card.featured .price-old { color: rgba(255,255,255,0.45); }
.save-pill {
  display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em;
  color: var(--accent-dark); background: rgba(46,155,214,0.14);
  padding: 3px 10px; border-radius: 100px; margin-left: 8px; vertical-align: middle;
}
.price-card.featured .save-pill { color: #fff; background: rgba(255,255,255,0.22); }
.price-note { font-size: 0.85rem; color: var(--mist); margin-top: 2px; }
.price-vary { font-size: 0.76rem; font-style: italic; color: var(--mist); margin-top: 6px; }

/* About */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 40px; align-items: stretch; }
@media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; } }
.about-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 40px; display: flex; flex-direction: column;
  justify-content: center; gap: 14px; height: 100%; text-align: center;
}
.about-photo {
  width: 100%; max-width: 420px; aspect-ratio: 1 / 1; height: auto;
  border-radius: 50%; object-fit: cover; flex: none;
  align-self: center; border: 4px solid var(--white); box-shadow: var(--shadow-lg); margin-bottom: 16px;
}
.about-card h3 { font-size: 1.5rem; line-height: 1.25; }
.about-card p { color: var(--slate); line-height: 1.7; font-size: 1rem; }
.about-video { display: flex; align-items: stretch; justify-content: center; }
.about-video .tiktok-embed { width: 100% !important; margin: 0 !important; }
.tiktok-placeholder {
  width: 100%; min-height: 320px; border: 2px dashed var(--line); border-radius: var(--radius);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--mist); font-weight: 600; text-align: center; gap: 6px; background: var(--white);
}
.tiktok-placeholder span { font-size: 0.82rem; font-weight: 400; }

/* Google reviews */
.reviews-rating { margin-top: 14px; font-size: 0.98rem; color: var(--slate); }
.reviews-rating .g-stars { color: var(--accent); letter-spacing: 2px; margin-right: 6px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 40px; }
@media (max-width: 860px) { .reviews-grid { grid-template-columns: 1fr; } }
.review-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; display: flex; flex-direction: column; gap: 14px; box-shadow: var(--shadow);
}
.review-card .stars { color: var(--accent); letter-spacing: 2px; font-size: 1rem; }
.review-text { color: var(--ink); font-size: 0.98rem; line-height: 1.6; flex: 1; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer .avatar {
  width: 40px; height: 40px; border-radius: 50%; flex: none;
  background: var(--accent); color: #fff; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
}
.reviewer .rname { font-weight: 600; color: var(--ink); font-size: 0.95rem; }
.reviewer .rmeta { font-size: 0.8rem; color: var(--mist); }

/* Before / after sliders */
.ba-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 40px; }
@media (max-width: 860px) { .ba-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; } }
.ba-slider {
  position: relative; margin: 0;
  aspect-ratio: 4 / 3; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg); user-select: none; touch-action: none; cursor: ew-resize;
}
.ba-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba-before { clip-path: inset(0 50% 0 0); }
.ba-tag {
  position: absolute; bottom: 14px; z-index: 2; padding: 5px 12px; border-radius: 100px;
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  background: rgba(10,10,10,0.7); color: #fff; backdrop-filter: blur(4px);
}
.ba-tag-before { left: 14px; }
.ba-tag-after { right: 14px; }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; z-index: 3;
  background: #fff; transform: translateX(-50%); box-shadow: 0 0 0 1px rgba(0,0,0,0.12);
}
.ba-grip {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 44px; height: 44px; border-radius: 50%; background: #fff; color: var(--black);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
  box-shadow: var(--shadow-lg);
}
.addons {
  margin-top: 40px; background: var(--fog); border-radius: var(--radius); padding: 32px;
}
.addons h3 { margin-bottom: 6px; }
.addon-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 20px; }
@media (max-width: 720px){ .addon-grid { grid-template-columns: 1fr; } }
.addon {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 18px 20px; display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.addon .an { font-weight: 600; color: var(--black); }
.addon .ad { font-size: 0.85rem; color: var(--mist); }
.addon .ap { font-family: "Fraunces", serif; font-size: 1.3rem; color: var(--black); flex: none; }

/* ---------------- June promo popup ---------------- */
.promo-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(8,20,28,0.74); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center; padding: 26px;
  opacity: 0; visibility: hidden; transition: opacity .3s var(--ease), visibility .3s var(--ease);
}
.promo-overlay.open { opacity: 1; visibility: visible; }
.promo-modal {
  position: relative; max-width: 420px; width: 100%;
  transform: scale(0.94); transition: transform .3s var(--ease);
}
.promo-overlay.open .promo-modal { transform: scale(1); }
.promo-modal .promo-link { display: block; }
.promo-modal img {
  display: block; width: 100%; height: auto; max-height: 86vh; object-fit: contain;
  border-radius: 14px; box-shadow: var(--shadow-lg);
}
.promo-close {
  position: absolute; top: -14px; right: -14px; z-index: 2;
  width: 42px; height: 42px; border-radius: 50%; border: 0; cursor: pointer;
  background: #fff; color: var(--ink); font-size: 1.6rem; line-height: 1; font-weight: 400;
  display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-lg);
  transition: background .2s var(--ease), color .2s var(--ease);
}
.promo-close:hover { background: var(--accent); color: #fff; }
@media (max-width: 520px) {
  .promo-overlay { padding: 22px; }
  .promo-close { width: 38px; height: 38px; }
}

/* Prevent any element from pushing the page wider than the screen (left-side crop).
   Use clip (not hidden) so it doesn't break the sticky nav bar. */
html { overflow-x: clip; }
body { overflow-x: clip; max-width: 100%; }

/* ---------------- Mobile optimization (top sections) ---------------- */
@media (max-width: 700px) {
  .container { padding: 0 18px; }
  .section { padding: 54px 0; }
  .section-tight { padding: 44px 0; }

  /* Center all text on mobile so nothing gets clipped on the left */
  .hero-inner,
  .sec-head,
  .card,
  .price-card,
  .area-card .ac-body,
  .about-card,
  .review-card,
  .addons,
  .cta-band { text-align: center; }

  /* keep flex children centered too */
  .card, .price-card { align-items: center; }
  .card .ic { margin-left: auto; margin-right: auto; }
  .price-card .tag { align-self: center; }
  .price-card ul { display: inline-block; text-align: left; margin-left: auto; margin-right: auto; }

  /* Hero */
  .hero-inner { padding: 64px 0 54px; max-width: 100%; }
  .hero h1 { font-size: clamp(2rem, 9vw, 2.7rem); }
  .hero p.lead { font-size: 1.05rem; margin: 18px auto 26px; }
  .hero .btn-row { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero .btn-row .btn { width: 100%; justify-content: center; }
  .hero-note { margin-top: 16px; }
  .hero-meta { gap: 20px 26px; margin-top: 32px; padding-top: 24px; justify-content: center; }
  .hero-meta div { min-width: 70px; }
  .hero-meta .n { font-size: 1.5rem; }

  /* Section heads / intro */
  .sec-head { margin-left: auto; margin-right: auto; }
  .sec-head p { font-size: 1rem; }
  .eyebrow { margin-bottom: 12px; }

  /* CTA band */
  .cta-band { padding: 48px 22px; }
  .cta-band .btn-row { flex-direction: column; align-items: stretch; }
  .cta-band .btn-row .btn { width: 100%; justify-content: center; }
}

/* ---------------- Booking page ---------------- */
.booking { padding: 64px 0 90px; }
.booking-head { text-align: center; max-width: 640px; margin: 0 auto; }
.steps-bar { display: flex; justify-content: center; gap: 0; margin: 30px auto 44px; max-width: 480px; position: relative; }
.steps-bar .stp { flex: 1; text-align: center; font-size: 0.78rem; font-weight: 600; color: var(--mist); }
.steps-bar .stp .dot {
  width: 32px; height: 32px; border-radius: 50%; margin: 0 auto 8px;
  background: var(--fog); color: var(--mist); border: 2px solid var(--line);
  display: flex; align-items: center; justify-content: center; font-weight: 700;
  transition: .2s var(--ease);
}
.steps-bar .stp.active .dot, .steps-bar .stp.done .dot { background: var(--accent); color: #fff; border-color: var(--accent); }
.steps-bar .stp.active, .steps-bar .stp.done { color: var(--accent-dark); }

.bk-step { display: none; }
.bk-step.active { display: block; animation: bkFade .3s var(--ease); }
@keyframes bkFade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.bk-q { text-align: center; margin-bottom: 24px; }
.bk-summary { text-align: center; color: var(--slate); margin-bottom: 22px; font-weight: 600; }

/* Vehicle cards */
.veh-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 760px; margin: 0 auto; }
@media (max-width: 700px) { .veh-grid { grid-template-columns: 1fr; max-width: 420px; } }
.veh-card {
  cursor: pointer; background: #fff; border: 2px solid var(--line); border-radius: var(--radius);
  padding: 26px 18px; text-align: center; transition: transform .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.veh-card:hover, .veh-card:focus-visible { border-color: var(--accent); transform: translateY(-4px); box-shadow: var(--shadow); outline: none; }
.veh-svg { width: 150px; height: 80px; margin: 0 auto 14px; display: block; animation: vehFloat 2.6s ease-in-out infinite; }
@keyframes vehFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
.veh-card .wheel { transform-box: fill-box; transform-origin: center; }
.veh-card:hover .wheel { animation: vehSpin .9s linear infinite; }
@keyframes vehSpin { to { transform: rotate(360deg); } }
.veh-card h3 { margin-bottom: 4px; }
.veh-card p { font-size: 0.85rem; color: var(--mist); }

/* Package options */
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 760px; margin: 0 auto 32px; }
@media (max-width: 700px) { .pkg-grid { grid-template-columns: 1fr; max-width: 420px; } }
.pkg-opt input { position: absolute; opacity: 0; pointer-events: none; }
.pkg-opt label {
  display: block; cursor: pointer; height: 100%; background: #fff;
  border: 2px solid var(--line); border-radius: var(--radius); padding: 22px; text-align: center;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.pkg-opt label:hover { border-color: var(--accent); }
.pkg-opt input:checked + label { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(46,155,214,.2); }
.pkg-opt .pk-tag { font-size: 0.7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--accent-dark); }
.pkg-opt .pk-name { font-family: "Fraunces", serif; font-size: 1.2rem; margin: 8px 0 6px; color: var(--black); }
.pkg-opt .pk-price { font-family: "Fraunces", serif; font-size: 1.7rem; color: var(--accent-dark); }
.pkg-opt .pk-old { font-size: 0.95rem; color: var(--mist); text-decoration: line-through; margin-right: 4px; }
.pkg-opt .pk-save-row { margin-top: 8px; }
.pkg-opt .pk-save { display: inline-block; font-size: 0.72rem; font-weight: 700; color: #fff; background: var(--accent); padding: 4px 12px; border-radius: 100px; }

/* Add-ons */
.addons-list { max-width: 520px; margin: 0 auto; }
.addon-check { display: flex; align-items: center; gap: 12px; padding: 13px 16px; border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 10px; cursor: pointer; background: #fff; transition: border-color .2s var(--ease); }
.addon-check:hover { border-color: var(--accent); }
.addon-check input { width: 18px; height: 18px; accent-color: var(--accent); flex: none; }

/* Detail fields */
.bk-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 680px; margin: 0 auto; }
@media (max-width: 620px) { .bk-fields { grid-template-columns: 1fr; } }
.bk-fields .full { grid-column: 1 / -1; }
.bk-field label { display: block; font-size: 0.82rem; font-weight: 600; margin-bottom: 6px; color: var(--ink); }
.bk-field input, .bk-field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  font-family: inherit; font-size: 0.98rem; background: #fff; color: var(--ink);
}
.bk-field input:focus, .bk-field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(46,155,214,.15); }
.bk-field textarea { min-height: 112px; resize: vertical; }
.bk-nav { display: flex; justify-content: space-between; gap: 12px; max-width: 680px; margin: 30px auto 0; }
.bk-success { text-align: center; max-width: 520px; margin: 20px auto 0; display: none; }
.bk-success.show { display: block; animation: bkFade .3s var(--ease); }

/* Booking total + success */
.bk-total { max-width: 680px; margin: 26px auto 0; }
.bt-row {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--fog); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px 22px;
}
.bt-label { font-weight: 600; color: var(--ink); font-size: 1.05rem; }
.bt-amt { font-family: "Fraunces", serif; font-size: 1.9rem; color: var(--accent-dark); }
.bt-note { font-size: 0.82rem; color: var(--mist); margin-top: 8px; text-align: center; }
.bk-success-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 24px; }
@media (max-width: 520px) { .bk-success-btns { flex-direction: column; align-items: stretch; } }

/* ---------------- Gallery ---------------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 0; }
@media (max-width: 760px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .gallery-grid { grid-template-columns: 1fr; } }
.g-item { aspect-ratio: 4 / 3; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.g-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s var(--ease); }
.g-item:hover img { transform: scale(1.05); }

/* ---------------- Intro split (text + image) ---------------- */
.intro-split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.intro-split .sec-head { margin-bottom: 0; }
.intro-media { display: flex; justify-content: center; }
.intro-media img { width: 100%; max-width: 1000px; aspect-ratio: 2 / 1; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
@media (max-width: 860px) {
  .intro-split { grid-template-columns: 1fr; gap: 28px; }
  .intro-split .sec-head { margin-left: auto; margin-right: auto; text-align: center; }
  .intro-media img { max-width: 100%; }
}

/* ---------------- Footer social icons ---------------- */
.socials { display: flex; gap: 10px; margin-top: 18px; }
.social-link {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.1); color: #fff;
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.social-link:hover { background: var(--accent); transform: translateY(-2px); }
.social-link svg { width: 18px; height: 18px; fill: currentColor; display: block; }

/* ---------------- Blog article ---------------- */
.post { padding: 40px 0 80px; }
.post-head { max-width: 760px; margin: 0 auto 8px; }
.post-head .crumb { font-size: 0.85rem; margin-bottom: 14px; color: var(--mist); }
.post-head .crumb a { color: var(--accent-dark); }
.post-head h1 { font-size: clamp(1.9rem, 4.5vw, 2.8rem); }
.post-meta { color: var(--mist); font-size: 0.9rem; margin-top: 12px; }
.post-body { max-width: 760px; margin: 0 auto; }
.post-body p { margin: 0 0 18px; font-size: 1.05rem; }
.post-body h2 { font-size: 1.5rem; margin: 36px 0 12px; }
.post-body h3 { font-size: 1.2rem; margin: 24px 0 8px; }
.post-body ul, .post-body ol { margin: 0 0 18px; padding-left: 22px; }
.post-body li { margin-bottom: 8px; color: var(--slate); }
.post-body a { color: var(--accent-dark); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.post-body strong { color: var(--ink); }
.post-cta { max-width: 760px; margin: 40px auto 0; background: var(--fog); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; text-align: center; }
.post-cta h3 { font-size: 1.3rem; margin-bottom: 14px; }

/* Offset anchored sections below the sticky nav */
section[id] { scroll-margin-top: 84px; }
