:root {
  --paper: #f7f3ec;
  --paper-deep: #e8dfd1;
  --ink: #151a16;
  --muted: #6a665f;
  --line: #d0c6b8;
  --olive: #9aa38f;
  --olive-dark: #3f4a40;
  --olive-mid: #667a69;
  --ochre: #d8cebf;
  --clay: #74665d;
  --white: #ffffff;
  --max: 1180px;
}
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    "Helvetica Neue",
    Arial,
    sans-serif;
  line-height: 1.45;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

main {
  position: relative;
  z-index: 2;
  background: var(--paper);
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pinPop {
  0% {
    opacity: 0;
    transform: scale(0.7);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 720ms ease,
    transform 720ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: grid;
  grid-template-columns: auto minmax(24px, 1fr) auto;
  min-height: 78px;
  align-items: center;
  padding: 18px clamp(22px, 4vw, 64px);
  background: transparent;
  color: var(--paper);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(14px);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.site-header.scrolled,
.site-header.menu-active {
  border-color: var(--line);
  background: rgba(247, 243, 236, 0.98);
  color: var(--ink);
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  color: inherit;
  font-weight: 520;
  line-height: 1;
  text-transform: uppercase;
}

.brand-logo {
  width: 220px;
  height: auto;
  max-height: 48px;
  margin-right: 8px;
}

.brand-kicker {
  font-size: 0.86rem;
}

.brand-name {
  font-size: clamp(1.05rem, 2vw, 1.55rem);
}

.site-nav {
  grid-column: 3;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 2.4vw, 34px);
  font-size: 0.76rem;
  font-weight: 560;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 10px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.language-switch {
  display: inline-grid;
  grid-template-columns: repeat(2, 38px);
  gap: 2px;
  border: 1px solid currentColor;
  border-radius: 40px;
  padding: 2px;
  transition: border-color 180ms ease;
}

.language-switch button {
  min-height: 28px;
  border-radius: 40px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: 0.68rem;
  font-weight: 560;
  transition: color 180ms ease, background 180ms ease;
}

.language-switch button.active {
  background: var(--paper);
  color: var(--ink);
}

.site-header.scrolled .language-switch button.active,
.site-header.menu-active .language-switch button.active {
  background: var(--olive-mid);
  color: var(--paper);
}

.menu-toggle {
  display: none;
  position: relative;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  position: absolute;
  left: 7px;
  width: 28px;
  height: 1.5px;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-toggle span:nth-child(1) {
  transform: translateY(-5px);
}

.menu-toggle span:nth-child(2) {
  transform: translateY(5px);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(35deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  transform: rotate(-35deg);
}

.editorial-section {
  width: min(var(--max), calc(100% - 42px));
  margin: 0 auto;
}

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  min-height: 85vh;
  align-content: center;
  padding: 110px 0 0;
  color: var(--paper);
}

.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.65) contrast(1.05);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(64px, 0.2fr) minmax(0, 1fr);
  gap: clamp(18px, 4vw, 56px);
  align-items: center;
  padding-bottom: clamp(40px, 8vw, 80px);
}

.hero-index {
  margin: 0;
  font-size: clamp(2.4rem, 8vw, 5.4rem);
  font-weight: 500;
  line-height: 0.9;
  animation: revealUp 760ms ease both;
}

.hero-title {
  display: flex;
  min-width: 0;
  max-width: 100%;
  animation: revealUp 820ms ease 80ms both;
}

.hero-logo-svg {
  width: 100%;
  max-width: 580px;
  height: auto;
}

.hero-line {
  grid-column: 2;
  max-width: 520px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.8vw, 4.5rem);
  font-style: italic;
  line-height: 0.98;
  animation: revealUp 820ms ease 170ms both;
}

.hero-subtitle {
  grid-column: 2;
  max-width: 620px;
  margin-top: 16px;
  color: var(--paper);
  opacity: 0.95;
  font-size: clamp(1.1rem, 1.4vw, 1.25rem);
  line-height: 1.4;
  animation: revealUp 820ms ease 260ms both;
}

.hero-actions {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
  animation: revealUp 820ms ease 320ms both;
}

.hero-actions .button {
  padding: 0 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--paper);
}

