/* Hallmark · audited 2026-07-27 · token pass
   macrostructure: conversion-landing (kept deliberately for paid traffic)
   theme: warm paper · orange accent · Space Grotesk / Manrope */
:root {
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Manrope', sans-serif;

  --color-paper: #FDFDFC;
  --color-card: #FEFDFB;
  --color-ink: #14100D;
  --color-body: #5A4F45;
  --color-muted: #8A7C6D;
  --color-nav: #4A4038;
  --color-accent: #F07300;
  --color-accent-deep: #C85E00;
  --color-accent-soft: #F0B892;
  --color-cream: #FFF1E3;
  --color-cream-deep: #F3E9DD;
  --color-green: #22A45D;
  --color-green-soft: #E4F6EC;
  --color-star: #FBBC05;
  --color-parkos: #00A664;
  --color-border: #EDE6DC;
  --color-border-lt: #EEEBE5;
  --color-border-mid: #E4DDD4;
  --color-border-input: #E7E2D9;
  --color-input-bg: #FAFAF8;
  --color-error: #C0392B;
  --color-error-bg: #FDEDEA;

  --shadow-card: 0 20px 50px -20px rgba(20,16,13,0.22);
  --shadow-btn: 0 2px 8px rgba(20,16,13,0.18);
}

/* ===================================================================
   Parkeep Roissy — implemented from "Parkeep Roissy.dc.html"
   Palette: bg var(--color-paper) · ink var(--color-ink) · orange var(--color-accent) / var(--color-accent-deep)
            cream var(--color-cream) · green var(--color-green) · muted var(--color-muted) / var(--color-body)
   Type:    Space Grotesk (display) · Manrope (body)
   =================================================================== */

* { box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: clip; }

body {
  margin: 0;
  overflow-x: clip;
  background: var(--color-paper);
  color: var(--color-ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--color-accent); text-decoration: none; }
a:hover { color: var(--color-accent-deep); }

input, select, button { font-family: inherit; }
input[type="date"], input[type="time"] { -webkit-appearance: none; }

@keyframes floatUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}
@keyframes slideIn {
  from { opacity: 0; transform: translateY(24px) scale(0.98); }
  to   { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-copy, .hero-media, .modal { animation: none !important; }
}

/* ============ SHARED ============ */

.stars { color: var(--color-star); font-size: 17px; letter-spacing: -1px; }
.stars.big { font-size: 18px; }

.eyebrow {
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.section { max-width: 1200px; margin: 0 auto; padding: 80px 24px 20px; }

.section-head { text-align: center; margin-bottom: 48px; }
.section-head.tight { margin-bottom: 14px; }

.section-title {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 10px 0 0;
  text-wrap: pretty;
}

.section-sub { text-align: center; color: var(--color-muted); font-size: 15px; margin: 0 0 44px; }

.section-cta { text-align: center; margin-top: 36px; }

.btn-primary {
  border: none;
  background: var(--color-accent);
  color: #fff;
  border-radius: 12px;
  padding: 15px;
  font-weight: 800;
  font-size: 16px;
  cursor: pointer;
  box-shadow: var(--shadow-btn);
}
.btn-primary:hover { background: var(--color-accent-deep); }

.btn-dark {
  border: none;
  background: var(--color-ink);
  color: #fff;
  border-radius: 999px;
  padding: 15px 34px;
  font-weight: 800;
  font-size: 16px;
  cursor: pointer;
}
.btn-dark:hover { background: var(--color-ink); }

/* ============ HEADER ============ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253,253,252,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border-lt);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo-link { display: flex; align-items: center; flex-shrink: 0; }
.logo { height: 54px; width: auto; display: block; }

.main-nav { display: flex; gap: 26px; margin-left: 12px; flex: 1; }
.nav-link { color: var(--color-nav); font-weight: 600; font-size: 15px; }
.nav-link:hover { color: var(--color-accent); }

.phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-ink);
  font-weight: 700;
  font-size: 15px;
  white-space: nowrap;
}

.lang-btn {
  border: 1px solid var(--color-border-mid);
  background: var(--color-card);
  border-radius: 999px;
  padding: 7px 12px;
  font-weight: 700;
  font-size: 13px;
  color: var(--color-ink);
  cursor: pointer;
  letter-spacing: 0.03em;
}

.btn-book {
  border: none;
  background: var(--color-accent);
  color: #fff;
  border-radius: 999px;
  padding: 11px 22px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  box-shadow: var(--shadow-btn);
  flex-shrink: 0;
}
.btn-book:hover { background: var(--color-accent-deep); }

/* ============ HERO ============ */

.hero { position: relative; overflow: hidden; }

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 24px 40px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 48px;
  align-items: center;
}

/* Centred single-column variant — the launch layout while no real photo
   exists. When a photo is set in the CMS it appears full-width below. */
.hero-centered { grid-template-columns: minmax(0, 1fr); justify-items: center; }
.hero-centered .hero-copy { text-align: center; max-width: 820px; }
.hero-centered .hero-sub { margin-left: auto; margin-right: auto; }
.hero-centered .booking-card { margin: 0 auto; max-width: 560px; text-align: left; }

.hero-copy { animation: floatUp 0.6s ease both; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-cream);
  color: var(--color-accent-deep);
  font-weight: 700;
  font-size: 13px;
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
  letter-spacing: 0.02em;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--color-green);
  border-radius: 999px;
  box-shadow: 0 0 0 3px rgba(34,164,93,0.2);
}

