:root {
  --blue: #1C2B3E;
  --yellow: #EDE39C;
  --paper: #F6F8FA;
  --ice: #D8E2EA;
  --white: #FFFFFF;
  --ink-soft: rgba(28, 43, 62, 0.72);
  --light-soft: rgba(246, 248, 250, 0.78);
  --line: rgba(28, 43, 62, 0.12);
  --line-light: rgba(246, 248, 250, 0.14);
  --header-h: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--blue);
  font-family: "Mulish", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.is-loading [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
}

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

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

input,
textarea,
button {
  font: inherit;
}

::selection {
  background: var(--blue);
  color: var(--yellow);
}

@keyframes kenburns {
  from { transform: scale(1.02); }
  to { transform: scale(1.12); }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.site-shell {
  overflow-x: clip;
}

@supports not (overflow: clip) {
  .site-shell {
    overflow-x: hidden;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 248, 250, 0.86);
  border-bottom: 1px solid rgba(28, 43, 62, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.site-nav {
  min-height: var(--header-h);
  padding: 16px clamp(28px, 6vw, 88px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  flex: none;
}

.brand-logo {
  width: auto;
  height: 30px;
  max-width: min(46vw, 300px);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 38px);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 32px);
}

.nav-link,
.eyebrow,
.button,
.meta,
.price-nav a {
  letter-spacing: 0;
}

.nav-link {
  color: rgba(28, 43, 62, 0.78);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--blue);
  opacity: 1;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  flex: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(28, 43, 62, 0.16);
  border-radius: 2px;
  background: var(--white);
  color: var(--blue);
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 2px;
  padding: 14px 24px;
  background: var(--blue);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

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

.button.secondary {
  background: transparent;
  color: var(--blue);
  border-color: rgba(28, 43, 62, 0.24);
}

.button.light {
  background: var(--yellow);
  color: var(--blue);
}

.button.ghost-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(246, 248, 250, 0.34);
}

.booking-widget {
  position: fixed;
  right: clamp(18px, 2.4vw, 34px);
  bottom: calc(22px + env(safe-area-inset-bottom));
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  transition: opacity 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.booking-widget:hover {
  background: #172437;
}

.booking-widget:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 4px;
}

.booking-widget-mark {
  position: relative;
  width: 28px;
  height: 27px;
  flex: none;
  border: 2px solid var(--yellow);
  border-radius: 5px;
  background: linear-gradient(to bottom, var(--yellow) 0 7px, transparent 7px);
}

.booking-widget-mark::before {
  content: "";
  position: absolute;
  left: 5px;
  top: -6px;
  width: 4px;
  height: 10px;
  border-radius: 999px;
  background: var(--yellow);
}

.booking-widget-mark::after {
  content: "";
  position: absolute;
  right: 5px;
  top: -6px;
  width: 4px;
  height: 10px;
  border-radius: 999px;
  background: var(--yellow);
}

.booking-widget-copy {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.booking-widget-copy strong,
.booking-widget-copy small {
  letter-spacing: 0;
  line-height: 1.05;
  white-space: nowrap;
}

.booking-widget-copy strong {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.booking-widget-copy small {
  color: rgba(237, 227, 156, 0.92);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.booking-panel {
  position: fixed;
  right: clamp(18px, 2.4vw, 34px);
  bottom: calc(20px + env(safe-area-inset-bottom));
  z-index: 135;
  width: min(560px, calc(100vw - 38px));
  height: min(860px, calc(100dvh - 42px));
  pointer-events: none;
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  transform-origin: right bottom;
  transition: opacity 0.28s ease, transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.booking-panel.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.booking-panel-card {
  height: 100%;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(28, 43, 62, 0.12);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 32px 90px rgba(28, 43, 62, 0.34);
}

.booking-panel-head {
  min-height: 86px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 12px;
  padding: 18px 18px 18px 22px;
  background: var(--blue);
  color: var(--white);
}

.booking-panel-title {
  min-width: 0;
}

.booking-panel-title span {
  display: block;
  margin-bottom: 5px;
  color: var(--yellow);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.booking-panel-title h2 {
  margin: 0;
  font-family: "Jost", Arial, sans-serif;
  font-size: 23px;
  font-weight: 300;
  line-height: 1.12;
}

.booking-panel-link,
.booking-panel-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  border: 1px solid rgba(246, 248, 250, 0.22);
  border-radius: 6px;
  background: rgba(246, 248, 250, 0.08);
  color: var(--white);
}

.booking-panel-link {
  padding: 0 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

.booking-panel-close {
  width: 38px;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.booking-panel-link:hover,
.booking-panel-close:hover {
  background: rgba(237, 227, 156, 0.16);
  border-color: rgba(237, 227, 156, 0.42);
}

.booking-frame-wrap {
  position: relative;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  background: var(--paper);
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.booking-frame-state {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 28px;
  color: rgba(28, 43, 62, 0.58);
  font-size: 14px;
  text-align: center;
}

.booking-frame-state[hidden] {
  display: none;
}

.booking-preview-note {
  width: min(300px, 100%);
  display: grid;
  justify-items: center;
  gap: 12px;
}

.booking-preview-note strong {
  color: var(--blue);
  font-family: "Jost", Arial, sans-serif;
  font-size: 28px;
  font-weight: 300;
  line-height: 1.12;
}

.booking-preview-note span {
  color: rgba(28, 43, 62, 0.66);
  line-height: 1.55;
}

.booking-preview-note a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 6px;
  background: var(--blue);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.booking-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 940px;
  display: block;
  background: var(--white);
}

.booking-frame:empty {
  display: none;
}

.booking-frame iframe {
  width: 100% !important;
  max-width: none !important;
  height: 940px !important;
  min-height: 940px !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: var(--white);
}

.section,
.page-hero,
.hero {
  scroll-margin-top: calc(var(--header-h) + 20px);
}

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

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

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

.section-inner {
  width: 100%;
  padding: 88px clamp(28px, 6vw, 88px);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 48px;
}

.eyebrow {
  display: block;
  margin-bottom: 16px;
  color: rgba(28, 43, 62, 0.58);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.dark .eyebrow,
.page-hero.dark .eyebrow {
  color: var(--yellow);
}

.title-xl,
.title-lg,
.title-md {
  margin: 0;
  font-family: "Jost", Arial, sans-serif;
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: 0;
}

.title-xl {
  font-size: 80px;
  max-width: 860px;
}

.title-lg {
  font-size: 48px;
  max-width: 720px;
}

.title-md {
  font-size: 32px;
}

.lead,
.copy {
  margin: 0;
  font-weight: 300;
  line-height: 1.78;
}

.lead {
  max-width: 620px;
  color: var(--ink-soft);
  font-size: 19px;
}

.copy {
  color: var(--ink-soft);
  font-size: 16px;
}

.dark .lead,
.dark .copy,
.page-hero.dark .lead {
  color: var(--light-soft);
}

.hero {
  min-height: calc(100vh - var(--header-h));
  background: var(--paper);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.hero-full {
  min-height: calc(100vh - var(--header-h));
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--blue);
  color: var(--white);
}

.hero-full-media {
  position: absolute;
  inset: 0;
}

.hero-full-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
  animation: kenburns 26s ease-in-out infinite alternate;
}

.hero-full::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(28, 43, 62, 0.88) 0%, rgba(28, 43, 62, 0.62) 42%, rgba(28, 43, 62, 0.18) 100%);
}

.hero-full-content {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 34px;
  padding: clamp(120px, 16vh, 180px) clamp(28px, 6vw, 88px) clamp(70px, 10vh, 118px);
}

.hero-full .lead {
  color: rgba(246, 248, 250, 0.86);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 34px;
  padding: 110px clamp(28px, 6vw, 88px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-media {
  min-height: 620px;
  position: relative;
  overflow: hidden;
  background: var(--blue);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenburns 24s ease-in-out infinite alternate;
}

.media-badge {
  position: absolute;
  left: clamp(20px, 4vw, 44px);
  bottom: clamp(24px, 4vh, 44px);
  padding: 16px 24px;
  border-radius: 3px;
  background: rgba(28, 43, 62, 0.92);
  color: var(--white);
}

.media-badge small,
.meta {
  display: block;
  color: rgba(246, 248, 250, 0.7);
  font-size: 12px;
  text-transform: uppercase;
}

.media-badge strong {
  display: block;
  margin-top: 3px;
  font-family: "Jost", Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
}

.split-media {
  min-height: 780px;
  overflow: hidden;
  position: relative;
}

.split-media img,
.parallax-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portrait-focus-high {
  object-position: center 34%;
}

.portrait-focus-mid {
  object-position: center 40%;
}

.split-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  padding: 88px clamp(28px, 6vw, 88px);
}

.parallax-band {
  min-height: 72vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--blue);
  color: var(--white);
}

.parallax-band img {
  position: absolute;
  inset: -12% 0;
  width: 100%;
  height: 124%;
  object-fit: cover;
  opacity: 0.72;
}

.parallax-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(28, 43, 62, 0.9), rgba(28, 43, 62, 0.42));
}

.parallax-copy {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  padding: 96px clamp(28px, 6vw, 88px);
}

.parallax-copy .lead {
  color: rgba(246, 248, 250, 0.86);
}

.parallax-band .eyebrow {
  color: var(--yellow);
}

.link-line {
  display: inline-flex;
  width: fit-content;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

.hscroll-section {
  min-height: 180vh;
  position: relative;
  overflow: clip;
  background: var(--blue);
  color: var(--white);
}

.hscroll-sticky {
  position: sticky;
  top: var(--header-h);
  min-height: calc(100vh - var(--header-h));
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 42px;
  padding: 72px 0;
}

.hscroll-head {
  padding: 0 clamp(28px, 6vw, 88px);
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.hscroll-track {
  display: flex;
  gap: 24px;
  padding: 0 clamp(28px, 6vw, 88px);
  will-change: transform;
}

.slide-card {
  flex: 0 0 min(460px, 72vw);
  min-height: 560px;
  border: 1px solid var(--line-light);
  border-radius: 6px;
  overflow: hidden;
  background: rgba(246, 248, 250, 0.06);
  color: var(--white);
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.slide-card:hover {
  transform: translateY(-6px);
  border-color: rgba(237, 227, 156, 0.62);
}

.slide-media {
  height: 320px;
  overflow: hidden;
  background: rgba(246, 248, 250, 0.08);
}

.slide-media img {
  width: 116%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

.slide-body {
  padding: 28px;
}

.slide-num {
  display: block;
  margin-bottom: 18px;
  color: var(--yellow);
  font-family: "Jost", Arial, sans-serif;
  font-size: 34px;
  font-weight: 300;
}

.slide-body h3 {
  margin: 0 0 14px;
  font-family: "Jost", Arial, sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.18;
}

.slide-body p {
  margin: 0 0 24px;
  color: var(--light-soft);
  font-weight: 300;
  line-height: 1.68;
}

.service-grid,
.info-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.service-card,
.info-card,
.process-card {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  overflow: hidden;
}

.service-card {
  display: flex;
  flex-direction: column;
}

.service-card:hover .card-img {
  transform: scale(1.06);
}

.card-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--ice);
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.card-body,
.info-card,
.process-card {
  padding: 28px;
}

.card-body h3,
.info-card h3,
.process-card h3 {
  margin: 0 0 12px;
  font-family: "Jost", Arial, sans-serif;
  font-size: 27px;
  font-weight: 400;
  line-height: 1.18;
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  padding: 0;
  border-top: 1px solid var(--line);
}

.service-detail:nth-child(even) {
  background: var(--paper);
}

.service-detail:nth-child(even) .detail-media {
  order: 2;
}

.detail-media {
  min-height: 760px;
  overflow: hidden;
}

.detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  padding: 88px clamp(28px, 6vw, 88px);
}

.fact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 4px 0 8px;
  list-style: none;
}

.fact-list li {
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--white);
  color: var(--ink-soft);
  font-size: 14px;
}

.page-hero {
  min-height: 72vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  background: var(--paper);
}

.page-hero.dark {
  background: var(--blue);
  color: var(--white);
}

.page-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  padding: 88px clamp(28px, 6vw, 88px);
}

.page-hero-media {
  min-height: 700px;
  overflow: hidden;
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.price-layout {
  display: grid;
  grid-template-columns: minmax(230px, 0.26fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.price-nav {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 44px;
  padding: 11px 15px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--white);
  color: var(--blue);
  font-size: 13px;
  line-height: 1.2;
}

.price-nav a:hover {
  background: var(--blue);
  color: var(--white);
}

.price-content {
  display: flex;
  flex-direction: column;
  gap: 58px;
}

.price-section {
  scroll-margin-top: calc(var(--header-h) + 28px);
  border-top: 1px solid rgba(28, 43, 62, 0.18);
  padding-top: 30px;
}

.price-section-head {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr);
  gap: 28px;
  margin-bottom: 20px;
}

.price-section h2 {
  margin: 0;
  font-family: "Jost", Arial, sans-serif;
  font-size: 36px;
  font-weight: 300;
  line-height: 1.12;
}

.price-list {
  display: grid;
  gap: 10px;
}

.price-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: start;
  padding: 18px 20px;
  border: 1px solid rgba(28, 43, 62, 0.12);
  background: var(--white);
}

.price-item-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.price-item h3 {
  margin: 0;
  font-family: "Jost", Arial, sans-serif;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.22;
}

.price-duration {
  display: block;
  margin-top: 8px;
  color: rgba(28, 43, 62, 0.5);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.price-item p {
  margin: 9px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.58;
  font-weight: 300;
}

.price-value {
  white-space: nowrap;
  font-family: "Jost", Arial, sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
}

.price-value-inline {
  display: none;
}

.price-value-side {
  padding-top: 1px;
}

.marquee {
  overflow: hidden;
  background: var(--blue);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  padding: 24px 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 34s linear infinite;
}

.marquee-line {
  display: flex;
  align-items: center;
  gap: 34px;
  padding-right: 34px;
  flex: none;
}

.marquee-line span {
  color: var(--white);
  font-family: "Jost", Arial, sans-serif;
  font-size: 31px;
  font-weight: 300;
  text-transform: uppercase;
}

.marquee-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
}

.mood-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.mood-tile {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  aspect-ratio: 1 / 1;
  border-radius: 4px;
  background: var(--ice);
}

.mood-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.mood-tile:hover img {
  transform: scale(1.07);
}

.logo-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: var(--ice);
}

.quote-tile {
  display: flex;
  align-items: center;
  padding: 28px;
  background: var(--blue);
  color: var(--white);
}

.quote-tile p {
  margin: 0;
  font-family: "Jost", Arial, sans-serif;
  font-size: 22px;
  font-weight: 300;
  line-height: 1.45;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(42px, 6vw, 88px);
}

.contact-standard {
  align-items: center;
}

.contact-actions {
  margin-top: 32px;
}

.contact-panel {
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(246, 248, 250, 0.18);
  border-radius: 6px;
  background: rgba(246, 248, 250, 0.06);
}

.contact-panel h3 {
  margin: 0 0 24px;
  color: var(--white);
  font-family: "Jost", Arial, sans-serif;
  font-size: clamp(30px, 3.2vw, 42px);
  font-weight: 300;
  line-height: 1.12;
}

.contact-panel .contact-list {
  margin-top: 0;
}

.map-section {
  background: var(--paper);
}

.map-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  min-height: 620px;
}

