:root {
  --navy: #0b2d35;
  --navy-deep: #071f26;
  --petrol: #14605f;
  --petrol-soft: #dbe9e5;
  --ivory: #f5f0e6;
  --paper: #fffdf8;
  --orange: #e8792e;
  --orange-dark: #c95e19;
  --ink: #122c31;
  --muted: #5f706f;
  --line: rgba(11, 45, 53, 0.15);
  --white-line: rgba(255, 255, 255, 0.18);
  --shadow: 0 22px 60px rgba(7, 31, 38, 0.13);
  --radius: 24px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  font-synthesis: none;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

a {
  color: inherit;
}

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

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

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.preview-banner {
  padding: 7px 20px;
  color: #fff;
  background: var(--petrol);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  background: rgba(255, 253, 248, 0.94);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(7, 31, 38, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  min-height: 82px;
  gap: 24px;
}

.brand {
  flex: 0 0 142px;
}

.brand img {
  width: 142px;
  max-height: 56px;
  object-fit: contain;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 21px;
  margin-left: auto;
}

.primary-nav a {
  position: relative;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;
  white-space: nowrap;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-select select {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--paper);
  padding: 0 30px 0 12px;
  cursor: pointer;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, color 160ms ease, background 160ms ease;
}

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

.button-primary {
  color: #fff;
  background: var(--orange);
  box-shadow: 0 12px 25px rgba(232, 121, 46, 0.25);
}

.button-primary:hover {
  background: var(--orange-dark);
  box-shadow: 0 15px 30px rgba(232, 121, 46, 0.32);
}

.button-secondary {
  border-color: var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.5);
}

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

.button-outline-light {
  border-color: var(--white-line);
  color: #fff;
  background: transparent;
}

.button-full {
  width: 100%;
}

.section-shell {
  position: relative;
  overflow: hidden;
}

.hero {
  padding: 62px 0 0;
  background:
    linear-gradient(180deg, rgba(219, 233, 229, 0.38), transparent 65%),
    var(--paper);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 38px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  column-gap: 64px;
  align-items: start;
  padding-bottom: 0;
}

.hero-copy .eyebrow {
  grid-column: 1 / -1;
}

.hero-copy h1 {
  grid-column: 1;
  grid-row: 2 / span 4;
  margin-bottom: 0;
}

.hero-copy .hero-lead,
.hero-copy .hero-actions,
.hero-copy .response-time {
  grid-column: 2;
}

.hero-copy .hero-lead {
  grid-row: 2;
}

.hero-copy .hero-actions {
  grid-row: 3;
}

.hero-copy .response-time {
  grid-row: 4;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--petrol);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #8ed3ca;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.9rem, 4.7vw, 4.65rem);
}

h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
}

h3 {
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.hero-lead {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.16rem;
}

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

.response-time {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.status-dot {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--petrol);
  box-shadow: 0 0 0 5px rgba(20, 96, 95, 0.12);
}

.hero-visual {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border-radius: 42px 42px 0 0;
  background:
    linear-gradient(145deg, rgba(11, 45, 53, 0.03), rgba(11, 45, 53, 0.22)),
    repeating-linear-gradient(90deg, transparent 0, transparent 74px, rgba(255, 255, 255, 0.3) 75px),
    var(--petrol-soft);
  box-shadow: var(--shadow);
}

.hero-visual::before {
  position: absolute;
  inset: 16% 8% 0;
  content: "";
  border-radius: 180px 180px 0 0;
  background: rgba(255, 253, 248, 0.55);
}

.hero-visual-photo::before {
  inset: 0;
  z-index: 1;
  border-radius: 0;
  background: linear-gradient(180deg, rgba(7, 31, 38, 0.02) 45%, rgba(7, 31, 38, 0.42));
  pointer-events: none;
}

.hero-visual.hero-visual-photo {
  align-self: center;
  width: min(82%, 980px);
  min-height: 0;
  margin-left: auto;
}

.hero-photo {
  position: static;
  display: block;
  width: 100%;
  height: auto;
}

.photo-label {
  position: absolute;
  top: 28px;
  left: 28px;
  z-index: 3;
  display: grid;
  gap: 3px;
  max-width: 250px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 14px;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.82);
  backdrop-filter: blur(10px);
}

