:root {
  color-scheme: light;
  --ink: #111316;
  --muted: #667085;
  --line: rgba(17, 19, 22, 0.12);
  --panel: rgba(255, 255, 255, 0.82);
  --panel-strong: rgba(255, 255, 255, 0.94);
  --accent: #0f766e;
  --accent-strong: #0b5f59;
  --warm: #f5b45b;
  --shadow: 0 24px 70px rgba(15, 24, 31, 0.22);
  --radius: 8px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: #f7f7f4;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #f7f7f4 0%, #eef4f1 52%, #f7f7f4 100%);
}

button,
input,
select {
  max-width: 100%;
  min-width: 0;
  font: inherit;
}

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

.app-shell {
  min-height: 100vh;
}

.hero {
  --parallax-x: 0px;
  --parallax-y: 0px;
  position: relative;
  min-height: clamp(650px, 82vh, 800px);
  overflow: hidden;
  isolation: isolate;
}

.hero__image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
  transform: translate3d(var(--parallax-x), var(--parallax-y), 0) scale(1.025);
  transition: transform 0.45s ease-out;
  will-change: transform;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(247, 247, 244, 0.76) 0%, rgba(247, 247, 244, 0.46) 34%, rgba(247, 247, 244, 0.08) 72%, rgba(247, 247, 244, 0) 100%),
    linear-gradient(180deg, rgba(247, 247, 244, 0.18) 0%, rgba(247, 247, 244, 0.04) 58%, rgba(247, 247, 244, 0.72) 100%),
    radial-gradient(circle at 22% 44%, rgba(255, 255, 255, 0.52) 0%, rgba(255, 255, 255, 0.22) 32%, rgba(255, 255, 255, 0) 58%);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 22px 0;
}

.topbar__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.brand,
.topbar__icon-link,
.language-menu__button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.54);
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 28px rgba(15, 24, 31, 0.08);
}

.brand {
  padding: 6px 13px 6px 6px;
  border-radius: 999px;
  font-weight: 700;
}

.brand__mark {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 30px;
  min-width: 30px;
  height: 30px;
  aspect-ratio: 1;
  border-radius: 50%;
  color: white;
  background: var(--ink);
  font-size: 0.72rem;
  letter-spacing: 0;
}

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

.topbar__icon-link {
  justify-content: center;
  min-width: 118px;
  border-radius: 999px;
  padding: 0 16px;
  font-weight: 650;
}

.topbar__icon-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.topbar__icon-link--whatsapp {
  color: white;
  background: rgba(25, 135, 84, 0.86);
}

.topbar__icon-link--telegram {
  background: rgba(230, 247, 255, 0.72);
}

.language-menu {
  position: relative;
  flex: 0 0 auto;
}

.language-menu__button {
  justify-content: center;
  min-width: 66px;
  border-radius: 999px;
  padding: 0 12px;
  border: 0;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

.language-menu__button svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  transition: transform 0.18s ease;
}

.language-menu.is-open .language-menu__button svg {
  transform: rotate(180deg);
}

.language-menu__list {
  position: absolute;
  top: calc(100% + 7px);
  right: 0;
  z-index: 20;
  display: grid;
  gap: 4px;
  min-width: 82px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 16px;
  padding: 5px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  box-shadow: 0 18px 42px rgba(15, 24, 31, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-5px);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}

