/* ==========================================================================
   ROMA BLACKLINE — Design tokens
   Palette:   ivory #F7F5F0 · white #FFFFFF · charcoal #262320 · stone #86796C
              champagne gold #B08A4E (sparing use only)
   Type:      Fraunces (display serif) / Manrope (body + ui)
   Signature: "the route line" — a single fine gold line that threads
              through the page, thickening at each place it meets a
              waypoint (a section). It stands in for the journey itself.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;1,9..144,400&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --ivory: #F7F5F0;
  --white: #FFFFFF;
  --charcoal: #262320;
  --charcoal-soft: #4A4540;
  --stone: #86796C;
  --stone-light: #C9C2B4;
  --gold: #B08A4E;
  --gold-soft: #D8C7A3;
  --line: rgba(38, 35, 32, 0.1);

  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1280px;
  --gutter: clamp(24px, 6vw, 96px);
  --section-space: clamp(72px, 12vw, 160px);
}

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

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  font-family: var(--sans);
  background: var(--ivory);
  color: var(--charcoal);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* Visible keyboard focus everywhere — including custom controls like
   chips and vehicle cards, whose real input is visually hidden. */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.vehicle-option:has(input:focus-visible) {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: none; /* these already show focus via the gold underline */
}

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

/* ---------- Typography ---------- */

h1, h2, h3, .display {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--charcoal);
}

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

h1 { font-size: clamp(40px, 6vw, 76px); }
h2 { font-size: clamp(32px, 4.4vw, 52px); }
h3 { font-size: clamp(22px, 2.6vw, 28px); font-weight: 500; }

p { color: var(--charcoal-soft); font-size: 17px; }
p.lead { font-size: clamp(18px, 1.6vw, 21px); color: var(--charcoal-soft); }

.italic { font-style: italic; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 17px 32px;
  border-radius: 2px;
  transition: all 0.35s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--charcoal);
  color: var(--ivory);
  border: 1px solid var(--charcoal);
}
.btn-primary:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }

.btn-ghost {
  background: transparent;
  color: var(--ivory);
  border: 1px solid rgba(247, 245, 240, 0.5);
}
.btn-ghost:hover { border-color: var(--ivory); }

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--charcoal);
}
.btn-outline:hover { background: var(--charcoal); color: var(--ivory); }

.link-underline {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  transition: opacity 0.3s ease;
}
.link-underline:hover { opacity: 0.65; }

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 26px 0;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header.is-light,
.site-header.is-scrolled {
  background: rgba(247, 245, 240, 0.94);
  backdrop-filter: blur(10px);
  padding: 18px 0;
  box-shadow: 0 1px 0 var(--line);
}

.brand {
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: 0.08em;
  color: var(--ivory);
  transition: color 0.4s ease;
  display: inline-flex;
  align-items: center;
}
.site-header.is-light .brand,
.site-header.is-scrolled .brand { color: var(--charcoal); }

.brand-mark {
  display: inline-block;
  width: 17px;
  height: 22px;
  margin-right: 10px;
  flex-shrink: 0;
  fill: currentColor;
  transition: fill 0.4s ease;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 44px;
}

.main-nav ul {
  display: flex;
  gap: 36px;
  list-style: none;
}

.main-nav a:not(.btn) {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(247, 245, 240, 0.88);
  transition: color 0.4s ease, opacity 0.3s ease;
  position: relative;
}
.main-nav a:not(.btn):hover { opacity: 0.7; }
.main-nav a.active:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 1px;
  background: var(--gold);
}

.site-header.is-light .main-nav a:not(.btn),
.site-header.is-scrolled .main-nav a:not(.btn) { color: var(--charcoal-soft); }

.header-cta { display: none; }
@media (min-width: 861px) { .header-cta { display: inline-flex; } }

.header-phone {
  display: none;
  font-size: 14px;
  font-weight: 600;
  color: rgba(247, 245, 240, 0.88);
  transition: color 0.4s ease;
  white-space: nowrap;
}
.site-header.is-light .header-phone,
.site-header.is-scrolled .header-phone { color: var(--charcoal-soft); }
@media (min-width: 1080px) { .header-phone { display: inline-block; } }