.photo-label span,
.card-photo span,
.family-visual span {
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.vehicle-outline {
  position: absolute;
  z-index: 2;
  bottom: 66px;
  border: 3px solid rgba(11, 45, 53, 0.35);
  background: rgba(255, 253, 248, 0.7);
  box-shadow: 0 18px 30px rgba(7, 31, 38, 0.12);
}

.caravan-outline {
  left: 9%;
  width: 55%;
  height: 190px;
  border-radius: 70px 28px 22px 22px;
}

.caravan-outline::before,
.caravan-outline::after,
.boat-outline::before {
  position: absolute;
  content: "";
  border-radius: 50%;
  background: var(--navy);
}

.caravan-outline::before {
  bottom: -22px;
  left: 25%;
  width: 44px;
  height: 44px;
  border: 8px solid var(--paper);
}

.caravan-outline::after {
  right: 13%;
  bottom: 60px;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  opacity: 0.16;
}

.boat-outline {
  right: 8%;
  bottom: 28px;
  width: 48%;
  height: 90px;
  border-radius: 0 0 80px 80px;
  transform: rotate(-3deg);
}

.boat-outline::before {
  top: -95px;
  left: 48%;
  width: 3px;
  height: 95px;
  border-radius: 0;
}

.hero-seal {
  position: absolute;
  right: 24px;
  bottom: 28px;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
  color: #fff;
  background: var(--navy);
  text-align: center;
  transform: rotate(5deg);
}

.hero-seal strong {
  align-self: end;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.24rem;
}

.hero-seal span {
  align-self: start;
  font-size: 0.75rem;
}

.trust-row {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-row > div {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 94px;
  padding: 16px 24px;
  border-right: 1px solid var(--line);
}

.trust-row > div:last-child {
  border-right: 0;
}

.trust-icon {
  color: var(--orange);
  font-size: 0.74rem;
  font-weight: 800;
}

.section {
  padding: 110px 0;
}

.section-ivory {
  background: var(--ivory);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.65fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 52px;
}

.section-heading h2,
.section-heading p {
  margin-bottom: 0;
}

.section-heading > p,
.compact-heading > p {
  color: var(--muted);
}

.facility-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 46px;
  align-items: center;
  margin-bottom: 30px;
  padding: 28px 30px;
  border: 1px solid rgba(20, 96, 95, 0.18);
  border-radius: 22px;
  background: rgba(255, 253, 248, 0.74);
  box-shadow: 0 14px 34px rgba(7, 31, 38, 0.06);
}

.facility-overview-copy .eyebrow {
  margin-bottom: 8px;
}

.facility-overview-copy h3 {
  margin-bottom: 12px;
  font-size: clamp(1.65rem, 2.6vw, 2.4rem);
}

.facility-overview-copy > p:last-child,
.facility-security p {
  margin-bottom: 0;
  color: var(--muted);
}

.facility-security {
  padding: 22px 24px;
  border-left: 3px solid var(--orange);
  border-radius: 0 16px 16px 0;
  background: rgba(219, 233, 229, 0.55);
}

.facility-security span {
  display: block;
  margin-bottom: 7px;
  color: var(--petrol);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.facility-security strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 500;
}

.storage-grid {
  display: grid;
  grid-template-columns: 1.16fr 0.92fr 0.92fr;
  gap: 20px;
  align-items: stretch;
}

.storage-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.storage-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.storage-card-featured {
  box-shadow: 0 18px 45px rgba(7, 31, 38, 0.08);
}

.card-photo {
  display: flex;
  align-items: flex-end;
  min-height: 220px;
  padding: 18px;
  color: var(--navy);
  background-color: var(--petrol-soft);
}

.card-photo-covered,
.card-photo-hail {
  position: relative;
  min-height: 0;
  padding: 0;
}

.card-photo img {
  position: static;
  display: block;
  width: 100%;
  height: auto;
}

.storage-card:hover .card-photo img {
  transform: none;
}

.card-photo-covered {
  background:
    linear-gradient(150deg, transparent 30%, rgba(11, 45, 53, 0.16)),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.32) 0 2px, transparent 2px 80px),
    var(--petrol-soft);
}

.card-photo-hail {
  background:
    radial-gradient(circle at 50% 110%, rgba(255, 255, 255, 0.75) 0 42%, transparent 43%),
    linear-gradient(160deg, rgba(20, 96, 95, 0.18), transparent),
    #e8eee7;
}

.card-photo-open {
  position: relative;
  min-height: 0;
  padding: 0;
  background: none;
}

.card-body {
  padding: 26px;
}

.card-kicker {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 7px;
  margin-bottom: 20px;
  color: var(--petrol);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.card-body p,
.check-list {
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li::before {
  margin-right: 9px;
  color: var(--orange);
  content: "✓";
  font-weight: 800;
}

.check-list-compact {
  font-size: 0.9rem;
  letter-spacing: -0.012em;
}

.check-list-compact li {
  white-space: nowrap;
}

.card-note {
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
}

.storage-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  align-items: stretch;
  margin-top: 24px;
  padding: 30px;
  border-radius: 28px;
  color: #fff;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 255, 255, 0.08), transparent 34%),
    var(--navy);
  box-shadow: 0 22px 52px rgba(7, 31, 38, 0.14);
}

.storage-gallery-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  max-width: 760px;
  padding: 4px 2px 4px 4px;
}

.storage-gallery-copy .eyebrow {
  margin-bottom: 12px;
}