.language-menu.is-open .language-menu__list {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.language-menu__option {
  border-radius: 999px;
  border: 0;
  padding: 9px 12px;
  color: var(--muted);
  background: transparent;
  font-weight: 760;
  text-align: center;
  cursor: pointer;
  transition:
    background 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease;
}

.language-menu__option.is-active {
  color: white;
  background: var(--ink);
}

.hero__content {
  display: grid;
  grid-template-columns: minmax(320px, 455px) minmax(340px, 1fr);
  grid-template-rows: auto auto;
  align-content: start;
  align-items: start;
  column-gap: clamp(34px, 7vw, 110px);
  row-gap: 24px;
  width: min(1180px, calc(100% - 40px));
  min-height: calc(clamp(650px, 82vh, 800px) - 86px);
  margin: 0 auto;
  padding: 44px 0 48px;
}

.hero__copy {
  grid-column: 1;
  max-width: 600px;
  text-shadow: 0 2px 18px rgba(255, 255, 255, 0.55);
  animation: softRise 0.72s ease both;
}

.eyebrow,
.booking__kicker {
  margin: 0 0 12px;
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 590px;
  margin-bottom: 14px;
  font-size: clamp(3.25rem, 5.5vw, 5.6rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.45),
    0 18px 44px rgba(255, 255, 255, 0.5),
    0 18px 60px rgba(17, 19, 22, 0.16);
}

.hero__lead {
  max-width: 490px;
  margin-bottom: 0;
  color: #30363d;
  font-size: clamp(1.02rem, 1.45vw, 1.22rem);
  line-height: 1.45;
  white-space: normal;
}

.booking {
  grid-column: 1;
  width: min(100%, 455px);
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 22px;
  padding: clamp(16px, 2.3vw, 23px);
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(22px) saturate(1.3);
  box-shadow: 0 22px 56px rgba(15, 24, 31, 0.16);
  animation: softRise 0.72s ease 0.08s both;
}

.booking__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.booking h2 {
  margin-bottom: 0;
  font-size: 1.72rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.icon-button {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
  cursor: pointer;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 12px;
}

.field-grid--triple {
  grid-template-columns: 1.15fr 0.92fr 0.85fr;
}

.field {
  display: grid;
  gap: 8px;
}

.place-field {
  position: relative;
}

.field span,
.summary__label {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 680;
}

.field input,
.field select {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 13px;
  appearance: none;
  color: var(--ink);
  background: var(--panel-strong);
  outline: none;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

.place-results {
  position: absolute;
  top: calc(100% + 7px);
  right: 0;
  left: 0;
  z-index: 30;
  display: grid;
  gap: 4px;
  max-height: 248px;
  border: 1px solid rgba(17, 19, 22, 0.1);
  border-radius: 14px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  box-shadow: 0 18px 42px rgba(15, 24, 31, 0.16);
  overflow: auto;
}

.place-results[hidden] {
  display: none;
}

.place-result {
  display: grid;
  gap: 3px;
  width: 100%;
  border: 0;
  border-radius: 10px;
  padding: 10px;
  color: var(--ink);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.place-result:hover,
.place-result:focus-visible {
  background: rgba(15, 118, 110, 0.09);
}

.place-result strong {
  font-size: 0.92rem;
  line-height: 1.2;
}

.place-result span,
.place-results__empty {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.28;
}

.place-results__empty {
  padding: 10px;
}

.quick-place-groups {
  display: grid;
  gap: 8px;
  margin: -2px 0 12px;
}

.quick-place-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.quick-place {
  min-height: 34px;
  border: 1px solid rgba(17, 19, 22, 0.1);
  border-radius: 999px;
  padding: 0 12px;
  color: #30363d;
  background: rgba(255, 255, 255, 0.74);
  font-size: 0.82rem;
  font-weight: 720;
  cursor: pointer;
  transition:
    background 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease;
}

.quick-place:hover,
.quick-place:focus-visible,
.quick-place.is-active {
  border-color: rgba(15, 118, 110, 0.32);
  color: var(--accent-strong);
  background: rgba(15, 118, 110, 0.1);
}

.passenger-options {
  display: grid;
  gap: 8px;
  margin: -2px 0 12px;
}

.passenger-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 8px 10px 8px 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.74);
}

.passenger-option--button {
  width: 100%;
  cursor: pointer;
}

.passenger-option span {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.passenger-option small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.25;
}

.passenger-option strong {
  font-size: 0.92rem;
}

.stepper {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.stepper strong {
  display: grid;
  place-items: center;
  min-width: 42px;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  font-size: 1rem;
}

.stepper__button {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: rgba(17, 19, 22, 0.08);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.stepper__button:disabled {
  color: rgba(17, 19, 22, 0.22);
  cursor: default;
}

.child-sheet[hidden] {
  display: none;
}

.child-sheet {
  position: fixed;
  inset: 0;
  z-index: 80;
}

.child-sheet__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 19, 22, 0.42);
}

.child-sheet__panel {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  gap: 18px;
  max-width: 620px;
  margin: 0 auto;
  border-radius: 26px 26px 0 0;
  padding: 12px 18px calc(18px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 -24px 70px rgba(15, 24, 31, 0.2);
}

.child-sheet__handle {
  width: 70px;
  height: 5px;
  border-radius: 999px;
  margin: 0 auto;
  background: rgba(17, 19, 22, 0.12);
}

.child-sheet__head,
.child-seat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.child-sheet__head h2 {
  margin: 0;
}

.child-sheet__close {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(17, 19, 22, 0.06);
  font-size: 2rem;
  line-height: 1;
}

.child-seat-list {
  display: grid;
  gap: 12px;
}

.child-seat-row {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
}

.child-seat-row__icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  color: var(--accent-strong);
  background: rgba(15, 118, 110, 0.1);
  font-size: 0.78rem;
  font-weight: 800;
}

.child-seat-row div:nth-child(2) {
  flex: 1 1 auto;
  min-width: 0;
}

.child-seat-row h3 {
  margin-bottom: 2px;
  font-size: 1.04rem;
}

.child-seat-row p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.3;
}

.child-sheet__done {
  min-height: 52px;
  border: 0;
  border-radius: var(--radius);
  color: white;
  background: #19b84b;
  font-weight: 800;
  font-size: 1rem;
}

.date-picker {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-strong);
  overflow: hidden;
}