.site-header.is-light .btn-ghost,
.site-header.is-scrolled .btn-ghost {
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.site-header.is-light .btn-ghost:hover,
.site-header.is-scrolled .btn-ghost:hover {
  background: var(--charcoal);
  color: var(--ivory);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 28px; height: 20px;
  position: relative;
}
.nav-toggle span {
  position: absolute; left: 0; right: 0; height: 1px;
  background: var(--ivory);
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.4s ease;
}
.site-header.is-light .nav-toggle span,
.site-header.is-scrolled .nav-toggle span { background: var(--charcoal); }
.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 9px; }
.nav-toggle span:nth-child(3) { top: 18px; }

@media (max-width: 860px) {
  .main-nav ul { display: none; }
  .nav-toggle { display: block; }
  .main-nav.is-open ul {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--ivory);
    padding: 120px var(--gutter) 40px;
    gap: 28px;
    z-index: 90;
  }
  .main-nav.is-open ul a { color: var(--charcoal); font-size: 20px; }
  body.nav-open { overflow: hidden; }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: var(--ivory);
  overflow: hidden;
}

.hero-media {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #2c2825 0%, #3b352d 45%, #4a4136 100%);
  background-size: cover;
  background-position: center;
}
.hero-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,18,16,0.45) 0%, rgba(20,18,16,0.15) 40%, rgba(20,18,16,0.72) 100%);
}
.hero-media .route-mark { position: absolute; opacity: 0.5; }

.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: clamp(56px, 8vw, 96px);
  max-width: 780px;
}

.hero .eyebrow { color: var(--gold-soft); margin-bottom: 22px; display: block; }
.hero h1 { color: var(--ivory); margin-bottom: 26px; }
.hero p.lead { color: rgba(247, 245, 240, 0.82); max-width: 520px; margin-bottom: 36px; }

.hero-actions { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }

.page-hero {
  min-height: 56vh;
  padding-top: 140px;
}
.page-hero .hero-content { max-width: 640px; padding-bottom: 64px; }

/* ---------- Placeholder photography ---------- */

.photo {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #E9E4D8 0%, #DCD4C2 55%, #CFC5AE 100%);
  aspect-ratio: var(--ar, 4/3);
}
.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Diagonal placeholder texture — only shows on a .photo that has no
   real image inside it yet, so future empty slots still read as
   "placeholder" rather than a blank gradient. */
.photo:not(:has(img))::before {
  content: '';
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(115deg, rgba(38,35,32,0.035) 0px, rgba(38,35,32,0.035) 1px, transparent 1px, transparent 26px);
}
.photo-mark {
  position: absolute; left: 22px; bottom: 20px;
  display: flex; align-items: center; gap: 10px;
  z-index: 1;
}
.photo-mark .dash { width: 22px; height: 1px; background: var(--gold); }
.photo-mark span {
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--stone); font-weight: 600;
}
.photo-frame { position: absolute; inset: 14px; border: 1px solid rgba(38,35,32,0.14); pointer-events: none; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s cubic-bezier(.2,.7,.2,1), transform 0.9s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Sections ---------- */

section { padding: var(--section-space) 0; }

.section-ivory { background: var(--ivory); }
.section-white { background: var(--white); }
.section-charcoal { background: var(--charcoal); color: var(--ivory); }
.section-charcoal h2, .section-charcoal h3 { color: var(--ivory); }
.section-charcoal p { color: rgba(247,245,240,0.75); }

.section-head { max-width: 640px; margin-bottom: clamp(48px, 6vw, 80px); }
.section-head .eyebrow { display: block; margin-bottom: 18px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* Statement */
.statement {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}
.statement h2 { margin-bottom: 24px; }
.statement p { max-width: 520px; margin: 0 auto; font-size: 18px; }

/* Services grid — editorial, not cards */
.services-list { display: flex; flex-direction: column; gap: clamp(64px, 8vw, 120px); }
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 88px);
  align-items: center;
}
.service-row:nth-child(even) .service-media { order: 2; }
.service-row:nth-child(even) .service-copy { order: 1; }
.service-copy .index { font-family: var(--serif); font-style: italic; color: var(--gold); font-size: 15px; margin-bottom: 14px; display: block; }
.service-copy h3 { margin-bottom: 14px; }
.service-copy p { margin-bottom: 22px; max-width: 420px; }

