:root {
  --bg: #f6f4f0;
  --bg-elevated: #ffffff;
  --ink: #121212;
  --ink-muted: #4a4a48;
  --line: #e2ddd4;
  --accent: #1c3d32;
  --accent-hover: #153028;
  --accent-soft: #e8f0ec;
  --radius-lg: 20px;
  --radius-md: 12px;
  --shadow: 0 24px 60px rgba(18, 18, 18, 0.08);
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-ui: "DM Sans", system-ui, -apple-system, sans-serif;
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --space-6: 64px;
  --space-7: 96px;
  /* Single content column: every `.shell` aligns to this */
  --max: 1120px;
  --page-gutter: var(--space-3);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  text-decoration: none;
}

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

.skip-link {
  position: absolute;
  left: var(--space-2);
  top: -100px;
  background: var(--ink);
  color: var(--bg);
  padding: var(--space-1) var(--space-2);
  border-radius: var(--radius-md);
  z-index: 100;
  font-weight: 600;
}

.skip-link:focus {
  top: var(--space-2);
  outline: 3px solid var(--accent-soft);
  outline-offset: 2px;
}

.shell {
  width: min(100% - var(--page-gutter) * 2, var(--max));
  max-width: var(--max);
  margin-inline: auto;
  box-sizing: border-box;
}

/* Header — dark bar so gold / light logo artwork reads clearly */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(180deg, #141c19 0%, #0f1614 100%);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-header .site-nav__list a {
  color: rgba(232, 240, 236, 0.78);
}

.site-header .site-nav__list a:hover,
.site-header .site-nav__list a:focus-visible {
  color: #f6faf8;
}

.site-header .btn--ghost {
  color: #eef4f1;
  border-color: rgba(255, 255, 255, 0.35);
}

.site-header .btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.06);
}

.site-header .nav-toggle {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.22);
}

.site-header .nav-toggle__bar {
  background: #f4faf7;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  padding-block: var(--space-2);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.brand__logo {
  display: block;
  height: clamp(44px, 10vw, 64px);
  width: auto;
  max-width: min(420px, 58vw);
  object-fit: contain;
}

.brand:focus-visible .brand__logo {
  outline: 3px solid rgba(232, 240, 236, 0.45);
  outline-offset: 4px;
  border-radius: 4px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--bg-elevated);
  cursor: pointer;
}

.nav-toggle__bar {
  display: block;
  width: 20px;
  height: 2px;
  margin-inline: auto;
  background: var(--ink);
  border-radius: 2px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: nowrap;
  justify-content: flex-end;
}

.site-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-3);
  font-size: 0.875rem;
  font-weight: 500;
}

.site-nav__list a {
  text-decoration: none;
  color: var(--ink-muted);
}

.site-nav__list a:hover,
.site-nav__list a:focus-visible {
  color: var(--ink);
}

.site-nav__cta {
  display: flex;
  gap: var(--space-1);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.65rem 1.15rem;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease,
    transform 0.18s ease;
}

.btn:focus-visible {
  outline: 3px solid var(--accent-soft);
  outline-offset: 2px;
}

.btn--primary {
  background: var(--accent);
  color: #f4f8f5;
}

.btn--primary:hover {
  background: var(--accent-hover);
}

.btn--secondary {
  background: var(--bg-elevated);
  color: var(--ink);
  border-color: var(--line);
}

.btn--secondary:hover {
  border-color: var(--ink-muted);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.btn--ghost:hover {
  border-color: var(--ink-muted);
}

/* Trust strip */
.trust {
  padding-block: var(--space-3);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-elevated);
}

.trust__grid {
  display: grid;
  gap: var(--space-3);
}

@media (min-width: 720px) {
  .trust__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
  }
}

.trust__item {
  display: flex;
  gap: var(--space-2);
  align-items: flex-start;
}

.trust__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-md);
  background: var(--accent-soft);
  color: var(--accent);
}

.trust__icon svg {
  width: 22px;
  height: 22px;
}

.trust__title {
  margin: 0 0 4px;
  font-weight: 600;
  font-size: 1rem;
}