.date-picker input {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 0;
  border: 0;
  opacity: 0;
  cursor: pointer;
}

.date-picker__value {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 48px;
  padding: 0 13px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
}

.field input:focus,
.field select:focus,
.date-picker:focus-within {
  border-color: rgba(15, 118, 110, 0.58);
  box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.12);
}

.summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 84px;
  margin: 10px 0 16px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}

.summary div {
  display: grid;
  gap: 3px;
}

.summary strong {
  font-size: 2.08rem;
  line-height: 1;
}

.summary p {
  max-width: 210px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.35;
  text-align: right;
}

.contact-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.primary-action,
.secondary-action {
  display: grid;
  place-items: center;
  min-height: 54px;
  border-radius: var(--radius);
  padding: 0 12px;
  text-align: center;
  font-weight: 760;
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    opacity 0.18s ease,
    border-color 0.18s ease;
}

.primary-action {
  color: white;
  background: var(--ink);
}

.secondary-action {
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
}

.primary-action:hover,
.primary-action:focus-visible,
.secondary-action:hover,
.secondary-action:focus-visible {
  background: var(--accent-strong);
  border-color: rgba(15, 118, 110, 0.58);
  color: white;
  transform: translateY(-1px);
}

.primary-action.is-disabled,
.secondary-action.is-disabled {
  pointer-events: none;
  opacity: 0.48;
}

.details {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0 54px;
}

.details article {
  min-height: 156px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.6);
  animation: softRise 0.7s ease both;
}

.details article:nth-child(2) {
  animation-delay: 0.08s;
}

.details article:nth-child(3) {
  animation-delay: 0.16s;
}

.details article:first-child {
  border-radius: var(--radius) 0 0 var(--radius);
}

.details article:last-child {
  border-radius: 0 var(--radius) var(--radius) 0;
}

.details span {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 760;
}

.details h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.details p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.5;
}

.site-footer {
  padding: 10px 18px 26px;
  text-align: center;
}

.site-footer a {
  color: rgba(17, 19, 22, 0.58);
  font-size: 0.85rem;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--ink);
}

.install-banner {
  position: fixed;
  right: 16px;
  bottom: calc(16px + env(safe-area-inset-bottom));
  left: 16px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  max-width: 560px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 22px;
  padding: 13px 13px 13px 16px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(22px) saturate(1.25);
  box-shadow: 0 22px 58px rgba(15, 24, 31, 0.18);
  animation: installSlide 0.36s ease both;
}

.install-banner[hidden] {
  display: none;
}

.install-banner strong {
  display: block;
  margin-bottom: 3px;
  font-size: 0.96rem;
}

.install-banner p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.install-banner__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.install-banner__button {
  min-height: 40px;
  border: 0;
  border-radius: 999px;
  padding: 0 14px;
  color: white;
  background: var(--ink);
  font-weight: 760;
  cursor: pointer;
}

.install-banner__close {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.72);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
}

@keyframes softRise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes menuReveal {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes installSlide {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
  }

  .hero__image {
    object-position: 68% center;
  }

  .hero__overlay {
    background:
      linear-gradient(180deg, rgba(247, 247, 244, 0.74) 0%, rgba(247, 247, 244, 0.44) 44%, rgba(247, 247, 244, 0.9) 100%),
      linear-gradient(90deg, rgba(247, 247, 244, 0.58), rgba(247, 247, 244, 0.08));
  }

  .hero__content {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 34px 0 64px;
  }

  .hero__copy {
    max-width: 680px;
  }

  .booking {
    grid-column: 1;
    width: min(100%, 520px);
  }

  h1 {
    max-width: 460px;
    font-size: 4.3rem;
  }
}