.hero-title {
  font-family: var(--font-display);
  font-size: 52px;
  line-height: 1.04;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin: 0 0 18px;
  text-wrap: balance;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.55;
  color: var(--color-body);
  max-width: 480px;
  margin: 0 0 28px;
}

.booking-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 20px 50px -20px rgba(20,16,13,0.22);
  max-width: 500px;
}

.bk-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 14px;
}

.bk-title { font-family: var(--font-display); font-weight: 700; font-size: 16px; }

.bk-from { font-size: 13px; color: var(--color-muted); }
.bk-from strong { color: var(--color-accent); font-size: 15px; }

.bk-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.field { display: flex; flex-direction: column; gap: 5px; }

.field-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.bk-grid input {
  border: 1px solid var(--color-border-input);
  border-radius: 11px;
  padding: 11px 12px;
  font-size: 14px;
  color: var(--color-ink);
  background: var(--color-input-bg);
}

.bk-submit {
  width: 100%;
  margin-top: 12px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.bk-perks {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 13px;
  font-size: 12.5px;
  color: var(--color-muted);
  font-weight: 600;
}

.perk { display: flex; align-items: center; gap: 5px; }

.rating-card {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  background: var(--color-card);
  border: 1px solid var(--color-border-lt);
  border-radius: 16px;
  padding: 13px 20px 13px 16px;
  box-shadow: 0 10px 30px -18px rgba(20,16,13,0.28);
}

.g-divider { width: 1px; height: 34px; background: var(--color-border-lt); }

.rating-row { display: flex; align-items: center; gap: 8px; }

.rating-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
  color: var(--color-ink);
}
.rating-num.big { font-size: 26px; }

.rating-sub { font-size: 13px; color: var(--color-body); font-weight: 600; }

.hero-media {
  position: relative;
  height: 520px;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 30px 70px -30px rgba(20,16,13,0.5);
  animation: floatUp 0.7s ease 0.1s both;
}

/* Full-width media band under the centred hero (renders only with a real photo) */
.hero-media-wide { width: 100%; max-width: 1000px; height: 420px; margin-top: 40px; }

/* Full-bleed background bands — visual separation between paper sections.
   Wrap a .section in .band-cream / .band-linen in the block template. */
.band-cream { background: var(--color-cream); }
.band-linen { background: var(--color-cream-deep); }
.band-cream .section, .band-linen .section { padding-bottom: 72px; }

/* image placeholder — swap for a real photo: replace .img-placeholder with <img> */
.img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: repeating-linear-gradient(
    -45deg,
    #F3EEE6 0px, #F3EEE6 14px,
    #EDE6DA 14px, #EDE6DA 28px
  );
}