.trust__text {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--ink-muted);
  line-height: 1.5;
}

/* Hero — full-bleed AI background + glass panel */
.hero {
  position: relative;
  overflow: clip;
  min-height: clamp(520px, 78vh, 860px);
}

.hero__media {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 52%;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      105deg,
      rgba(8, 14, 12, 0.94) 0%,
      rgba(8, 14, 12, 0.72) 38%,
      rgba(8, 14, 12, 0.28) 62%,
      rgba(8, 14, 12, 0.55) 100%
    ),
    linear-gradient(
      180deg,
      rgba(8, 14, 12, 0.35) 0%,
      transparent 38%,
      rgba(8, 14, 12, 0.55) 100%
    );
}

.hero__wrap {
  position: relative;
  z-index: 1;
  min-height: clamp(520px, 78vh, 860px);
  display: flex;
  align-items: center;
  padding-block: clamp(2.75rem, 7vw, 5.5rem);
  box-sizing: border-box;
}

@media (min-width: 900px) {
  .hero__copy {
    max-width: 38rem;
  }
}

@media (max-width: 899px) {
  .hero__img {
    object-position: 50% 45%;
  }

  .hero__scrim {
    background: linear-gradient(
        180deg,
        rgba(8, 14, 12, 0.88) 0%,
        rgba(8, 14, 12, 0.55) 45%,
        rgba(8, 14, 12, 0.75) 100%
      ),
      linear-gradient(
        180deg,
        rgba(8, 14, 12, 0.25) 0%,
        transparent 35%,
        rgba(8, 14, 12, 0.5) 100%
      );
  }
}

.eyebrow {
  margin: 0 0 var(--space-2);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.hero .eyebrow {
  color: rgba(236, 244, 239, 0.74);
}

.hero__title {
  margin: 0 0 var(--space-2);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.hero .hero__title {
  color: #f5faf7;
  text-shadow: 0 2px 48px rgba(0, 0, 0, 0.45);
}

.hero__lead {
  margin: 0 0 var(--space-3);
  max-width: 34rem;
  color: var(--ink-muted);
  font-size: 1.0625rem;
}

.hero .hero__lead {
  color: rgba(236, 244, 239, 0.9);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-1);
  margin-bottom: var(--space-4);
}

.hero .btn--secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.38);
  color: #f4faf7;
}

.hero .btn--secondary:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.55);
}

.hero__meta {
  display: grid;
  gap: var(--space-2);
  margin: 0;
  padding: var(--space-3) 0 0;
  border-top: 1px solid var(--line);
  font-size: 0.9375rem;
}

.hero .hero__meta {
  border-top-color: rgba(255, 255, 255, 0.16);
}

@media (min-width: 560px) {
  .hero__meta {
    grid-template-columns: 1fr 1fr;
  }
}

.hero__meta dt {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 4px;
}

.hero .hero__meta dt {
  color: rgba(228, 236, 231, 0.55);
}

.hero__meta dd {
  margin: 0;
}

.hero .hero__meta dd {
  color: rgba(244, 250, 246, 0.95);
}

/* Sections */
.section {
  padding-block: var(--space-6);
}

.section--tint {
  background: color-mix(in srgb, var(--accent-soft) 55%, var(--bg));
  border-block: 1px solid var(--line);
}

.section--surface {
  background: var(--bg-elevated);
  border-block: 1px solid var(--line);
}

.section__head {
  margin-bottom: var(--space-4);
}

.section__head--split {
  display: grid;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

@media (min-width: 800px) {
  .section__head--split {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: end;
    gap: var(--space-4);
  }
}

.fleet__note {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--ink-muted);
  max-width: 28rem;
}

.section__title {
  margin: 0 0 var(--space-2);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  letter-spacing: -0.02em;
}

.section__intro {
  margin: 0;
  max-width: 36rem;
  color: var(--ink-muted);
}

.section__intro--tight {
  max-width: 32rem;
}