.hero-actions .button.secondary {
  background: transparent;
  color: var(--paper);
  border: 1px solid var(--paper);
}

.hero-actions .button:hover {
  background: var(--olive-mid);
  border-color: var(--olive-mid);
  color: var(--paper);
}

.hero-actions .button.secondary:hover {
  background: var(--olive-mid);
  border-color: var(--olive-mid);
  color: var(--paper);
}

.section-label,
.section-label-inline {
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 560;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.section-label {
  margin-bottom: clamp(36px, 7vw, 76px);
}

.section-label span::after,
.section-label-inline::after {
  content: " —";
}

.intro {
  display: grid;
  grid-template-columns: minmax(150px, 0.28fr) minmax(0, 1fr);
  gap: clamp(26px, 7vw, 92px);
  padding: clamp(56px, 9vw, 104px) 0 0;
}

.intro-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.52fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: end;
}

.method-steps {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 3vw, 32px);
  margin-top: clamp(48px, 8vw, 80px);
}

.method-step h3 {
  font-size: 1.15rem;
  font-weight: 560;
  color: var(--ink);
  margin: 12px 0 8px;
}

.method-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.4;
  font-size: 0.95rem;
}

.method-step .step-num {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
  font-style: italic;
  color: var(--olive-dark);
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
  word-break: normal;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.45rem, 5vw, 5.25rem);
  font-weight: 400;
  line-height: 1;
}

h3 {
  margin: 0;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  font-weight: 520;
  line-height: 1.15;
}

.intro-copy p,
.about-copy p,
.contact-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
}

.figure-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(220px, 0.7fr);
  gap: clamp(16px, 2vw, 24px);
  padding: clamp(40px, 6vw, 80px) 0 clamp(56px, 9vw, 104px);
}

.figure-card {
  border-top: 1px solid var(--ink);
  transition:
    border-color 260ms ease,
    transform 420ms ease;
}

.figure-card:hover {
  border-color: var(--olive-dark);
  transform: translateY(-3px);
}

.figure-card.large {
  grid-row: span 2;
}

.image-frame {
  position: relative;
  overflow: hidden;
  background: var(--paper-deep);
}

.image-frame::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: var(--paper);
  content: "";
  pointer-events: none;
  transform: scaleY(1);
  transform-origin: top;
  transition: transform 980ms cubic-bezier(0.22, 1, 0.36, 1);
}

.image-reveal.is-visible .image-frame::after {
  transform: scaleY(0);
}

.image-drift img {
  transform: translateY(var(--image-shift, 0px)) scale(1.035);
  will-change: transform;
}

.figure-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.02);
  transition:
    filter 420ms ease,
    transform 160ms linear;
}

.figure-card:hover img {
  filter: saturate(1) contrast(1.04);
  transform: translateY(var(--image-shift, 0px)) scale(1.055);
}

.figure-card.large img {
  aspect-ratio: 1 / 1;
}

.figure-card p,
.about-image p {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 520;
  line-height: 1.35;
  text-transform: uppercase;
}

.figure-card p span:first-child,
.about-image p span:first-child {
  color: var(--ink);
}

.areas {
  padding: clamp(56px, 9vw, 104px) max(21px, calc((100vw - var(--max)) / 2));
  background: var(--olive-mid);
  color: var(--paper);
}

.areas-heading {
  max-width: 920px;
  margin-bottom: clamp(32px, 6vw, 60px);
}

.map-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.85fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: stretch;
}

.map-panel svg {
  width: 100%;
  min-height: 400px;
  border: 4px solid var(--olive-dark);
  background: rgba(255, 255, 255, 0.18);
  transition:
    background 420ms ease,
    border-color 420ms ease;
}

.map-panel.is-visible svg {
  background: rgba(255, 255, 255, 0.26);
}

.map-panel rect,
.map-panel path {
  fill: none;
  stroke: rgba(80, 90, 79, 0.38);
  stroke-width: 2;
}

.map-panel .map-coast {
  stroke: var(--olive-dark);
  stroke-width: 4;
}

.map-panel .pin {
  fill: var(--olive-dark);
  stroke: none;
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
}

.map-panel.is-visible .pin {
  animation: pinPop 520ms ease both;
}

.map-panel.is-visible .pin:nth-of-type(2) {
  animation-delay: 90ms;
}