.ph-label {
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 13px;
  color: var(--color-muted);
  background: rgba(253,253,252,0.85);
  border: 1px dashed var(--color-border-mid);
  border-radius: 8px;
  padding: 8px 14px;
}

.hero-caption {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  background: rgba(20,16,13,0.82);
  backdrop-filter: blur(6px);
  color: #fff;
  border-radius: 16px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  pointer-events: none;
}

.caption-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.caption-title { font-family: var(--font-display); font-weight: 700; font-size: 15px; }
.caption-sub { font-size: 13px; opacity: 0.8; }

/* ============ GOOGLE PROOF BAND ============ */

.proof-band {
  border-top: 1px solid var(--color-border-lt);
  border-bottom: 1px solid var(--color-border-lt);
  background: var(--color-card);
}

.proof-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

.proof-google { display: flex; align-items: center; gap: 14px; }

.proof-score { display: flex; align-items: center; gap: 7px; }
.proof-num { font-family: var(--font-display); font-weight: 700; font-size: 17px; }
.proof-sub { font-size: 12.5px; color: var(--color-muted); font-weight: 600; }

.v-divider { width: 1px; height: 40px; background: var(--color-border-lt); }

.proof-quotes {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 13.5px;
  color: var(--color-nav);
}

.quote { display: flex; align-items: center; gap: 7px; }

/* ============ TRUST STRIP ============ */

.trust-strip { background: var(--color-ink); color: #fff; }

.trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 26px 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.trust-item { display: flex; align-items: center; gap: 13px; }
.trust-item svg { flex-shrink: 0; }

.trust-num { font-family: var(--font-display); font-weight: 700; font-size: 19px; }
.trust-label { font-size: 13px; opacity: 0.7; }

/* ============ HOW IT WORKS ============ */

.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.step-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 32px 28px;
  position: relative;
}

.step-num {
  font-family: var(--font-display);
  font-size: 54px;
  font-weight: 700;
  color: var(--color-cream-deep);
  line-height: 1;
  position: absolute;
  top: 20px;
  right: 24px;
}

.step-icon {
  width: 54px;
  height: 54px;
  border-radius: 15px;
  background: var(--color-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.step-card h3 {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  margin: 0 0 10px;
}

.step-card p { font-size: 15px; line-height: 1.55; color: var(--color-body); margin: 0; }

/* ============ PRICING ============ */

.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.price-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 28px 24px;
  text-align: center;
}

.price-card.featured {
  background: var(--color-ink);
  color: #fff;
  border: none;
  position: relative;
  box-shadow: 0 20px 40px -18px rgba(20,16,13,0.5);
  transform: translateY(-6px);
}

.price-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent);
  color: #fff;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

.price-name {
  font-weight: 700;
  color: var(--color-muted);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.price-card.featured .price-name { color: var(--color-accent-soft); }

.price-amount {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  margin: 8px 0 2px;
}

.price-days { font-size: 13px; color: var(--color-muted); }
.price-card.featured .price-days { color: inherit; opacity: 0.7; }

.pricing-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
  font-size: 14px;
  color: var(--color-body);
}

/* ============ WHY US ============ */

.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 48px;
  align-items: center;
}

.why-media {
  position: relative;
  height: 440px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 60px -28px rgba(20,16,13,0.4);
}

.why-title { font-size: 38px; margin: 10px 0 28px; }

.features-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 22px; }

.feature { display: flex; gap: 13px; }

.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--color-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  margin: 3px 0 5px;
}

.feature p { font-size: 14px; color: var(--color-body); line-height: 1.5; margin: 0; }

/* ============ REVIEWS ============ */

/* Reviews sit on paper — the features band above carries the linen tone,
   two warm bands back-to-back read as one accidental blob. */
.reviews { background: var(--color-paper); margin-top: 80px; }

.reviews-inner { max-width: 1200px; margin: 0 auto; padding: 70px 24px; }