.map-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  padding: 88px clamp(28px, 6vw, 88px);
}

.map-frame {
  display: block;
  min-height: 620px;
  overflow: hidden;
  background: var(--ice);
  position: relative;
  color: var(--blue);
}

.map-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border: 1px solid rgba(28, 43, 62, 0.12);
  pointer-events: none;
}

.map-embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-consent {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 12px;
  padding: clamp(28px, 5vw, 54px);
  background:
    linear-gradient(90deg, rgba(28, 43, 62, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(28, 43, 62, 0.06) 1px, transparent 1px),
    linear-gradient(135deg, rgba(246, 248, 250, 0.98), rgba(216, 226, 234, 0.96));
  background-size: 72px 72px, 72px 72px, auto;
  color: var(--blue);
}

.map-consent[hidden],
.map-frame.has-map-consent .map-consent {
  display: none;
}

.map-consent strong {
  font-family: "Jost", Arial, sans-serif;
  font-size: clamp(30px, 3.8vw, 46px);
  font-weight: 300;
  line-height: 1.08;
}

.map-consent span {
  max-width: 340px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.55;
}

.map-consent .button {
  margin-top: 4px;
}

.map-visual {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(28, 43, 62, 0.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(28, 43, 62, 0.05) 1px, transparent 1px),
    linear-gradient(135deg, rgba(246, 248, 250, 0.98), rgba(216, 226, 234, 0.96));
  background-size: 88px 88px, 88px 88px, auto;
  pointer-events: none;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.map-frame:hover .map-visual {
  transform: scale(1.025);
}

.map-road {
  position: absolute;
  display: block;
  height: 18px;
  border: 1px solid rgba(28, 43, 62, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 28px rgba(28, 43, 62, 0.08);
}

.road-a {
  left: -12%;
  top: 49%;
  width: 82%;
  transform: rotate(-8deg);
}

.road-b {
  right: -18%;
  top: 31%;
  width: 74%;
  transform: rotate(36deg);
}

.road-c {
  left: 22%;
  bottom: 18%;
  width: 72%;
  transform: rotate(7deg);
}

.road-d {
  left: -10%;
  top: 18%;
  width: 52%;
  transform: rotate(15deg);
}

.road-e {
  right: 4%;
  bottom: 36%;
  width: 42%;
  transform: rotate(-28deg);
}

.map-pin {
  position: absolute;
  left: 52%;
  top: 50%;
  width: min(230px, calc(100% - 44px));
  padding: 18px 20px;
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 22px 54px rgba(28, 43, 62, 0.22);
  transform: translate(-50%, -115%);
}

.map-pin::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -14px;
  width: 28px;
  height: 28px;
  background: var(--blue);
  transform: translateX(-50%) rotate(45deg);
}

.map-pin::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -66px;
  width: 54px;
  height: 18px;
  border-radius: 50%;
  background: rgba(28, 43, 62, 0.24);
  transform: translateX(-50%);
}

.map-pin strong,
.map-pin span {
  position: relative;
  z-index: 1;
  display: block;
}

.map-pin strong {
  margin-bottom: 6px;
  font-family: "Jost", Arial, sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.12;
}

.map-pin span {
  color: rgba(246, 248, 250, 0.76);
  font-size: 13px;
}

.map-open {
  position: absolute;
  left: clamp(22px, 4vw, 46px);
  bottom: clamp(22px, 4vw, 46px);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 13px 18px;
  border: 1px solid rgba(28, 43, 62, 0.18);
  background: rgba(246, 248, 250, 0.86);
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  transition: background 0.25s ease, transform 0.25s ease;
}

.map-frame:hover .map-open {
  background: var(--white);
  transform: translateY(-2px);
}

.contact-list {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

.contact-list a,
.contact-list span {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(246, 248, 250, 0.9);
  font-weight: 300;
}

.contact-list i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
  flex: none;
}

.contact-form {
  display: grid;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.field {
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(246, 248, 250, 0.28);
  border-radius: 0;
  outline: none;
  background: transparent;
  color: var(--white);
  padding: 14px 2px;
  font-size: 15px;
}

.field:focus {
  border-bottom-color: var(--yellow);
}

.field::placeholder {
  color: rgba(246, 248, 250, 0.58);
}

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

.site-footer {
  background: var(--paper);
  border-top: 1px solid rgba(28, 43, 62, 0.08);
}

.footer-inner {
  min-height: 220px;
  padding: 78px clamp(28px, 6vw, 88px);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 20px 42px;
}

.footer-logo {
  height: 30px;
  width: auto;
}

.footer-note {
  color: rgba(28, 43, 62, 0.58);
  font-size: 14px;
}

.footer-meta {
  display: grid;
  justify-items: end;
  gap: 14px;
  justify-self: end;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, auto);
  align-items: start;
  justify-content: end;
  gap: 10px 20px;
}

.footer-link {
  min-height: 0;
  padding: 0;
  background: transparent;
  text-transform: none;
  font-weight: 400;
  color: rgba(28, 43, 62, 0.64);
  font-size: 14px;
  border-bottom: 1px solid rgba(28, 43, 62, 0.22);
  transition: color 0.25s ease, border-color 0.25s ease;
}

.footer-button {
  border-top: 0;
  border-right: 0;
  border-left: 0;
  border-radius: 0;
  cursor: pointer;
}

.footer-link:hover {
  color: var(--blue);
  border-bottom-color: var(--blue);
}

.footer-credits {
  grid-column: 1 / -1;
  justify-self: end;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: rgba(28, 43, 62, 0.5);
  font-size: 13px;
}

.footer-credits a {
  color: rgba(28, 43, 62, 0.74);
  border-bottom: 1px solid rgba(28, 43, 62, 0.2);
}

.footer-credits a:hover {
  color: var(--blue);
  border-bottom-color: var(--blue);
}

.legal-wrap {
  display: grid;
  gap: 18px;
}

.legal-card {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(28, 43, 62, 0.12);
  border-radius: 6px;
  background: var(--white);
}

.legal-card h2 {
  margin: 0 0 14px;
  font-family: "Jost", Arial, sans-serif;
  font-size: clamp(27px, 3vw, 36px);
  font-weight: 300;
  line-height: 1.14;
}

.legal-card p,
.legal-card li {
  color: var(--ink-soft);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.72;
}

.legal-card p {
  margin: 0;
}

.legal-card p + p,
.legal-card ul + p {
  margin-top: 12px;
}

.legal-card ul {
  margin: 0;
  padding-left: 20px;
}

.legal-card a {
  color: var(--blue);
  border-bottom: 1px solid rgba(28, 43, 62, 0.22);
}

.mobile-sheet {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  pointer-events: none;
}

.mobile-sheet.is-open {
  display: block;
  pointer-events: auto;
}

.sheet-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(28, 43, 62, 0.54);
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.mobile-sheet.is-open .sheet-backdrop {
  opacity: 1;
}

.sheet-panel {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  max-height: calc(100vh - 42px);
  overflow-y: auto;
  border-radius: 18px 18px 0 0;
  background: var(--paper);
  color: var(--blue);
  box-shadow: 0 -28px 70px rgba(28, 43, 62, 0.3);
  padding: 12px 22px 28px;
  transform: translateY(104%);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-sheet.is-open .sheet-panel {
  transform: translateY(0);
}

.sheet-handle {
  width: 44px;
  height: 4px;
  margin: 0 auto 18px;
  border-radius: 999px;
  background: rgba(28, 43, 62, 0.24);
}

.sheet-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.sheet-top h2 {
  margin: 0;
  font-family: "Jost", Arial, sans-serif;
  font-size: 34px;
  font-weight: 300;
  line-height: 1.12;
}

.sheet-top p {
  margin: 10px 0 0;
  color: var(--ink-soft);
  line-height: 1.58;
}

.sheet-close {
  width: 42px;
  height: 42px;
  flex: none;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--blue);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.sheet-form {
  display: grid;
  gap: 16px;
}

.sheet-form .field {
  border-bottom-color: rgba(28, 43, 62, 0.2);
  color: var(--blue);
}

.sheet-form .field:focus {
  border-bottom-color: var(--blue);
}

.sheet-form .field::placeholder {
  color: rgba(28, 43, 62, 0.5);
}

.sheet-meta {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  color: var(--ink-soft);
  font-size: 14px;
}

.sheet-meta a {
  border-bottom: 1px solid currentColor;
  width: fit-content;
}

body.sheet-open {
  overflow: hidden;
}

.request-lightbox {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(26px, 5vw, 72px);
  pointer-events: none;
}

.request-lightbox.is-open {
  display: flex;
  pointer-events: auto;
}

.request-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(28, 43, 62, 0.68);
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.request-lightbox.is-open .request-backdrop {
  opacity: 1;
}

.request-dialog {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  max-height: min(720px, calc(100vh - 56px));
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
  overflow: hidden;
  background: var(--paper);
  color: var(--blue);
  box-shadow: 0 34px 90px rgba(28, 43, 62, 0.36);
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  transition: opacity 0.32s ease, transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.request-lightbox.is-open .request-dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.request-aside {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 46px;
  min-height: 560px;
  padding: 54px;
  background: var(--blue);
  color: var(--white);
}

.request-aside h2 {
  margin: 12px 0 18px;
  font-family: "Jost", Arial, sans-serif;
  font-size: 48px;
  font-weight: 300;
  line-height: 1.08;
}

.request-aside p {
  max-width: 320px;
  margin: 0;
  color: rgba(246, 248, 250, 0.76);
  font-size: 17px;
  line-height: 1.72;
  font-weight: 300;
}

.request-meta {
  display: grid;
  gap: 12px;
  color: rgba(246, 248, 250, 0.76);
  font-size: 14px;
}

.request-meta a {
  width: fit-content;
  border-bottom: 1px solid currentColor;
  color: var(--white);
}

.request-main {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 62px 58px;
}

.request-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--blue);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.request-form {
  display: grid;
  gap: 18px;
}

.request-form .field {
  border-bottom-color: rgba(28, 43, 62, 0.2);
  color: var(--blue);
}

.request-form .field:focus {
  border-bottom-color: var(--blue);
}

.request-form .field::placeholder {
  color: rgba(28, 43, 62, 0.5);
}

body.lightbox-open {
  overflow: hidden;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .booking-widget,
body.sheet-open .booking-widget,
body.lightbox-open .booking-widget,
body.booking-open .booking-widget {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}

body.sheet-open .booking-panel,
body.lightbox-open .booking-panel {
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(0.98);
}

.cookie-banner {
  position: fixed;
  left: clamp(18px, 2.6vw, 34px);
  bottom: calc(18px + env(safe-area-inset-bottom));
  z-index: 160;
  width: min(520px, calc(100vw - 36px));
  padding: 22px;
  border: 1px solid rgba(28, 43, 62, 0.12);
  border-radius: 8px;
  background: rgba(246, 248, 250, 0.98);
  color: var(--blue);
  box-shadow: 0 24px 64px rgba(28, 43, 62, 0.22);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.26s ease, transform 0.26s ease;
}

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

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

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

.cookie-copy h2 {
  margin: 0 0 9px;
  font-family: "Jost", Arial, sans-serif;
  font-size: 28px;
  font-weight: 300;
  line-height: 1.12;
}

.cookie-copy p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.58;
}

.cookie-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.cookie-actions .button {
  min-height: 42px;
  padding: 11px 16px;
  font-size: 12px;
}

.cookie-settings {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.cookie-settings[hidden] {
  display: none;
}

.cookie-option {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 14px 15px;
  border: 1px solid rgba(28, 43, 62, 0.12);
  border-radius: 6px;
  background: var(--white);
}

.cookie-option span {
  display: grid;
  gap: 4px;
}

.cookie-option strong {
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
}

.cookie-option small {
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.35;
}

.cookie-option input {
  width: 22px;
  height: 22px;
  accent-color: var(--blue);
}

.cookie-option.is-locked {
  background: rgba(216, 226, 234, 0.42);
}

@media (max-width: 1040px) {
  .title-xl {
    font-size: 62px;
  }

  .title-lg {
    font-size: 40px;
  }

  .hero,
  .split,
  .page-hero,
  .contact-grid,
  .price-layout,
  .service-detail,
  .map-shell {
    grid-template-columns: minmax(0, 1fr);
  }

  .service-detail:nth-child(even) .detail-media {
    order: 0;
  }

  .price-nav {
    position: static;
    flex-direction: row;
    overflow-x: auto;
    gap: 8px;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
  }

  .price-nav a {
    flex: 0 0 auto;
    min-width: 148px;
  }

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

@media (max-width: 760px) {
  :root {
    --header-h: 76px;
  }

  .site-nav {
    flex-wrap: nowrap;
    padding: 14px 22px;
    gap: 12px;
  }

  .brand-logo {
    height: 24px;
    max-width: 46vw;
  }

  .nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
  }

  .nav-links {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    z-index: 49;
    display: grid;
    gap: 0;
    padding: 8px 22px 18px;
    border-top: 1px solid rgba(28, 43, 62, 0.08);
    border-bottom: 1px solid rgba(28, 43, 62, 0.12);
    background: rgba(246, 248, 250, 0.97);
    box-shadow: 0 18px 42px rgba(28, 43, 62, 0.16);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    visibility: hidden;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  }

  .site-header.menu-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .nav-link {
    min-height: 48px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(28, 43, 62, 0.09);
    font-size: 13px;
  }

  .nav-link:last-child {
    border-bottom: 0;
  }

  .nav-actions > .button {
    min-height: 44px;
    padding: 12px 14px;
    font-size: 12px;
  }

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

  .booking-widget {
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom));
    width: 58px;
    height: 58px;
  }

  .booking-widget-mark {
    width: 26px;
    height: 25px;
  }

  .booking-widget-mark::before {
    left: 5px;
    top: -6px;
    width: 4px;
    height: 10px;
  }

  .booking-widget-mark::after {
    right: 5px;
    top: -6px;
    width: 4px;
    height: 10px;
  }

  .booking-panel {
    left: 8px;
    right: 8px;
    bottom: calc(8px + env(safe-area-inset-bottom));
    width: auto;
    height: calc(100dvh - 16px - env(safe-area-inset-bottom));
    transform-origin: center bottom;
  }

  .booking-panel-card {
    border-radius: 12px 12px 8px 8px;
  }

  .booking-panel-head {
    min-height: 78px;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 8px;
    padding: 16px 12px 16px 18px;
  }

  .booking-panel-title h2 {
    font-size: 20px;
  }

  .booking-panel-link {
    height: 36px;
    padding: 0 9px;
    font-size: 10px;
  }

  .booking-panel-close {
    width: 36px;
    height: 36px;
    font-size: 22px;
  }

  .booking-frame {
    min-height: 1040px;
  }

  .booking-frame iframe {
    height: 1040px !important;
    min-height: 1040px !important;
  }

  .section-inner,
  .hero-copy,
  .split-copy,
  .page-hero-copy,
  .detail-copy,
  .map-copy {
    padding-left: 22px;
    padding-right: 22px;
  }

  .section-inner {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .hero {
    min-height: auto;
  }

  .hero-full,
  .hero-full-content {
    min-height: calc(100vh - var(--header-h));
  }

  .hero-full::after {
    background: linear-gradient(180deg, rgba(28, 43, 62, 0.58) 0%, rgba(28, 43, 62, 0.88) 100%);
  }

  .hero-full-media img {
    object-position: 70% center;
  }

  .hero-full-content {
    padding: 78px 22px 58px;
  }

  .hero-copy {
    padding-top: 72px;
    padding-bottom: 60px;
  }

  .hero-media,
  .page-hero-media,
  .map-frame {
    min-height: 420px;
  }

  body[data-page="prices"] .page-hero-copy {
    padding-top: 56px;
    padding-bottom: 42px;
    gap: 20px;
  }

  body[data-page="prices"] .page-hero-media {
    min-height: 260px;
  }

  body[data-page="prices"] .title-xl {
    font-size: 39px;
    line-height: 1.08;
  }

  body[data-page="prices"] .page-hero .lead {
    font-size: 15px;
    line-height: 1.62;
  }

  .split-media,
  .detail-media {
    min-height: 500px;
  }

  .detail-copy,
  .map-copy {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .parallax-band {
    min-height: 62vh;
  }

  .parallax-copy {
    padding: 76px 22px;
  }

  .title-xl {
    font-size: 48px;
  }

  .title-lg {
    font-size: 34px;
  }

  .title-md {
    font-size: 27px;
  }

  .lead {
    font-size: 17px;
  }

  .section-head,
  .hscroll-head {
    align-items: start;
    flex-direction: column;
  }

  .hscroll-sticky {
    position: relative;
    top: auto;
    min-height: auto;
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .hscroll-section {
    min-height: auto;
    overflow: hidden;
  }

  .hscroll-head,
  .hscroll-track {
    padding-left: 22px;
    padding-right: 22px;
  }

  .hscroll-track {
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-padding-left: 22px;
    scroll-snap-type: x mandatory;
    touch-action: pan-x;
    transform: none !important;
    will-change: auto;
    -webkit-overflow-scrolling: touch;
  }

  .hscroll-track::-webkit-scrollbar {
    display: none;
  }

  .slide-card {
    flex-basis: 82vw;
    min-height: 500px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .slide-media {
    height: 270px;
  }

  .price-section-head,
  .form-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .price-layout {
    gap: 24px;
  }

  .price-nav {
    margin-left: -22px;
    margin-right: -22px;
    padding-left: 22px;
    padding-right: 22px;
    scroll-snap-type: x proximity;
  }

  .price-nav a {
    min-width: 132px;
    min-height: 40px;
    padding: 9px 12px;
    scroll-snap-align: start;
    font-size: 12px;
  }

  .price-content {
    gap: 40px;
  }

  .price-section {
    padding-top: 24px;
  }

  .price-section-head {
    gap: 10px;
    margin-bottom: 14px;
  }

  .price-section h2 {
    font-size: 27px;
    line-height: 1.12;
  }

  .price-section-head .lead {
    font-size: 14px;
    line-height: 1.56;
  }

  .price-list {
    gap: 8px;
  }

  .price-item {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    padding: 14px;
  }

  .price-item-top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
  }

  .price-item h3 {
    font-size: 18px;
    line-height: 1.18;
  }

  .price-value {
    justify-self: end;
    font-size: 18px;
  }

  .price-value-inline {
    display: block;
  }

  .price-value-side {
    display: none;
  }

  .price-duration {
    margin-top: 6px;
    font-size: 11px;
  }

  .price-item p {
    margin-top: 7px;
    font-size: 13.5px;
    line-height: 1.48;
  }

  .mood-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-inner {
    align-items: start;
    grid-template-columns: minmax(0, 1fr);
    padding-left: 22px;
    padding-right: 22px;
    gap: 18px;
  }

  .footer-meta {
    justify-items: start;
    justify-self: start;
  }

  .footer-links {
    justify-content: start;
    gap: 10px 18px;
  }

  .footer-logo {
    height: 26px;
  }

  .footer-credits {
    justify-self: start;
    align-items: flex-start;
    flex-direction: column;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    width: auto;
    padding: 18px;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

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

@media (min-width: 761px) {
  .mobile-sheet {
    display: none !important;
  }
}

@media (max-width: 760px) {
  .request-lightbox {
    display: none !important;
  }
}