.map-panel.is-visible .pin:nth-of-type(3) {
  animation-delay: 180ms;
}

.map-panel text {
  fill: var(--paper);
  font-size: 22px;
  font-weight: 560;
  text-anchor: middle;
}

.area-list {
  display: grid;
  align-content: start;
  border-top: 1px solid var(--ink);
}

.area-list article {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  column-gap: 18px;
  row-gap: 8px;
  align-content: start;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.area-list span {
  display: grid;
  grid-row: 1 / span 2;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--olive-dark);
  color: var(--paper);
  font-weight: 560;
}

.area-list h3,
.area-list p {
  grid-column: 2;
}

.area-list p,
.service-chapter p:last-child {
  margin: 0;
  color: var(--muted);
}

.zone-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  margin-top: clamp(28px, 5vw, 58px);
}

.zone-photo-grid article {
  border-top: 1px solid var(--ink);
  transition:
    border-color 260ms ease,
    transform 420ms ease;
}

.zone-photo-grid article:hover {
  border-color: var(--olive-dark);
  transform: translateY(-3px);
}

.zone-photo-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
  transition:
    filter 420ms ease,
    transform 160ms linear;
}

.zone-photo-grid article:hover img {
  filter: saturate(1) contrast(1.04);
  transform: translateY(var(--image-shift, 0px)) scale(1.055);
}

.zone-photo-grid p {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 520;
  line-height: 1.35;
  text-transform: uppercase;
}

.zone-photo-grid p span:first-child {
  color: var(--ink);
}

.services {
  width: 100%;
  max-width: none;
  padding: clamp(56px, 9vw, 104px) max(21px, calc((100vw - var(--max)) / 2));
  background: var(--olive-dark);
  color: var(--paper);
}

.services .section-label {
  color: var(--paper);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(247, 243, 236, 0.38);
  border-left: 1px solid rgba(247, 243, 236, 0.24);
}

.service-chapter {
  display: grid;
  align-content: start;
  min-height: 390px;
  padding: clamp(22px, 3vw, 34px);
  border-right: 1px solid rgba(247, 243, 236, 0.24);
  border-bottom: 1px solid rgba(247, 243, 236, 0.24);
  transition:
    background 360ms ease,
    transform 420ms ease;
}

.service-chapter:hover {
  background: rgba(247, 243, 236, 0.045);
  transform: translateY(-3px);
}

.service-chapter > p:first-child {
  margin: 0 0 clamp(18px, 3vw, 30px);
  color: rgba(247, 243, 236, 0.72);
  font-size: 0.78rem;
  font-weight: 560;
  text-transform: uppercase;
}