/* Service showcase (2×2 image cards) — specimen: cream field, serif title, airy cards */
.svc-showcase {
  --svc-cream: #faf9f6;
  --svc-line: #e8e4dc;
  --svc-ink-soft: #585651;
  background: var(--svc-cream);
  padding-block: var(--space-7) var(--space-6);
  border-bottom: 1px solid var(--svc-line);
}

.svc-showcase__head {
  margin-bottom: var(--space-5);
  max-width: none;
}

.svc-showcase__intro {
  color: var(--svc-ink-soft);
  font-size: 1.0625rem;
  line-height: 1.65;
  max-width: 42rem;
}

.svc-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-4);
  width: 100%;
}

.svc-grid__cell {
  display: flex;
  min-width: 0;
}

.svc-grid__cell > .svc-card {
  flex: 1;
  min-height: 100%;
  min-width: 0;
}

@media (min-width: 720px) {
  .svc-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: var(--space-4);
    row-gap: var(--space-4);
  }
}

@media (min-width: 1024px) {
  .svc-grid {
    column-gap: var(--space-5);
    row-gap: var(--space-4);
  }
}

.svc-card {
  background: #ffffff;
  border: 1px solid #eae6df;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(24, 20, 16, 0.05);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.svc-card:hover {
  border-color: #ddd8cf;
  box-shadow: 0 16px 48px rgba(24, 20, 16, 0.09);
  transform: translateY(-2px);
}

.svc-card__media {
  position: relative;
  aspect-ratio: 5 / 3;
  background: #ece8e0;
}

.svc-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.svc-card__badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.svc-card__badge svg {
  width: 22px;
  height: 22px;
}

.svc-card__badge:not(.svc-card__badge--sky) svg {
  fill: none;
  stroke: currentColor;
}

.svc-card__badge--sky svg {
  fill: currentColor;
  stroke: none;
}

