:root {
  --ink: #071b2c;
  --ink-2: #153149;
  --paper: #f5f2ea;
  --surface: #ffffff;
  --surface-soft: #eaf0ee;
  --accent: #096758;
  --accent-strong: #064c42;
  --gold: #c9a75b;
  --muted: #5c6872;
  --muted-light: #8a949b;
  --line: rgba(14, 32, 48, 0.13);
  --line-dark: rgba(255, 255, 255, 0.16);
  --brand: #071b2c;
  --font-display: "Avenir Next", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Roboto, Helvetica, Arial, sans-serif;
  --font-body: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 24px 70px rgba(7, 27, 44, 0.12);
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(201, 167, 91, 0.10), transparent 70%),
    var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

html[dir="rtl"] body {
  font-family: "Segoe UI", Tahoma, "Noto Sans Arabic", "Noto Kufi Arabic", system-ui, sans-serif;
}

html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3,
html[dir="rtl"] .brand-name {
  letter-spacing: 0;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

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

svg[aria-hidden="true"] {
  pointer-events: none;
}

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

.shell {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: -90px;
  left: 16px;
  z-index: 120;
  padding: 12px 18px;
  color: #fff;
  background: var(--ink);
  border-radius: var(--radius-sm);
  font-weight: 700;
}

.skip-link:focus {
  top: 16px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 242, 234, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}

.brand-mark {
  display: inline-flex;
  color: var(--brand);
}

.brand-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.desktop-nav ul {
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.desktop-nav a {
  position: relative;
  padding: 8px 0;
  color: var(--ink-2);
  font-size: 15px;
  font-weight: 600;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--accent);
}

.desktop-nav a.active::after {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 750;
  white-space: nowrap;
}

.header-phone span {
  color: var(--gold);
}

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

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.nav-cta,
.button-primary {
  color: #fff;
  background: var(--accent);
}

.nav-cta:hover,
.button-primary:hover {
  background: var(--accent-strong);
  transform: translateY(-1px);
}

.button-secondary {
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
}

.button-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.button-light {
  color: var(--ink);
  background: #fff;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.16);
}

.button-light:hover {
  color: var(--accent-strong);
  background: #f8f5ed;
  transform: translateY(-1px);
}

/* Language switch */
.lang-switch details {
  position: relative;
}

.lang-switch summary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 44px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.lang-switch summary::-webkit-details-marker {
  display: none;
}

.lang-caret {
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: -3px;
}

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  inset-inline-end: 0;
  z-index: 60;
  min-width: 170px;
  margin: 0;
  padding: 6px;
  list-style: none;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}

.lang-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
}

.lang-menu a:hover,
.lang-menu a.is-current {
  color: var(--accent);
  background: var(--surface-soft);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: relative;
}

.mobile-nav summary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  list-style: none;
}

.mobile-nav summary::-webkit-details-marker {
  display: none;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  content: "";
}

.menu-icon {
  position: relative;
}

.menu-icon::before {
  position: absolute;
  top: -6px;
}

.menu-icon::after {
  position: absolute;
  top: 6px;
}

