:root {
  --navy: #071726;
  --navy-2: #0d2236;
  --navy-3: #17334a;
  --teal: #12cfc3;
  --teal-deep: #0b817c;
  --teal-pale: #dff7f4;
  --ivory: #fbfaf7;
  --linen: #f2ede5;
  --sand: #d2b37b;
  --ink: #122336;
  --muted: #667487;
  --line: #ded9d0;
  --white: #ffffff;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: 1180px;
  --shadow: 0 24px 70px rgba(7, 23, 38, 0.12);
}

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

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

body {
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.skip-link {
  background: var(--white);
  border: 2px solid var(--teal);
  color: var(--navy);
  font-weight: 800;
  left: 18px;
  padding: 10px 16px;
  position: fixed;
  top: -80px;
  z-index: 1000;
}

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

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

.site-header {
  background: rgba(7, 23, 38, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
}

.header-inner {
  align-items: center;
  display: flex;
  height: 78px;
  justify-content: space-between;
}

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

.brand img {
  height: 42px;
  object-fit: contain;
  width: 38px;
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-name {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.24em;
}

.brand-line {
  color: var(--teal);
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  margin-top: 7px;
  text-transform: uppercase;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: 33px;
}

.site-nav > a:not(.button) {
  color: #b8c4d0;
  font-size: 0.84rem;
  font-weight: 600;
  padding: 27px 0 24px;
  position: relative;
}

.site-nav > a:not(.button)::after {
  background: var(--teal);
  bottom: 19px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  width: 100%;
}

.site-nav > a:hover,
.site-nav > a[aria-current="page"] {
  color: var(--white);
}

.site-nav > a:hover::after,
.site-nav > a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-toggle {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--white);
  cursor: pointer;
  display: none;
  height: 44px;
  justify-content: center;
  width: 44px;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  background: currentColor;
  display: block;
  height: 2px;
  position: relative;
  transition: transform 180ms ease, opacity 180ms ease;
  width: 22px;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
  content: "";
  left: 0;
  position: absolute;
}

.nav-toggle-lines::before {
  top: -7px;
}

.nav-toggle-lines::after {
  top: 7px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::after {
  top: 0;
  transform: rotate(-45deg);
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 3px;
  cursor: pointer;
  display: inline-flex;
  font-size: 0.83rem;
  font-weight: 800;
  gap: 10px;
  justify-content: center;
  letter-spacing: 0.02em;
  min-height: 48px;
  padding: 12px 23px;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--teal);
  color: var(--navy);
}

.button-primary:hover {
  background: #39ddd3;
}

.button-dark {
  background: var(--navy);
  color: var(--white);
}

.button-dark:hover {
  background: var(--navy-3);
}

.button-light {
  background: var(--white);
  color: var(--navy);
}

.button-light:hover {
  background: var(--teal-pale);
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--white);
}

.button-outline-light:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--white);
}

.button-outline-dark {
  border-color: var(--line);
  color: var(--navy);
}

.button-outline-dark:hover {
  border-color: var(--teal-deep);
  color: var(--teal-deep);
}

.eyebrow {
  align-items: center;
  color: var(--teal-deep);
  display: flex;
  font-size: 0.68rem;
  font-weight: 800;
  gap: 12px;
  letter-spacing: 0.21em;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.eyebrow::before {
  background: var(--sand);
  content: "";
  height: 1px;
  width: 28px;
}

.eyebrow-light {
  color: var(--teal);
}

h1,
h2,
h3,
h4 {
  color: var(--navy);
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.02;
}

h1 {
  font-size: clamp(3.15rem, 7.2vw, 6rem);
}

h2 {
  font-size: clamp(2.35rem, 4.7vw, 4.15rem);
}

h3 {
  font-size: 1.65rem;
}

.accent {
  color: var(--teal-deep);
  font-style: italic;
}

.lead {
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.14rem);
  font-weight: 400;
  max-width: 61ch;
}

.hero {
  background:
    radial-gradient(circle at 15% 8%, rgba(18, 207, 195, 0.16), transparent 34%),
    var(--navy);
  color: var(--white);
  min-height: 720px;
  overflow: hidden;
  position: relative;
}