.svc-card__badge--sky {
  background: linear-gradient(155deg, #35b6ff 0%, #1d9bf0 45%, #0d87e8 100%);
}

.svc-card__badge--navy {
  background: linear-gradient(145deg, #4a5f8f, #2f3d5c);
}

.svc-card__badge--violet {
  background: linear-gradient(145deg, #9575c8, #5c3d8a);
}

.svc-card__badge--leaf {
  background: linear-gradient(145deg, #42a068, #2a6b42);
}

.svc-card__body {
  padding: 1.65rem 1.5rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.85rem;
}

.svc-card__title {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink);
  line-height: 1.25;
}

.svc-card__desc {
  margin: 0;
  font-size: 1rem;
  color: var(--svc-ink-soft);
  line-height: 1.58;
}

.svc-pills {
  list-style: none;
  margin: 0;
  padding: 0.15rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 7px 8px;
}

.svc-pills li {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #4a4844;
  padding: 0.38rem 0.72rem;
  border: 1px solid #dcd8d0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  line-height: 1.2;
}

.svc-card__foot {
  margin-top: auto;
  padding-top: 1.15rem;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-2);
  border-top: 1px solid #efede8;
}

.svc-card__links {
  min-width: 0;
}

.svc-card__more {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  margin-bottom: 5px;
}

.svc-card__more:hover,
.svc-card__more:focus-visible {
  color: var(--accent);
  text-decoration: underline;
}

.svc-card__tagline {
  margin: 0;
  font-size: 0.8125rem;
  color: #6e6a63;
  font-style: italic;
  max-width: 15rem;
  line-height: 1.45;
}

.svc-card__reserve {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 44px;
  padding: 0 1.2rem;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  background: var(--accent);
  color: #f4f8f5;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: background 0.18s ease, transform 0.18s ease;
}

.svc-card__reserve:hover {
  background: var(--accent-hover);
}

.svc-card__reserve:focus-visible {
  outline: 3px solid var(--accent-soft);
  outline-offset: 2px;
}

.svc-card__reserve span {
  font-size: 1.05rem;
  line-height: 1;
}

.split {
  display: grid;
  gap: var(--space-4);
  align-items: start;
}

@media (min-width: 800px) {
  .split {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.checklist {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: var(--space-2);
}

.checklist li {
  position: relative;
  padding-left: 1.75rem;
  font-weight: 500;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

/* Booking */
.booking__layout {
  display: grid;
  gap: var(--space-5);
  align-items: start;
}

@media (min-width: 900px) {
  .booking__layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: var(--space-6);
  }
}

.booking__bullets {
  margin: var(--space-3) 0 0;
  padding-left: 1.15rem;
  color: var(--ink-muted);
  font-size: 0.98rem;
}

.booking__bullets li {
  margin-bottom: var(--space-1);
}

.booking__bullets li:last-child {
  margin-bottom: 0;
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  counter-reset: step;
}

.steps__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-2) var(--space-3);
  padding: var(--space-3) 0;
  border-top: 1px solid var(--line);
  align-items: start;
}

.steps__item:last-child {
  border-bottom: 1px solid var(--line);
}

.steps__num {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: #f4f8f5;
  font-weight: 700;
  font-size: 1rem;
  font-variant-numeric: tabular-nums;
}

.steps__title {
  margin: 0 0 6px;
  font-size: 1.0625rem;
  font-weight: 600;
}

.steps__text {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

/* Fleet */
.fleet {
  display: grid;
  gap: var(--space-2);
}

@media (min-width: 768px) {
  .fleet {
    grid-template-columns: repeat(3, 1fr);
  }
}

.fleet__card {
  position: relative;
  padding: var(--space-3);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(160deg, var(--bg-elevated) 0%, #faf8f5 100%);
  box-shadow: 0 12px 28px rgba(18, 18, 18, 0.05);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.fleet__card:hover {
  border-color: color-mix(in srgb, var(--accent) 35%, var(--line));
  box-shadow: 0 20px 44px rgba(18, 18, 18, 0.08);
  transform: translateY(-2px);
}

.fleet__card--featured {
  border-color: color-mix(in srgb, var(--accent) 45%, var(--line));
  background: linear-gradient(
    165deg,
    var(--accent-soft) 0%,
    var(--bg-elevated) 55%
  );
}

.fleet__badge {
  position: absolute;
  top: var(--space-2);
  right: var(--space-2);
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--bg-elevated);
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  border: 1px solid var(--line);
}

.fleet__name {
  margin: 0 0 4px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.fleet__for {
  margin: 0 0 var(--space-2);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
}

.fleet__list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--ink-muted);
  font-size: 0.9375rem;
  line-height: 1.55;
}

.fleet__list li {
  margin-bottom: 6px;
}

.fleet__list li:last-child {
  margin-bottom: 0;
}

/* FAQ */
.faq__head {
  margin-bottom: var(--space-3);
  max-width: 40rem;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.faq__item {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--bg-elevated);
  overflow: hidden;
}

.faq__item[open] {
  border-color: color-mix(in srgb, var(--accent) 30%, var(--line));
  box-shadow: 0 8px 24px rgba(18, 18, 18, 0.06);
}

.faq__summary {
  list-style: none;
  cursor: pointer;
  padding: var(--space-2) var(--space-3);
  padding-right: 2.75rem;
  font-weight: 600;
  font-size: 1rem;
  position: relative;
  min-height: 52px;
  display: flex;
  align-items: center;
}

.faq__summary::-webkit-details-marker {
  display: none;
}

.faq__summary::after {
  content: "";
  position: absolute;
  right: var(--space-3);
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--ink-muted);
  border-bottom: 2px solid var(--ink-muted);
  transform: translateY(-60%) rotate(45deg);
  transition: transform 0.2s ease;
}

.faq__item[open] .faq__summary::after {
  transform: translateY(-20%) rotate(225deg);
}

.faq__summary:hover {
  color: var(--accent);
}

.faq__summary:focus {
  outline: none;
}

.faq__summary:focus-visible {
  outline: 3px solid var(--accent-soft);
  outline-offset: -2px;
}

.faq__panel {
  padding: 0 var(--space-3) var(--space-2);
}

.faq__panel p {
  margin: 0 0 var(--space-2);
  color: var(--ink-muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.faq__panel p:last-child {
  margin-bottom: 0;
}

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, #142922 0%, var(--accent) 48%, #0f2420 100%);
  color: #e8f0ec;
  padding-block: var(--space-5);
}

.cta-band__inner {
  display: grid;
  gap: var(--space-3);
  align-items: center;
}

@media (min-width: 768px) {
  .cta-band__inner {
    grid-template-columns: 1fr auto;
    gap: var(--space-4);
  }
}

.cta-band__title {
  margin: 0 0 var(--space-1);
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #f4f8f5;
}

.cta-band__text {
  margin: 0;
  max-width: 32rem;
  opacity: 0.92;
  font-size: 0.98rem;
  line-height: 1.55;
}

.cta-band__actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  min-width: min(100%, 220px);
}

@media (min-width: 768px) {
  .cta-band__actions {
    min-width: 200px;
  }
}

.btn--on-dark {
  background: #f4f8f5;
  color: var(--accent);
  border-color: transparent;
}

.btn--on-dark:hover {
  background: #ffffff;
  transform: translateY(-1px);
}

.btn--on-dark.btn--outline {
  background: transparent;
  color: #f4f8f5;
  border-color: rgba(244, 248, 245, 0.45);
}

.btn--on-dark.btn--outline:hover {
  border-color: #f4f8f5;
  background: rgba(255, 255, 255, 0.06);
}

.btn--ghost-on-dark {
  background: transparent;
  color: #e8f0ec;
  border-color: transparent;
  text-decoration: underline;
  text-underline-offset: 4px;
  min-height: 40px;
}

.btn--ghost-on-dark:hover {
  color: #ffffff;
}

/* Contact */
.contact__grid {
  display: grid;
  gap: var(--space-4);
}

@media (min-width: 800px) {
  .contact__grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.address {
  margin: var(--space-3) 0 0;
  font-style: normal;
  font-weight: 500;
  line-height: 1.65;
}

.address__postcode {
  letter-spacing: 0.04em;
}

.address__map {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid color-mix(in srgb, var(--accent) 35%, transparent);
  transition: border-color 0.15s ease, color 0.15s ease;
}

.address__map:hover {
  border-bottom-color: var(--accent);
  color: var(--accent);
}

.address__map:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

.site-footer__map {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(215, 222, 217, 0.45);
  transition: border-color 0.15s ease, color 0.15s ease;
}

.site-footer__map:hover {
  border-bottom-color: #f4f8f5;
  color: #f4f8f5;
}

.site-footer__map:focus-visible {
  outline: 2px solid #f4f8f5;
  outline-offset: 3px;
  border-radius: 2px;
}

.contact__card {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-3);
  box-shadow: var(--shadow);
}

.contact__label {
  margin: 0 0 4px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.contact__phone {
  display: inline-block;
  margin-bottom: var(--space-2);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.contact__phone:hover,
.contact__phone:focus-visible {
  text-decoration: underline;
}

.contact__hint {
  margin: var(--space-2) 0 0;
  font-size: 0.9375rem;
  color: var(--ink-muted);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding-block: var(--space-4);
  background: #0f1412;
  color: #d7ded9;
}

.site-footer__inner {
  text-align: center;
}

.site-footer__brand {
  margin: 0 0 var(--space-3);
  display: flex;
  justify-content: center;
}

.site-footer__logo {
  display: block;
  height: clamp(52px, 12vw, 76px);
  width: auto;
  max-width: min(520px, 92vw);
  object-fit: contain;
}

.site-footer__meta {
  margin: 0 0 var(--space-2);
  font-size: 0.9375rem;
  opacity: 0.88;
}

.site-footer__legal {
  margin: 0;
  font-size: 0.8125rem;
  opacity: 0.65;
}

/* Mobile nav */
@media (max-width: 1023px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-3) var(--space-3);
    background: linear-gradient(180deg, #161f1b 0%, #0f1614 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
    display: none;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav__list {
    flex-direction: column;
    gap: var(--space-1);
  }

  .site-nav__cta {
    flex-direction: column;
  }

  .site-header {
    position: relative;
  }
}