.mobile-nav nav {
  position: absolute;
  top: calc(100% + 10px);
  inset-inline-end: 0;
  width: min(320px, calc(100vw - 32px));
  padding: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.mobile-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav nav > ul a {
  display: block;
  padding: 12px 10px;
  border-radius: 8px;
  font-weight: 700;
}

.mobile-nav nav > ul a:hover,
.mobile-nav nav > ul a.active {
  color: var(--accent);
  background: var(--surface-soft);
}

.mobile-lang {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.mobile-phone {
  display: block;
  margin-top: 12px;
  padding: 11px 12px;
  color: #fff;
  background: var(--ink);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 750;
  text-align: center;
}

.mobile-lang ul {
  display: flex;
  gap: 8px;
}

.mobile-lang a {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

.mobile-lang a.is-current {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
}

/* Hero */
.hero {
  padding-block: 56px 56px;
}

.hero--home {
  background:
    radial-gradient(760px 420px at 88% 2%, rgba(9, 103, 88, 0.40), transparent 65%),
    radial-gradient(520px 340px at 4% 100%, rgba(201, 167, 91, 0.14), transparent 70%),
    var(--ink);
  color: var(--paper);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 44px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero--home .eyebrow {
  color: var(--gold);
}

.hero h1 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.06;
  letter-spacing: -0.025em;
  font-weight: 820;
}

.hero--home h1 {
  color: #fff;
}

.hero-lead {
  margin: 0;
  max-width: 620px;
  font-size: 18px;
  line-height: 1.55;
  color: var(--muted);
}

.hero--home .hero-lead {
  color: rgba(246, 244, 238, 0.82);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero--home .button-secondary {
  color: #fff;
  border-color: var(--line-dark);
}

.hero--home .button-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-booking .booking-widget-section {
  padding: 0;
}

.hero-booking .booking-widget-section .section-kicker {
  color: var(--gold);
}

.hero-booking .booking-widget-section .section-head h2 {
  color: #fff;
}

.hero-booking .booking-widget-section .section-lead {
  color: rgba(246, 244, 238, 0.78);
}

.hero--page {
  padding-block: 64px 40px;
}

.hero--page .hero-copy {
  max-width: 860px;
}

.hero--page .hero-lead {
  max-width: 720px;
}

/* Booking widget */
.booking-widget-section {
  padding-block: 24px 8px;
}

.booking-widget-section .shell {
  width: min(1080px, calc(100% - 48px));
}

.booking-widget-section .section-head {
  max-width: 720px;
  margin-bottom: 22px;
}

.booking-widget-section .section-head h2 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: -0.02em;
}

.booking-widget-section .section-lead {
  margin: 0;
  color: var(--muted);
}

.booking-widget-shell {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.34);
  box-shadow: var(--shadow);
}

.booking-widget {
  position: relative;
  background: var(--surface);
}

.booking-widget-iframe {
  display: block;
  width: 100%;
  height: 640px;
  border: 0;
  background: var(--surface);
}

.booking-widget--hero .booking-widget-iframe {
  height: 560px;
}

/* Content sections */
.content-section {
  padding-block: 52px;
}

.content-section--tint {
  background: var(--surface-soft);
  border-block: 1px solid var(--line);
}

.content-section--narrow {
  max-width: 820px;
}

.section-head {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-head h2 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 800;
}

.section-lead {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.intro {
  max-width: 760px;
  margin-bottom: 32px;
}

.intro p {
  margin: 0 0 14px;
  font-size: 17px;
}

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

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 100%;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(14, 32, 48, 0.04);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

a.card:hover {
  transform: translateY(-3px);
  border-color: rgba(15, 106, 92, 0.35);
  box-shadow: var(--shadow);
}

.card-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.card-text {
  color: var(--muted);
  font-size: 15px;
}

.card-arrow {
  margin-top: auto;
  color: var(--accent);
  font-weight: 800;
}

html[dir="rtl"] .card-arrow {
  transform: scaleX(-1);
  display: inline-block;
}

.prose-block {
  max-width: 760px;
  margin-top: 36px;
}

.prose-block h2 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: -0.015em;
}

.prose-block p {
  margin: 0 0 12px;
  color: var(--ink-2);
}

.check-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-inline-start: 26px;
  margin-bottom: 10px;
}

.check-list li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.58em;
  width: 13px;
  height: 7px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}

.faq-block {
  margin-top: 40px;
  max-width: 820px;
}

.faq-block h2 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: -0.02em;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  color: var(--accent);
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-answer {
  padding: 0 18px 16px;
}

.faq-answer p {
  margin: 0;
  color: var(--muted);
}

.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}

.related-link {
  padding: 9px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-2);
}

.related-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.neighbourhood-block {
  margin-top: 24px;
  max-width: 760px;
}

.neighbourhood-block h2 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: -0.015em;
}

.neighbourhood-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.neighbourhood-list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 15px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.hood-name {
  font-weight: 800;
}

.hood-note {
  color: var(--muted);
  font-size: 14px;
}

.steps-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps-list li {
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  color: #fff;
  background: var(--accent);
  border-radius: 50%;
  font-weight: 800;
}

.steps-list h2,
.steps-list h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: -0.01em;
}

.steps-list p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

/* CTA panel */
.cta-panel-shell {
  padding-block: 48px;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px;
  color: #fff;
  background: var(--ink);
  border-radius: var(--radius);
}

.cta-panel .section-kicker--dark {
  color: var(--gold);
}

.cta-panel h2 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 30px;
  letter-spacing: -0.02em;
}

.cta-panel p {
  margin: 0;
  color: rgba(246, 244, 238, 0.8);
  max-width: 620px;
}

.cta-panel .button-primary {
  flex-shrink: 0;
  background: var(--gold);
  color: var(--ink);
}

.cta-panel .button-primary:hover {
  background: #d3ac54;
}

/* Breadcrumbs */
.breadcrumbs {
  padding-top: 22px;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
  color: var(--muted);
}

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-inline-start: 6px;
  color: var(--muted-light);
}

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

.breadcrumbs [aria-current="page"] {
  color: var(--ink);
  font-weight: 600;
}

/* Premium trust and airport route */
.trust-strip {
  color: rgba(255, 255, 255, 0.88);
  background: #061725;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.trust-strip__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 64px;
  align-items: center;
}

.trust-strip__inner span {
  position: relative;
  padding-inline: 24px;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.025em;
  text-align: center;
}