.storage-gallery-copy h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 2.5vw, 2.35rem);
  font-weight: 500;
  line-height: 1.05;
}

.storage-gallery-copy > p:last-child {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.93rem;
}

.storage-gallery-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
}

.storage-gallery figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: var(--petrol-soft);
}

.storage-gallery figure::after {
  content: none;
}

.storage-gallery img {
  display: block;
  width: 100%;
  height: auto;
}

.storage-gallery figure:hover img {
  transform: none;
}

.storage-gallery figcaption {
  position: static;
  padding: 13px 16px 15px;
  color: #fff;
  background: rgba(7, 31, 38, 0.96);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.02rem, 1.6vw, 1.3rem);
  line-height: 1.15;
}

.development-panel {
  display: grid;
  grid-template-columns: minmax(250px, 0.8fr) minmax(0, 1.25fr) auto;
  gap: 30px;
  align-items: center;
  margin-top: 32px;
  padding: 24px 28px;
  border: 1px solid rgba(20, 96, 95, 0.2);
  border-radius: 18px;
  background: rgba(219, 233, 229, 0.52);
}

.development-heading .eyebrow {
  margin-bottom: 7px;
}

.development-heading h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  font-weight: 500;
  line-height: 1.08;
}

.development-description {
  margin: 0;
  color: var(--muted);
}

.development-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 13px;
  border: 1px solid rgba(20, 96, 95, 0.18);
  border-radius: 999px;
  color: var(--petrol);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 800;
  white-space: nowrap;
}

.development-status span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(232, 121, 46, 0.1);
}

.journey-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
}

.journey-overview {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
  gap: clamp(42px, 7vw, 90px);
  align-items: center;
}

.journey-intro {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.journey-intro > p:last-child {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.08rem;
}

.journey-photo {
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--white-line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
}

.journey-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 44%;
}

.journey-steps {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 54px 0 0;
  padding: 0;
  list-style: none;
}

.journey-steps li {
  min-height: 220px;
  padding: 26px;
  border-top: 1px solid var(--white-line);
  border-right: 1px solid var(--white-line);
}

.journey-steps li:last-child {
  border-right: 0;
}

.journey-steps li > span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 38px;
  border-radius: 50%;
  color: var(--navy);
  background: var(--orange);
  font-weight: 800;
}

.journey-steps strong {
  display: block;
  margin-bottom: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 500;
}

.journey-steps p {
  color: rgba(255, 255, 255, 0.68);
}

.vehicle-preparation {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 32px;
  align-items: center;
  margin-top: 26px;
  padding: 24px 26px;
  border: 1px solid var(--white-line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.vehicle-preparation span {
  display: block;
  margin-bottom: 7px;
  color: #8ed3ca;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vehicle-preparation strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 500;
  line-height: 1.12;
}

.vehicle-preparation p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.family-grid,
.location-grid,
.app-grid,
.availability-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 82px;
  align-items: center;
}

.family-visual {
  position: relative;
  min-height: 580px;
}

.family-photo-main,
.family-photo-archive {
  position: absolute;
  display: flex;
  align-items: flex-end;
  padding: 22px;
  border-radius: var(--radius);
  color: var(--navy);
  background: var(--petrol-soft);
  box-shadow: var(--shadow);
}

.family-photo-main {
  inset: 0 70px 80px 0;
  background:
    radial-gradient(circle at 48% 32%, rgba(255, 255, 255, 0.8) 0 9%, transparent 10%),
    radial-gradient(circle at 30% 48%, rgba(11, 45, 53, 0.14) 0 18%, transparent 19%),
    radial-gradient(circle at 68% 48%, rgba(11, 45, 53, 0.12) 0 18%, transparent 19%),
    var(--petrol-soft);
}

.family-photo-archive {
  right: 0;
  bottom: 0;
  width: 44%;
  height: 43%;
  border: 9px solid var(--paper);
  background:
    linear-gradient(145deg, rgba(232, 121, 46, 0.12), transparent),
    #ded5c3;
  transform: rotate(3deg);
}

.family-copy p:not(.eyebrow) {
  color: var(--muted);
}

blockquote {
  margin: 30px 0 0;
  padding: 22px 0 22px 24px;
  border-left: 3px solid var(--orange);
  color: var(--petrol);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.22rem;
}

.compact-heading {
  margin-bottom: 36px;
}

.service-showcase {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 28px;
}

.service-card-wash {
  background: var(--paper);
}

.service-card-maintenance {
  background: linear-gradient(135deg, var(--paper), var(--petrol-soft));
}

.service-kicker {
  display: block;
  margin-bottom: auto;
  padding-bottom: 42px;
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-card h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.4vw, 2.15rem);
  font-weight: 500;
  line-height: 1.08;
}

.service-card p {
  max-width: 480px;
  margin: 14px 0 0;
  color: var(--muted);
}