@media (max-width: 720px) {
  .topbar,
  .hero__content,
  .details {
    width: min(100% - 28px, 1180px);
  }

  .topbar {
    position: absolute;
    top: calc(10px + env(safe-area-inset-top));
    right: 12px;
    z-index: 4;
    width: auto;
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: nowrap;
    gap: 8px;
  }

  .brand {
    display: none;
  }

  .topbar__actions {
    flex: 0 0 auto;
    justify-content: flex-end;
    gap: 6px;
    min-width: 0;
  }

  .quick-links {
    display: flex;
    flex: 0 0 auto;
    gap: 6px;
  }

  .topbar__icon-link {
    min-width: 34px;
    width: 34px;
    min-height: 34px;
    gap: 0;
    padding: 0;
  }

  .topbar__icon-link span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .topbar__icon-link svg {
    width: 17px;
    height: 17px;
  }

  .language-menu__button {
    min-width: 44px;
    min-height: 34px;
    gap: 4px;
    padding: 0 8px;
    font-size: 0.72rem;
  }

  .language-menu__button svg {
    width: 11px;
    height: 11px;
  }

  .language-menu__list {
    min-width: 64px;
    border-radius: 14px;
  }

  .language-menu__option {
    padding: 9px 10px;
    font-size: 0.78rem;
  }

  .hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
    overflow: visible;
  }

  .hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: clamp(222px, 62vw, 282px);
    border-radius: 0;
    background:
      linear-gradient(90deg, rgba(247, 247, 244, 0.92), rgba(247, 247, 244, 0.5) 52%, rgba(247, 247, 244, 0.08) 78%),
      linear-gradient(180deg, rgba(17, 19, 22, 0.03), rgba(17, 19, 22, 0.22));
    pointer-events: none;
  }

  .hero__image {
    position: relative;
    inset: auto;
    z-index: 0;
    order: -1;
    display: block;
    width: 100%;
    height: clamp(222px, 62vw, 282px);
    margin: 0;
    border-radius: 0;
    object-position: 64% 48%;
    box-shadow: 0 16px 42px rgba(15, 24, 31, 0.16);
    transform: none;
  }

  .hero__overlay {
    display: none;
  }

  .hero__content {
    position: relative;
    padding-top: 0;
    padding-bottom: 34px;
  }

  .hero__copy {
    display: none;
  }

  .eyebrow,
  .booking__kicker {
    margin-bottom: 8px;
    font-size: 0.68rem;
  }

  .hero__copy .eyebrow {
    max-width: 100%;
    margin-bottom: 5px;
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    line-height: 1.18;
  }

  h1 {
    max-width: 100%;
    margin-bottom: 6px;
    font-size: clamp(2rem, 11vw, 3.25rem);
    line-height: 1;
  }

  .hero__lead {
    max-width: 100%;
    display: -webkit-box;
    overflow: hidden;
    font-size: 0.82rem;
    line-height: 1.28;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .booking {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 100%;
    margin-top: -28px;
    border-radius: 20px;
    padding: 16px 14px 14px;
    background: rgba(255, 255, 255, 0.84);
    backdrop-filter: blur(26px) saturate(1.35);
    overflow: hidden;
  }

  .booking__head {
    gap: 10px;
    margin-bottom: 14px;
  }

  .booking h2 {
    font-size: clamp(1.38rem, 7vw, 1.65rem);
  }

  .icon-button {
    width: 38px;
    height: 38px;
  }

  .field-grid,
  .details {
    grid-template-columns: 1fr;
  }

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

  .field-grid {
    gap: 9px;
    margin-bottom: 9px;
  }

  .field {
    gap: 6px;
  }

  .field span,
  .summary__label {
    font-size: 0.74rem;
  }

  .field input,
  .field select {
    min-height: 42px;
    padding: 0 11px;
    font-size: 16px;
  }

  .date-picker,
  .date-picker__value {
    min-height: 42px;
  }

  .date-picker__value {
    padding: 0 11px;
    font-size: 16px;
  }

  .summary {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    min-height: auto;
    margin: 8px 0 12px;
    padding: 10px 0;
  }

  .summary strong {
    font-size: 1.72rem;
  }

  .summary p {
    max-width: 100%;
    font-size: 0.8rem;
    text-align: left;
  }

  .contact-actions {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .primary-action,
  .secondary-action {
    min-height: 46px;
  }

  .details {
    padding-top: 12px;
  }

  .details article,
  .details article:first-child,
  .details article:last-child {
    min-height: auto;
    border-radius: var(--radius);
  }
}

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

  .hero__image {
    transform: none !important;
  }
}

@media (max-width: 430px) {
  .hero__lead {
    font-size: 0.78rem;
    line-height: 1.24;
  }

  h1 {
    font-size: clamp(2rem, 10.5vw, 2.7rem);
  }

  .booking__head {
    align-items: center;
  }

  .booking h2 {
    font-size: 1.34rem;
  }

  .install-banner {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 13px;
  }

  .install-banner__actions {
    width: 100%;
  }

  .install-banner__button {
    flex: 1 1 auto;
  }
}