.hero::after {
  background: linear-gradient(90deg, rgba(7, 23, 38, 0.12), rgba(7, 23, 38, 0));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.hero-grid {
  align-items: stretch;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  min-height: 720px;
  position: relative;
  z-index: 1;
}

.hero-copy {
  align-self: center;
  padding: 92px 72px 92px 0;
}

.hero h1,
.page-hero h1 {
  color: var(--white);
}

.hero .accent,
.page-hero .accent {
  color: var(--teal);
}

.hero .lead,
.page-hero .lead {
  color: #adbbc8;
  margin-top: 28px;
}

.hero-actions,
.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 36px;
}

.hero-visual {
  min-height: 720px;
  overflow: hidden;
  position: relative;
}

.hero-visual img {
  height: 100%;
  object-fit: cover;
  object-position: 60% 24%;
  width: 100%;
}

.hero-visual::before {
  background: linear-gradient(90deg, var(--navy) 0%, rgba(7, 23, 38, 0.08) 28%, transparent 52%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.hero-badge {
  backdrop-filter: blur(14px);
  background: rgba(7, 23, 38, 0.83);
  border: 1px solid rgba(255, 255, 255, 0.18);
  bottom: 32px;
  left: 32px;
  padding: 19px 22px;
  position: absolute;
  z-index: 2;
}

.hero-badge strong {
  color: var(--white);
  display: block;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
}

.hero-badge span {
  color: #aebbc8;
  display: block;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-top: 3px;
  text-transform: uppercase;
}

.facts {
  background: var(--linen);
  border-bottom: 1px solid var(--line);
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.fact {
  border-right: 1px solid var(--line);
  padding: 27px 24px;
}

.fact:first-child {
  border-left: 1px solid var(--line);
}

.fact strong {
  color: var(--navy);
  display: block;
  font-family: var(--serif);
  font-size: 1.52rem;
  font-weight: 600;
  line-height: 1.1;
}

.fact span {
  color: var(--muted);
  display: block;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-top: 7px;
  text-transform: uppercase;
}

.section {
  padding: 104px 0;
}

.section-soft {
  background: var(--linen);
}

.section-dark {
  background: var(--navy);
  color: var(--white);
}

.section-head {
  margin-bottom: 52px;
  max-width: 720px;
}

.section-head h2 + .lead {
  margin-top: 21px;
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-dark .lead {
  color: #aebbc8;
}

.service-grid {
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  background: var(--ivory);
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  min-height: 288px;
  padding: 33px;
  transition: background 180ms ease, transform 180ms ease;
}

.service-card:hover {
  background: var(--white);
  transform: translateY(-3px);
}

.card-kicker {
  color: var(--teal-deep);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  margin-bottom: 19px;
  text-transform: uppercase;
}

.service-card h3 {
  margin-bottom: 13px;
}

.service-card p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 25px;
}

.text-link {
  align-items: center;
  color: var(--teal-deep);
  display: inline-flex;
  font-size: 0.79rem;
  font-weight: 800;
  gap: 8px;
  margin-top: auto;
}

.text-link::after {
  content: "→";
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.speed-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.speed-card {
  background: var(--navy);
  min-height: 240px;
  padding: 31px 27px;
}

.speed-card .time {
  color: var(--teal);
  display: block;
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1;
}

.speed-card h3 {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  margin: 15px 0 13px;
  text-transform: uppercase;
}

.speed-card p {
  color: #9fb0bf;
  font-size: 0.86rem;
}

.speed-card .fee {
  color: var(--sand);
  display: block;
  font-size: 0.74rem;
  font-weight: 800;
  margin-top: 18px;
}

.split {
  align-items: center;
  display: grid;
  gap: 70px;
  grid-template-columns: 0.92fr 1.08fr;
}

.split-copy h2 + .lead {
  margin-top: 22px;
}

.steps-compact {
  display: grid;
  gap: 0;
  margin-top: 35px;
}

.step-compact {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 17px;
  grid-template-columns: 36px 1fr;
  padding: 20px 0;
}

.step-compact .number {
  color: var(--sand);
  font-family: var(--serif);
  font-size: 1.2rem;
}

.step-compact strong {
  color: var(--navy);
  display: block;
  font-size: 0.93rem;
  margin-bottom: 3px;
}

.step-compact p {
  color: var(--muted);
  font-size: 0.86rem;
}

.editorial-image {
  box-shadow: var(--shadow);
  height: 650px;
  overflow: hidden;
}

.editorial-image img {
  height: 100%;
  object-fit: cover;
  object-position: 60% 28%;
  width: 100%;
}

.cta-band {
  background: var(--teal-pale);
  border-bottom: 1px solid #c6e8e4;
  border-top: 1px solid #c6e8e4;
  padding: 58px 0;
}

.cta-inner {
  align-items: center;
  display: flex;
  gap: 34px;
  justify-content: space-between;
}

.cta-inner h2 {
  font-size: clamp(2rem, 3.3vw, 3rem);
}

.cta-inner p {
  color: var(--muted);
  margin-top: 10px;
}

.page-hero {
  background:
    radial-gradient(circle at 80% 20%, rgba(18, 207, 195, 0.16), transparent 31%),
    var(--navy);
  color: var(--white);
  padding: 108px 0 92px;
}

.page-hero-inner {
  display: grid;
  gap: 52px;
  grid-template-columns: minmax(0, 1fr) 320px;
}

.page-hero h1 {
  max-width: 11ch;
}

.page-hero-note {
  align-self: end;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  color: #aebbc8;
  font-size: 0.9rem;
  padding-left: 28px;
}

.page-hero-note strong {
  color: var(--white);
  display: block;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
  margin-bottom: 7px;
}

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

.category-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 30px;
}

.category-card h3 {
  font-size: 1.47rem;
  margin-bottom: 11px;
}

.category-card p {
  color: var(--muted);
  font-size: 0.87rem;
  margin-bottom: 17px;
}

.category-card .from {
  color: var(--teal-deep);
  font-size: 0.76rem;
  font-weight: 800;
}

.rate-wrap {
  background: var(--white);
  border: 1px solid var(--line);
}

.tabs {
  border-bottom: 1px solid var(--line);
  display: flex;
  overflow-x: auto;
  scrollbar-width: thin;
}

.tab {
  background: transparent;
  border: 0;
  border-bottom: 3px solid transparent;
  color: var(--muted);
  cursor: pointer;
  flex: 0 0 auto;
  font-size: 0.8rem;
  font-weight: 800;
  min-height: 60px;
  padding: 17px 25px 14px;
}

.tab:hover,
.tab[aria-selected="true"] {
  color: var(--navy);
}

.tab[aria-selected="true"] {
  border-bottom-color: var(--teal);
}

.rate-panel {
  display: none;
  padding: 14px 30px 26px;
}

.rate-panel.is-active {
  display: block;
}

.rate-row {
  align-items: baseline;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 22px;
  justify-content: space-between;
  padding: 15px 4px;
}

.rate-row:last-child {
  border-bottom: 0;
}

.rate-name {
  color: var(--ink);
  font-size: 0.9rem;
}

.rate-price {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  white-space: nowrap;
}

.rate-price small {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
}

.policy-box {
  background: var(--navy);
  color: var(--white);
  margin-top: 28px;
  padding: 34px;
}

.policy-box h3 {
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  margin-bottom: 22px;
  text-transform: uppercase;
}

.policy-list {
  display: grid;
  gap: 13px 28px;
  grid-template-columns: 1fr 1fr;
  list-style: none;
}

.policy-list li {
  color: #b5c3cf;
  font-size: 0.86rem;
  padding-left: 19px;
  position: relative;
}

.policy-list li::before {
  color: var(--teal);
  content: "•";
  left: 0;
  position: absolute;
}

.process-grid {
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.process-card {
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  min-height: 245px;
  padding: 31px;
}

.process-card .process-number {
  color: var(--sand);
  display: block;
  font-family: var(--serif);
  font-size: 1.32rem;
  margin-bottom: 24px;
}

.process-card h3 {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0;
  margin-bottom: 10px;
}

.process-card p {
  color: var(--muted);
  font-size: 0.86rem;
}

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

.principle {
  background: var(--white);
  border-top: 3px solid var(--teal);
  min-height: 225px;
  padding: 31px;
}

.principle h3 {
  font-size: 1.52rem;
  margin-bottom: 12px;
}

.principle p {
  color: var(--muted);
  font-size: 0.88rem;
}

.coverage {
  display: grid;
  gap: 60px;
  grid-template-columns: 0.86fr 1.14fr;
}

.location-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.location-chip {
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.81rem;
  font-weight: 700;
  padding: 9px 15px;
}

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

.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  min-height: 265px;
  padding: 33px;
}

.contact-card .contact-label {
  color: var(--teal-deep);
  display: block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.contact-card h2,
.contact-card h3 {
  font-size: 1.68rem;
  margin-bottom: 13px;
}

.contact-card p,
.contact-card address {
  color: var(--muted);
  font-size: 0.9rem;
  font-style: normal;
}

.contact-card .contact-value {
  color: var(--navy);
  display: block;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 600;
  margin: 17px 0 22px;
}

.contact-card .button {
  margin-top: 22px;
}

.booking-panel {
  align-items: center;
  background: var(--navy);
  color: var(--white);
  display: grid;
  gap: 58px;
  grid-template-columns: 0.82fr 1.18fr;
  padding: 56px;
}

.booking-panel h2 {
  color: var(--white);
}

.booking-panel .lead {
  color: #aebbc8;
  margin-top: 18px;
}

.booking-steps {
  counter-reset: booking;
  display: grid;
}

.booking-step {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: #afbeca;
  display: grid;
  font-size: 0.86rem;
  gap: 14px;
  grid-template-columns: 34px 1fr;
  padding: 18px 0;
}

.booking-step::before {
  color: var(--teal);
  content: counter(booking, decimal-leading-zero);
  counter-increment: booking;
  font-family: var(--serif);
  font-size: 1.1rem;
}

.booking-step strong {
  color: var(--white);
  display: block;
  margin-bottom: 2px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  color: var(--navy);
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  list-style: none;
  padding: 23px 42px 23px 0;
  position: relative;
}

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

.faq-list summary::after {
  color: var(--teal-deep);
  content: "+";
  font-family: var(--sans);
  font-size: 1.45rem;
  font-weight: 400;
  position: absolute;
  right: 6px;
  top: 20px;
}

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

.faq-list details p {
  color: var(--muted);
  font-size: 0.89rem;
  max-width: 76ch;
  padding: 0 48px 24px 0;
}

.site-footer {
  background: #04111d;
  color: #8f9eaa;
  padding: 62px 0 34px;
}

.footer-grid {
  display: grid;
  gap: 58px;
  grid-template-columns: 1.25fr 0.75fr 0.75fr;
}

.footer-brand .brand {
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 0.84rem;
  max-width: 42ch;
}

.footer-title {
  color: var(--white);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin-bottom: 17px;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  font-size: 0.84rem;
}

.footer-links a:hover {
  color: var(--teal);
}

.footer-bottom {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  font-size: 0.74rem;
  gap: 20px;
  justify-content: space-between;
  margin-top: 45px;
  padding-top: 23px;
}

.footer-tagline {
  color: var(--white);
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
}

.whatsapp-float {
  align-items: center;
  background: #25d366;
  border: 3px solid var(--white);
  border-radius: 50%;
  bottom: 20px;
  box-shadow: 0 12px 34px rgba(7, 23, 38, 0.28);
  display: flex;
  height: 58px;
  justify-content: center;
  position: fixed;
  right: 20px;
  transition: transform 180ms ease;
  width: 58px;
  z-index: 90;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
}

.whatsapp-float svg {
  fill: var(--white);
  height: 29px;
  width: 29px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1000px) {
  .site-nav {
    gap: 23px;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.86fr;
  }

  .hero-copy {
    padding-right: 42px;
  }

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

  .service-grid,
  .category-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .contact-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 840px) {
  .header-inner {
    height: 70px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    align-items: stretch;
    background: var(--navy);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: none;
    flex-direction: column;
    gap: 0;
    inset: 70px 0 auto;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    padding: 18px 28px 30px;
    position: fixed;
  }

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

  .site-nav > a:not(.button) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.94rem;
    padding: 17px 0;
  }

  .site-nav > a:not(.button)::after {
    display: none;
  }

  .site-nav .button {
    margin-top: 20px;
  }

  .hero,
  .hero-grid {
    min-height: auto;
  }

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

  .hero-copy {
    padding: 80px 0 66px;
  }

  .hero-visual {
    height: 560px;
    min-height: 0;
  }

  .hero-visual::before {
    background: linear-gradient(180deg, var(--navy), transparent 24%);
  }

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

  .fact:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .fact:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .split,
  .coverage,
  .booking-panel {
    grid-template-columns: 1fr;
  }

  .split {
    gap: 45px;
  }

  .editorial-image {
    height: 560px;
    max-width: 580px;
  }

  .page-hero-inner {
    grid-template-columns: 1fr;
  }

  .page-hero-note {
    max-width: 50ch;
  }

  .footer-grid {
    grid-template-columns: 1.3fr 0.7fr;
  }

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

@media (max-width: 620px) {
  .container {
    padding: 0 20px;
  }

  .brand-line {
    display: none;
  }

  .brand-name {
    font-size: 1.22rem;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 4.25rem);
  }

  .hero-copy {
    padding: 65px 0 58px;
  }

  .hero-visual {
    height: 500px;
  }

  .hero-badge {
    bottom: 20px;
    left: 20px;
    right: 20px;
  }

  .facts-grid,
  .service-grid,
  .category-grid,
  .process-grid,
  .principle-grid,
  .contact-grid,
  .speed-grid,
  .policy-list {
    grid-template-columns: 1fr;
  }

  .fact,
  .fact:nth-child(3) {
    border-bottom: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .section {
    padding: 74px 0;
  }

  .section-head {
    margin-bottom: 38px;
  }

  .service-card {
    min-height: 245px;
  }

  .speed-card {
    min-height: 210px;
  }

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

  .page-hero {
    padding: 78px 0 70px;
  }

  .page-hero-note {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 24px 0 0;
  }

  .rate-panel {
    padding: 10px 18px 22px;
  }

  .rate-row {
    align-items: flex-start;
    padding: 14px 0;
  }

  .rate-name {
    padding-right: 8px;
  }

  .rate-price {
    text-align: right;
  }

  .booking-panel {
    padding: 38px 24px;
  }

  .contact-card:last-child {
    grid-column: auto;
  }

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

  .footer-brand {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}



/* ---------------------------------------------------------------
   Legal & policy pages
   --------------------------------------------------------------- */
.legal-section {
  padding: 86px 0 100px;
}

.legal-wrap {
  max-width: 820px;
}

.legal-updated {
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  margin-bottom: 42px;
}

.legal-wrap h2 {
  font-family: var(--serif);
  font-size: 1.72rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 46px 0 14px;
}

.legal-wrap h2:first-of-type {
  margin-top: 0;
}

.legal-wrap h3 {
  font-family: var(--sans);
  font-size: 0.96rem;
  font-weight: 700;
  margin: 26px 0 8px;
}

.legal-wrap p {
  color: #45566b;
  line-height: 1.82;
  margin-bottom: 15px;
}

.legal-wrap ul {
  list-style: none;
  margin: 4px 0 18px;
}

.legal-wrap ul li {
  color: #45566b;
  line-height: 1.8;
  margin-bottom: 9px;
  padding-left: 21px;
  position: relative;
}

.legal-wrap ul li::before {
  color: var(--teal-deep);
  content: "\2014";
  left: 0;
  position: absolute;
}

.legal-wrap a {
  border-bottom: 1px solid rgba(11, 129, 124, 0.35);
  color: var(--teal-deep);
  text-decoration: none;
}

.legal-callout {
  background: var(--linen);
  border-left: 3px solid var(--teal-deep);
  margin: 30px 0;
  padding: 24px 28px;
}

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

.legal-contact {
  background: var(--navy);
  color: #b5c3cf;
  margin-top: 54px;
  padding: 34px;
}

.legal-contact strong {
  color: var(--white);
  display: block;
  font-size: 1.05rem;
  margin-bottom: 12px;
}

.legal-contact a {
  border: 0;
  color: var(--teal);
}

/* Footer legal column */
.footer-grid {
  grid-template-columns: 1.25fr 0.7fr 0.7fr 0.7fr;
}

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

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .legal-section {
    padding: 58px 0 70px;
  }
  .legal-wrap h2 {
    font-size: 1.42rem;
  }
}