.service-examples {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 24px;
  margin: 18px 0 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.service-examples li {
  position: relative;
  padding-left: 16px;
}

.service-examples li::before {
  position: absolute;
  top: 0.66em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.location-section {
  overflow: hidden;
}

.drone-visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 430px;
  margin-bottom: 70px;
  overflow: hidden;
  padding: 34px;
  border-radius: var(--radius);
  color: #fff;
  background:
    linear-gradient(180deg, transparent 35%, rgba(7, 31, 38, 0.72)),
    radial-gradient(circle at 72% 28%, rgba(255, 255, 255, 0.55) 0 8%, transparent 9%),
    repeating-linear-gradient(145deg, rgba(255, 255, 255, 0.12) 0 2px, transparent 2px 74px),
    linear-gradient(145deg, #a8c8bd 0 48%, #cfd6b8 49% 72%, #92b7ae 73%);
  box-shadow: var(--shadow);
}

.drone-visual::before,
.drone-visual::after {
  position: absolute;
  content: "";
  background: rgba(255, 253, 248, 0.72);
  box-shadow: 0 10px 30px rgba(7, 31, 38, 0.12);
}

.drone-visual::before {
  top: 22%;
  left: 12%;
  width: 48%;
  height: 24%;
  transform: rotate(-7deg);
}

.drone-visual::after {
  top: 48%;
  right: 13%;
  width: 33%;
  height: 18%;
  transform: rotate(8deg);
}

.drone-visual > div {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 4px;
  max-width: 560px;
}

.drone-visual span {
  color: #ffb174;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.drone-visual strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 3vw, 2.8rem);
  font-weight: 500;
  line-height: 1.12;
}

.drone-visual.drone-visual-photo {
  display: block;
  min-height: 0;
  padding: 0;
  background: var(--petrol-soft);
}

.drone-visual-photo::before {
  content: none;
}

.drone-visual-photo::after {
  content: none;
}

.drone-visual-photo > img {
  position: static;
  display: block;
  width: 100%;
  height: auto;
}

.drone-visual-photo .drone-caption {
  position: static;
  max-width: none;
  padding: 18px 22px 20px;
  color: var(--ink);
  background: var(--paper);
}

.drone-visual-photo .drone-caption span {
  color: var(--orange);
}

.drone-visual-photo .drone-caption strong {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.location-copy > p:not(.eyebrow) {
  color: var(--muted);
}

.location-distance {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  padding: 8px 12px 8px 8px;
  border: 1px solid rgba(20, 96, 95, 0.16);
  border-radius: 999px;
  color: var(--petrol);
  background: rgba(219, 233, 229, 0.52);
  font-size: 0.8rem;
}

.location-distance span {
  padding: 6px 9px;
  border-radius: 999px;
  color: #fff;
  background: var(--orange);
  font-weight: 850;
}

.location-distance strong {
  font-weight: 800;
}

.location-zones {
  margin: 24px 0;
  border-top: 1px solid var(--line);
}

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

.location-zones summary {
  padding: 14px 0;
  color: var(--petrol);
  font-weight: 800;
  cursor: pointer;
}

.location-zones p {
  margin: -4px 0 16px;
  color: var(--muted);
  font-size: 0.88rem;
}

.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--petrol);
  font-weight: 800;
  text-decoration: none;
}

.text-link span {
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.map-concept {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(7, 31, 38, 0.13);
  border-radius: 28px;
  background: #e6e9e2;
  box-shadow: 0 24px 55px rgba(7, 31, 38, 0.1);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.map-concept:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 65px rgba(7, 31, 38, 0.16);
}

.map-embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.86) contrast(0.96);
}

.map-preview {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: end;
  padding: 20px;
}

/* Preserve the native hidden state after Google Maps has loaded. */
.map-preview[hidden],
.map-destination-card[hidden] {
  display: none !important;
}

.map-preview::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 34%, rgba(7, 31, 38, 0.18) 62%, rgba(7, 31, 38, 0.56));
  content: "";
  pointer-events: none;
}

.map-preview > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-load-panel {
  position: relative;
  z-index: 2;
  width: min(430px, 100%);
  padding: 18px;
  border: 1px solid rgba(7, 31, 38, 0.08);
  border-radius: 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 35px rgba(7, 31, 38, 0.17);
  backdrop-filter: blur(16px);
}

.map-load-panel > strong,
.map-load-panel > span {
  display: block;
}

.map-load-panel > strong {
  font-size: 1rem;
}

.map-load-panel > span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.78rem;
}

.map-load-panel p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.map-load-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 14px;
}

.map-load-actions .button {
  min-height: 42px;
  padding: 0 16px;
  border: 0;
  cursor: pointer;
}

.map-load-actions > a {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  min-height: 42px;
  padding: 0 12px;
  color: var(--petrol);
  font-size: 0.8rem;
  font-weight: 800;
  text-decoration: none;
}