@media (max-width: 780px) {
  .service-row { grid-template-columns: 1fr; }
  .service-row:nth-child(even) .service-media,
  .service-row:nth-child(even) .service-copy { order: initial; }
}

/* Experience / feature split */
.split { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(32px, 6vw, 96px); align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }
.split.reverse .split-media { order: 2; }
@media (max-width: 900px) { .split.reverse .split-media { order: initial; } }

.points { margin-top: 34px; display: flex; flex-direction: column; gap: 18px; }
.point { display: flex; align-items: baseline; gap: 16px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.point .dash { width: 18px; height: 1px; background: var(--gold); flex-shrink: 0; transform: translateY(-4px); }
.point span { font-family: var(--sans); font-size: 16px; font-weight: 600; color: var(--charcoal); }

/* Fleet */
.fleet-hero { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: clamp(28px, 5vw, 64px); align-items: end; }
@media (max-width: 900px) { .fleet-hero { grid-template-columns: 1fr; } }
.spec-list { display: flex; flex-direction: column; }
.spec { display: flex; justify-content: space-between; padding: 20px 0; border-bottom: 1px solid var(--line); }
.spec:first-child { border-top: 1px solid var(--line); }
.spec .label { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--stone); font-weight: 600; }
.spec .value { font-family: var(--serif); font-size: 20px; }

/* Trust / testimonials */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
@media (max-width: 900px) { .testimonial-grid { grid-template-columns: 1fr; gap: 32px; } }
.testimonial { padding: 36px 0 0; border-top: 1px solid var(--line); }
.testimonial p.quote { font-family: var(--serif); font-style: italic; font-size: 19px; color: var(--charcoal); line-height: 1.45; margin-bottom: 20px; }
.testimonial .who { font-size: 13px; letter-spacing: 0.04em; color: var(--stone); font-weight: 600; }
.testimonial-placeholder {
  text-align: center;
  padding: 56px var(--gutter);
  border: 1px solid var(--line);
}
.testimonial-placeholder p { max-width: 460px; margin: 0 auto; }

/* Final CTA */
.final-cta { text-align: center; }
.final-cta h2 { margin-bottom: 18px; }
.final-cta p.lead { max-width: 460px; margin: 0 auto 40px; }

/* Route line — signature element */
.route-divider {
  position: relative;
  height: 120px;
  overflow: hidden;
}
.route-divider svg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.route-path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1;
  stroke-dasharray: 6 10;
  opacity: 0.55;
}
.route-dot { fill: var(--gold); }

/* Forms */
.form-card { background: var(--white); border: 1px solid var(--line); padding: clamp(32px, 5vw, 56px); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px 28px; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

.field label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--stone);
  margin-bottom: 10px;
}
.field .optional { text-transform: none; font-weight: 400; letter-spacing: 0; color: var(--stone-light); font-style: italic; }

.field input,
.field select,
.field textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 10px 2px;
  font-family: var(--sans);
  font-size: 16px;
  color: var(--charcoal);
  transition: border-color 0.3s ease;
}
.field textarea { resize: vertical; min-height: 90px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--gold);
}
.field input::placeholder, .field textarea::placeholder { color: var(--stone-light); }

.form-foot { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 40px; flex-wrap: wrap; }
.form-note { font-size: 13px; color: var(--stone); max-width: 380px; }

/* Booking — top badge */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border: 1px solid var(--gold-soft);
  background: rgba(176, 138, 78, 0.08);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.badge-pill .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }

/* Quick-select route chips */
.quick-select { margin: 28px 0 8px; }
.quick-select .quick-label {
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--stone); font-weight: 600; margin-bottom: 12px; display: block;
}
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal-soft);
  border: 1px solid var(--line);
  background: var(--white);
  padding: 9px 16px;
  border-radius: 20px;
  transition: border-color 0.25s ease, color 0.25s ease;
  cursor: pointer;
}
.chip:hover { border-color: var(--gold); color: var(--charcoal); }

/* Numbered step headings inside the form */
.step-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 44px 0 22px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.step-head:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }
.step-num {
  width: 24px; height: 24px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 12px;
  color: var(--gold);
  flex-shrink: 0;
}
.step-head h4 {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
}