.reviews-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.reviews-head .section-title { font-size: 38px; }

.rating-box {
  background: var(--color-card);
  border: 1px solid var(--color-border-lt);
  box-shadow: 0 10px 30px -22px rgba(20,16,13,0.3);
  border-radius: 18px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 10px 30px -16px rgba(20,16,13,0.25);
}

.rating-box .rating-sub { color: var(--color-muted); margin-top: 2px; }

.rev-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 1fr);
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 10px;
}
.rev-scroll::-webkit-scrollbar { height: 8px; }
.rev-scroll::-webkit-scrollbar-thumb { background: var(--color-border-mid); border-radius: 999px; }

.review-card {
  background: var(--color-card);
  border: 1px solid var(--color-border-lt);
  box-shadow: 0 12px 32px -24px rgba(20,16,13,0.3);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rev-top { display: flex; align-items: center; justify-content: space-between; }
.rev-top .stars { font-size: 16px; }

.rev-text { font-size: 15px; line-height: 1.6; color: var(--color-nav); margin: 0; flex: 1; }

.rev-author { display: flex; align-items: center; gap: 11px; margin-top: 4px; }

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-display);
}

.rev-name { font-weight: 700; font-size: 14px; }
.rev-date { font-size: 12.5px; color: var(--color-muted); }

.reviews-more { text-align: center; margin-top: 30px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-card);
  border: 1px solid var(--color-border-mid);
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 700;
  color: var(--color-ink);
}
.btn-ghost:hover { color: var(--color-ink); border-color: var(--color-border-mid); }

/* ============ FAQ ============ */

.faq-section { max-width: 820px; }
.faq-section .section-head { margin-bottom: 44px; }
.faq-section .section-title { font-size: 38px; }

.faq-list { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-weight: 700;
  font-size: 16.5px;
  color: var(--color-ink);
  font-family: var(--font-display);
}

.faq-sign {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: var(--color-cream);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
}

.faq-a { display: none; padding: 0 24px 20px; font-size: 15px; line-height: 1.6; color: var(--color-body); }
.faq-a p { margin: 0; }
.faq-item.open .faq-a { display: block; }

/* ============ FINAL CTA ============ */

.cta-section { max-width: 1200px; margin: 80px auto 0; padding: 0 24px; }

.cta-card {
  background: var(--color-ink);
  border-radius: 28px;
  padding: 56px 48px;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}


.cta-copy { position: relative; }

.cta-copy h2 {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}

.cta-copy p { font-size: 17px; color: rgba(255,255,255,0.75); margin: 0; }

.cta-actions { position: relative; display: flex; flex-direction: column; gap: 12px; }

.cta-btn { border-radius: 14px; padding: 18px; font-size: 18px; box-shadow: var(--shadow-btn); }

.cta-phone { text-align: center; color: rgba(255,255,255,0.85); font-weight: 700; font-size: 15px; }
.cta-phone:hover { color: #fff; }

/* ============ FOOTER ============ */

.site-footer { background: var(--color-ink); color: rgba(255,255,255,0.8); margin-top: 70px; }

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px 30px;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 40px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}
.footer-logo span { color: var(--color-accent); }

.footer-tagline { font-size: 14px; line-height: 1.6; margin: 14px 0 0; max-width: 260px; }