.map-attribution {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 3;
  padding: 4px 7px;
  border-radius: 5px;
  color: #28494c;
  background: rgba(255, 255, 255, 0.92);
  font-size: 0.62rem;
  text-decoration: none;
}

.map-noscript {
  position: absolute;
  z-index: 4;
  right: 20px;
  top: 20px;
  left: 20px;
  margin: 0;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  font-size: 0.8rem;
}

.map-destination-card {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(7, 31, 38, 0.08);
  border-radius: 17px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 35px rgba(7, 31, 38, 0.14);
  backdrop-filter: blur(16px);
  text-decoration: none;
}

.map-destination-card-loaded {
  right: 16px;
  bottom: 16px;
  left: auto;
  width: min(390px, calc(100% - 32px));
}

.map-destination-card > span {
  display: grid;
  gap: 3px;
}

.map-destination-card strong {
  font-size: 0.95rem;
}

.map-destination-card small {
  color: var(--muted);
  font-size: 0.7rem;
}

.map-destination-card em {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 7px;
  padding: 10px 13px;
  border-radius: 999px;
  color: #fff;
  background: var(--petrol);
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 800;
}

.map-destination-card b {
  font-size: 0.9rem;
}

.hours-section {
  background: var(--ivory);
}

.hours-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: 80px;
  align-items: start;
}

.hours-copy > p:not(.eyebrow) {
  color: var(--muted);
}

.hours-status {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 26px;
  color: var(--petrol);
}

.hours-status span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(232, 121, 46, 0.12);
}

.hours-closure-note {
  margin: 22px 0 0;
  padding: 16px 18px;
  border: 1px solid rgba(232, 121, 46, 0.22);
  border-radius: 14px;
  background: rgba(232, 121, 46, 0.07);
  font-size: 0.92rem;
}

.hours-schedule {
  border-top: 1px solid var(--line);
}

.hours-schedule > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.hours-schedule span {
  color: var(--muted);
}

.hours-schedule strong {
  color: var(--ink);
  text-align: right;
}

.contacts-bar {
  display: grid;
  grid-template-columns: minmax(250px, 1.15fr) minmax(210px, 0.85fr) minmax(280px, 1.1fr);
  gap: 1px;
  margin-top: 54px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.contacts-bar > div {
  display: grid;
  align-content: center;
  gap: 5px;
  min-height: 118px;
  padding: 20px;
  background: var(--paper);
}

.contacts-bar span {
  color: var(--muted);
  font-size: 0.77rem;
}

.contacts-bar strong {
  overflow-wrap: anywhere;
}

.contacts-email strong {
  white-space: nowrap;
  overflow-wrap: normal;
}

.contacts-actions {
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  gap: 9px !important;
}

.other-vehicle-field[hidden] {
  display: none;
}

.app-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--petrol);
}

.app-grid {
  position: relative;
  z-index: 2;
}

.phone-mockup {
  width: min(310px, 75%);
  margin-inline: auto;
  padding: 12px;
  border: 2px solid rgba(255, 255, 255, 0.34);
  border-radius: 45px;
  background: var(--navy-deep);
  box-shadow: 0 35px 70px rgba(7, 31, 38, 0.35);
  transform: rotate(-3deg);
}

.phone-camera {
  width: 74px;
  height: 7px;
  margin: 5px auto 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.phone-screen {
  min-height: 510px;
  padding: 28px 20px;
  border-radius: 34px;
  color: var(--ink);
  background: var(--paper);
}

.app-screen-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.app-screen-header img {
  width: 108px;
  height: 44px;
  object-fit: contain;
}

.app-screen-header > span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--petrol);
  font-size: 0.72rem;
  font-weight: 800;
}

.app-vacation-card {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(145deg, #06111f, #0c3142 55%, #0f7087);
}

.app-vacation-top,
.app-dates,
.app-places,
.app-vehicle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.app-vacation-top > span {
  color: #ffb174;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.app-vacation-top em {
  padding: 4px 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.62rem;
  font-style: normal;
}

.app-vacation-card > strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 500;
}

.app-dates i {
  flex: 1;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}

.app-dates span {
  font-size: 0.78rem;
  font-weight: 800;
}

.app-places {
  align-items: flex-start;
}

.app-places span,
.app-vehicle span {
  font-size: 0.64rem;
}

.app-places span:last-child {
  color: rgba(255, 255, 255, 0.62);
  text-align: right;
}