.service-graphic {
  width: 100%;
  height: clamp(92px, 9vw, 126px);
  margin-bottom: clamp(24px, 3vw, 36px);
  color: var(--paper);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

.service-chapter:hover .service-graphic {
  transform: translateY(-3px);
}

.graphic-line,
.graphic-soft {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.graphic-line {
  stroke: rgba(247, 243, 236, 0.76);
  stroke-width: 3;
}

.graphic-soft {
  fill: rgba(247, 243, 236, 0.06);
  stroke: rgba(247, 243, 236, 0.44);
  stroke-width: 2.5;
}

.graphic-dashed {
  stroke-dasharray: 8 9;
}

.graphic-dot {
  fill: var(--olive);
}

.service-chapter h2 {
  font-size: clamp(2.1rem, 3.2vw, 3.35rem);
  font-weight: 400;
  line-height: 1.04;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.service-chapter p:last-child {
  color: rgba(247, 243, 236, 0.72);
}

.homes {
  padding: clamp(56px, 9vw, 104px) max(21px, calc((100vw - var(--max)) / 2));
  background: var(--olive-mid);
  color: var(--paper);
}

.availability-heading {
  max-width: 880px;
  margin-bottom: clamp(34px, 6vw, 58px);
}

.routes-table {
  border-top: 1px solid var(--ink);
}

.table-row {
  display: grid;
  grid-template-columns: 1.2fr 2fr auto;
  gap: 24px;
  align-items: center;
  min-height: 80px;
  border-bottom: 1px solid var(--line);
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
}

.table-row span {
  min-width: 0;
}

.table-head {
  min-height: 44px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 560;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.table-row:not(.table-head) span:first-child {
  font-weight: 560;
  font-size: 1.1rem;
}

.table-row:not(.table-head) span:last-child {
  justify-self: end;
}

.about {
  display: grid;
  grid-template-columns: minmax(280px, 0.54fr) minmax(0, 1fr);
  gap: clamp(30px, 7vw, 96px);
  align-items: center;
  padding-top: clamp(56px, 9vw, 104px);
  padding-bottom: clamp(56px, 9vw, 104px);
}

.about-image {
  border-top: 1px solid var(--ink);
}

.about-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.02);
  transition:
    filter 420ms ease,
    transform 160ms linear;
}

.about-image:hover img {
  filter: saturate(1) contrast(1.04);
  transform: translateY(var(--image-shift, 0px)) scale(1.045);
}

.about-copy {
  display: grid;
  gap: 24px;
  max-width: 700px;
}

.about-brief {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  color: var(--ink) !important;
  font-size: 0.96rem !important;
  font-weight: 520;
}

.profile-link {
  width: fit-content;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 5px;
  font-size: 0.82rem;
  font-weight: 560;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.profile-link:hover,
.profile-link:focus-visible {
  color: var(--olive-dark);
  border-color: var(--olive-dark);
}

.contact {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1fr);
  gap: clamp(32px, 7vw, 92px);
  width: 100%;
  max-width: none;
  padding: clamp(56px, 9vw, 104px) max(21px, calc((100vw - var(--max)) / 2));
  background: var(--olive-dark);
  box-shadow: 0 36px 76px rgba(21, 26, 22, 0.2);
  color: var(--paper);
}

.contact-heading {
  display: grid;
  align-content: start;
  gap: 22px;
}

.contact-logo-wrapper {
  margin: 8px 0;
}

.contact-logo {
  width: 100%;
  max-width: 480px;
  height: auto;
}

.contact-heading > p,
.contact-people a,
.contact-people p {
  color: rgba(247, 243, 236, 0.72);
}

.contact .section-label-inline {
  color: var(--paper);
}

.contact-people {
  display: grid;
  gap: 5px;
  margin-top: 16px;
  font-weight: 520;
}

.contact-people .contact-link {
  width: fit-content;
  white-space: nowrap;
  text-decoration-line: underline;
  text-decoration-color: rgba(247, 243, 236, 0.34);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition:
    color 160ms ease,
    text-decoration-color 160ms ease;
}

.contact-people .contact-link:hover,
.contact-people .contact-link:focus-visible {
  color: var(--paper);
  text-decoration-color: currentColor;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(247, 243, 236, 0.68);
  font-size: 0.78rem;
  font-weight: 560;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.contact-form .full,
.contact-form .button {
  grid-column: 1 / -1;
}

.custom-field {
  display: block;
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
  appearance: none;
  color: rgba(247, 243, 236, 0.68);
  font-size: 0.78rem;
  font-weight: 560;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.custom-field legend {
  display: block;
  float: left;
  width: 100%;
  margin: 0 0 8px;
  padding: 0;
}

.custom-select {
  clear: both;
  width: 100%;
  overflow: hidden;
  border: 2px solid var(--ochre);
  background: rgba(247, 243, 236, 0.03);
}

.custom-select summary {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 16px;
  color: var(--paper);
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 520;
  letter-spacing: 0.04em;
  list-style: none;
}

.custom-select summary::-webkit-details-marker {
  display: none;
}

.select-chevron {
  flex: 0 0 auto;
  width: 13px;
  height: 13px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(135deg);
  transition: transform 180ms ease;
}

.custom-select[open] .select-chevron {
  transform: rotate(-45deg);
}

.custom-select summary:focus-visible {
  outline: 1px solid var(--paper);
  outline-offset: -5px;
}

.custom-select.is-invalid {
  border-color: #d9534f;
  box-shadow: 0 0 0 1px #d9534f;
}

.custom-options {
  border-top: 1px solid rgba(247, 243, 236, 0.2);
}

.contact-form .custom-options label {
  position: relative;
  display: flex;
  min-height: 56px;
  align-items: center;
  padding: 0 16px;
  border-bottom: 1px solid rgba(247, 243, 236, 0.16);
  color: var(--paper);
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 520;
  letter-spacing: 0.04em;
  transition: background-color 160ms ease;
}

.custom-options label:last-child {
  border-bottom: 0;
}

.custom-options label:hover,
.custom-options label:has(input:checked) {
  background: rgba(247, 243, 236, 0.1);
}

.contact-form .custom-options input[type="radio"] {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  border: 0;
  opacity: 0;
  white-space: nowrap;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(247, 243, 236, 0.45);
  border-radius: 0;
  background: transparent;
  color: var(--paper);
  outline: none;
  padding: 13px 0;
}

.contact-form select {
  color-scheme: dark;
}

.contact-form option {
  background: var(--paper);
  color: var(--ink);
}

.contact-form option:checked {
  background: var(--olive);
  color: var(--ink);
}

.budget-slider {
  display: grid;
  gap: 14px;
  padding-top: 4px;
}

.budget-value {
  color: var(--paper);
  font-size: 1.08rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0;
  text-transform: none;
}

.contact-form input[type="range"] {
  height: 28px;
  border: 0;
  padding: 0;
  accent-color: var(--paper);
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}

.contact-form input[type="range"]::-webkit-slider-runnable-track {
  height: 2px;
  background: rgba(247, 243, 236, 0.45);
}

.contact-form input[type="range"]::-webkit-slider-thumb {
  width: 18px;
  height: 18px;
  margin-top: -8px;
  border: 1px solid var(--paper);
  border-radius: 50%;
  background: var(--paper);
  -webkit-appearance: none;
  appearance: none;
}

.contact-form input[type="range"]::-moz-range-track {
  height: 2px;
  background: rgba(247, 243, 236, 0.45);
}

.contact-form input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border: 1px solid var(--paper);
  border-radius: 50%;
  background: var(--paper);
}

.contact-form input[type="range"]:focus-visible {
  outline: 1px solid var(--paper);
  outline-offset: 5px;
}

.budget-ticks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  color: rgba(247, 243, 236, 0.62);
  font-size: 0.68rem;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: none;
}

.budget-ticks span {
  min-width: 0;
}

.budget-ticks span:last-child {
  text-align: right;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--paper);
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  color: rgba(247, 243, 236, 0.75);
  font-size: 0.82rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
}

.checkbox-label input[type="checkbox"] {
  appearance: none;
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 1px solid rgba(247, 243, 236, 0.4);
  background: transparent;
  cursor: pointer;
  position: relative;
  border-radius: 2px;
  margin: 0;
  margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked {
  background: var(--paper);
  border-color: var(--paper);
}

.checkbox-label input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 3px;
  width: 4px;
  height: 8px;
  border: solid var(--olive-dark);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.form-submit-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-expectation {
  margin: 0;
  font-size: 0.75rem;
  color: rgba(247, 243, 236, 0.6);
  line-height: 1.4;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.75rem;
  padding-bottom: 24px;
}

.footer-legal-links a {
  color: var(--muted);
  text-decoration: none;
  transition: color 180ms ease;
}

.footer-legal-links a:hover,
.footer-legal-links a:focus-visible {
  color: var(--paper);
}

.button {
  min-height: 56px;
  border-radius: 40px;
  border: 1px solid var(--olive-mid);
  background: transparent;
  color: var(--olive-mid);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 560;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.button:hover,
.button:focus-visible {
  background: var(--olive-mid);
  border-color: var(--olive-mid);
  color: var(--paper);
}

.button.secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--olive-mid);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  /* Inherits hover from base */
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: clamp(22px, 5vw, 76px);
  min-height: clamp(100px, 15vh, 160px);
  align-items: flex-end;
  padding: clamp(30px, 5vw, 60px) clamp(22px, 4vw, 64px) 24px;
  background: var(--paper);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 560;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer.reveal {
  transform: translateY(72px);
  transition:
    opacity 900ms ease,
    transform 1000ms cubic-bezier(0.16, 1, 0.3, 1);
}

.site-footer.reveal.is-visible {
  transform: translateY(0);
}
.legal-section {
  padding: clamp(56px, 9vw, 104px) max(21px, calc((100vw - var(--max)) / 2));
  background: var(--paper);
  color: var(--ink);
}

.legal-section .section-label {
  color: var(--ink);
}

.legal-section p {
  max-width: 720px;
  line-height: 1.6;
}

.legal-layout {
  display: grid;
  gap: clamp(18px, 3vw, 28px);
  max-width: 780px;
}

.legal-layout h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.legal-layout p {
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
}

.legal-cta {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border: 1px solid var(--olive-dark);
  background: var(--olive-dark);
  color: var(--paper);
  font-size: 0.82rem;
  font-weight: 560;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 220ms ease, color 220ms ease;
}

.legal-cta:hover {
  background: transparent;
  color: var(--olive-dark);
}

.legal-logo-link {
  display: inline-block;
  max-width: 340px;
  transition: opacity 260ms ease;
}

.legal-logo-link:hover {
  opacity: 0.7;
}

.legal-partner-logo {
  width: 100%;
  height: auto;
  filter: grayscale(1) contrast(1.2);
}

.route-legal-logo {
  display: block;
  height: 22px;
  margin-top: 14px;
  filter: grayscale(1) contrast(1.2);
  opacity: 0.85;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.footer-logo {
  width: 90px;
  height: auto;
  opacity: 0.8;
}

.site-footer p {
  margin: 0;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .image-frame::after {
    transform: scaleY(0);
  }

  .image-drift img {
    transform: none !important;
  }

  .map-panel .pin {
    opacity: 1;
  }
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: 54px minmax(160px, 1fr) 54px;
  }

  .menu-toggle {
    display: block;
  }

  .brand {
    grid-column: 2;
  }

  .site-nav {
    position: fixed;
    grid-column: 1 / -1;
    top: 78px;
    right: 0;
    left: 0;
    width: auto;
    display: grid;
    gap: 0;
    justify-content: stretch;
    justify-items: stretch;
    max-height: calc(100vh - 78px);
    overflow: auto;
    padding: 10px 22px 28px;
    background: var(--paper);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .site-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    display: flex;
    min-height: 58px;
    align-items: center;
    border-bottom: 1px solid var(--line);
    font-size: 0.9rem;
  }

  .site-nav a::after {
    display: none;
  }

  .language-switch {
    width: 180px;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 20px;
  }

  .intro,
  .intro-copy,
  .map-panel,
  .about,
  .contact {
    grid-template-columns: 1fr;
  }

  .method-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 68px;
    padding: 13px 17px;
  }

  .site-nav {
    top: 68px;
    max-height: calc(100vh - 68px);
  }

  .brand {
    gap: 8px;
  }

  .brand-kicker {
    font-size: 0.75rem;
  }

  .brand-name {
    font-size: 1.05rem;
  }

  .brand-logo {
    width: 170px;
  }

  .editorial-section {
    width: min(var(--max), calc(100% - 30px));
  }

  .hero {
    padding-top: 90px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-bottom: 34px;
  }

  .hero-line,
  .hero-subtitle,
  .hero-actions {
    grid-column: auto;
  }

  .hero-title {
    font-size: clamp(3.05rem, 12.8vw, 4.4rem);
  }

  .hero-band p {
    width: min(var(--max), calc(100% - 30px));
    min-height: 58px;
    font-size: 0.68rem;
  }

  .intro {
    padding: 36px 0 0;
  }

  .areas, .homes { padding: 36px 15px; }

  .section-label {
    margin-bottom: 28px;
  }

  .areas-heading,
  .availability-heading {
    margin-bottom: 28px;
  }

  h1,
  h2 {
    font-size: clamp(2.2rem, 11vw, 3.55rem);
  }

  .figure-gallery {
    grid-template-columns: 1fr;
    padding-bottom: 36px;
  }

  .figure-card.large {
    grid-row: auto;
  }

  .figure-card.large img,
  .figure-card img {
    aspect-ratio: 4 / 3;
  }

  .map-panel svg {
    min-height: 290px;
    border-width: 3px;
  }

  .map-panel {
    gap: 18px;
  }

  .area-list article {
    grid-template-columns: 40px minmax(0, 1fr);
    padding: 18px 0;
  }

  .zone-photo-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 26px;
  }

  .services {
    padding: 36px 15px;
  }

  .legal-section {
    padding: 36px 15px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-chapter {
    min-height: auto;
    padding: 20px;
  }

  .service-chapter > p:first-child {
    margin-bottom: 30px;
  }

  .service-graphic {
    height: 86px;
    margin-bottom: 22px;
  }

  .table-row,
  .table-head {
    grid-template-columns: 1fr;
    gap: 6px;
    align-items: start;
    padding: 14px 0;
  }

  .table-head {
    display: none;
  }

  .table-row span:nth-child(2) {
    color: var(--muted);
  }

  .table-row span:last-child {
    margin-top: 12px;
    width: 100%;
  }

  .table-row span:last-child .button {
    width: 100%;
  }

  .about {
    gap: 24px;
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .about-copy {
    gap: 18px;
  }

  .contact {
    gap: 28px;
    padding: 36px 15px;
  }

  .contact-heading {
    gap: 16px;
  }

  .contact-form {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 10px;
    min-height: 100px;
    padding: 24px 17px 18px;
  }
}
.route-type-cell {
  display: flex;
  align-items: center;
  gap: 16px;
}
.route-type-cell span {
  flex: 1;
}
.route-graphic {
  width: 72px;
  height: 40px;
  color: var(--olive-dark);
  flex-shrink: 0;
  overflow: visible;
}
.route-graphic .graphic-line {
  stroke: currentColor;
  stroke-width: 8;
}
.route-graphic .graphic-soft {
  fill: transparent;
  stroke: currentColor;
  stroke-width: 4;
  stroke-dasharray: 8 8;
}
.route-graphic .graphic-dot {
  fill: currentColor;
}
.route-graphic .graphic-dashed {
  stroke-dasharray: 8 8;
}




.homes .button:hover,
.homes .button:focus-visible {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}

.route-link {
  font-weight: 560;
  text-decoration: underline;
  text-decoration-color: rgba(21, 26, 22, 0.3);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: text-decoration-color 160ms ease;
  white-space: nowrap;
}
.route-link:hover,
.route-link:focus-visible {
  text-decoration-color: var(--ink);
}

/* Text overrides for dark olive-mid backgrounds */
.areas .section-label,
.homes .section-label {
  color: rgba(247, 243, 236, 0.7);
}

.areas .section-label::before,
.homes .section-label::before {
  background: rgba(247, 243, 236, 0.7);
}

.areas p, .areas h2, .areas h3,
.homes p, .homes h2, .homes h3,
.homes .table-row span,
.homes .route-link {
  color: var(--paper);
}

.homes .route-link {
  text-decoration-color: rgba(247, 243, 236, 0.4);
}
.homes .route-link:hover,
.homes .route-link:focus-visible {
  text-decoration-color: var(--paper);
}

.homes .table-row span:nth-child(2) {
  color: rgba(247, 243, 236, 0.8);
}

.homes .table-head {
  border-bottom: 1px solid rgba(247, 243, 236, 0.3);
}

.homes .table-row {
  border-bottom: 1px solid rgba(247, 243, 236, 0.2);
}

.areas .area-card:hover {
  border-color: rgba(247, 243, 236, 0.4);
}

.site-header.scrolled .language-switch,
.site-header.menu-active .language-switch {
  border-color: var(--olive-mid);
}

/* Contact form button override for dark background */
.contact .button {
  border-color: rgba(247, 243, 236, 0.4);
  color: var(--paper);
}
.contact .button:hover,
.contact .button:focus-visible {
  background: var(--paper);
  border-color: var(--paper);
  color: var(--olive-dark);
}

/* Required fields asterisks */
.contact-form label:has([required]) > span::after,
.contact-form fieldset:has([aria-required="true"]) > legend::after {
  content: " *";
  color: #d9534f;
}

.homes-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 60px;
  align-items: start;
  margin-top: 40px;
}
.homes-legal-block {
  padding: 32px 24px;
  background: rgba(247, 243, 236, 0.05);
  border: 1px solid rgba(247, 243, 236, 0.15);
  border-radius: 8px;
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(247, 243, 236, 0.8);
}
.legal-partner-logo-homes {
  width: 140px;
  margin-bottom: 20px;
  filter: grayscale(1) invert(1) brightness(1.5);
}

@media (max-width: 960px) {
  .homes-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Fix anchor scrolling behind fixed header */
section[id], div[id] {
  scroll-margin-top: 88px;
}