/* Passenger / luggage quantity grid */
.qty-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px 20px; }
@media (max-width: 640px) { .qty-grid { grid-template-columns: repeat(2, 1fr); } }

/* Single-vehicle confirmation card (our fleet is one Mercedes V-Class) */
.vehicle-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  align-items: center;
  border: 1px solid var(--gold);
  padding: 18px;
  background: rgba(176, 138, 78, 0.04);
}
@media (max-width: 560px) { .vehicle-card { grid-template-columns: 1fr; } }
.vehicle-card .photo { aspect-ratio: 4/3; }
.vehicle-card h5 { font-family: var(--serif); font-size: 20px; font-weight: 400; margin-bottom: 6px; }
.vehicle-card p { font-size: 14px; margin-bottom: 12px; }
.vehicle-specs { display: flex; gap: 20px; flex-wrap: wrap; }
.vehicle-specs span { font-size: 13px; font-weight: 600; color: var(--charcoal-soft); display: flex; align-items: center; gap: 6px; }
.vehicle-specs .dash { width: 12px; height: 1px; background: var(--gold); }

/* Sidebar checklist */
.checklist { display: flex; flex-direction: column; gap: 14px; }
.checklist li { list-style: none; display: flex; gap: 12px; font-size: 14px; color: var(--charcoal-soft); align-items: flex-start; }
.checklist .tick { color: var(--gold); flex-shrink: 0; font-family: var(--serif); font-style: italic; }

/* Vehicle selection — compact list, not a photo grid */
.vehicle-list { display: flex; flex-direction: column; gap: 10px; }

.vehicle-option {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  border: 1px solid var(--line);
  border-left: 3px solid transparent;
  padding: 12px 18px 12px 15px;
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.vehicle-option input { position: absolute; opacity: 0; pointer-events: none; }

.vehicle-thumb {
  width: 74px;
  height: 56px;
  flex-shrink: 0;
  aspect-ratio: auto;
}
.vehicle-thumb::before { display: none; }

.vehicle-body { flex: 1; min-width: 0; }
.vehicle-body h5 { font-family: var(--serif); font-size: 16px; font-weight: 400; margin-bottom: 2px; }
.vehicle-body p { font-size: 13px; color: var(--stone); margin: 0; min-height: 0; }

.vehicle-meta { display: flex; gap: 16px; flex-shrink: 0; }
.vehicle-meta span { font-size: 11.5px; font-weight: 700; letter-spacing: 0.02em; color: var(--charcoal-soft); white-space: nowrap; }

.vehicle-check {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1px solid var(--stone-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  color: transparent;
  transition: all 0.2s ease;
}
.vehicle-option.is-selected { border-color: var(--gold); background: rgba(176, 138, 78, 0.05); }
.vehicle-option.is-selected .vehicle-check { background: var(--gold); border-color: var(--gold); color: var(--white); }

@media (max-width: 620px) {
  .vehicle-meta { display: none; }
}

/* Fleet page — "also in the fleet" linked rows (read-only cousin of .vehicle-list) */
.fleet-list { display: flex; flex-direction: column; gap: 10px; }
.fleet-row {
  display: flex;
  align-items: center;
  gap: 18px;
  border: 1px solid var(--line);
  padding: 12px 18px 12px 15px;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.fleet-row:hover { border-color: var(--gold); background: rgba(176, 138, 78, 0.05); }
.fleet-thumb { width: 74px; height: 56px; flex-shrink: 0; aspect-ratio: auto; }
.fleet-thumb::before { display: none; }
.fleet-row-body { flex: 1; min-width: 0; }
.fleet-row-body h5 { font-family: var(--serif); font-size: 16px; font-weight: 400; margin-bottom: 2px; }
.fleet-row-body p { font-size: 13px; color: var(--stone); margin: 0; }
.fleet-row-meta { display: flex; gap: 16px; flex-shrink: 0; }
.fleet-row-meta span { font-size: 11.5px; font-weight: 700; letter-spacing: 0.02em; color: var(--charcoal-soft); white-space: nowrap; }
@media (max-width: 620px) {
  .fleet-row-meta { display: none; }
}

/* Sidebar concierge contact boxes */
.contact-box {
  display: flex;
  flex-direction: column;
  gap: 3px;
  border: 1px solid var(--line);
  padding: 14px 16px;
  margin-bottom: 10px;
  transition: border-color 0.25s ease;
}
.contact-box:hover { border-color: var(--gold); }
.contact-box-label { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--stone); }
.contact-box-value { font-family: var(--serif); font-size: 17px; color: var(--charcoal); }
.contact-box--whatsapp { border-color: rgba(76, 148, 96, 0.35); background: rgba(76, 148, 96, 0.06); }
.contact-box--whatsapp .contact-box-label { color: #4C9460; }

/* Guarantees box */
.guarantee-box {
  border: 1px solid var(--line);
  padding: 24px 22px;
  margin-bottom: 32px;
}
.guarantee-box .checklist li { font-size: 13.5px; }
.guarantee-box .tick { color: var(--gold); font-weight: 700; font-style: normal; }

/* Booking sidebar */
.booking-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: start; }
@media (max-width: 980px) { .booking-layout { grid-template-columns: 1fr; } }
.booking-aside { position: sticky; top: 130px; }
.aside-block { padding: 28px 0; border-top: 1px solid var(--line); }
.aside-block:first-child { border-top: none; padding-top: 0; }
.aside-block h3 { font-size: 16px; font-weight: 600; font-family: var(--sans); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 12px; color: var(--stone); }
.aside-block a.contact-link { display: block; font-family: var(--serif); font-size: 22px; margin-bottom: 4px; }

/* Contact page */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(40px, 6vw, 88px); }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-item { padding: 24px 0; border-bottom: 1px solid var(--line); }
.contact-item:first-child { padding-top: 0; }
.contact-item .label { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--stone); font-weight: 600; margin-bottom: 8px; }
.contact-item a, .contact-item p { font-family: var(--serif); font-size: 24px; }