.app-vehicle {
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.app-request-card,
.app-contact-card {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  padding: 13px;
  border-radius: 16px;
}

.app-request-card {
  color: #fff;
  background: linear-gradient(145deg, #ffb45c, #f0842f);
  box-shadow: 0 12px 25px rgba(169, 81, 12, 0.18);
}

.app-contact-card {
  border: 1px solid var(--line);
  background: #fffefa;
}

.app-request-card > span,
.app-contact-card > span {
  display: grid;
  flex: 0 0 38px;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.app-contact-card > span {
  color: #fff;
  background: var(--petrol);
}

.app-request-card > div,
.app-contact-card > div {
  display: grid;
  gap: 2px;
}

.app-request-card strong,
.app-contact-card strong {
  font-size: 0.76rem;
}

.app-request-card small,
.app-contact-card small {
  font-size: 0.58rem;
  opacity: 0.75;
}

.app-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
}

.app-points {
  display: grid;
  gap: 13px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.app-points li {
  display: flex;
  gap: 11px;
}

.app-points span {
  color: #ffb174;
  font-weight: 800;
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}

.store-badges button {
  display: grid;
  place-items: center;
  height: 54px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.store-badges img {
  width: auto;
  height: 48px;
  object-fit: contain;
}

.store-badges button:last-child img {
  height: 58px;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
  gap: 90px;
  align-items: start;
}

.faq-heading {
  position: sticky;
  top: 130px;
}

.faq-heading > p:not(.eyebrow) {
  color: var(--muted);
}

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

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

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.22rem;
  font-weight: 500;
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary span {
  color: var(--orange);
  font-family: Inter, sans-serif;
  font-size: 1.5rem;
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 700px;
  margin: -6px 0 24px;
  color: var(--muted);
}

.availability-section {
  color: #fff;
  background: var(--navy-deep);
}

.availability-grid {
  align-items: start;
}

.availability-copy {
  position: sticky;
  top: 130px;
}

.availability-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.mail-promise {
  display: grid;
  gap: 4px;
  margin-top: 34px;
  padding: 20px 0 20px 22px;
  border-left: 3px solid var(--orange);
}

.availability-form {
  scroll-margin-top: 110px;
  padding: 34px;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.form-section {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.form-section[hidden] {
  display: none;
}

.form-section legend {
  width: 100%;
  margin-bottom: 17px;
  padding: 0;
  color: var(--petrol);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.form-progress[hidden] {
  display: none;
}

.form-progress li {
  border-bottom: 2px solid var(--line);
  color: var(--muted);
  font-size: 0.7rem;
  transition: border-color 180ms ease, color 180ms ease;
}

.form-progress li button {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 0 0 12px;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: default;
  font: inherit;
  text-align: left;
}

.form-progress li.is-clickable button {
  cursor: pointer;
}

.form-progress li.is-clickable button:hover strong {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-progress li button:focus-visible {
  border-radius: 8px;
  outline: 3px solid rgba(20, 96, 95, 0.22);
  outline-offset: 4px;
}

.form-progress li button:disabled {
  opacity: 1;
}

.form-progress li span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  font-size: 0.7rem;
  font-weight: 850;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.form-progress li strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.form-progress li.is-active,
.form-progress li.is-complete {
  border-color: var(--petrol);
  color: var(--petrol);
}

.form-progress li.is-active span {
  border-color: var(--petrol);
  box-shadow: 0 0 0 4px rgba(20, 96, 95, 0.1);
}

.form-progress li.is-complete span {
  border-color: var(--petrol);
  color: #fff;
  background: var(--petrol);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 14px;
}

.availability-form label {
  display: grid;
  gap: 7px;
  margin-bottom: 15px;
  font-size: 0.82rem;
  font-weight: 750;
}

.label-optional {
  display: inline;
  margin-left: 4px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 550;
}

.label-text {
  display: block;
}

.field-help {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 520;
  line-height: 1.45;
}

.holiday-period-fields {
  margin-bottom: 15px;
}

.form-group-label {
  display: block;
  margin-bottom: 7px;
  font-size: 0.82rem;
  font-weight: 750;
}

.holiday-period-fields > label {
  margin-bottom: 7px;
}

.form-row-align-end {
  align-items: end;
}

.availability-form .inline-check {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.availability-form .inline-check input {
  width: 18px;
  min-height: 18px;
  margin: 0;
  padding: 0;
}

.availability-form input,
.availability-form select,
.availability-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  background: #fff;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.availability-form textarea {
  resize: vertical;
}

.availability-form input:focus,
.availability-form select:focus,
.availability-form textarea:focus {
  border-color: var(--petrol);
  box-shadow: 0 0 0 4px rgba(20, 96, 95, 0.12);
}

.privacy-check {
  display: flex !important;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 9px !important;
  color: var(--muted);
}

.privacy-check input {
  width: 18px;
  min-height: 18px;
  margin: 0;
}

.privacy-check span {
  line-height: 1.45;
}

.privacy-check a {
  color: var(--petrol);
  font-weight: 800;
  text-underline-offset: 3px;
}

.form-step-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 9px;
}

.form-step-actions-end {
  justify-content: flex-end;
}

.form-step-actions .button {
  min-width: 150px;
}

.form-step-actions-final .button {
  min-width: min(260px, 100%);
}

.form-back-button {
  padding: 12px 4px;
  border: 0;
  color: var(--petrol);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
}

.form-back-button:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.form-back-button:focus-visible {
  border-radius: 6px;
  outline: 3px solid rgba(20, 96, 95, 0.22);
  outline-offset: 3px;
}

.form-feedback {
  margin: 0;
  color: var(--petrol);
}

.form-feedback:empty {
  display: none;
}

.form-feedback[data-state] {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  margin: 0 0 28px;
  padding: 20px 22px;
  border: 1px solid currentColor;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.5;
  text-align: left;
  box-shadow: 0 10px 26px rgba(4, 39, 44, 0.08);
}

.form-feedback[data-state]::before {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--form-feedback-accent, var(--petrol));
  content: "✓";
  font-size: 1.15rem;
  font-weight: 900;
}

.form-feedback[data-state="success"] {
  --form-feedback-accent: #0b6651;
  color: #0b6651;
  background: #eef9f5;
}

.form-feedback[data-state="error"] {
  --form-feedback-accent: #9f2f20;
  color: #9f2f20;
  background: #fff2ef;
}

.form-feedback[data-state="warning"] {
  --form-feedback-accent: #8a4b08;
  color: #8a4b08;
  background: #fff7e8;
}

.form-feedback[data-state="error"]::before,
.form-feedback[data-state="warning"]::before {
  content: "!";
}

.form-feedback[data-state="sending"] {
  --form-feedback-accent: var(--petrol);
  background: #eef6f6;
  opacity: 0.82;
}

.form-feedback[data-state="sending"]::before {
  content: "…";
}

.form-feedback:focus-visible {
  outline: 3px solid rgba(20, 96, 95, 0.22);
  outline-offset: 4px;
}

.availability-form [data-form-submit]:disabled {
  cursor: wait;
  opacity: 0.62;
}

.form-trap {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

@media (max-width: 620px) {
  .form-progress {
    gap: 6px;
    margin-bottom: 24px;
  }

  .form-progress li {
    font-size: 0.62rem;
  }

  .form-progress li button {
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 5px;
    padding-bottom: 10px;
  }

  .form-progress li span {
    width: 24px;
    height: 24px;
    font-size: 0.64rem;
  }

  .form-step-actions .button {
    min-width: 0;
    flex: 1;
  }

  .form-feedback[data-state] {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 11px;
    margin-bottom: 24px;
    padding: 16px;
    font-size: 0.9rem;
  }

  .form-feedback[data-state]::before {
    width: 32px;
    height: 32px;
  }
}

.site-footer {
  padding: 72px 0 26px;
  color: rgba(255, 255, 255, 0.75);
  background: #06191e;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 50px;
}

.footer-brand img {
  width: 150px;
  max-height: 60px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-grid > div:not(.footer-brand) {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-grid strong {
  margin-bottom: 7px;
  color: #fff;
}

.footer-grid a {
  text-decoration: none;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 56px;
  padding-top: 22px;
  border-top: 1px solid var(--white-line);
  font-size: 0.78rem;
}

.mobile-actions {
  display: none;
}

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

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .primary-nav {
    gap: 14px;
  }

  .primary-nav a {
    font-size: 0.82rem;
  }

  .header-actions .button {
    display: none;
  }

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

  .hero-copy {
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
    column-gap: 38px;
  }

  .hero-visual.hero-visual-photo {
    width: 88%;
  }

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

  .storage-card-featured {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  body {
    padding-bottom: 70px;
  }

  .preview-banner {
    padding-inline: 12px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .header-inner {
    min-height: 68px;
  }

  .brand,
  .brand img {
    width: 124px;
    flex-basis: 124px;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .primary-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 10px 20px 20px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: 0 20px 35px rgba(7, 31, 38, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .primary-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .primary-nav a {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .header-actions {
    margin-left: 0;
  }

  .hero {
    padding-top: 52px;
  }

  .hero-grid,
  .family-grid,
  .location-grid,
  .app-grid,
  .availability-grid,
  .faq-grid,
  .hours-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-copy {
    display: block;
    padding-bottom: 0;
  }

  .hero-visual.hero-visual-photo {
    width: 100%;
  }

  h1 {
    font-size: clamp(2.6rem, 12vw, 4.2rem);
  }

  .hero-visual {
    min-height: 460px;
    border-radius: 28px 28px 0 0;
  }

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

  .trust-row > div:nth-child(2) {
    border-right: 0;
  }

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

  .section {
    padding: 80px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

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

  .storage-card-featured {
    grid-column: auto;
  }

  .facility-overview {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .storage-gallery figure,
  .storage-gallery img {
    min-height: 0;
  }

  .storage-gallery {
    grid-template-columns: 1fr;
  }

  .storage-gallery-copy {
    max-width: 620px;
  }

  .storage-gallery-images {
    grid-template-columns: minmax(0, 1.12fr) minmax(220px, 0.88fr);
  }

  .development-panel {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px 24px;
    padding: 22px 24px;
  }

  .development-description {
    grid-column: 1 / -1;
  }

  .development-status {
    grid-column: 2;
    grid-row: 1;
  }

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

  .journey-overview {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
    gap: 36px;
  }

  .journey-steps li:nth-child(2) {
    border-right: 0;
  }

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

  .vehicle-preparation {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .family-visual {
    min-height: 500px;
  }

  .location-grid {
    gap: 34px;
  }

  .drone-visual {
    min-height: 360px;
    margin-bottom: 52px;
  }

  .map-concept {
    min-height: 430px;
  }

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

  .contacts-actions {
    grid-column: 1 / -1;
  }

  .app-grid {
    grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1fr);
  }

  .faq-heading,
  .availability-copy {
    position: static;
  }

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

  .mobile-actions {
    position: fixed;
    right: 10px;
    bottom: 10px;
    left: 10px;
    z-index: 60;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    background: rgba(7, 31, 38, 0.94);
    box-shadow: 0 14px 35px rgba(7, 31, 38, 0.26);
    backdrop-filter: blur(15px);
  }

  .mobile-actions a {
    display: grid;
    place-items: center;
    min-height: 48px;
    border-radius: 12px;
    color: #fff;
    font-weight: 800;
    text-decoration: none;
  }

  .mobile-actions a:first-child {
    background: var(--orange);
  }

  .mobile-actions a:last-child {
    border: 1px solid var(--white-line);
  }
}

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

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  h2 {
    font-size: clamp(2.1rem, 11vw, 3.2rem);
  }

  .hero-visual {
    min-height: 390px;
  }

  .photo-label {
    right: 18px;
    left: 18px;
    max-width: none;
  }

  .caravan-outline {
    bottom: 76px;
    left: 6%;
    width: 68%;
    height: 145px;
  }

  .boat-outline {
    right: 5%;
    width: 56%;
  }

  .hero-seal {
    right: 16px;
    bottom: 18px;
    width: 100px;
    height: 100px;
  }

  .trust-row {
    grid-template-columns: 1fr;
  }

  .trust-row > div {
    min-height: 68px;
    padding: 12px 8px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-row > div:last-child {
    border-bottom: 0;
  }

  .journey-steps,
  .service-showcase,
  .app-grid,
  .footer-grid,
  .form-row,
  .contacts-bar {
    grid-template-columns: 1fr;
  }

  .journey-overview {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .journey-photo {
    width: min(100%, 430px);
    justify-self: center;
  }

  .journey-steps li,
  .journey-steps li:nth-child(2) {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--white-line);
  }

  .journey-steps li:last-child {
    border-bottom: 0;
  }

  .journey-steps li > span {
    margin-bottom: 20px;
  }

  .family-visual {
    min-height: 410px;
  }

  .family-photo-main {
    inset: 0 30px 60px 0;
  }

  .family-photo-archive {
    width: 52%;
    height: 40%;
  }

  .service-card {
    min-height: 220px;
    padding: 26px;
  }

  .service-kicker {
    padding-bottom: 28px;
  }

  .service-examples {
    grid-template-columns: 1fr;
  }

  .check-list-compact {
    font-size: clamp(0.76rem, 3.6vw, 0.88rem);
  }

  .facility-overview {
    padding: 22px;
  }

  .facility-security {
    padding: 18px 20px;
  }

  .vehicle-preparation {
    padding: 20px;
  }

  .storage-gallery {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 22px;
    border-radius: 24px;
  }

  .storage-gallery-images {
    grid-template-columns: 1fr;
  }

  .storage-gallery figure,
  .storage-gallery img {
    min-height: 0;
  }

  .hero-visual-photo .hero-seal {
    right: 12px;
    bottom: 12px;
    width: 78px;
    height: 78px;
  }

  .hero-visual-photo .hero-seal strong {
    font-size: 1rem;
  }

  .hero-visual-photo .hero-seal span {
    font-size: 0.62rem;
  }

  .drone-visual-photo .drone-caption {
    padding: 16px 18px 18px;
  }

  .drone-visual-photo .drone-caption strong {
    display: block;
    font-size: 1.15rem;
  }

  .map-concept {
    min-height: 350px;
  }

  .development-panel {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 20px;
  }

  .development-description,
  .development-status {
    grid-column: auto;
    grid-row: auto;
  }

  .drone-visual {
    min-height: 310px;
    padding: 22px;
  }

  .hours-schedule > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .hours-schedule strong {
    text-align: left;
  }

  .phone-mockup {
    width: min(280px, 86%);
  }

  .availability-form {
    padding: 24px 18px;
  }

  .footer-bottom {
    display: grid;
  }
}

@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;
  }
}