.footer-rating { display: flex; align-items: center; gap: 8px; margin-top: 18px; font-size: 13px; }
.footer-rating .stars { font-size: 15px; }
.footer-score { font-weight: 700; color: #fff; }

.footer-grid h4 {
  font-family: var(--font-display);
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 16px;
}

.footer-links { display: flex; flex-direction: column; gap: 11px; font-size: 14px; }
.footer-links a { color: rgba(255,255,255,0.8); }
.footer-links a:hover { color: #fff; }

.footer-info { font-size: 14px; line-height: 1.7; }
.footer-highlight { margin-top: 10px; color: var(--color-accent); font-weight: 700; }
.footer-phone { display: block; margin-top: 8px; color: #fff; font-weight: 700; }
.footer-mail { display: block; color: rgba(255,255,255,0.8); }
.footer-mail:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 20px 24px;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

/* ============ RESERVATION MODAL ============ */

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(20,16,13,0.55);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 20px;
  overflow-y: auto;
}
.modal-overlay[hidden] { display: none; }

.modal {
  background: var(--color-card);
  border-radius: 24px;
  width: 100%;
  max-width: 560px;
  box-shadow: 0 40px 90px -30px rgba(0,0,0,0.5);
  animation: slideIn 0.35s cubic-bezier(0.16,1,0.3,1) both;
  overflow: hidden;
}

.modal-head {
  background: var(--color-ink);
  padding: 20px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-title { font-family: var(--font-display); font-weight: 700; color: #fff; font-size: 18px; }

.modal-close {
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
}
.modal-close:hover { background: rgba(255,255,255,0.22); }

.modal-steps { display: flex; gap: 6px; padding: 16px 26px 0; }

.step-bar { flex: 1; height: 5px; border-radius: 999px; background: #EAE1D5; }
.step-bar.active { background: var(--color-accent); }

.modal-body { padding: 24px 26px 28px; }

.m-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.m-grid .field { gap: 6px; }
.m-grid input {
  border: 1px solid var(--color-border-mid);
  border-radius: 12px;
  padding: 13px;
  font-size: 15px;
  background: var(--color-card);
  width: 100%;
}
.field.span2 { grid-column: span 2; }

.option-block { margin-top: 18px; }
.option-block > .field-label { display: block; margin-bottom: 8px; }

.option-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.option-btn {
  text-align: left;
  border: 2px solid var(--color-border-mid);
  background: var(--color-card);
  border-radius: 14px;
  padding: 14px;
  cursor: pointer;
}
.option-btn.selected { border-color: var(--color-accent); background: var(--color-cream); }

.option-name { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--color-ink); }
.option-sub { font-size: 12.5px; color: var(--color-muted); margin-top: 2px; }

.m-full { width: 100%; margin-top: 22px; border-radius: 13px; padding: 16px; }

.quote-box {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 22px;
  text-align: center;
}

.quote-label {
  font-size: 13px;
  color: var(--color-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.quote-total {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1.1;
  margin: 6px 0;
}

.quote-summary { font-size: 14px; color: var(--color-body); }

.quote-lines { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; font-size: 14.5px; }

.quote-line { display: flex; justify-content: space-between; color: var(--color-body); }
.quote-val { font-weight: 700; color: var(--color-ink); }
.quote-val.green { color: var(--color-green); }

.m-actions { display: flex; gap: 12px; margin-top: 22px; }

.btn-secondary {
  border: 1px solid var(--color-border-mid);
  background: var(--color-card);
  color: var(--color-ink);
  border-radius: 13px;
  padding: 16px 20px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
}
.btn-secondary:hover { border-color: var(--color-border-mid); }

.m-grow { flex: 1; border-radius: 13px; padding: 16px; }

.btn-success {
  border: none;
  background: var(--color-green);
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  cursor: pointer;
}
.btn-success:hover { background: var(--color-green); }

.total-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding: 14px 16px;
  background: var(--color-cream);
  border-radius: 12px;
}
.total-strip > span:first-child { font-size: 14px; font-weight: 700; color: var(--color-accent-deep); }
.total-amount { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--color-accent); }

.modal-note { text-align: center; font-size: 12px; color: var(--color-muted); margin: 14px 0 0; }

.done-step { text-align: center; padding: 10px 0; }

.done-check {
  width: 74px;
  height: 74px;
  border-radius: 999px;
  background: var(--color-green-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.done-step h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 8px;
}

.done-step p { font-size: 15px; color: var(--color-body); margin: 0 0 18px; line-height: 1.55; }

.ref-box {
  background: var(--color-card);
  border: 1px dashed var(--color-border-mid);
  border-radius: 14px;
  padding: 16px;
  display: inline-block;
}

.ref-label {
  font-size: 12px;
  color: var(--color-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ref-code {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.05em;
}

/* ============ RESPONSIVE ============ */

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-media { height: 380px; }
  .hero-title { font-size: 44px; }
  .why-grid { grid-template-columns: 1fr; gap: 32px; }
  .why-media { height: 320px; }
  .trust-inner { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); row-gap: 26px; }
  .price-card.featured { transform: none; }
  .steps-grid { grid-template-columns: 1fr; }
  .cta-card { grid-template-columns: 1fr; padding: 44px 32px; }
  .footer-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
}

@media (max-width: 760px) {
  .main-nav { display: none; }
  .header-inner { gap: 12px; justify-content: space-between; }
  .logo { height: 44px; }
  .phone-link span { display: none; }
  .hero-inner { padding-top: 36px; }
  .hero-title { font-size: 34px; }
  /* Let text-wrap: balance handle narrow screens — the authored break
     produces orphan lines below ~640px. */
  .hero-title br { display: none; }
  .hero-sub { font-size: 16px; }
  .section { padding: 56px 20px 16px; }
  .section-title { font-size: 30px; }
  .reviews-head .section-title,
  .faq-section .section-title,
  .why-title,
  .cta-copy h2 { font-size: 28px; }
  .trust-inner { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .rev-scroll { grid-auto-columns: minmax(280px, 85vw); }
  .m-grid { grid-template-columns: 1fr; }
  .field.span2 { grid-column: auto; }
  .modal-overlay { padding: 16px 12px; }
  .bk-grid { grid-template-columns: 1fr; }
}

/* ============ LARAVEL BUILD ADDITIONS ============ */

/* Parkos brand mark (placeholder roundel until official asset provided) */
.parkos-mark {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--color-parkos);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  flex-shrink: 0;
}
.parkos-mark.lg { width: 34px; height: 34px; font-size: 19px; }
.parkos-mark.sm { width: 18px; height: 18px; font-size: 11px; border-radius: 5px; }

.rating-scale { font-size: 0.55em; font-weight: 600; color: var(--color-muted); }

.hero-img { width: 100%; height: 100%; object-fit: cover; display: block; }

.m-grid select {
  border: 1px solid var(--color-border-mid);
  border-radius: 12px;
  padding: 13px;
  font-size: 15px;
  background: var(--color-card);
  width: 100%;
}

.field-hint { font-size: 11.5px; color: var(--color-muted); font-weight: 500; }

.check-row {
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--color-border-mid);
  border-radius: 12px;
  padding: 12px 13px;
  font-size: 14px;
  background: var(--color-card);
  cursor: pointer;
}
.check-row input { width: 17px; height: 17px; accent-color: var(--color-accent); }

.night-note {
  margin: 12px 0 0;
  font-size: 12.5px;
  color: var(--color-accent-deep);
  background: var(--color-cream);
  border-radius: 10px;
  padding: 9px 12px;
}

.form-error {
  margin: 12px 0 0;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--color-error);
  background: var(--color-error-bg);
  border-radius: 10px;
  padding: 10px 12px;
}

.btn-primary[disabled], .btn-success[disabled] { opacity: 0.6; cursor: wait; }

/* consent banner */
.consent-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  box-shadow: 0 20px 50px -20px rgba(20,16,13,0.35);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 720px;
  margin: 0 auto;
}
.consent-banner[hidden] { display: none; }
.consent-text { margin: 0; font-size: 13.5px; line-height: 1.5; color: var(--color-nav); flex: 1; }
.consent-actions { display: flex; gap: 10px; flex-shrink: 0; }
.consent-actions .btn-primary, .consent-actions .btn-secondary { padding: 10px 18px; font-size: 14px; border-radius: 10px; }
@media (max-width: 600px) {
  .consent-banner { flex-direction: column; align-items: stretch; text-align: center; }
}


/* ============ AUDIT PASS ADDITIONS ============ */

/* instant, non-animated focus ring (a11y) */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, [tabindex]:focus-visible {
  outline: 2px solid var(--color-accent-deep);
  outline-offset: 2px;
  border-radius: 4px;
}

/* fractional star rating — --fill set inline from rating/scale */
.stars-frac {
  position: relative;
  display: inline-block;
  font-size: 17px;
  letter-spacing: -1px;
  line-height: 1;
}
.stars-frac .stars-bg { color: var(--color-border-mid); }
.stars-frac .stars-fill {
  position: absolute;
  inset: 0;
  width: var(--fill, 100%);
  overflow: hidden;
  color: var(--color-star);
  white-space: nowrap;
}
.stars-frac.big { font-size: 18px; }
.stars-frac.sm { font-size: 15px; }

/* phone as the distinct header element */
.phone-link {
  border: 1px solid var(--color-border-mid);
  background: var(--color-cream);
  border-radius: 999px;
  padding: 9px 16px;
}
.phone-link:hover { border-color: var(--color-accent); color: var(--color-ink); }

/* source badges on review cards */
.source-mark {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  color: #fff;
  flex-shrink: 0;
}
.source-mark.parkos { background: var(--color-parkos); }
.source-mark.google { background: #fff; border: 1px solid var(--color-border-lt); }

/* steps without icon tiles: numeral carries the card */
.step-card { padding: 34px 28px 30px; }
.step-num {
  font-size: 64px;
  color: var(--color-cream-deep);
  top: 16px;
  right: 22px;
}
.step-card h3 { margin-top: 4px; }

/* features: icon inline with heading, no tile */
.feature { display: block; }
.feature h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 6px;
}
.feature h4 svg { flex-shrink: 0; }

/* CTA button label must not wrap awkwardly at small widths */
@media (max-width: 420px) {
  .cta-btn { font-size: 16px; padding: 16px 12px; }
  .btn-book { padding: 11px 16px; }
}

/* dual rating boxes + review CTA row */
.rating-boxes { display: flex; gap: 14px; flex-wrap: wrap; }
.reviews-more { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.source-mark.parkive { background: var(--color-nav); font-size: 9px; }


/* responsive gate fixes (320–768 sweep) */
.hero-title, .section-title, .cta-copy h2 { overflow-wrap: anywhere; min-width: 0; }
.footer-mail, .footer-info { overflow-wrap: anywhere; }
.btn-ghost, .cta-btn, .btn-book { white-space: nowrap; }

@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 374px) {
  .cta-btn { font-size: 14px; padding: 15px 10px; }
  .btn-ghost { font-size: 13.5px; padding: 12px 14px; }
  .reviews-more { flex-direction: column; align-items: center; }
}

/* ============================================================
   Interior pages: page-hero, prose, facts tables, booking widget
   Added with the SEO page set (2026-07).
   ============================================================ */

.page-hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 24px 12px;
}
.page-hero-inner { max-width: 760px; }
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.4vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-ink);
  margin: 16px 0 0;
}
.page-hero-sub {
  color: var(--color-body);
  font-size: 17px;
  line-height: 1.65;
  margin: 18px 0 0;
  max-width: 62ch;
}
.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.page-hero-actions .btn-secondary {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

/* Centred ad-landing variant: the whole first screen sells before scrolling.
   The cream band flows into the booking-widget band directly below it, so
   hero → widget reads as one continuous conversion zone. */
.page-hero-band { padding-bottom: 8px; }
.page-hero-centered { text-align: center; padding-bottom: 40px; }
.page-hero-centered .page-hero-inner { max-width: 820px; margin: 0 auto; }
.page-hero-centered .page-hero-title { text-wrap: balance; }
.page-hero-centered .page-hero-sub { margin-left: auto; margin-right: auto; }
.page-hero-centered .page-hero-actions { justify-content: center; }

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 8px 15px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--color-ink);
}
.chip svg { color: var(--color-accent); flex-shrink: 0; }