/* About */
.about-lede { max-width: 680px; }
.about-lede p { font-size: 18px; margin-bottom: 22px; }

/* Footer */
.site-footer { background: var(--charcoal); color: var(--ivory); padding: 72px 0 32px; }
.footer-top { display: flex; justify-content: space-between; gap: 48px; flex-wrap: wrap; margin-bottom: 56px; }
.footer-brand .brand { color: var(--ivory); margin-bottom: 14px; display: inline-flex; align-items: center; }
.footer-brand p { color: rgba(247,245,240,0.6); font-size: 14px; }
.footer-cols { display: flex; gap: 64px; flex-wrap: wrap; }
.footer-col h4 { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 18px; font-weight: 600; }
.footer-col a, .footer-col p { display: block; color: rgba(247,245,240,0.75); font-size: 14px; margin-bottom: 10px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding-top: 28px; border-top: 1px solid rgba(247,245,240,0.12); font-size: 13px; color: rgba(247,245,240,0.5); }
.footer-bottom a { margin-left: 24px; }

/* Sticky mobile bar */
.mobile-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 95;
  background: var(--ivory);
  border-top: 1px solid var(--line);
  padding: 12px var(--gutter);
  gap: 12px;
}
@media (max-width: 640px) {
  .mobile-bar { display: flex; }
  body { padding-bottom: 66px; }
}
.mobile-bar a { flex: 1; text-align: center; padding: 13px 10px; font-size: 12px; }

/* Thank-you page */
.thankyou { max-width: 620px; margin: 0 auto; text-align: center; }
.thankyou-mark {
  width: 52px; height: 52px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px;
}
.thankyou-steps {
  display: flex;
  gap: 28px;
  margin: 56px 0 48px;
  text-align: left;
}
.thankyou-step {
  flex: 1;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.thankyou-step .step-num {
  width: 24px; height: 24px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 12px;
  color: var(--gold);
  margin-bottom: 14px;
}
.thankyou-step p { font-size: 14.5px; line-height: 1.5; }
@media (max-width: 720px) {
  .thankyou-steps { flex-direction: column; gap: 22px; margin: 40px 0; }
}
.thankyou-actions { display: flex; align-items: center; justify-content: center; gap: 28px; flex-wrap: wrap; }

/* Utility */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