.trust-strip__inner span + span::before {
  content: "";
  position: absolute;
  inset-block: 4px;
  inset-inline-start: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.route-feature-shell {
  padding-block: 56px 8px;
}

.route-feature {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 56px;
  align-items: center;
  overflow: hidden;
  padding: clamp(32px, 5vw, 64px);
  color: #fff;
  background:
    radial-gradient(420px 300px at 100% 0%, rgba(201, 167, 91, 0.22), transparent 70%),
    linear-gradient(135deg, #0a6759, #073d39 58%, #082738);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 26px;
  box-shadow: 0 30px 80px rgba(7, 27, 44, 0.18);
}

.route-feature::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  inset-inline-end: -110px;
  inset-block-end: -160px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.route-feature .eyebrow {
  color: #ead49d;
}

.route-feature h2 {
  max-width: 680px;
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.route-feature__copy > p:not(.eyebrow) {
  max-width: 660px;
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

.route-feature__visual {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  backdrop-filter: blur(12px);
}

.route-place {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 17px;
}

.route-place i {
  width: 12px;
  height: 12px;
  background: #fff;
  border: 3px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.10);
}

.route-line {
  position: relative;
  width: 2px;
  height: 54px;
  margin-inline-start: 5px;
  background: rgba(255, 255, 255, 0.25);
}

.route-line b {
  position: absolute;
  top: 18px;
  inset-inline-start: -4px;
  width: 10px;
  height: 18px;
  background: var(--gold);
  border-radius: 6px 6px 3px 3px;
}

.route-feature__visual small {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 650;
}

/* Verified contact details */
.contact-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 34px 0 40px;
}

.contact-panel__item {
  display: flex;
  min-height: 190px;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(7, 27, 44, 0.07);
}

a.contact-panel__item:hover {
  border-color: rgba(9, 103, 88, 0.45);
  transform: translateY(-2px);
}

.contact-panel__label {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.contact-panel__item strong {
  display: block;
  margin-block: 18px;
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.35;
}

.contact-panel__item > span:last-child {
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

/* Footer */
.site-footer {
  color: var(--paper);
  background: var(--ink);
  padding-block: 56px 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: 34px;
}

.footer-brand .brand-name {
  color: #fff;
}

.footer-brand p {
  margin: 16px 0 0;
  color: rgba(246, 244, 238, 0.75);
  max-width: 320px;
}

.footer-contact {
  display: grid;
  gap: 7px;
  margin-top: 18px;
  font-style: normal;
}

.footer-contact a,
.footer-contact span {
  color: rgba(246, 244, 238, 0.72);
  font-size: 14px;
}

.footer-contact a:hover {
  color: #fff;
}

.footer-col h2 {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-col li {
  margin-bottom: 9px;
}

.footer-col a {
  color: rgba(246, 244, 238, 0.78);
  font-size: 14px;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid var(--line-dark);
  color: rgba(246, 244, 238, 0.65);
  font-size: 14px;
}

.footer-bottom a {
  color: rgba(246, 244, 238, 0.78);
}

.footer-bottom a:hover {
  color: #fff;
}

/* Error page */
.error-main {
  display: grid;
  place-items: center;
  min-height: 70vh;
  padding: 32px;
}

.error-shell {
  max-width: 620px;
  text-align: center;
}

.error-shell h1 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 52px);
  letter-spacing: -0.025em;
}

.error-shell .hero-actions {
  justify-content: center;
}

/* Responsive */
@media (max-width: 1080px) {
  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

  .footer-grid {
    grid-template-columns: 1.5fr repeat(2, 1fr);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .header-phone {
    display: none;
  }
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps-list {
    grid-template-columns: 1fr;
  }

  .booking-widget-iframe,
  .booking-widget--hero .booking-widget-iframe {
    height: 460px;
  }

  .route-feature {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-panel {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .shell,
  .booking-widget-section .shell {
    width: min(var(--max), calc(100% - 28px));
  }

  .header-inner {
    min-height: 70px;
    gap: 14px;
  }

  .brand-name {
    font-size: 15px;
  }

  .lang-switch {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    padding-block: 40px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero--page {
    padding-block: 44px 28px;
  }

  .content-section {
    padding-block: 38px;
  }

  .trust-strip__inner {
    grid-template-columns: 1fr;
    padding-block: 12px;
  }

  .trust-strip__inner span {
    padding-block: 7px;
  }

  .trust-strip__inner span + span::before {
    inset-block: 0 auto;
    inset-inline: 22% 22%;
    width: auto;
    height: 1px;
  }

  .route-feature-shell {
    padding-block: 28px 0;
  }

  .route-feature {
    padding: 26px 22px;
    border-radius: 20px;
  }

  .route-feature h2 {
    font-size: 31px;
  }

  .route-feature__visual {
    padding: 22px;
  }

  .contact-panel {
    grid-template-columns: 1fr;
  }

  .contact-panel__item {
    min-height: 160px;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .neighbourhood-list {
    grid-template-columns: 1fr;
  }

  .cta-panel {
    flex-direction: column;
    align-items: flex-start;
    padding: 26px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .booking-widget-iframe,
  .booking-widget--hero .booking-widget-iframe {
    height: 420px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