.btn-price-hint { font-weight: 600; font-size: 13px; opacity: 0.85; margin-left: 8px; }

.rating-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: var(--color-ink);
  font-size: 14px;
}
.rating-inline:hover { color: var(--color-ink); }
.rating-inline strong { font-family: var(--font-display); font-size: 16px; }
.rating-inline-sub { color: var(--color-muted); font-weight: 600; }

/* ---------- location map (click-to-load) ---------- */

.location-section { padding-bottom: 72px; }
.location-address { font-size: 16px; color: var(--color-body); }
.map-frame {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: var(--color-input-bg);
}
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.map-placeholder {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  padding: 24px;
  color: var(--color-muted);
}
.map-note { margin: 0; font-size: 14px; }
.map-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.map-actions .btn-secondary { display: inline-flex; align-items: center; text-decoration: none; }

/* ---------- prose ---------- */

.prose-section { padding-top: 44px; padding-bottom: 8px; }
/* Constrain the line length, not the container: narrowing .section itself
   would centre the block and misalign it with the page-hero above. */
.prose-narrow > * { max-width: 760px; }
.prose-section .section-title { text-align: left; }
.prose {
  color: var(--color-body);
  font-size: 16.5px;
  line-height: 1.72;
  max-width: 68ch;
}
.prose p { margin: 0 0 18px; }
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--color-ink); font-weight: 700; }
.prose h3 {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--color-ink);
  margin: 30px 0 10px;
}
.prose ul, .prose ol { margin: 0 0 18px; padding-left: 22px; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--color-accent-deep); text-decoration: underline; text-underline-offset: 2px; }
.prose a:hover { color: var(--color-accent); }

