@font-face {
  font-family: "Nunito";
  src: url("../fonts/Nunito-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Nunito";
  src: url("../fonts/Nunito-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Nunito";
  src: url("../fonts/Nunito-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Nunito";
  src: url("../fonts/Nunito-800.ttf") format("truetype");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

:root {
  --blue: #135a86;
  --blue-dark: #073f68;
  --blue-deep: #032f50;
  --blue-soft: #eaf5fa;
  --blue-pale: #f4f9fc;
  --orange: #ef870c;
  --orange-dark: #d96f00;
  --orange-soft: #fff2df;
  --ink: #102d3f;
  --muted: #567080;
  --line: #d6e3ea;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(3, 47, 80, 0.14);
  --shadow-soft: 0 12px 36px rgba(3, 47, 80, 0.09);
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 34px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

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

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

:focus-visible {
  outline: 3px solid #ffb84a;
  outline-offset: 3px;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--blue-deep);
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.service-strip {
  color: #d9edf8;
  background: var(--blue-deep);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
}

.service-strip__inner {
  display: flex;
  justify-content: center;
  gap: 36px;
  min-height: 34px;
  align-items: center;
}

.service-strip span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service-strip span + span::before {
  width: 4px;
  height: 4px;
  margin-right: 28px;
  content: "";
  border-radius: 50%;
  background: var(--orange);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(214, 227, 234, 0.8);
  backdrop-filter: blur(12px);
}

.site-header.is-scrolled {
  box-shadow: 0 8px 30px rgba(3, 47, 80, 0.08);
}

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

.header-inner > p:empty {
  display: none;
}

.brand {
  display: block;
  flex: 0 0 auto;
  width: 188px;
  line-height: 0;
}

.brand img {
  width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.main-nav > a:not(.button) {
  position: relative;
  color: #24495f;
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

.main-nav > a:not(.button)::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;
}

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

.main-nav .button {
  white-space: nowrap;
}

.language-switcher {
  display: flex;
  padding-left: 9px;
  align-items: center;
  gap: 3px;
  border-left: 1px solid var(--line);
}

.language-switcher a {
  display: grid;
  min-width: 28px;
  height: 28px;
  padding: 0 5px;
  place-items: center;
  border-radius: 999px;
  color: #24495f;
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease;
}

.language-switcher a:hover,
.language-switcher a:focus-visible {
  color: var(--blue-deep);
  background: var(--blue-pale);
}

.language-switcher a[aria-current="page"] {
  color: var(--white);
  background: var(--blue-deep);
}

.menu-toggle {
  position: relative;
  display: none;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 10px;
  color: var(--blue-dark);
  background: var(--blue-soft);
  cursor: pointer;
  line-height: 0;
  overflow: hidden;
}

.menu-toggle > span:not(.sr-only) {
  position: absolute;
  left: 11px;
  display: block;
  width: 24px;
  height: 2px;
  margin: 0;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle > span:nth-child(2) {
  top: 15px;
}

.menu-toggle > span:nth-child(3) {
  top: 22px;
}

.menu-toggle > span:nth-child(4) {
  top: 29px;
}

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

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

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 23px;
  color: var(--white);
  background: var(--orange);
  border: 2px solid var(--orange);
  border-radius: 11px;
  box-shadow: 0 10px 24px rgba(239, 135, 12, 0.22);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  color: var(--white);
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  box-shadow: 0 13px 28px rgba(217, 111, 0, 0.26);
  transform: translateY(-2px);
}

.button--small {
  min-height: 44px;
  padding: 10px 16px;
  font-size: 0.9rem;
}

.button--white {
  color: var(--blue-deep);
  background: var(--white);
  border-color: var(--white);
  box-shadow: none;
}

.button--white:hover {
  color: var(--blue-deep);
  background: var(--orange-soft);
  border-color: var(--orange-soft);
}

.button--orange {
  color: var(--blue-deep);
  background: #ff9a1f;
  border-color: #ff9a1f;
}

.button--ghost {
  color: var(--blue-dark);
  background: transparent;
  border-color: #b8ccd8;
  box-shadow: none;
}

.button--ghost:hover {
  color: var(--blue-deep);
  background: var(--blue-soft);
  border-color: var(--blue);
  box-shadow: none;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 34px;
  height: 4px;
  background: var(--orange);
  clip-path: polygon(0 15%, 100% 0, 92% 85%, 7% 100%);
}

.eyebrow--light {
  color: #cfe8f6;
}

.hero {
  position: relative;
  overflow: clip;
  background:
    radial-gradient(circle at 82% 12%, rgba(239, 135, 12, 0.11), transparent 26rem),
    linear-gradient(180deg, #f6fbfd 0%, #ffffff 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.24;
  background-image: linear-gradient(rgba(19, 90, 134, 0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(19, 90, 134, 0.07) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, transparent, black 50%, black);
}

.hero-route {
  position: absolute;
  z-index: 0;
  top: 70px;
  right: -110px;
  width: 480px;
  height: 110px;
  background: var(--orange);
  clip-path: polygon(3% 40%, 100% 0, 98% 20%, 11% 58%, 100% 42%, 97% 63%, 0 82%);
  opacity: 0.9;
  transform: rotate(-8deg);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 670px;
  padding-block: 88px 98px;
  align-items: center;
  grid-template-columns: minmax(0, 1.16fr) minmax(380px, 0.84fr);
  gap: clamp(50px, 7vw, 100px);
}

.hero-copy h1 {
  max-width: 760px;
  margin: 0;
  color: var(--blue-deep);
  font-size: clamp(3rem, 5.5vw, 5.3rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.98;
}

.hero-copy h1 em {
  position: relative;
  z-index: 0;
  color: var(--blue);
  font-style: normal;
  white-space: nowrap;
}

.hero-copy h1 em::after {
  position: absolute;
  z-index: -1;
  right: -3%;
  bottom: 2px;
  left: -2%;
  height: 0.16em;
  content: "";
  background: var(--orange);
  clip-path: polygon(0 30%, 100% 0, 96% 86%, 2% 100%);
  opacity: 0.8;
}

.hero-lead {
  max-width: 690px;
  margin: 28px 0 0;
  color: #3f6174;
  font-size: clamp(1.08rem, 1.5vw, 1.25rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  margin-top: 34px;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.text-link {
  color: var(--blue-dark);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(19, 90, 134, 0.35);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.text-link:hover {
  color: var(--orange-dark);
  text-decoration-color: var(--orange);
}

.trust-list {
  display: grid;
  padding: 0;
  margin: 34px 0 0;
  color: #315568;
  gap: 10px;
  list-style: none;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.trust-list svg {
  width: 22px;
  height: 22px;
  padding: 3px;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 50%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  padding: clamp(36px, 4vw, 54px);
  color: var(--white);
  background:
    radial-gradient(circle at 92% 5%, rgba(255, 255, 255, 0.14), transparent 18rem),
    linear-gradient(145deg, var(--blue) 0%, var(--blue-deep) 75%);
  border-radius: 44px 10px 44px 10px;
  box-shadow: var(--shadow);
}

.hero-panel::after {
  position: absolute;
  right: -55px;
  bottom: -55px;
  width: 210px;
  height: 210px;
  content: "";
  border: 22px solid rgba(239, 135, 12, 0.92);
  border-radius: 50%;
}

.hero-panel__mark {
  position: absolute;
  top: -40px;
  right: -8px;
  color: rgba(255, 255, 255, 0.075);
  font-size: 10rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
}

.hero-panel__kicker {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  color: #bde2f6;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-panel h2 {
  position: relative;
  z-index: 1;
  max-width: 380px;
  margin: 0;
  font-size: clamp(1.85rem, 3vw, 2.55rem);
  letter-spacing: 0;
  line-height: 1.12;
}

.three-p {
  position: relative;
  z-index: 1;
  display: grid;
  margin-top: 36px;
  gap: 2px;
}

.three-p > div {
  display: grid;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  grid-template-columns: 120px 1fr;
  gap: 16px;
}

.three-p strong {
  color: #ffad46;
  font-size: 1.05rem;
}

.three-p span {
  color: #d9edf8;
  font-size: 0.94rem;
}

.price-peek {
  position: relative;
  z-index: 1;
  display: flex;
  margin-top: 34px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.price-peek > span {
  color: #bde2f6;
  font-size: 0.9rem;
  font-weight: 700;
}

.price-peek > strong {
  font-size: 2rem;
  line-height: 1;
}

.price-peek small {
  color: #bde2f6;
  font-size: 0.8rem;
}

.quick-answers {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.quick-answers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.quick-answers__grid > div {
  display: grid;
  min-height: 112px;
  padding: 24px 34px;
  align-items: center;
  grid-template-columns: auto 1fr;
  gap: 18px;
}

.quick-answers__grid > div + div {
  border-left: 1px solid var(--line);
}

.quick-number {
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
}

.quick-answers p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.quick-answers strong {
  display: block;
  color: var(--blue-deep);
  font-size: 1rem;
}

.section {
  padding-block: clamp(82px, 10vw, 132px);
}

.section-heading {
  display: grid;
  margin-bottom: 54px;
  align-items: end;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 80px;
}

.section-heading--narrow {
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
}

.section-heading h2,
.process-intro h2,
.area-copy h2,
.about-copy h2,
.contact-band h2 {
  margin: 0;
  color: var(--blue-deep);
  font-size: clamp(2.25rem, 4vw, 3.7rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.08;
}

.section-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

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

.service-card {
  position: relative;
  display: flex;
  min-height: 310px;
  padding: 30px;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 0 0 rgba(3, 47, 80, 0);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.service-card:hover {
  border-color: #aac8d8;
  box-shadow: var(--shadow-soft);
  transform: translateY(-4px);
}

.service-card--featured {
  color: var(--white);
  background: var(--blue-dark);
  border-color: var(--blue-dark);
}

.service-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 30px;
  place-items: center;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 16px 5px 16px 5px;
}

.service-card--featured .service-icon {
  color: var(--blue-deep);
  background: var(--orange);
}

.service-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
}

.card-label {
  position: absolute;
  top: 30px;
  right: 30px;
  margin: 0;
  color: #ffbd6d;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.service-card h3 {
  margin: 0 0 10px;
  color: var(--blue-deep);
  font-size: 1.3rem;
  line-height: 1.25;
}

.service-card--featured h3 {
  color: var(--white);
}

.service-card p:not(.card-label) {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.55;
}

.service-card--featured p:not(.card-label) {
  color: #d2e8f4;
}

.service-card a {
  display: flex;
  margin-top: auto;
  align-items: center;
  justify-content: space-between;
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

.service-card--featured a {
  color: #ffb65c;
}

.service-card a span {
  font-size: 1.2rem;
  transition: transform 160ms ease;
}

.service-card a:hover span {
  transform: translateX(5px);
}

.toothed-divider {
  --tooth-size: clamp(36px, 3.4vw, 48px);
  position: relative;
  z-index: 2;
  height: clamp(15px, 1.65vw, 22px);
  margin-bottom: -1px;
  background: var(--blue-deep);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 44 20'%3E%3Cpath d='M0 20H6L11 3H33L38 20H44V20H0Z' fill='black'/%3E%3C/svg%3E");
  mask-position: left bottom;
  mask-repeat: repeat-x;
  mask-size: var(--tooth-size) 100%;
  pointer-events: none;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 44 20'%3E%3Cpath d='M0 20H6L11 3H33L38 20H44V20H0Z' fill='black'/%3E%3C/svg%3E");
  -webkit-mask-position: left bottom;
  -webkit-mask-repeat: repeat-x;
  -webkit-mask-size: var(--tooth-size) 100%;
}

.toothed-divider--reverse {
  margin-top: -1px;
  margin-bottom: 0;
  transform: scaleY(-1);
}

.process {
  position: relative;
  overflow: clip;
  color: var(--white);
  background: var(--blue-deep);
}

.process::before {
  position: absolute;
  top: 50%;
  right: -190px;
  width: 520px;
  height: 520px;
  content: "";
  border: 70px solid rgba(239, 135, 12, 0.75);
  border-radius: 50%;
  transform: translateY(-50%);
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
  gap: clamp(70px, 10vw, 140px);
}

.process-intro {
  position: sticky;
  top: 130px;
  align-self: start;
}

.process-intro h2 {
  color: var(--white);
}

.process-intro > p:not(.eyebrow) {
  max-width: 540px;
  margin: 26px 0 32px;
  color: #cae3f1;
  font-size: 1.06rem;
}

.process-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  padding: 30px 0;
  align-items: start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  grid-template-columns: 70px 1fr;
  gap: 22px;
}

.process-list li:first-child {
  padding-top: 0;
}

.process-list > li > span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--blue-deep);
  background: var(--orange);
  border-radius: 50%;
  font-weight: 800;
}

.process-list h3 {
  margin: 3px 0 7px;
  color: var(--white);
  font-size: 1.28rem;
  line-height: 1.25;
}

.process-list p {
  margin: 0;
  color: #bfd9e7;
}

.pricing {
  background: var(--blue-pale);
}

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 18px;
}

.price-card {
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.price-card--main {
  display: grid;
  min-height: 430px;
  padding: clamp(34px, 5vw, 58px);
  align-content: space-between;
  color: var(--white);
  background: var(--blue);
  border: 0;
  border-radius: var(--radius-lg) 8px var(--radius-lg) 8px;
}

.price-side {
  display: grid;
  gap: 18px;
}

.price-card__label {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.price-card--main .price-card__label {
  color: #cde7f5;
}

.price {
  display: flex;
  margin: 0 0 20px;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 12px;
}

.price strong {
  color: inherit;
  font-size: clamp(3rem, 6vw, 5.3rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
}

.price span {
  color: inherit;
  font-weight: 700;
  opacity: 0.75;
}

.price--small strong {
  color: var(--blue-deep);
  font-size: clamp(2.15rem, 3.5vw, 3.2rem);
}

.price-card p:not(.price-card__label):not(.price) {
  margin: 0;
  color: var(--muted);
}

.price-card--main p:not(.price-card__label):not(.price) {
  max-width: 460px;
  color: #d7eaf4;
}

.price-card ul {
  display: grid;
  padding: 0;
  margin: 35px 0 0;
  gap: 10px;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 27px;
  font-weight: 700;
}

.price-card li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 14px;
  height: 7px;
  content: "";
  border-bottom: 3px solid var(--orange);
  border-left: 3px solid var(--orange);
  transform: rotate(-45deg);
}

.price-card--travel {
  background: var(--white);
}

.price-card--estimate {
  background: var(--blue-soft);
  border-color: #bad8e7;
}

.price-card--urgent {
  background: var(--orange-soft);
  border-color: #ffd8a4;
}

.price-card__topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.status-tag {
  display: inline-flex;
  min-height: 28px;
  padding: 4px 10px;
  align-items: center;
  color: #854200;
  background: #ffd99f;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  white-space: nowrap;
}

.payment-note {
  display: flex;
  margin: 26px 0 0;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.94rem;
  text-align: center;
}

.payment-note svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--blue);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.parts-note {
  max-width: 920px;
  padding: 18px 22px;
  margin: 24px auto 0;
  color: #6f3a00;
  background: #fff0d8;
  border: 1px solid #f5c986;
  border-radius: 14px;
  text-align: center;
}

.area-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(60px, 9vw, 120px);
}

.area-visual {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  background: linear-gradient(145deg, #dff1f8, #f8fcfe);
  border: 1px solid #c8dfe9;
  border-radius: 8px var(--radius-lg) 8px var(--radius-lg);
}

.area-gridlines {
  position: absolute;
  inset: 0;
  opacity: 0.7;
  background-image:
    linear-gradient(28deg, transparent 47%, rgba(19, 90, 134, 0.1) 48%, rgba(19, 90, 134, 0.1) 50%, transparent 51%),
    linear-gradient(118deg, transparent 47%, rgba(19, 90, 134, 0.08) 48%, rgba(19, 90, 134, 0.08) 50%, transparent 51%);
  background-size: 110px 110px, 140px 140px;
}

.area-visual::after {
  position: absolute;
  right: -85px;
  bottom: -85px;
  width: 260px;
  height: 260px;
  content: "";
  border: 35px solid rgba(239, 135, 12, 0.85);
  border-radius: 50%;
}

.area-label--region {
  position: absolute;
  top: 34px;
  left: 34px;
  color: var(--blue);
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  font-weight: 800;
  letter-spacing: 0;
}

.map-point {
  position: absolute;
  z-index: 2;
  display: grid;
  padding-left: 30px;
  color: var(--blue-deep);
  font-weight: 800;
  line-height: 1.3;
}

.map-point small {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
}

.map-point i {
  position: absolute;
  top: 3px;
  left: 0;
  width: 18px;
  height: 18px;
  background: var(--white);
  border: 5px solid var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(19, 90, 134, 0.13);
}

.map-point--start {
  top: 49%;
  left: 26%;
}

.map-point--start i {
  border-color: var(--orange);
  box-shadow: 0 0 0 6px rgba(239, 135, 12, 0.14);
}

.map-point--city {
  top: 28%;
  right: 22%;
}

.route-dash {
  position: absolute;
  top: 38%;
  left: 40%;
  width: 33%;
  height: 105px;
  border-top: 4px dashed var(--orange);
  border-radius: 50%;
  transform: rotate(-15deg);
}

.area-copy > p:not(.eyebrow) {
  margin: 25px 0 32px;
  color: var(--muted);
  font-size: 1.06rem;
}

.area-facts {
  display: grid;
  margin-bottom: 34px;
  border-top: 1px solid var(--line);
}

.area-facts > div {
  display: flex;
  padding: 15px 0;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}

.area-facts strong {
  color: var(--blue-deep);
}

.area-facts span {
  color: var(--muted);
  font-size: 0.9rem;
  text-align: right;
}

.about {
  background: var(--blue-pale);
}

.photo-story {
  padding-block: 0 38px;
  background: var(--white);
}

.photo-story__frame {
  position: relative;
  min-height: 430px;
  margin: 0;
  overflow: hidden;
  background: var(--blue-deep);
  border-radius: 8px var(--radius-lg) 8px var(--radius-lg);
  box-shadow: var(--shadow);
}

.photo-story__frame::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(3, 47, 80, 0.9) 0%, rgba(3, 47, 80, 0.42) 45%, transparent 72%);
}

.photo-story img {
  width: 100%;
  height: clamp(430px, 43vw, 560px);
  object-fit: cover;
  object-position: center;
}

.photo-story figcaption {
  position: absolute;
  z-index: 2;
  bottom: clamp(34px, 6vw, 70px);
  left: clamp(28px, 6vw, 72px);
  max-width: 610px;
  color: var(--white);
}

.photo-story h2 {
  margin: 10px 0 0;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.7rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.04;
}

.about-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(360px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(70px, 10vw, 140px);
}

.about-photo {
  position: relative;
  min-height: 520px;
  margin: 0;
  aspect-ratio: 4 / 5;
  filter: drop-shadow(0 26px 54px rgba(3, 47, 80, 0.2));
}

.about-photo::before {
  position: absolute;
  z-index: -1;
  inset: -14px 18px 18px -14px;
  content: "";
  background: var(--orange);
  border-radius: var(--radius-lg) 8px var(--radius-lg) 8px;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-lg) 8px var(--radius-lg) 8px;
}

.about-photo__badge {
  position: absolute;
  right: -30px;
  bottom: 28px;
  display: flex;
  min-height: 82px;
  padding: 8px 20px 8px 8px;
  align-items: center;
  gap: 13px;
  color: var(--white);
  background: var(--blue-deep);
  border: 4px solid var(--white);
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(3, 47, 80, 0.28);
}

.about-photo__badge strong {
  display: grid;
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--blue-deep);
  background: var(--orange);
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0;
}

.about-photo__badge span {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: uppercase;
}

.about-lead {
  margin: 25px 0 18px;
  color: var(--blue-dark);
  font-size: 1.22rem;
  font-weight: 700;
  line-height: 1.55;
}

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

.about-copy blockquote {
  position: relative;
  padding: 18px 0 18px 24px;
  margin: 30px 0 0;
  color: var(--blue-deep);
  border-left: 5px solid var(--orange);
  font-size: 1.42rem;
  font-weight: 800;
  line-height: 1.35;
}

.testimonials {
  position: relative;
  overflow: clip;
  background: var(--white);
}

.testimonials::before {
  position: absolute;
  top: 54px;
  right: -92px;
  width: 220px;
  height: 220px;
  content: "";
  border: 34px solid rgba(239, 135, 12, 0.1);
  border-radius: 50%;
}

.testimonials-heading {
  position: relative;
  align-items: end;
}

.testimonials-social-intro {
  max-width: 500px;
}

.testimonials-social-intro > p {
  margin: 0 0 20px;
  color: var(--muted);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-link {
  display: inline-flex;
  min-height: 48px;
  padding: 10px 18px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--white);
  background: var(--blue);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  transition: background 160ms ease, transform 160ms ease;
}

.social-link:hover {
  background: var(--blue-deep);
  transform: translateY(-2px);
}

.social-link--instagram {
  background: var(--orange);
}

.social-link--instagram:hover {
  background: #d87300;
}

.social-link svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.social-link--instagram svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.social-link--instagram .social-link__dot {
  fill: currentColor;
  stroke: none;
}

.testimonials-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.testimonial-card {
  display: flex;
  min-height: 330px;
  padding: clamp(28px, 3vw, 40px);
  flex-direction: column;
  background: var(--blue-pale);
  border: 1px solid var(--line);
  border-radius: 8px var(--radius-lg) 8px var(--radius-lg);
  box-shadow: 0 16px 38px rgba(3, 47, 80, 0.08);
}

.testimonial-card--accent {
  color: var(--white);
  background: var(--blue-deep);
  border-color: var(--blue-deep);
  transform: translateY(-14px);
}

.review-stars {
  color: var(--orange);
  font-size: 1.05rem;
  letter-spacing: 0;
}

.testimonial-card blockquote {
  margin: 24px 0 34px;
  color: var(--blue-dark);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.65;
}

.testimonial-card--accent blockquote {
  color: var(--white);
}

.testimonial-card footer {
  display: flex;
  margin-top: auto;
  align-items: center;
  gap: 13px;
}

.testimonial-card footer > span {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 900;
}

.testimonial-card--accent footer > span {
  color: var(--blue-deep);
  background: var(--orange);
}

.testimonial-card footer p {
  display: grid;
  margin: 0;
  gap: 2px;
}

.testimonial-card footer strong {
  color: var(--blue-deep);
  font-size: 0.94rem;
}

.testimonial-card--accent footer strong {
  color: var(--white);
}

.testimonial-card footer small {
  color: var(--muted);
  font-size: 0.8rem;
}

.testimonial-card--accent footer small {
  color: #bcd8e7;
}

.contact-band {
  position: relative;
  overflow: clip;
  padding-block: 76px;
  color: var(--white);
  background: var(--blue);
}

.contact-band__inner {
  position: relative;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 90px;
}

.contact-band h2 {
  color: var(--white);
}

.contact-band p:not(.eyebrow) {
  max-width: 660px;
  margin: 18px 0 0;
  color: #d6eaf5;
}

.contact-actions {
  display: grid;
  min-width: 300px;
  gap: 12px;
}

.contact-phone {
  display: grid;
  color: var(--white);
  line-height: 1.2;
  text-decoration: none;
}

.contact-phone span {
  color: #d5eaf5;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contact-phone strong {
  margin-top: 4px;
  color: #ffad46;
  font-size: 2rem;
  letter-spacing: 0;
}

.contact-secondary {
  color: #d6eaf5;
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
  text-underline-offset: 4px;
}

.site-footer {
  padding: 65px 0 28px;
  color: #aecbd9;
  background: var(--blue-deep);
}

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

.footer-brand img {
  width: 190px;
  height: auto;
  margin: -8px 0 18px;
  background: var(--white);
  border-radius: 6px;
}

.footer-brand p {
  max-width: 280px;
  margin: 0;
  font-size: 0.92rem;
}

.footer-grid h2 {
  margin: 0 0 17px;
  color: var(--white);
  font-size: 0.88rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-grid a,
.footer-grid > div > span {
  display: block;
  margin: 8px 0;
  color: #aecbd9;
  font-size: 0.9rem;
  text-decoration: none;
}

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

.footer-bottom {
  display: flex;
  padding-top: 28px;
  margin-top: 44px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #8fb2c4;
  font-size: 0.8rem;
}

.mobile-actions {
  display: none;
}

/* Booking */
.booking-page {
  min-height: 100vh;
  background: var(--blue-pale);
}

.booking-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.booking-header__inner {
  display: grid;
  min-height: 86px;
  align-items: center;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
}

.booking-header .brand {
  width: 176px;
}

.back-link {
  color: var(--blue-dark);
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
}

.back-link span {
  margin-right: 6px;
  transition: transform 160ms ease;
}

.back-link:hover span {
  display: inline-block;
  transform: translateX(-4px);
}

.booking-help {
  display: grid;
  justify-self: end;
  line-height: 1.2;
  text-align: right;
  text-decoration: none;
}

.booking-help span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.booking-help strong {
  color: var(--blue-dark);
  font-size: 1rem;
}

.booking-main {
  padding-block: 64px 92px;
}

.booking-shell {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 34px;
}

.booking-form-panel {
  padding: clamp(30px, 5vw, 58px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px var(--radius-lg) 8px var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.booking-form-panel > h1 {
  margin: 0;
  color: var(--blue-deep);
  font-size: clamp(2.35rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.05;
}

.booking-intro {
  max-width: 700px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.prototype-notice {
  display: flex;
  padding: 14px 16px;
  margin-top: 26px;
  align-items: flex-start;
  gap: 12px;
  color: #5d4a2e;
  background: #fff7e8;
  border: 1px solid #ffe0ad;
  border-radius: 10px;
  font-size: 0.88rem;
  line-height: 1.45;
}

.prototype-notice svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--orange-dark);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.stepper {
  display: grid;
  padding: 0 0 24px;
  margin: 40px 0 38px;
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
}

.stepper li {
  position: relative;
  display: grid;
  align-items: center;
  color: #8097a4;
  grid-template-columns: 34px 1fr;
  gap: 10px;
}

.stepper li:not(:last-child)::after {
  position: absolute;
  z-index: 0;
  top: 16px;
  left: 44px;
  width: calc(100% - 52px);
  height: 2px;
  content: "";
  background: var(--line);
}

.stepper li.is-complete::after {
  background: var(--orange);
}

.stepper li > span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #6d8694;
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 800;
}

.stepper li.is-active,
.stepper li.is-complete {
  color: var(--blue-deep);
}

.stepper li.is-active > span {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}

.stepper li.is-complete > span {
  color: var(--blue-deep);
  background: var(--orange);
  border-color: var(--orange);
}

.stepper small {
  max-width: 105px;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
}

.booking-step {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

.booking-step[hidden],
.booking-success[hidden] {
  display: none;
}

.booking-step > legend {
  padding: 0;
  color: var(--blue-deep);
  font-size: clamp(1.45rem, 3vw, 1.9rem);
  font-weight: 800;
  line-height: 1.25;
}

.field-help {
  margin: 8px 0 26px;
  color: var(--muted);
}

.service-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.choice-card {
  position: relative;
  display: grid;
  min-height: 108px;
  padding: 20px 48px 20px 20px;
  align-content: center;
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: 14px;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.choice-card:hover {
  border-color: #8eb5c9;
  transform: translateY(-2px);
}

.choice-card:has(input:focus-visible) {
  outline: 3px solid #ffb84a;
  outline-offset: 3px;
}

.choice-card:has(input:checked) {
  background: var(--blue-soft);
  border-color: var(--blue);
}

.choice-card input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.choice-card--wide {
  min-height: 96px;
  grid-column: 1 / -1;
}

.choice-card__check {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 22px;
  height: 22px;
  background: var(--white);
  border: 2px solid #b8ccd8;
  border-radius: 50%;
}

.choice-card input:checked + .choice-card__check {
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: inset 0 0 0 5px var(--white);
}

.choice-card strong {
  color: var(--blue-deep);
  font-size: 1rem;
  line-height: 1.3;
}

.choice-card small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.3;
}

.form-grid {
  display: grid;
  margin-top: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-grid--location {
  grid-template-columns: minmax(140px, 0.35fr) minmax(0, 0.65fr);
}

.form-field {
  display: grid;
  margin-top: 24px;
  gap: 8px;
}

.form-grid .form-field {
  margin-top: 0;
}

.form-field > span {
  color: var(--blue-deep);
  font-size: 0.9rem;
  font-weight: 800;
}

.form-field > span small,
.form-field > small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--white);
  border: 2px solid #c6d8e2;
  border-radius: 10px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.form-field textarea {
  min-height: 120px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(19, 90, 134, 0.12);
}

.form-field input[aria-invalid="true"],
.form-field select[aria-invalid="true"],
.form-field textarea[aria-invalid="true"] {
  border-color: #b72f2f;
  background: #fff8f8;
}

.availability-card {
  display: flex;
  padding: 18px;
  margin-top: 24px;
  align-items: flex-start;
  gap: 14px;
  color: var(--blue-dark);
  background: var(--blue-soft);
  border-radius: 12px;
}

.availability-card svg {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--orange-dark);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.availability-card div {
  display: grid;
  gap: 3px;
}

.availability-card span {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.4;
}

.check-field {
  display: flex;
  padding: 16px;
  margin-top: 24px;
  align-items: flex-start;
  gap: 12px;
  background: #fff9ef;
  border: 1px solid #ffe0ad;
  border-radius: 12px;
  cursor: pointer;
}

.check-field input {
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  flex: 0 0 auto;
  accent-color: var(--blue);
}

.check-field > span {
  display: grid;
  color: var(--blue-deep);
  gap: 2px;
}

.check-field small {
  color: var(--muted);
  font-size: 0.82rem;
}

.check-field--consent {
  background: var(--blue-pale);
  border-color: var(--line);
  font-size: 0.88rem;
}

.contact-choice {
  display: flex;
  padding: 0;
  margin: 26px 0 0;
  flex-wrap: wrap;
  border: 0;
  gap: 12px;
}

.contact-choice legend {
  width: 100%;
  margin-bottom: 8px;
  color: var(--blue-deep);
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-choice label {
  display: inline-flex;
  min-height: 44px;
  padding: 9px 14px;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
}

.contact-choice input {
  width: 18px;
  height: 18px;
  accent-color: var(--blue);
}

.form-error {
  min-height: 1.4em;
  margin: 14px 0 0;
  color: #a52828;
  font-size: 0.86rem;
  font-weight: 700;
}

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

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

.booking-summary {
  position: sticky;
  top: 28px;
}

.booking-summary__inner {
  overflow: hidden;
  color: var(--white);
  background: var(--blue-deep);
  border-radius: var(--radius) 6px var(--radius) 6px;
  box-shadow: var(--shadow-soft);
}

.booking-summary__inner::before {
  display: block;
  width: 100%;
  height: 10px;
  content: "";
  background: var(--orange);
}

.summary-kicker {
  padding: 28px 28px 0;
  margin: 0;
  color: #9fc6d9;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.booking-summary h2 {
  padding: 0 28px;
  margin: 5px 0 24px;
  font-size: 1.7rem;
}

.booking-summary dl {
  padding: 0 28px;
  margin: 0;
}

.booking-summary dl > div {
  padding: 13px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.booking-summary dt {
  color: #9fc6d9;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
}

.booking-summary dd {
  margin: 2px 0 0;
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 700;
}

.summary-price {
  padding: 20px 28px;
  margin-top: 14px;
  color: var(--blue-deep);
  background: var(--orange);
}

.summary-price > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.summary-price > div + div {
  margin-top: 7px;
}

.summary-price span {
  font-size: 0.82rem;
  font-weight: 700;
}

.summary-price strong {
  font-size: 0.95rem;
}

.summary-note {
  padding: 20px 28px;
  margin: 0;
  color: #bfd9e7;
  font-size: 0.8rem;
  line-height: 1.45;
}

.summary-contact {
  display: grid;
  padding: 18px 28px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.summary-contact span {
  color: #9fc6d9;
  font-size: 0.76rem;
  font-weight: 700;
}

.summary-contact a {
  color: #ffad46;
  font-size: 1.25rem;
  font-weight: 800;
  text-decoration: none;
}

.booking-success {
  padding: 30px 0 6px;
}

.success-icon {
  display: grid;
  width: 68px;
  height: 68px;
  margin-bottom: 26px;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  border: 8px solid var(--blue-soft);
  border-radius: 50%;
}

.success-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.booking-success h2 {
  margin: 0;
  color: var(--blue-deep);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0;
  line-height: 1.1;
}

.booking-success > p:not(.eyebrow) {
  max-width: 650px;
  color: var(--muted);
}

.success-summary {
  display: grid;
  padding: 20px;
  margin: 28px 0;
  background: var(--blue-pale);
  border-left: 5px solid var(--orange);
  border-radius: 10px;
  gap: 5px;
}

.success-summary strong {
  color: var(--blue-deep);
}

.success-summary span {
  color: var(--muted);
}

.success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.booking-footer {
  padding: 24px 0;
  color: #8cacbd;
  background: var(--blue-deep);
  font-size: 0.8rem;
}

.booking-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

@media (max-width: 1280px) {
  .header-inner {
    gap: 18px;
  }

  .brand {
    width: 164px;
  }

  .main-nav {
    gap: 10px;
  }

  .main-nav > a:not(.button) {
    font-size: 0.82rem;
  }

  .main-nav .button--small {
    min-height: 42px;
    padding: 9px 12px;
    font-size: 0.8rem;
  }

  .language-switcher {
    padding-left: 4px;
  }
}

@media (max-width: 1080px) {
  .main-nav {
    gap: 9px;
  }

  .main-nav > a:not(.button) {
    font-size: 0.79rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
    gap: 45px;
  }

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

  .booking-shell {
    grid-template-columns: minmax(0, 1fr) 315px;
  }
}

@media (max-width: 900px) {
  .service-strip__inner {
    justify-content: space-between;
    gap: 10px;
  }

  .service-strip span + span::before {
    display: none;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .main-nav {
    position: absolute;
    z-index: 90;
    top: 100%;
    right: 0;
    left: 0;
    display: flex;
    height: calc(100dvh - 82px);
    padding: 34px 20px 90px;
    flex-direction: column;
    align-items: stretch;
    background: rgba(255, 255, 255, 0.99);
    opacity: 0;
    overflow-y: auto;
    pointer-events: none;
    transform: translateY(-16px);
    transition: opacity 170ms ease, transform 170ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav > a:not(.button) {
    display: flex;
    min-height: 52px;
    align-items: center;
    border-bottom: 1px solid var(--line);
    font-size: 1.05rem;
  }

  .main-nav .button {
    margin-top: 12px;
  }

  .language-switcher {
    padding: 12px 0;
    justify-content: flex-start;
    gap: 8px;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .language-switcher a {
    min-width: 42px;
    height: 36px;
    font-size: 0.82rem;
  }

  .hero-grid {
    min-height: 0;
    padding-block: 72px;
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .hero-copy {
    max-width: 750px;
  }

  .hero-panel {
    min-height: 0;
  }

  .quick-answers__grid {
    grid-template-columns: 1fr;
  }

  .quick-answers__grid > div {
    min-height: 90px;
  }

  .quick-answers__grid > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section-heading,
  .section-heading--narrow {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .process-intro {
    position: static;
  }

  .pricing-layout,
  .area-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

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

  .testimonial-card--accent {
    transform: none;
  }

  .area-copy {
    order: -1;
  }

  .about-photo {
    min-height: 400px;
    justify-self: center;
    width: min(100%, 620px);
  }

  .contact-band__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-actions {
    max-width: 380px;
  }

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

  .footer-grid > div:last-child {
    grid-column: 2 / -1;
  }

  .booking-shell {
    grid-template-columns: 1fr;
  }

  .booking-summary {
    position: static;
  }

  .booking-summary dl {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 24px;
  }
}

@media (max-width: 680px) {
  html {
    scroll-padding-top: 84px;
  }

  body:not(.booking-page) {
    padding-bottom: 70px;
  }

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

  .service-strip {
    display: none;
  }

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

  .brand {
    width: 154px;
  }

  .main-nav {
    top: 100%;
    height: calc(100dvh - 74px);
  }

  .hero-grid {
    padding-block: 56px 64px;
  }

  .hero-copy h1 {
    font-size: clamp(2.75rem, 13vw, 4rem);
  }

  .hero-lead {
    margin-top: 22px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .text-link {
    text-align: center;
  }

  .hero-panel {
    padding: 32px 26px;
    border-radius: 30px 8px 30px 8px;
  }

  .three-p > div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .price-peek {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .quick-answers__grid > div {
    padding: 20px 12px;
  }

  .section {
    padding-block: 76px;
  }

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

  .section-heading h2,
  .process-intro h2,
  .area-copy h2,
  .about-copy h2,
  .contact-band h2 {
    font-size: clamp(2.1rem, 10vw, 3rem);
  }

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

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

  .process::before {
    right: -130px;
    width: 330px;
    height: 330px;
    border-width: 45px;
  }

  .process-list li {
    grid-template-columns: 50px 1fr;
    gap: 14px;
  }

  .process-list > li > span {
    width: 44px;
    height: 44px;
  }

  .price-card--main {
    min-height: 390px;
  }

  .price-card,
  .price-card--main {
    padding: 28px 24px;
  }

  .price strong {
    font-size: 3.65rem;
  }

  .price--small strong {
    font-size: 2.45rem;
  }

  .payment-note {
    align-items: flex-start;
    text-align: left;
  }

  .area-visual {
    min-height: 400px;
  }

  .map-point--start {
    left: 14%;
  }

  .map-point--city {
    right: 10%;
  }

  .photo-story {
    padding-bottom: 12px;
  }

  .photo-story__frame,
  .photo-story img {
    min-height: 470px;
    height: 470px;
  }

  .photo-story img {
    object-position: 58% center;
  }

  .photo-story__frame::after {
    background: linear-gradient(0deg, rgba(3, 47, 80, 0.92) 0%, rgba(3, 47, 80, 0.25) 62%, transparent 88%);
  }

  .photo-story figcaption {
    right: 24px;
    bottom: 28px;
    left: 24px;
  }

  .about-grid {
    gap: 52px;
  }

  .about-photo {
    min-height: 350px;
  }

  .about-photo__badge {
    right: 12px;
    bottom: 18px;
  }

  .testimonial-card {
    min-height: 0;
    padding: 28px 24px;
  }

  .social-link {
    flex: 1 1 145px;
  }

  .contact-band {
    padding-block: 68px;
  }

  .contact-actions {
    min-width: 0;
  }

  .contact-phone strong {
    font-size: 1.75rem;
  }

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

  .footer-brand,
  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }

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

  .mobile-actions {
    position: fixed;
    z-index: 120;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    min-height: 66px;
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.97);
    border-top: 1px solid var(--line);
    box-shadow: 0 -8px 26px rgba(3, 47, 80, 0.12);
    grid-template-columns: 0.72fr 1.28fr;
    gap: 8px;
  }

  .mobile-actions a {
    display: flex;
    min-height: 48px;
    padding: 10px 14px;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: var(--blue-deep);
    background: var(--blue-soft);
    border-radius: 9px;
    font-size: 0.88rem;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
  }

  .mobile-actions a:last-child {
    color: var(--white);
    background: var(--orange);
  }

  .mobile-actions svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
  }

  .booking-header__inner {
    min-height: 76px;
    grid-template-columns: 1fr auto;
  }

  .booking-header .brand {
    width: 150px;
  }

  .back-link {
    justify-self: end;
  }

  .booking-help {
    display: none;
  }

  .booking-main {
    padding-block: 28px 54px;
  }

  .booking-form-panel {
    padding: 28px 20px 32px;
  }

  .booking-intro {
    font-size: 0.96rem;
  }

  .stepper {
    margin: 32px 0;
  }

  .stepper li {
    display: grid;
    justify-items: start;
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .stepper li:not(:last-child)::after {
    left: 38px;
    width: calc(100% - 46px);
  }

  .stepper small {
    font-size: 0.7rem;
  }

  .service-options,
  .form-grid,
  .form-grid--location {
    grid-template-columns: 1fr;
  }

  .choice-card {
    min-height: 94px;
  }

  .step-actions,
  .step-actions--end {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .step-actions .button {
    width: 100%;
  }

  .booking-summary dl {
    grid-template-columns: 1fr;
  }

  .success-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .booking-footer .container {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }
}

@media (max-width: 390px) {
  .hero-copy h1 {
    font-size: 2.65rem;
  }

  .hero-copy h1 em {
    white-space: normal;
  }

  .contact-phone strong {
    font-size: 1.55rem;
  }

  .price-card__topline {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* WordPress block-theme integration. */
.wp-site-blocks {
  padding: 0;
}

.wp-site-blocks > *,
.wp-block-post-content > * {
  margin-block-start: 0;
}

.bicyfix-main,
.bicyfix-main > .wp-block-post-content {
  width: 100%;
  max-width: none !important;
  padding-inline: 0 !important;
  margin: 0 !important;
}

.bicyfix-home > .wp-block-post-content > * {
  width: 100%;
  max-width: none !important;
  margin-inline: 0 !important;
}

.bicyfix-booking-page {
  min-height: 60vh;
  background: var(--blue-pale);
}

.bicyfix-booking-page > .wp-block-post-content,
.bicyfix-booking-page > .wp-block-post-content > * {
  width: 100%;
  max-width: none !important;
  padding-inline: 0 !important;
  margin-inline: 0 !important;
}

.bicyfix-reservation__shell > * {
  margin-block-start: 0 !important;
}

.bicyfix-reservation .booking-form-panel > .eyebrow {
  margin-top: 0;
}

.bicyfix-reservation .bicyfix-reservation__title {
  margin: 0;
  color: var(--blue-deep);
  font-size: clamp(2.35rem, 5vw, 4rem);
  line-height: 1.05;
}

.bicyfix-reservation .bicyfix-booking {
  padding: 30px 0 0;
  margin-top: 34px;
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}

.bicyfix-reservation .bicyfix-booking__eyebrow {
  display: none;
}

.bicyfix-reservation .bicyfix-booking h2 {
  font-size: clamp(1.55rem, 3vw, 2rem);
  line-height: 1.15;
}

.bicyfix-reservation .bicyfix-booking__intro > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.bicyfix-reservation .bicyfix-booking__pending {
  padding: 18px 20px;
  margin: 24px 0 18px;
  color: var(--blue-deep);
  background: var(--blue-soft);
  border-left: 5px solid var(--orange);
  border-radius: 8px;
}

.bicyfix-reservation .bicyfix-booking > .wp-element-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.bicyfix-reservation__help {
  padding-top: 30px;
  margin-top: 34px;
  border-top: 1px solid var(--line);
}

.bicyfix-reservation__help h2 {
  margin: 0;
  color: var(--blue-deep);
  font-size: 1.45rem;
}

.bicyfix-reservation__help > p {
  margin: 8px 0 20px;
  color: var(--muted);
}

.bicyfix-reservation__steps {
  padding: 0 28px;
  margin: 0;
  list-style: none;
}

.bicyfix-reservation__steps li {
  display: grid;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  grid-template-columns: 32px 1fr;
  gap: 12px;
}

.bicyfix-reservation__steps li > span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--blue-deep);
  background: var(--orange);
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 800;
}

.bicyfix-reservation__steps strong,
.bicyfix-reservation__steps small {
  display: block;
}

.bicyfix-reservation__steps strong {
  color: var(--white);
  font-size: 0.9rem;
}

.bicyfix-reservation__steps small {
  margin-top: 3px;
  color: #bfd9e7;
  font-size: 0.78rem;
  line-height: 1.4;
}

@media (max-width: 680px) {
  body:has(.bicyfix-booking-page) {
    padding-bottom: 0;
  }

  body:has(.bicyfix-booking-page) .mobile-actions {
    display: none;
  }

  .bicyfix-reservation .bicyfix-reservation__title {
    font-size: 2.35rem;
  }

  .bicyfix-reservation .bicyfix-booking {
    padding-top: 24px;
    margin-top: 28px;
  }

  .bicyfix-reservation .bicyfix-booking > .wp-element-button {
    width: 100%;
    text-align: center;
  }
}

.wp-block-template-part {
  margin: 0;
}

body.admin-bar .site-header {
  top: 32px;
}

.testimonials-grid--pending .testimonial-card h3 {
  margin: 16px 0 12px;
  color: var(--blue-deep);
  font-size: 1.32rem;
  line-height: 1.25;
}

.testimonials-grid--pending .testimonial-card--accent h3,
.testimonials-grid--pending .testimonial-card--accent p {
  color: var(--white);
}

.bicyfix-page {
  min-height: 60vh;
  background: var(--blue-pale);
}

.bicyfix-page__header {
  width: min(calc(100% - 40px), var(--container));
  padding: 72px 0 34px;
  margin: 0 auto;
}

.bicyfix-page__header h1 {
  max-width: 900px;
  margin: 0;
  color: var(--blue-deep);
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 1.02;
}

.bicyfix-page > .wp-block-post-content {
  width: min(calc(100% - 40px), 920px);
  padding: 0 0 88px;
  margin: 0 auto;
}

.bicyfix-page > .wp-block-post-content > :where(h2, h3) {
  color: var(--blue-deep);
}

.bicyfix-page > .wp-block-post-content > h2 {
  margin-top: 56px;
}

.bicyfix-page .bicyfix-lead {
  color: var(--blue-dark);
  font-size: 1.2rem;
  font-weight: 700;
}

.bicyfix-page .bicyfix-card {
  height: 100%;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.bicyfix-page .bicyfix-price {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
}

.bicyfix-page .wp-block-button__link,
.bicyfix-page .wp-element-button {
  min-height: 50px;
  padding: 13px 23px;
  color: var(--white);
  background: var(--orange);
  border: 2px solid var(--orange);
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }

  .bicyfix-page__header {
    padding-top: 48px;
  }

  .bicyfix-page > .wp-block-post-content {
    padding-bottom: 112px;
  }
}