/* ---------- facts table ---------- */

.facts-section { padding-top: 44px; padding-bottom: 8px; }
.facts-section .section-title { text-align: left; }
.facts-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: var(--color-card);
}
.facts-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  min-width: 440px;
}
.facts-table th, .facts-table td {
  text-align: left;
  padding: 13px 18px;
  border-bottom: 1px solid var(--color-border-lt);
  vertical-align: top;
}
.facts-table thead th {
  font-family: var(--font-display);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-muted);
  background: var(--color-input-bg);
}
.facts-table tbody th { font-weight: 600; color: var(--color-ink); width: 46%; }
.facts-table tbody td { color: var(--color-body); }
.facts-table tbody tr:last-child th,
.facts-table tbody tr:last-child td { border-bottom: none; }

/* Unresolved facts are meant to be impossible to ship by accident. */
.todo-flag {
  display: inline-block;
  background: var(--color-error-bg);
  color: var(--color-error);
  border: 1px dashed var(--color-error);
  border-radius: 5px;
  padding: 1px 7px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ---------- booking widget (Hello-Parking hand-off) ---------- */

.booking-widget-section { padding-top: 52px; }
.booking-widget {
  max-width: 860px;
  margin: 0 auto;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 18px;
  padding: 26px;
  box-shadow: var(--shadow-card);
}
.booking-widget-fields {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 14px;
  align-items: end;
}
.bw-field { display: flex; flex-direction: column; gap: 7px; min-width: 0; }
.bw-field label {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-muted);
}
.bw-field input {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-ink);
  background: var(--color-input-bg);
  border: 1px solid var(--color-border-input);
  border-radius: 10px;
  padding: 12px 13px;
  width: 100%;
}
.bw-field input:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 1px;
  border-color: transparent;
}
.bw-submit { white-space: nowrap; }
.bw-error {
  margin: 14px 0 0;
  padding: 10px 13px;
  background: var(--color-error-bg);
  color: var(--color-error);
  border-radius: 9px;
  font-size: 14px;
}
.bw-note {
  margin: 14px 0 0;
  font-size: 13.5px;
  color: var(--color-muted);
  text-align: center;
}

@media (max-width: 720px) {
  .booking-widget-fields { grid-template-columns: 1fr; }
  .bw-submit { width: 100%; justify-content: center; }
}

/* ---------- footer legal row ---------- */

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  align-items: center;
  justify-content: space-between;
}
.footer-legal { display: flex; flex-wrap: wrap; gap: 16px; }
.footer-legal a { color: inherit; text-decoration: none; opacity: 0.85; }
.footer-legal a:hover { opacity: 1; text-decoration: underline; }
