@font-face {
  font-family: "Cormorant Local Fallback";
  src: local("Georgia");
  size-adjust: 85%;
}

:root {
  --color-night: #061019;
  --color-text: #f8f5ed;
  --color-muted: rgba(248, 245, 237, 0.84);
  --color-accent: #d5a836;
  --color-action: #174b48;
  --font-heading: "Cormorant Garamond", "Cormorant Local Fallback", serif;
  --font-body: "Manrope", Arial, sans-serif;
  --type-section-h2: clamp(39px, min(4.8vw, 7svh), 70px);
  --type-section-lead: clamp(16px, min(1.35vw, 2.3svh), 19px);
  --leading-section-lead: 1.62;
  --hero-scroll-length: 280vh;
}

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

html,
body {
  margin: 0;
  padding: 0;
}

html {
  background: var(--color-night);
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  color: var(--color-text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

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

.hero-scroll {
  --hero-night-heading-opacity: 1;
  --hero-day-heading-opacity: 0;
  --hero-night-glow-opacity: 0.24;
  --hero-scrim-opacity: 1;
  position: relative;
  height: var(--hero-scroll-length);
  background: var(--color-night);
}

.hero {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  isolation: isolate;
  background: var(--color-night) url("assets/images/hero-night-poster.jpg") center center / cover no-repeat;
}

.hero__media,
.hero__scrim {
  position: absolute;
  inset: 0;
}

.hero__media {
  z-index: -2;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
}

.hero__scrim {
  z-index: -1;
  opacity: var(--hero-scrim-opacity);
  background:
    linear-gradient(90deg, rgba(2, 9, 14, 0.94) 0%, rgba(3, 11, 17, 0.82) 27%, rgba(3, 11, 17, 0.30) 51%, rgba(3, 11, 17, 0.03) 72%),
    linear-gradient(180deg, rgba(2, 8, 13, 0.66) 0%, rgba(2, 8, 13, 0.08) 24%, rgba(0, 4, 7, 0.02) 57%, rgba(0, 4, 7, 0.54) 100%);
  pointer-events: none;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  width: 100%;
  min-height: 106px;
  padding: 0 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
}

.brand,
.site-header__actions,
.site-nav,
.hero__actions,
.hero__price {
  display: flex;
  align-items: center;
}

.brand {
  gap: 14px;
  white-space: nowrap;
  font-size: 18px;
  font-weight: 700;
}

.brand__mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  font-size: 14px;
  letter-spacing: 0.03em;
}

.site-nav {
  justify-content: flex-start;
  gap: clamp(22px, 2.6vw, 38px);
  padding: 0 16px 0 34px;
}

.site-nav a,
.site-header__phone {
  white-space: nowrap;
  font-size: 14px;
  font-weight: 600;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.68);
}

.site-nav a,
.site-header__phone,
.brand {
  transition: color 180ms ease, opacity 180ms ease;
}

.site-nav a:hover,
.site-header__phone:hover,
.brand:hover {
  color: #f4d891;
}

.site-nav a:focus-visible,
.site-header__phone:focus-visible,
.brand:focus-visible,
.button:focus-visible {
  outline: 2px solid #f4d891;
  outline-offset: 4px;
}

.site-header__actions {
  gap: 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 30px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.button--header {
  min-height: 50px;
  padding-inline: 24px;
  background: rgba(23, 75, 72, 0.92);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
}

.button--primary {
  min-width: 242px;
  background: rgba(23, 75, 72, 0.95);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.23);
}

.button--primary:hover,
.button--header:hover {
  background: #1d5c58;
}

.button--secondary {
  min-width: 216px;
  border-color: rgba(213, 168, 54, 0.92);
  background: rgba(4, 12, 18, 0.20);
  box-shadow: inset 0 0 18px rgba(213, 168, 54, 0.04);
}

.button--secondary:hover {
  border-color: #efd17b;
  background: rgba(213, 168, 54, 0.10);
}

.hero__inner {
  display: flex;
  align-items: flex-start;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 234px 4.9vw 58px;
}

.hero__content {
  width: min(49vw, 690px);
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.70);
}

.hero__heading {
  display: grid;
  max-width: 600px;
  margin: 46px 0 0;
  font-family: var(--font-heading);
  font-size: clamp(88px, 7.4vw, 106px);
  font-weight: 500;
  line-height: 0.86;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.hero__heading-layer {
  grid-area: 1 / 1;
  display: block;
  pointer-events: none;
  will-change: opacity;
}

.hero__heading-layer--night {
  color: #f1d08a;
  opacity: var(--hero-night-heading-opacity);
  text-shadow:
    0 0 20px rgb(233 187 92 / var(--hero-night-glow-opacity)),
    0 4px 30px rgba(0, 0, 0, 0.58);
}

.hero__heading-layer--day {
  color: #213641;
  font-size: clamp(78px, 6.6vw, 96px);
  opacity: var(--hero-day-heading-opacity);
  text-shadow: none;
}

.hero__heading-line {
  display: block;
}

.hero__lead {
  max-width: 650px;
  margin: 29px 0 0;
  color: var(--color-muted);
  font-size: var(--type-section-lead);
  font-weight: 400;
  line-height: 1.68;
}

.hero-scroll.is-day-state .hero__lead {
  color: #213641;
  text-shadow: none;
}

.hero__price {
  gap: 20px;
  margin: 53px 0 0;
}

.hero__price strong {
  font-size: 35px;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.hero__price span {
  padding-top: 8px;
  color: rgba(248, 245, 237, 0.90);
  font-size: 15px;
  font-weight: 500;
}

.hero__actions {
  gap: 16px;
  margin-top: 43px;
}

@media (min-width: 961px) {
  .hero__content {
    width: min(58vw, 800px);
  }

  .hero__heading {
    max-width: 760px;
  }

  .hero__heading-layer--day .hero__heading-line {
    white-space: nowrap;
  }
}

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

.facts-strip {
  position: relative;
  z-index: 1;
  color: #19302f;
  border-top: 1px solid rgba(25, 48, 47, 0.14);
  background: #eef0eb;
}

.facts-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: clamp(54px, 6.2vw, 88px) 0 clamp(42px, 4.2vw, 60px);
}

.fact-item {
  display: grid;
  min-width: 0;
  align-content: center;
  justify-content: center;
  gap: 9px;
  padding-inline: clamp(24px, 4vw, 64px);
  border-right: 1px solid rgba(25, 48, 47, 0.18);
  text-align: center;
}

.fact-item:last-child {
  border-right: 0;
}

.fact-item strong {
  font-family: var(--font-heading);
  font-size: clamp(58px, 5.8vw, 88px);
  font-weight: 500;
  line-height: 0.82;
  letter-spacing: -0.045em;
  white-space: nowrap;
}

.fact-item span {
  color: #62716c;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.media-strip {
  overflow: hidden;
  padding: 0 0 clamp(48px, 5vw, 72px);
  color: #18201e;
  background: #eef0eb;
}

.media-strip__track {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(0, 0.86fr) minmax(0, 1.24fr) minmax(0, 0.86fr) minmax(0, 0.62fr);
  align-items: center;
  gap: clamp(10px, 1.1vw, 18px);
  width: min(calc(100% - 24px), 1540px);
  margin-inline: auto;
}

.media-strip__item {
  position: relative;
  display: block;
  min-height: clamp(320px, 31vw, 446px);
  overflow: hidden;
  border-radius: 12px;
  background: #c7cec6;
  isolation: isolate;
}

.media-strip__item::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 62%, rgba(5, 18, 17, 0.16));
  content: "";
  pointer-events: none;
}

.media-strip__item img,
.media-strip__item video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.media-strip__item:hover img,
.media-strip__item:focus-visible img,
.media-strip__item:hover video {
  transform: scale(1.025);
}

.media-strip__item:focus-visible {
  outline: 2px solid #b58e38;
  outline-offset: 4px;
}

.media-strip__item--living,
.media-strip__item--grounds {
  min-height: clamp(236px, 21vw, 318px);
}

.media-strip__item--veranda,
.media-strip__item--bedroom {
  min-height: clamp(326px, 29vw, 438px);
}

.media-strip__item--center {
  min-height: clamp(430px, 38vw, 568px);
}

.media-strip__item--living img {
  object-position: 28% center;
}

.media-strip__item--bedroom img {
  object-position: 57% center;
}

.media-strip__item--center {
  background: #24332f;
}

.media-strip__item--center video {
  object-position: 50% 50%;
}

.home-feeling,
.trip-types {
  color: #19302f;
}

.home-feeling {
  padding: clamp(118px, 10vw, 158px) 0 clamp(146px, 12vw, 188px);
  background: #eef0eb;
}

.desire-layout {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: clamp(14px, 1.4vw, 22px);
}

.desire-copy {
  display: contents;
}

.desire-copy h2,
.trip-types__heading h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: -0.045em;
}

.desire-copy h2 {
  grid-row: 1;
  grid-column: 1 / 11;
  max-width: 1120px;
  font-size: var(--type-section-h2);
  line-height: 1.04;
  text-wrap: balance;
}

.section-intro {
  grid-row: 2;
  grid-column: 4 / 10;
  max-width: 720px;
  margin: clamp(34px, 3.3vw, 48px) 0 clamp(64px, 6vw, 88px);
  color: #50615c;
  font-size: 18px;
  line-height: 1.75;
}

.home-image,
.trip-types__visual {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 12px;
  background: #c7cec6;
}

.home-image img,
.trip-types__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.home-image--feature {
  grid-row: 3;
  grid-column: 1 / 9;
  min-height: clamp(520px, 44vw, 630px);
}

.home-image--feature img {
  object-position: 52% center;
}

.emotional-thumbs {
  grid-row: 3;
  grid-column: 9 / 13;
  display: grid;
  grid-template-rows: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(14px, 1.5vw, 22px);
  padding: clamp(24px, 2.2vw, 34px) 0 clamp(14px, 1.2vw, 20px);
}

.home-image img {
  position: static;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-image--living,
.home-image--veranda {
  width: 100%;
  min-height: 0;
  height: 100%;
  margin: 0;
}

.home-image--living img {
  object-position: center 44%;
}

.home-image--veranda {
  width: calc(100% - clamp(12px, 1.2vw, 18px));
}

.home-image--veranda img {
  object-position: 66% center;
}

.trip-types {
  padding: clamp(122px, 10vw, 158px) 0 clamp(144px, 12vw, 184px);
  background: #e4e9e3;
}

.trip-types__heading h2 {
  max-width: 1160px;
  font-size: var(--type-section-h2);
  line-height: 1.06;
  text-wrap: balance;
}

.trip-types__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: stretch;
  gap: clamp(48px, 6.5vw, 92px);
  margin-top: clamp(66px, 7vw, 98px);
}

.trip-types__visual {
  min-height: clamp(540px, 48vw, 680px);
}

.trip-types__visual img {
  object-position: 62% center;
}

.trip-type-grid {
  align-self: center;
}

.trip-type-card {
  display: grid;
  grid-template-columns: minmax(178px, 0.82fr) minmax(0, 1.18fr);
  align-items: baseline;
  gap: clamp(24px, 3vw, 42px);
  padding: clamp(27px, 2.5vw, 36px) 0;
  border-top: 1px solid rgba(25, 48, 47, 0.22);
  transition: color 180ms ease;
}

.trip-type-card:last-child {
  border-bottom: 1px solid rgba(25, 48, 47, 0.22);
}

.trip-type-card strong {
  font-family: var(--font-heading);
  font-size: clamp(34px, 3vw, 43px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.trip-type-card span {
  color: #50615c;
  font-size: 15px;
  line-height: 1.7;
}

.trip-type-card:hover {
  color: #8d6c28;
}

.trip-type-card:focus-visible {
  outline: 2px solid #b58e38;
  outline-offset: 6px;
}

.house-gallery,
.house-video {
  color: #19302f;
}

.house-gallery {
  padding: clamp(126px, 10vw, 160px) 0 clamp(146px, 12vw, 190px);
  background: #f1f2ee;
}

.house-gallery__heading h2,
.house-video__heading h2 {
  max-width: 1120px;
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(46px, 3.7vw, 50px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px clamp(23px, 2.4vw, 36px);
  margin: clamp(54px, 5vw, 72px) 0 clamp(48px, 5vw, 70px);
  border-bottom: 1px solid rgba(25, 48, 47, 0.18);
}

.gallery-filter {
  position: relative;
  padding: 0 0 15px;
  border: 0;
  color: #68746f;
  background: transparent;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: color 180ms ease;
}

.gallery-filter::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: #9b7730;
  content: "";
  opacity: 0;
  transform: scaleX(0.3);
  transform-origin: left;
  transition: opacity 180ms ease, transform 180ms ease;
}

.gallery-filter:hover,
.gallery-filter[aria-pressed="true"] {
  color: #19302f;
}

.gallery-filter[aria-pressed="true"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.gallery-filter:focus-visible,
.gallery-item__button:focus-visible,
.gallery-load-more:focus-visible,
.gallery-dialog__nav:focus-visible,
.video-card:focus-visible,
.media-dialog__close:focus-visible {
  outline: 2px solid #9b7730;
  outline-offset: 5px;
}

.gallery-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: start;
  gap: clamp(38px, 4vw, 58px) clamp(14px, 1.55vw, 24px);
  opacity: 1;
  transition: opacity 160ms ease, transform 240ms ease;
}

.gallery-grid.is-filtering {
  opacity: 0.15;
  transform: translateY(6px);
}

.gallery-item {
  grid-column: span 6;
  min-width: 0;
}

.gallery-item[hidden] {
  display: none !important;
}

.gallery-item--wide {
  grid-column: span 8;
}

.gallery-item--narrow {
  grid-column: span 4;
}

.house-gallery[data-active-filter="kitchen"] .gallery-item:not([hidden]) {
  grid-column: 2 / span 8;
}

.house-gallery[data-active-filter="bath"] .gallery-item:not([hidden]) {
  grid-column: span 6;
}

.gallery-item__button {
  width: 100%;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  text-align: left;
  cursor: zoom-in;
}

.gallery-item__media {
  position: relative;
  display: block;
  aspect-ratio: 1.45 / 1;
  overflow: hidden;
  border-radius: 12px;
  background: #c7cec6;
}

.gallery-item--wide .gallery-item__media {
  aspect-ratio: 1.64 / 1;
}

.gallery-item--narrow .gallery-item__media {
  aspect-ratio: 0.88 / 1;
}

.gallery-item--portrait .gallery-item__media {
  aspect-ratio: 0.75 / 1;
}

.gallery-item__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 70%, rgba(8, 22, 20, 0.12));
  content: "";
  pointer-events: none;
}

.gallery-item__media img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-item__button:hover img,
.gallery-item__button:focus-visible img {
  transform: scale(1.025);
}

.gallery-item__title {
  display: none;
}

.gallery-controls {
  display: flex;
  justify-content: center;
  margin-top: clamp(46px, 5vw, 70px);
}

.gallery-load-more {
  padding: 8px 0 10px;
  border: 0;
  border-bottom: 1px solid rgba(25, 48, 47, 0.5);
  color: #19302f;
  background: transparent;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease;
}

.gallery-load-more:hover {
  color: #7d6128;
  border-color: #9b7730;
}

.gallery-counter {
  display: none;
  margin: 0;
}

.house-video {
  padding: clamp(130px, 11vw, 172px) 0 clamp(150px, 13vw, 200px);
  background: #e4e9e3;
}

.house-video__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.55fr);
  align-items: end;
  gap: clamp(48px, 7vw, 108px);
}

.house-video__heading h2 {
  font-size: var(--type-section-h2);
  text-wrap: normal;
}

.house-video__heading .section-intro {
  display: block;
  grid-row: auto;
  grid-column: auto;
  max-width: 430px;
  margin: 0 0 9px;
  color: #50615c;
  font-size: var(--type-section-lead);
  line-height: var(--leading-section-lead);
}

.video-grid--desktop {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.5vw, 22px);
  margin-top: clamp(70px, 7vw, 102px);
}

.video-grid--mobile {
  display: none;
}

.video-card {
  display: grid;
  min-width: 0;
  padding: 0;
  border: 0;
  color: #19302f;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.video-card--feature {
  grid-row: auto;
}

.video-card__frame {
  position: relative;
  display: block;
  height: clamp(400px, 36vw, 520px);
  min-height: 0;
  overflow: hidden;
  border-radius: 12px;
  background: #20312e;
}

.video-card--feature .video-card__frame {
  height: clamp(400px, 36vw, 520px);
  min-height: 0;
}

.video-card__frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 17, 15, 0.02), rgba(5, 17, 15, 0.3));
  content: "";
}

.video-card__frame video {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.video-card:hover .video-card__frame video,
.video-card:focus-visible .video-card__frame video {
  transform: scale(1.02);
}

.video-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 66px;
  height: 66px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 50%;
  background: rgba(15, 42, 38, 0.58);
  backdrop-filter: blur(8px);
  transform: translate(-50%, -50%);
  transition: background-color 180ms ease, transform 180ms ease;
}

.video-card__play::after {
  position: absolute;
  top: 50%;
  left: 52%;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid #fff;
  content: "";
  transform: translate(-35%, -50%);
}

.video-card:hover .video-card__play {
  background: rgba(25, 70, 64, 0.82);
  transform: translate(-50%, -50%) scale(1.04);
}

.media-dialog {
  width: min(calc(100% - 48px), 1180px);
  max-height: calc(100dvh - 48px);
  padding: 0;
  border: 0;
  border-radius: 12px;
  color: #f8f5ed;
  background: #0b1716;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.34);
}

.media-dialog::backdrop {
  background: rgba(4, 13, 12, 0.82);
  backdrop-filter: blur(8px);
}

.media-dialog__close {
  position: relative;
  z-index: 2;
  min-height: 42px;
  padding: 0 17px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 9px;
  color: #fff;
  background: rgba(10, 27, 25, 0.72);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.gallery-dialog {
  overflow: visible;
  background: transparent;
  box-shadow: none;
}

.gallery-dialog .media-dialog__close {
  position: absolute;
  top: 16px;
  right: 16px;
}

.gallery-dialog figure {
  margin: 0;
}

.gallery-dialog img {
  width: 100%;
  max-height: calc(100dvh - 106px);
  border-radius: 12px;
  object-fit: contain;
}

.gallery-dialog figcaption {
  padding-top: 13px;
  font-family: var(--font-heading);
  font-size: 30px;
}

.gallery-dialog__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: #fff;
  background: rgba(10, 27, 25, 0.7);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
}

.gallery-dialog__nav--previous {
  left: 16px;
}

.gallery-dialog__nav--next {
  right: 16px;
}

.video-dialog {
  padding: 18px;
}

.video-dialog__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 0 16px;
}

.video-dialog__header h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 500;
  line-height: 1;
}

.video-dialog video {
  width: 100%;
  max-height: calc(100dvh - 142px);
  border-radius: 8px;
  background: #030807;
}

.mid-cta {
  color: #19302f;
  background: #e4e9e3;
  padding: 0 0 clamp(96px, 8vw, 128px);
}

.mid-cta__layout {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: end;
  gap: clamp(36px, 5vw, 76px);
  padding-top: clamp(58px, 5.5vw, 82px);
  border-top: 1px solid rgba(25, 48, 47, 0.18);
}

.mid-cta__copy {
  grid-column: 1 / span 7;
}

.mid-cta__copy h2 {
  max-width: 720px;
  margin: 0;
  font-family: var(--font-heading);
  font-size: var(--type-section-h2);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.mid-cta__copy p {
  max-width: 610px;
  margin: 30px 0 0;
  color: #50615c;
  font-size: var(--type-section-lead);
  line-height: var(--leading-section-lead);
}

.mid-cta__contact {
  grid-column: 9 / -1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}

.mid-cta__phone {
  font-family: var(--font-body);
  font-size: clamp(34px, 3vw, 44px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.035em;
  transition: color 180ms ease;
}

.mid-cta__phone:hover {
  color: #7d6128;
}

.mid-cta__phone:focus-visible {
  outline: 2px solid #9b7730;
  outline-offset: 6px;
}

.mid-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.mid-cta .button {
  min-width: 0;
  min-height: clamp(48px, 5.8svh, 52px);
  padding-inline: 24px;
}

.mid-cta .button--secondary {
  border-color: rgba(25, 48, 47, 0.45);
  color: #19302f;
  background: transparent;
  box-shadow: none;
}

.mid-cta .button--secondary:hover {
  border-color: #19302f;
  background: rgba(25, 48, 47, 0.05);
}

.mid-cta .button--primary {
  color: #f8f5ed;
  box-shadow: none;
}

.group-comfort {
  padding: clamp(118px, 9vw, 150px) 0 clamp(136px, 10vw, 168px);
  color: #19302f;
  background: #f3f4ef;
}

.group-comfort__heading {
  display: grid;
  grid-template-columns: minmax(0, 850px) minmax(120px, 1fr);
  align-items: end;
  gap: clamp(54px, 7vw, 112px);
}

.group-comfort__heading::after {
  width: 100%;
  height: 1px;
  margin-bottom: 13px;
  content: "";
  background: rgba(25, 48, 47, 0.24);
}

.group-comfort__heading h2 {
  max-width: 850px;
  margin: 0;
  font-family: var(--font-heading);
  font-size: var(--type-section-h2);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.group-comfort__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.78fr) minmax(320px, 0.92fr);
  align-items: start;
  gap: clamp(54px, 5.4vw, 76px);
  margin-top: clamp(54px, 5vw, 72px);
}

.comfort-feature {
  min-width: 0;
}

.comfort-feature__media {
  margin: 0;
  overflow: hidden;
  border-radius: 10px;
  background: #c7cec6;
}

.comfort-feature--primary .comfort-feature__media {
  aspect-ratio: 1.28 / 1;
}

.comfort-feature--compact .comfort-feature__media {
  aspect-ratio: 1.5 / 1;
}

.comfort-feature__media img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.comfort-feature__copy {
  display: grid;
  grid-template-columns: minmax(270px, 0.98fr) minmax(0, 1.1fr);
  align-items: start;
  gap: clamp(30px, 3.8vw, 56px);
  margin-top: 30px;
}

.comfort-feature__copy strong {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: end;
  gap: 22px;
  font-family: var(--font-heading);
  font-size: clamp(31px, 2.8vw, 40px);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.035em;
}

.comfort-feature__number {
  color: #779086;
  font-size: clamp(78px, 8vw, 116px);
  font-weight: 400;
  line-height: 0.72;
  letter-spacing: -0.06em;
}

.comfort-feature__label {
  padding-bottom: 1px;
}

.comfort-feature__copy p {
  margin: 0;
  color: #50615c;
  font-size: 15px;
  line-height: 1.68;
}

.group-comfort__rail {
  display: grid;
  gap: clamp(34px, 3vw, 46px);
  padding-left: clamp(28px, 3vw, 42px);
  border-left: 1px solid rgba(25, 48, 47, 0.18);
}

.group-comfort__rail .comfort-feature + .comfort-feature {
  padding-top: clamp(30px, 2.8vw, 42px);
  border-top: 1px solid rgba(25, 48, 47, 0.18);
}

.comfort-feature--compact .comfort-feature__copy {
  grid-template-columns: 1fr;
  gap: 13px;
  margin-top: 18px;
}

.comfort-feature--compact .comfort-feature__copy strong {
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  font-size: clamp(28px, 2.4vw, 35px);
}

.comfort-feature--compact .comfort-feature__number {
  font-size: clamp(64px, 6vw, 82px);
}

.comfort-feature--compact:last-child .comfort-feature__copy strong {
  display: block;
}

.trip-day {
  overflow: clip;
  padding: clamp(78px, 6vw, 96px) 0 clamp(88px, 6.5vw, 110px);
  color: #19302f;
  background: #eef1eb;
}

.trip-day__heading {
  display: grid;
  grid-template-columns: minmax(0, 820px) minmax(160px, 1fr);
  align-items: center;
  gap: clamp(48px, 6vw, 92px);
}

.trip-day__heading h2 {
  max-width: 820px;
  margin: 0;
  font-family: var(--font-heading);
  font-size: var(--type-section-h2);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.trip-day__edition {
  display: grid;
  grid-template-columns: minmax(118px, 1fr) auto;
  align-items: center;
  gap: clamp(18px, 2.2vw, 32px);
  min-width: 0;
  padding-left: clamp(22px, 2.6vw, 38px);
  border-left: 1px solid rgba(25, 48, 47, 0.18);
}

.trip-day__edition img {
  display: block;
  width: 100%;
  max-width: 210px;
  opacity: 0.62;
}

.trip-day__edition span {
  max-width: 82px;
  color: #78837e;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.75;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.trip-day__rhythm {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(28px, 2.6vw, 38px) clamp(18px, 2vw, 30px);
  margin-top: clamp(38px, 3.2vw, 48px);
  isolation: isolate;
}

.trip-day__trajectory,
.trip-day__botanical,
.trip-day__sun,
.trip-day__moon {
  position: absolute;
  pointer-events: none;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.trip-day__trajectory {
  z-index: 2;
  top: 47%;
  left: -1%;
  width: 66%;
  height: 96px;
  object-fit: fill;
  opacity: 0.26;
}

.trip-day__botanical {
  z-index: 2;
  top: 45%;
  left: 49%;
  width: 142px;
  opacity: 0.28;
}

.trip-day__sun {
  z-index: 2;
  top: 2%;
  left: 44%;
  width: 74px;
  opacity: 0.24;
}

.trip-day__moon {
  z-index: 2;
  right: 1.5%;
  bottom: 9%;
  width: 78px;
  opacity: 0.24;
}

.day-moment {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.day-moment--morning {
  display: grid;
  grid-column: 1 / span 7;
  grid-template-columns: minmax(0, 2.05fr) minmax(175px, 0.95fr);
  align-items: center;
  gap: clamp(30px, 3vw, 46px);
}

.day-moment--day {
  grid-column: 8 / -1;
  margin-top: 0;
}

.day-moment--evening {
  display: grid;
  grid-column: 2 / -1;
  grid-template-columns: minmax(0, 3.55fr) minmax(210px, 0.85fr);
  align-items: center;
  gap: clamp(30px, 3.2vw, 48px);
  margin-top: 0;
}

.day-moment__media {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #c7cec6;
}

.trip-day article:nth-child(1) figure {
  aspect-ratio: 1.28 / 1;
}

.trip-day article:nth-child(2) figure {
  aspect-ratio: 1.62 / 1;
}

.trip-day article:nth-child(3) figure {
  aspect-ratio: 2.6 / 1;
}

.day-moment--evening .day-moment__media img {
  object-position: 50% 52%;
}

.trip-day figure img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.day-moment__copy {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 22px;
}

.day-moment--morning .day-moment__copy,
.day-moment--evening .day-moment__copy {
  margin-top: 0;
}

.day-moment__copy span {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 0;
  color: #6a7772;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.day-moment__copy span::after {
  width: 38px;
  height: 1px;
  content: "";
  background: rgba(25, 48, 47, 0.32);
}

.day-moment__copy h3 {
  max-width: 520px;
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(30px, 2.65vw, 39px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.day-moment--day .day-moment__copy {
  grid-template-columns: minmax(78px, 0.3fr) minmax(0, 1fr);
  align-items: start;
  gap: 24px;
}

.day-moment--day .day-moment__copy h3 {
  font-size: clamp(29px, 2.4vw, 36px);
}

@media (min-width: 961px) {
  .home-feeling,
  .trip-types,
  .group-comfort,
  .trip-day {
    min-height: 100svh;
  }

  .home-feeling,
  .trip-types,
  .group-comfort {
    display: flex;
    align-items: center;
  }

  .home-feeling,
  .trip-types {
    padding-block: clamp(58px, 7svh, 106px);
  }

  .home-feeling > .container,
  .trip-types > .container,
  .group-comfort > .container,
  .trip-day > .container {
    width: min(calc(100% - 64px), 1320px);
  }

  .home-image--feature {
    height: clamp(420px, 62svh, 680px);
    min-height: 0;
  }

  .section-intro {
    margin-block: clamp(28px, 3.8svh, 44px) clamp(42px, 6svh, 76px);
  }

  .trip-types__layout {
    margin-top: clamp(42px, 6svh, 76px);
  }

  .trip-types__visual {
    height: clamp(440px, 64svh, 690px);
    min-height: 0;
  }

  .trip-type-card {
    padding-block: clamp(20px, 3svh, 34px);
  }

  .group-comfort {
    padding-block: clamp(28px, 5svh, 72px);
  }

  .group-comfort__layout {
    margin-top: clamp(28px, 4.5svh, 58px);
  }

  .comfort-feature--primary .comfort-feature__media {
    height: clamp(300px, 48svh, 520px);
    aspect-ratio: auto;
  }

  .comfort-feature--compact .comfort-feature__media {
    height: clamp(128px, 20svh, 220px);
    aspect-ratio: auto;
  }

  .comfort-feature__copy {
    margin-top: clamp(18px, 2.8svh, 30px);
  }

  .group-comfort__rail {
    gap: clamp(24px, 3.5svh, 42px);
  }

  .group-comfort__rail .comfort-feature + .comfort-feature {
    padding-top: clamp(22px, 3.2svh, 36px);
  }

  .trip-day {
    display: flex;
    align-items: center;
    padding-block: clamp(30px, 5svh, 62px);
  }

  .trip-day__rhythm {
    row-gap: clamp(18px, 2.8svh, 30px);
    margin-top: clamp(24px, 3.8svh, 42px);
  }

  .day-moment--morning .day-moment__media {
    height: clamp(205px, 28svh, 330px);
    aspect-ratio: auto;
  }

  .day-moment--day .day-moment__media {
    height: clamp(184px, 25svh, 290px);
    aspect-ratio: auto;
  }

  .day-moment--evening .day-moment__media {
    height: clamp(184px, 25svh, 290px);
    aspect-ratio: auto;
  }

  .day-moment__copy {
    gap: 12px;
    margin-top: 14px;
  }

  .trip-day__trajectory {
    top: 43%;
    height: clamp(58px, 8svh, 82px);
  }

  .trip-day__botanical {
    top: 40%;
    width: 124px;
  }
}



@media (max-width: 1240px) {
  .site-header {
    padding-inline: 28px;
  }

  .site-nav {
    gap: 17px;
    padding-inline: 22px;
  }

  .site-nav a,
  .site-header__phone {
    font-size: 12px;
  }

  .site-header__actions {
    gap: 13px;
  }

  .button--header {
    padding-inline: 18px;
  }
}

@media (max-width: 960px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav,
  .site-header__phone {
    display: none;
  }

  .hero__content {
    width: min(680px, 74vw);
  }

  .media-strip__track {
    grid-auto-flow: column;
    grid-auto-columns: minmax(270px, 62vw);
    grid-template-columns: none;
    align-items: center;
    overflow-x: auto;
    padding: 24px max(24px, calc(50vw - 31vw)) 28px;
    scrollbar-width: none;
    scroll-padding-inline: max(24px, calc(50vw - 31vw));
    scroll-snap-type: x mandatory;
  }

  .media-strip__track::-webkit-scrollbar {
    display: none;
  }

  .media-strip__item {
    min-height: clamp(300px, 66vw, 470px);
    margin-top: 0;
    opacity: 0.7;
    scroll-snap-align: center;
    transform: scale(0.9);
    transition: opacity 260ms ease, transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .media-strip__item--center,
  .media-strip__item.is-active {
    min-height: clamp(390px, 88vw, 570px);
    opacity: 1;
    transform: scale(1);
  }

  .desire-copy h2 {
    grid-column: 1 / 11;
  }

  .section-intro {
    grid-column: 3 / 11;
  }

  .home-image--feature {
    grid-column: 1 / 9;
  }

  .emotional-thumbs {
    grid-column: 9 / 13;
  }

  .trip-types__layout {
    gap: 42px;
  }

  .trip-type-card {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .house-video__heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .house-video__heading .section-intro {
    max-width: 650px;
  }

  .video-grid--desktop {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .mid-cta__layout {
    grid-template-columns: 1fr;
  }

  .mid-cta__copy,
  .mid-cta__contact {
    grid-column: 1;
  }

  .mid-cta__copy p {
    max-width: 680px;
  }

  .group-comfort__layout {
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.85fr);
    gap: 48px;
  }

  .comfort-feature__copy {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(calc(100% - 36px), 1280px);
  }

  .facts-strip__grid {
    padding-block: 44px;
  }

  .fact-item {
    gap: 7px;
    padding-inline: 10px;
  }

  .fact-item strong {
    font-size: clamp(38px, 11vw, 54px);
  }

  .fact-item span {
    font-size: 10px;
    letter-spacing: 0.08em;
  }

  .media-strip {
    padding-bottom: 44px;
  }

  .media-strip__track {
    width: 100%;
    grid-auto-columns: minmax(248px, 78vw);
    padding-inline: 11vw;
    scroll-padding-inline: 11vw;
  }

  .home-feeling,
  .trip-types {
    padding-block: 84px 96px;
  }

  .desire-layout {
    grid-template-columns: 1fr;
  }

  .desire-copy h2,
  .section-intro,
  .home-image--feature,
  .emotional-thumbs {
    grid-column: 1;
  }

  .desire-copy h2 {
    grid-row: 1;
    font-size: clamp(39px, 10.8vw, 46px);
    line-height: 1.03;
  }

  .section-intro {
    grid-row: 2;
    margin: 28px 0 46px;
    font-size: 16px;
    line-height: 1.72;
  }

  .home-image--feature {
    grid-row: 3;
    min-height: 360px;
  }

  .emotional-thumbs {
    grid-row: 4;
    grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
    grid-template-rows: none;
    gap: 12px;
    margin-top: 12px;
    padding: 0;
  }

  .home-image--living,
  .home-image--veranda {
    width: 100%;
    min-height: 210px;
    height: 210px;
    margin: 0;
  }

  .trip-types__heading h2 {
    font-size: clamp(36px, 9.8vw, 42px);
    line-height: 1.05;
  }

  .trip-types__layout {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 48px;
  }

  .trip-types__visual {
    min-height: 380px;
  }

  .trip-type-card {
    padding-block: 24px;
  }

  .trip-type-card strong {
    font-size: 36px;
  }

  .house-gallery,
  .house-video {
    padding-block: 88px 104px;
  }

  .house-gallery__heading h2,
  .house-video__heading h2 {
    font-size: clamp(39px, 10.8vw, 46px);
    line-height: 1.03;
  }

  .gallery-filters {
    flex-wrap: nowrap;
    gap: 25px;
    margin-block: 42px 40px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .gallery-filters::-webkit-scrollbar {
    display: none;
  }

  .gallery-filter {
    flex: 0 0 auto;
  }

  .gallery-grid {
    grid-auto-flow: column;
    grid-auto-columns: calc(100% - 44px);
    grid-template-columns: none;
    align-items: stretch;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 14px;
    scroll-padding-inline: 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .gallery-grid::-webkit-scrollbar {
    display: none;
  }

  .gallery-item,
  .gallery-item--narrow,
  .gallery-item--half,
  .gallery-item--wide,
  .house-gallery[data-active-filter="kitchen"] .gallery-item:not([hidden]) {
    grid-column: auto;
    scroll-snap-align: start;
    scroll-snap-stop: normal;
  }

  .gallery-item__media,
  .gallery-item--wide .gallery-item__media,
  .gallery-item--narrow .gallery-item__media,
  .gallery-item--portrait .gallery-item__media {
    aspect-ratio: 4 / 5;
  }

  .gallery-controls {
    align-items: center;
    justify-content: space-between;
    margin-top: 17px;
  }

  .gallery-counter {
    display: block;
    color: #68746f;
    font-family: var(--font-body);
    font-size: 13px;
    font-variant-numeric: tabular-nums;
  }

  .gallery-load-more {
    font-size: 13px;
  }

  .house-video__heading {
    gap: 25px;
  }

  .house-video__heading .section-intro {
    font-size: 16px;
    line-height: 1.72;
  }

  .video-grid--desktop {
    display: none;
  }

  .video-grid--mobile {
    display: block;
    margin-top: 48px;
  }

  .video-grid--mobile .video-card__frame {
    height: auto;
    aspect-ratio: 4 / 5;
    min-height: 0;
  }

  .mid-cta {
    padding-bottom: 96px;
  }

  .mid-cta__layout {
    gap: 42px;
    padding-top: 68px;
  }

  .mid-cta__copy h2 {
    font-size: clamp(40px, 11.5vw, 48px);
    line-height: 1;
  }

  .mid-cta__copy p {
    margin-top: 24px;
    font-size: 16px;
    line-height: 1.7;
  }

  .mid-cta__contact {
    gap: 25px;
  }

  .mid-cta__phone {
    font-size: clamp(32px, 9vw, 38px);
  }

  .mid-cta__actions {
    width: 100%;
  }

  .mid-cta .button {
    flex: 1 1 150px;
  }

  .group-comfort {
    padding-block: 92px 110px;
  }

  .group-comfort__heading h2 {
    font-size: clamp(39px, 10.8vw, 46px);
    line-height: 1.03;
  }

  .group-comfort__heading,
  .trip-day__heading {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .group-comfort__heading::after {
    display: none;
  }

  .trip-day__edition {
    grid-template-columns: 88px auto;
    justify-content: end;
    gap: 16px;
    width: fit-content;
    margin: 28px 0 0 auto;
    padding-left: 18px;
  }

  .trip-day__edition span {
    max-width: 74px;
    font-size: 9px;
  }

  .group-comfort__layout {
    grid-template-columns: 1fr;
    gap: 58px;
    margin-top: 52px;
  }

  .group-comfort__rail {
    gap: 52px;
    padding-top: 0;
    padding-left: 0;
    border-left: 0;
  }

  .group-comfort__rail .comfort-feature + .comfort-feature {
    padding-top: 52px;
  }

  .comfort-feature--primary .comfort-feature__media,
  .comfort-feature--compact .comfort-feature__media {
    aspect-ratio: 4 / 3;
  }

  .comfort-feature__copy,
  .comfort-feature--compact .comfort-feature__copy {
    gap: 14px;
    margin-top: 20px;
  }

  .comfort-feature__copy strong,
  .comfort-feature--compact .comfort-feature__copy strong {
    font-size: 32px;
  }

  .comfort-feature__copy strong,
  .comfort-feature--compact .comfort-feature__copy strong {
    gap: 16px;
  }

  .comfort-feature__number,
  .comfort-feature--compact .comfort-feature__number {
    font-size: 72px;
  }

  .comfort-feature__copy p {
    font-size: 15px;
  }

  .trip-day {
    padding-block: 92px 110px;
  }

  .trip-day__heading h2 {
    font-size: clamp(39px, 10.8vw, 46px);
    line-height: 1.03;
  }

  .trip-day__edition {
    grid-template-columns: minmax(110px, 150px) auto;
    justify-content: end;
    gap: 18px;
    width: min(100%, 268px);
    margin-top: 28px;
    margin-left: auto;
    padding-left: 0;
    border-left: 0;
  }

  .trip-day__edition img {
    max-width: 150px;
  }

  .trip-day__edition span {
    max-width: 72px;
    font-size: 9px;
    line-height: 1.65;
  }

  .trip-day__rhythm {
    grid-template-columns: 1fr;
    gap: 52px;
    margin-top: 52px;
    padding-left: 18px;
  }

  .trip-day__trajectory {
    top: 4%;
    left: 68px;
    width: 1120px;
    height: 54px;
    opacity: 0.25;
    transform: rotate(90deg);
    transform-origin: top left;
  }

  .trip-day__botanical {
    top: 44%;
    right: -18px;
    left: auto;
    width: 132px;
    opacity: 0.25;
  }

  .trip-day__sun {
    top: 3%;
    right: -2px;
    left: auto;
    width: 54px;
    opacity: 0.22;
  }

  .trip-day__moon {
    right: -2px;
    bottom: 5%;
    width: 58px;
    opacity: 0.22;
  }

  .day-moment--morning,
  .day-moment--day,
  .day-moment--evening {
    grid-column: 1;
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .trip-day article:nth-child(1) figure {
    aspect-ratio: 5 / 4;
  }

  .trip-day article:nth-child(2) figure {
    aspect-ratio: 4 / 3;
  }

  .trip-day article:nth-child(3) figure {
    aspect-ratio: 3 / 2;
  }

  .day-moment__copy,
  .day-moment--morning .day-moment__copy,
  .day-moment--day .day-moment__copy,
  .day-moment--evening .day-moment__copy {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 20px;
  }

  .day-moment__copy span {
    padding-top: 0;
  }

  .day-moment__copy h3 {
    font-size: 32px;
  }

  .media-dialog {
    width: min(calc(100% - 24px), 1180px);
  }

  .gallery-dialog__nav {
    top: auto;
    bottom: 48px;
    width: 44px;
    height: 44px;
    transform: none;
  }

  .gallery-dialog__nav--previous {
    left: 12px;
  }

  .gallery-dialog__nav--next {
    right: 12px;
  }

  .video-dialog {
    padding: 12px;
  }

  .video-dialog__header h2 {
    font-size: 27px;
  }
}

@media (max-width: 767px) and (orientation: portrait) {
  .hero {
    background-image: url("assets/images/hero-night-mobile-poster.jpg");
    background-position: 66% center;
  }

  .hero__media {
    object-position: 66% center;
  }

  .hero__scrim {
    background:
      linear-gradient(180deg, rgba(2, 8, 13, 0.58) 0%, rgba(2, 8, 13, 0.30) 44%, rgba(2, 8, 13, 0.08) 67%, rgba(2, 8, 13, 0.28) 100%),
      linear-gradient(90deg, rgba(2, 9, 14, 0.78) 0%, rgba(3, 11, 17, 0.46) 58%, rgba(3, 11, 17, 0.10) 100%);
  }

  .site-header {
    min-height: 88px;
    padding-inline: 18px;
  }

  .brand {
    gap: 10px;
    font-size: 16px;
  }

  .brand__mark {
    width: 38px;
    height: 38px;
    font-size: 12px;
  }

  .site-header__actions {
    gap: 0;
  }

  .button--header {
    min-height: 48px;
    padding-inline: 18px;
    font-size: 14px;
  }

  .hero__inner {
    align-items: flex-start;
    padding: 144px 20px 24px;
  }

  .hero__content {
    width: min(100%, 360px);
  }

  .hero__heading {
    max-width: 360px;
    margin-top: 26px;
    font-size: clamp(42px, 11.8vw, 48px);
    line-height: 0.91;
    letter-spacing: -0.025em;
    text-wrap: balance;
  }

  .hero__heading-layer--night {
    font-size: clamp(52px, 14.5vw, 60px);
  }

  .hero__heading-layer--day {
    font-size: clamp(40px, 10.5vw, 44px);
  }

  .hero__lead,
  .hero__price,
  .hero__actions {
    display: none;
  }
}

@media (max-height: 950px) and (min-width: 961px) {
  .site-header {
    min-height: 82px;
  }

  .hero__inner {
    padding-top: 116px;
    padding-bottom: 34px;
  }

  .hero__heading {
    margin-top: 33px;
  }

  .hero__lead {
    margin-top: 20px;
    font-size: var(--type-section-lead);
    line-height: 1.55;
  }

  .hero__price {
    margin-top: 26px;
  }

  .hero__actions {
    margin-top: clamp(34px, 5.5svh, 56px);
  }
}

@media (prefers-reduced-motion: reduce) {
  :root {
    --hero-scroll-length: 100vh;
  }

  html {
    scroll-behavior: auto;
  }

  .button,
  .brand,
  .site-nav a,
  .site-header__phone {
    transition: none;
  }

  .teaser-frame {
    animation: none;
  }

  .teaser-frame--one {
    opacity: 1;
    transform: none;
  }

  .hero-scroll {
    --hero-night-heading-opacity: 1;
    --hero-day-heading-opacity: 0;
    --hero-night-glow-opacity: 0;
    --hero-scrim-opacity: 1;
  }

  .gallery-grid,
  .gallery-filter,
  .gallery-filter::after,
  .gallery-load-more,
  .gallery-item__media img,
  .video-card__frame video,
  .video-card__play {
    transition: none;
  }
}

.stay-put {
  overflow: clip;
  padding: clamp(82px, 7vw, 112px) 0 clamp(96px, 8vw, 132px);
  color: #19302f;
  background: #f3f4ef;
}

.stay-put h2 {
  max-width: 1040px;
  margin: 0;
  font-family: var(--font-heading);
  font-size: var(--type-section-h2);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.stay-put__layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(300px, 0.94fr);
  align-items: start;
  gap: clamp(26px, 3vw, 44px);
  margin-top: clamp(34px, 4vw, 54px);
}

.stay-put__feature,
.stay-put__media {
  min-width: 0;
  margin: 0;
}

.stay-put__media {
  height: clamp(390px, 52svh, 570px);
  overflow: hidden;
  border-radius: 8px;
  background: #c7cec6;
}

.stay-put__media img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.stay-put__feature--pool .stay-put__media img {
  object-position: 50% 52%;
}

.stay-put__feature--hammam .stay-put__media img {
  object-position: 49% 50%;
}

.stay-put__copy {
  margin-top: clamp(20px, 2vw, 28px);
}

.stay-put__copy h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(34px, 3vw, 45px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.035em;
}

.stay-put__feature--hammam .stay-put__copy h3 {
  font-size: clamp(31px, 2.45vw, 38px);
}

.stay-put__copy p {
  margin: 12px 0 0;
  color: #697571;
  font-size: clamp(14px, 1.15vw, 16px);
  line-height: 1.65;
}

@media (min-width: 961px) {
  .stay-put {
    display: flex;
    align-items: center;
    min-height: 100svh;
    padding-block: clamp(34px, 5svh, 64px);
  }

  .stay-put > .container {
    width: min(calc(100% - 64px), 1320px);
  }
}

@media (max-width: 960px) {
  .stay-put {
    padding-block: 92px 110px;
  }

  .stay-put h2 {
    font-size: clamp(44px, 7vw, 58px);
    line-height: 1;
  }

  .stay-put__layout {
    grid-template-columns: minmax(0, 1.55fr) minmax(260px, 0.8fr);
    gap: 30px;
    margin-top: 44px;
  }

  .stay-put__media {
    height: clamp(380px, 54vw, 500px);
  }
}

@media (max-width: 700px) {
  .stay-put h2 {
    font-size: clamp(39px, 10.8vw, 46px);
    line-height: 1.03;
  }

  .stay-put__layout {
    grid-template-columns: 1fr;
    gap: 54px;
    margin-top: 48px;
  }

  .stay-put__media {
    height: auto;
  }

  .stay-put__feature--pool .stay-put__media {
    aspect-ratio: 4 / 3;
  }

  .stay-put__feature--hammam .stay-put__media {
    aspect-ratio: 4 / 5;
  }

  .stay-put__feature--pool .stay-put__media img {
    object-position: 50% 50%;
  }

  .stay-put__copy {
    margin-top: 20px;
  }

  .stay-put__copy h3,
  .stay-put__feature--hammam .stay-put__copy h3 {
    font-size: 32px;
  }

  .stay-put__copy p {
    margin-top: 10px;
    font-size: 15px;
  }
}

.kitchen-story {
  overflow: clip;
  padding: clamp(88px, 7vw, 116px) 0 clamp(100px, 8vw, 136px);
  color: #19302f;
  background: #eef1eb;
}

.kitchen-story__layout {
  display: grid;
  grid-template-columns: minmax(350px, 0.92fr) minmax(370px, 1.08fr) minmax(220px, 0.58fr);
  grid-template-rows: 1fr auto 1fr;
  gap: 0 clamp(22px, 2.2vw, 34px);
}

.kitchen-story h2 {
  grid-column: 1;
  grid-row: 1;
  align-self: end;
  max-width: 480px;
  margin: 0;
  font-family: var(--font-heading);
  font-size: var(--type-section-h2);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.kitchen-story__amenities {
  grid-column: 1;
  grid-row: 2 / 4;
  align-self: start;
  margin-top: clamp(42px, 5svh, 64px);
}

.kitchen-story__amenities::before {
  display: block;
  width: 58px;
  height: 1px;
  margin-bottom: 28px;
  content: "";
  background: rgba(25, 48, 47, 0.34);
}

.kitchen-story__amenities h3 {
  margin: 0;
  color: #66736e;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.kitchen-story__amenities ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 460px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.kitchen-story__amenities li {
  padding: 10px 18px;
  color: #334744;
  border: 1px solid rgba(25, 48, 47, 0.24);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
}

.kitchen-story__media {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #c7cec6;
}

.kitchen-story__media--main {
  grid-column: 2;
  grid-row: 1 / 4;
  height: clamp(560px, 72svh, 720px);
}

.kitchen-story__media--secondary {
  grid-column: 3;
  grid-row: 1 / 4;
  align-self: center;
  height: clamp(470px, 61svh, 610px);
}

.kitchen-story__media img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.kitchen-story__media--main img {
  object-position: 51% 50%;
}

.kitchen-story__media--secondary img {
  object-position: 53% 50%;
}

@media (min-width: 961px) {
  .kitchen-story {
    display: flex;
    align-items: center;
    min-height: 100svh;
    padding-block: clamp(34px, 5svh, 64px);
  }

  .kitchen-story > .container {
    width: min(calc(100% - 64px), 1320px);
  }
}

@media (max-width: 1120px) and (min-width: 701px) {
  .kitchen-story__layout {
    grid-template-columns: minmax(300px, 0.92fr) minmax(330px, 1.08fr) minmax(190px, 0.58fr);
    gap: 0 22px;
  }

  .kitchen-story h2 {
    font-size: clamp(45px, 5vw, 56px);
  }

  .kitchen-story__amenities li {
    padding-inline: 14px;
    font-size: 13px;
  }
}

@media (max-width: 700px) {
  .kitchen-story {
    padding-block: 92px 110px;
  }

  .kitchen-story__layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 0;
  }

  .kitchen-story h2,
  .kitchen-story__media--main,
  .kitchen-story__amenities,
  .kitchen-story__media--secondary {
    grid-column: 1;
    grid-row: auto;
  }

  .kitchen-story h2 {
    max-width: none;
    font-size: clamp(39px, 10.8vw, 46px);
    line-height: 1.02;
  }

  .kitchen-story__media--main {
    height: auto;
    margin-top: 46px;
    aspect-ratio: 4 / 5;
  }

  .kitchen-story__amenities {
    margin-top: 42px;
  }

  .kitchen-story__amenities::before {
    margin-bottom: 24px;
  }

  .kitchen-story__amenities ul {
    gap: 9px;
    margin-top: 16px;
  }

  .kitchen-story__amenities li {
    padding: 10px 15px;
    font-size: 13px;
  }

  .kitchen-story__media--secondary {
    height: auto;
    margin-top: 50px;
    aspect-ratio: 4 / 5;
  }

  .kitchen-story__media--main img {
    object-position: 48% 50%;
  }

  .kitchen-story__media--secondary img {
    object-position: 53% 50%;
  }
}

.amenities-section {
  position: relative;
  overflow: clip;
  padding: clamp(68px, 5.5vw, 88px) 0 clamp(76px, 6vw, 98px);
  color: #19302f;
  background: #f3f4ef;
  isolation: isolate;
}

.amenities-section__branch {
  position: absolute;
  z-index: -1;
  top: -22px;
  right: -34px;
  width: clamp(260px, 27vw, 410px);
  max-width: none;
  opacity: 0.2;
  pointer-events: none;
}

.amenities-section__heading {
  position: relative;
  z-index: 1;
  max-width: 850px;
}

.amenities-section__heading h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: var(--type-section-h2);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.amenities-section__heading p {
  margin: 14px 0 0;
  color: #697571;
  font-size: var(--type-section-lead);
  line-height: var(--leading-section-lead);
}

.amenities-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.35vw, 20px);
  margin: clamp(30px, 3vw, 42px) 0 0;
  padding: 0;
  list-style: none;
}

.amenity-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  min-height: clamp(112px, 9vw, 132px);
  padding: clamp(16px, 1.4vw, 20px);
  border: 1px solid rgba(25, 48, 47, 0.17);
  border-radius: 8px;
  background: rgba(248, 249, 245, 0.62);
}

.amenity-item img {
  width: clamp(48px, 4.2vw, 58px);
  height: auto;
  max-width: none;
}

.amenity-item span {
  display: block;
  margin-top: 10px;
  color: #263c39;
  font-size: clamp(15px, 1.25vw, 17px);
  font-weight: 500;
  line-height: 1.35;
}

@media (max-width: 1080px) {
  .amenities-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .amenity-item {
    min-height: 142px;
  }
}

@media (max-width: 700px) {
  .amenities-section {
    padding-block: 92px 110px;
  }

  .amenities-section__branch {
    top: -8px;
    right: -76px;
    width: 250px;
    opacity: 0.15;
  }

  .amenities-section__heading {
    max-width: 310px;
  }

  .amenities-section__heading h2 {
    font-size: clamp(39px, 10.8vw, 46px);
    line-height: 1.03;
  }

  .amenities-section__heading p {
    max-width: 270px;
    margin-top: 14px;
    font-size: 16px;
  }

  .amenities-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 40px;
  }

  .amenity-item {
    min-height: 178px;
    padding: 20px 17px;
  }

  .amenity-item img {
    width: 64px;
  }

  .amenity-item span {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.32;
  }
}

@media (max-width: 360px) {
  .amenities-grid {
    grid-template-columns: 1fr;
  }

  .amenity-item {
    min-height: 154px;
  }
}

@media (min-width: 1051px) and (min-height: 720px) {
  .home-feeling,
  .group-comfort {
    display: block;
    height: 100svh;
    min-height: 720px;
    padding-block: 0;
  }

  .home-feeling > .container,
  .group-comfort > .container {
    height: 100%;
    padding-block: clamp(30px, 4.2svh, 54px);
  }

  .home-feeling > .container {
    grid-template-rows: auto auto minmax(0, 1fr);
    row-gap: clamp(18px, 2.8svh, 32px);
  }

  .home-feeling .section-intro {
    margin-block: 0;
  }

  .home-image--feature,
  .emotional-thumbs {
    min-height: 0;
    height: 100%;
  }

  .emotional-thumbs {
    padding-block: 0;
  }

  .group-comfort > .container {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    gap: clamp(18px, 2.8svh, 32px);
    padding-bottom: clamp(24px, 3.4svh, 46px);
  }

  .group-comfort__heading h2 {
    font-size: var(--type-section-h2);
  }

  .group-comfort__layout {
    min-height: 0;
    height: 100%;
    margin-top: 0;
  }

  .comfort-feature--primary,
  .comfort-feature--compact {
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    min-height: 0;
    height: 100%;
  }

  .comfort-feature--primary .comfort-feature__media,
  .comfort-feature--compact .comfort-feature__media {
    min-height: 0;
    height: 100%;
    aspect-ratio: auto;
  }

  .comfort-feature--primary {
    grid-template-rows: auto auto;
    align-content: start;
    height: auto;
  }

  .comfort-feature--primary .comfort-feature__media {
    height: clamp(286px, 41.5svh, 448px);
  }

  .comfort-feature__copy {
    margin-top: clamp(14px, 2svh, 24px);
  }

  .group-comfort__rail {
    grid-template-rows: auto auto;
    gap: clamp(14px, 2svh, 24px);
    min-height: 0;
    height: auto;
    align-content: start;
  }

  .comfort-feature--compact {
    grid-template-rows: auto auto;
    height: auto;
  }

  .comfort-feature--compact .comfort-feature__media {
    height: clamp(128px, 19.6svh, 220px);
  }

  .group-comfort__rail .comfort-feature + .comfort-feature {
    padding-top: clamp(14px, 2svh, 24px);
  }

  .comfort-feature--compact .comfort-feature__copy {
    gap: clamp(7px, 1svh, 12px);
    margin-top: clamp(10px, 1.5svh, 16px);
  }

  /* Keep the large feature and the right-hand rail on independent vertical tracks. */
  .group-comfort > .container {
    grid-template-columns: minmax(0, 1.78fr) minmax(320px, 0.92fr);
    grid-template-rows: auto minmax(0, 1fr);
    column-gap: clamp(54px, 5.4vw, 76px);
    row-gap: clamp(18px, 2.8svh, 32px);
  }

  .group-comfort__heading {
    display: block;
    grid-column: 1;
    grid-row: 1;
  }

  .group-comfort__heading::after {
    display: none;
  }

  .group-comfort__layout {
    display: contents;
  }

  .comfort-feature--primary {
    grid-column: 1;
    grid-row: 2;
    margin-top: clamp(12px, 1.8svh, 20px);
  }

  .comfort-feature--primary .comfort-feature__media {
    height: clamp(354px, 50svh, 540px);
  }

  .group-comfort__rail {
    grid-column: 2;
    grid-row: 1 / span 2;
    height: 100%;
    padding-top: clamp(28px, 4svh, 42px);
  }

  .group-comfort__rail::before {
    width: 100%;
    height: 1px;
    margin-bottom: clamp(10px, 1.5svh, 16px);
    content: "";
    background: rgba(25, 48, 47, 0.24);
  }

  .comfort-feature--primary .comfort-feature__copy {
    grid-template-columns: clamp(62px, 5.6vw, 80px) minmax(0, 1fr);
    column-gap: clamp(16px, 1.8vw, 26px);
    row-gap: 8px;
  }

  .comfort-feature--primary .comfort-feature__copy strong {
    display: contents;
  }

  .comfort-feature--primary .comfort-feature__number {
    grid-column: 1;
    grid-row: 1 / span 2;
    align-self: start;
  }

  .comfort-feature--primary .comfort-feature__label {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
    padding-bottom: 0;
  }

  .comfort-feature--primary .comfort-feature__copy p {
    grid-column: 2;
    grid-row: 2;
    max-width: 660px;
  }
}

.group-program {
  overflow: clip;
  padding: clamp(96px, 7.5vw, 124px) 0 clamp(108px, 8.5vw, 142px);
  color: #eef1e9;
  background: #0c2a26;
}

.group-program__intro {
  max-width: 990px;
}

.group-program__intro h2 {
  max-width: 920px;
  margin: 0;
  font-family: var(--font-heading);
  font-size: var(--type-section-h2);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.group-program__intro p {
  max-width: 900px;
  margin: clamp(24px, 2.6vw, 34px) 0 0;
  color: rgba(238, 241, 233, 0.76);
  font-size: var(--type-section-lead);
  line-height: var(--leading-section-lead);
}

.group-program__media {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.04fr);
  gap: clamp(16px, 1.5vw, 22px);
  margin-top: clamp(42px, 4.5vw, 62px);
}

.group-program__media figure {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 1.68 / 1;
  border-radius: 12px;
  background: #183832;
}

.group-program__media img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.group-program__media figure:first-child img {
  object-position: 50% 52%;
}

.group-program__media figure:last-child img {
  object-position: 50% 51%;
}

.group-program__directions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: clamp(22px, 2vw, 28px) 0 0;
  padding: 0;
  border-top: 1px solid rgba(238, 241, 233, 0.26);
  border-bottom: 1px solid rgba(238, 241, 233, 0.26);
  list-style: none;
}

.group-program__directions li {
  display: flex;
  align-items: center;
  min-width: 0;
  min-height: 96px;
  padding: 22px clamp(18px, 2vw, 28px);
  color: rgba(238, 241, 233, 0.92);
  font-size: clamp(12px, 1.05vw, 14px);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.group-program__directions li + li {
  border-left: 1px solid rgba(238, 241, 233, 0.2);
}

.group-program__action {
  margin-top: clamp(28px, 3vw, 38px);
}

.group-program__button {
  min-width: 218px;
  min-height: 58px;
  color: #f4f5ef;
  background: #2c6b59;
  box-shadow: 0 16px 34px rgba(2, 15, 13, 0.2);
}

.group-program__button:hover {
  background: #357a66;
}

@media (min-width: 1051px) and (min-height: 720px) {
  .group-program {
    height: 100svh;
    min-height: 720px;
    padding-block: 0;
  }

  .group-program > .container {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto auto;
    gap: clamp(18px, 2.8svh, 30px);
    height: 100%;
    padding-block: clamp(30px, 4.2svh, 54px);
  }

  .group-program__intro h2 {
    font-size: var(--type-section-h2);
  }

  .group-program__intro p {
    margin-top: clamp(12px, 1.8svh, 22px);
    font-size: var(--type-section-lead);
    line-height: var(--leading-section-lead);
  }

  .group-program__media {
    min-height: 0;
    height: min(100%, clamp(200px, 28svh, 300px));
    align-self: center;
    margin-top: 0;
  }

  .group-program__media figure {
    min-height: 0;
    height: 100%;
    aspect-ratio: auto;
  }

  .group-program__directions {
    margin-top: 0;
  }

  .group-program__directions li {
    min-height: clamp(64px, 8.8svh, 88px);
    padding-block: clamp(14px, 2.1svh, 21px);
  }

  .group-program__action {
    margin-top: 0;
  }

  .group-program__button {
    min-height: clamp(52px, 7svh, 58px);
  }
}

@media (max-width: 960px) {
  .group-program__directions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .group-program__directions li:nth-child(3) {
    border-left: 0;
  }

  .group-program__directions li:nth-child(n + 3) {
    border-top: 1px solid rgba(238, 241, 233, 0.2);
  }
}

@media (max-width: 700px) {
  .group-program {
    padding-block: 92px 110px;
  }

  .group-program__intro h2 {
    font-size: clamp(39px, 10.8vw, 46px);
    line-height: 1.03;
  }

  .group-program__intro p {
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.7;
  }

  .group-program__media {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 38px;
  }

  .group-program__media figure {
    aspect-ratio: 4 / 3;
    border-radius: 10px;
  }

  .group-program__directions {
    margin-top: 22px;
  }

  .group-program__directions li {
    min-height: 82px;
    padding: 18px 15px;
    font-size: 12px;
    letter-spacing: 0.1em;
  }

  .group-program__action {
    margin-top: 28px;
  }
}

@media (max-width: 360px) {
  .group-program__directions {
    grid-template-columns: 1fr;
  }

  .group-program__directions li + li,
  .group-program__directions li:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(238, 241, 233, 0.2);
  }
}

.celebrations-section {
  position: relative;
  overflow: clip;
  padding: clamp(78px, 6.8vw, 104px) 0 clamp(82px, 7vw, 108px);
  color: #19302f;
  background:
    radial-gradient(circle at 4% 31%, rgba(149, 133, 78, 0.78) 0 4px, transparent 5px),
    radial-gradient(circle at 47% 14%, rgba(163, 116, 48, 0.82) 0 4px, transparent 5px),
    radial-gradient(circle at 73% 25%, rgba(121, 141, 116, 0.78) 0 4px, transparent 5px),
    radial-gradient(circle at 95% 59%, rgba(158, 115, 49, 0.78) 0 4px, transparent 5px),
    #f7f4ee;
}

.celebrations-section__layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  align-items: center;
  gap: clamp(40px, 4vw, 60px);
  min-height: 430px;
}

.celebrations-section__copy {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.celebrations-section__copy h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(58px, 5.25vw, 76px);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.052em;
}

.celebrations-section__copy h2 span {
  display: block;
}

.celebrations-section__copy p {
  max-width: 540px;
  margin: clamp(28px, 2.6vw, 38px) 0 0;
  color: #31413e;
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 1.58;
}

.celebrations-section__button {
  min-width: 246px;
  margin-top: clamp(28px, 2.6vw, 38px);
  color: #f7f4ee;
  background: #163d36;
  box-shadow: none;
}

.celebrations-section__button::after {
  margin-left: 18px;
  color: #c59a4a;
  content: "→";
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
}

.celebrations-section__button:hover {
  background: #205347;
}

.celebrations-section__directions {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: clamp(22px, 2.8vw, 42px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.celebrations-section__directions li {
  display: grid;
  justify-items: center;
  gap: 18px;
  min-width: 0;
  text-align: center;
}

.celebrations-section__icon {
  display: grid;
  width: clamp(76px, 6.2vw, 92px);
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: rgba(226, 224, 212, 0.48);
}

.celebrations-section__icon svg {
  width: 50%;
  fill: none;
  stroke: #4f4d35;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.celebrations-section__directions strong {
  max-width: 230px;
  font-family: var(--font-heading);
  font-size: clamp(27px, 2.4vw, 35px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.celebrations-section__decor {
  position: absolute;
  z-index: 0;
  inset: -38px -44px;
  pointer-events: none;
}

.celebrations-section__ribbon {
  position: absolute;
  display: block;
  width: 56px;
  height: 98px;
  border-left: 5px solid rgba(172, 129, 59, 0.72);
  border-radius: 48% 0 0 54%;
  filter: drop-shadow(7px 0 8px rgba(151, 117, 56, 0.08));
}

.celebrations-section__ribbon::after {
  position: absolute;
  inset: 12px auto auto 13px;
  width: 38px;
  height: 70px;
  border-right: 4px solid rgba(116, 139, 104, 0.64);
  border-radius: 0 48% 52% 0;
  content: "";
}

.celebrations-section__ribbon--left {
  top: 49%;
  left: -48px;
  transform: rotate(-18deg);
}

.celebrations-section__ribbon--center {
  top: 5%;
  left: 53%;
  transform: rotate(-46deg) scale(0.84);
}

.celebrations-section__ribbon--right {
  right: -20px;
  bottom: -5px;
  transform: rotate(24deg) scale(0.82);
}

.celebrations-section__spark {
  position: absolute;
  color: rgba(165, 120, 48, 0.78);
  font-size: 18px;
  line-height: 1;
}

.celebrations-section__spark--one {
  top: 10%;
  left: 62%;
}

.celebrations-section__spark--two {
  top: 37%;
  right: 4%;
  color: rgba(101, 129, 99, 0.82);
  font-size: 13px;
}

.celebrations-section__spark--three {
  bottom: 4%;
  left: 50%;
  font-size: 12px;
}

@media (max-width: 960px) {
  .celebrations-section__layout {
    grid-template-columns: 1fr;
    gap: 58px;
    min-height: 0;
  }

  .celebrations-section__copy {
    max-width: 720px;
  }

  .celebrations-section__copy p {
    max-width: 650px;
  }

  .celebrations-section__ribbon--center {
    top: 42%;
    left: auto;
    right: 8%;
  }
}

@media (max-width: 700px) {
  .celebrations-section {
    padding-block: 84px 96px;
    background:
      radial-gradient(circle at 8% 19%, rgba(149, 133, 78, 0.72) 0 3px, transparent 4px),
      radial-gradient(circle at 92% 46%, rgba(121, 141, 116, 0.7) 0 3px, transparent 4px),
      #f7f4ee;
  }

  .celebrations-section__layout {
    gap: 48px;
  }

  .celebrations-section__copy h2 {
    font-size: clamp(42px, 12vw, 50px);
    line-height: 0.98;
  }

  .celebrations-section__copy h2 span {
    display: inline;
  }

  .celebrations-section__copy p {
    margin-top: 24px;
    font-size: 16px;
    line-height: 1.65;
  }

  .celebrations-section__button {
    width: 100%;
    min-width: 0;
    margin-top: 28px;
  }

  .celebrations-section__directions {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .celebrations-section__directions li {
    grid-template-columns: 64px minmax(0, 1fr);
    align-items: center;
    justify-items: start;
    gap: 20px;
    text-align: left;
  }

  .celebrations-section__icon {
    width: 64px;
  }

  .celebrations-section__directions strong {
    max-width: 260px;
    font-size: 30px;
    line-height: 1;
  }

  .celebrations-section__decor {
    inset: -20px -12px;
  }

  .celebrations-section__ribbon--left,
  .celebrations-section__ribbon--center {
    display: none;
  }

  .celebrations-section__ribbon--right {
    right: -16px;
    bottom: -20px;
  }
}

.nearby-section {
  overflow: clip;
  padding: clamp(96px, 8vw, 132px) 0 clamp(104px, 8vw, 132px);
  color: #19302f;
  background: #f7f4ee;
}

.nearby-section h2 {
  max-width: 820px;
  margin: 0;
  font-family: var(--font-heading);
  font-size: var(--type-section-h2);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.nearby-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: minmax(420px, 34vw) minmax(330px, 26vw);
  gap: clamp(12px, 1.25vw, 18px);
  margin-top: clamp(48px, 5vw, 68px);
}

.nearby-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-radius: 12px;
  background: #173832;
  isolation: isolate;
}

.nearby-card--camel {
  grid-column: span 6;
}

.nearby-card--patmos,
.nearby-card--hes {
  grid-column: span 3;
}

.nearby-card--goat-trail {
  grid-column: span 5;
}

.nearby-card--katun {
  grid-column: span 7;
}

.nearby-card img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.nearby-card--camel img {
  object-position: 47% 50%;
}

.nearby-card--patmos img {
  object-position: 50% 45%;
}

.nearby-card--hes img {
  object-position: 51% 50%;
}

.nearby-card--goat-trail img {
  object-position: 48% 50%;
}

.nearby-card--katun img {
  object-position: 50% 48%;
}

.nearby-card::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(4, 20, 18, 0) 26%, rgba(4, 20, 18, 0.12) 48%, rgba(4, 20, 18, 0.94) 100%);
}

.nearby-card__copy {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: clamp(24px, 2.4vw, 34px);
  color: #f5f3ec;
}

.nearby-card__copy h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(31px, 2.6vw, 40px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.035em;
}

.nearby-card__copy p {
  max-width: 520px;
  margin: 13px 0 0;
  color: rgba(248, 247, 241, 0.9);
  font-size: clamp(14px, 1.15vw, 16px);
  line-height: 1.5;
}

.nearby-card--patmos .nearby-card__copy,
.nearby-card--hes .nearby-card__copy {
  padding: clamp(20px, 1.9vw, 28px);
}

.nearby-card--patmos .nearby-card__copy h3,
.nearby-card--hes .nearby-card__copy h3 {
  font-size: clamp(28px, 2.2vw, 34px);
}

.nearby-card--patmos .nearby-card__copy p,
.nearby-card--hes .nearby-card__copy p {
  font-size: 14px;
}

@media (min-width: 1051px) and (min-height: 720px) {
  .nearby-section {
    height: 100svh;
    min-height: 720px;
    padding-block: 0;
  }

  .nearby-section > .container {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    gap: clamp(18px, 2.8svh, 34px);
    height: 100%;
    padding-block: clamp(32px, 4.6svh, 62px);
  }

  .nearby-section h2 {
    font-size: clamp(48px, min(4.7vw, 7svh), 68px);
  }

  .nearby-grid {
    grid-template-rows: repeat(2, minmax(0, 1fr));
    min-height: 0;
    height: 100%;
    margin-top: 0;
  }

  .nearby-card {
    min-height: 0;
    height: 100%;
  }

  .nearby-card__copy {
    padding: clamp(18px, min(2vw, 2.7svh), 30px);
  }

  .nearby-card__copy h3 {
    font-size: clamp(28px, min(2.45vw, 4.2svh), 38px);
  }

  .nearby-card__copy p {
    margin-top: clamp(7px, 1.25svh, 12px);
    font-size: clamp(13px, min(1.08vw, 1.9svh), 16px);
    line-height: 1.45;
  }

  .nearby-card--patmos .nearby-card__copy,
  .nearby-card--hes .nearby-card__copy {
    padding: clamp(16px, min(1.65vw, 2.35svh), 25px);
  }

  .nearby-card--patmos .nearby-card__copy h3,
  .nearby-card--hes .nearby-card__copy h3 {
    font-size: clamp(26px, min(2.05vw, 3.65svh), 32px);
  }

  .nearby-card--patmos .nearby-card__copy p,
  .nearby-card--hes .nearby-card__copy p {
    font-size: clamp(12px, min(1vw, 1.75svh), 14px);
  }
}

@media (max-width: 1050px) {
  .nearby-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
  }

  .nearby-card--camel,
  .nearby-card--katun {
    grid-column: 1 / -1;
    min-height: 440px;
  }

  .nearby-card--patmos,
  .nearby-card--hes,
  .nearby-card--goat-trail {
    grid-column: auto;
    min-height: 360px;
  }

  .nearby-card--goat-trail {
    min-height: 400px;
  }
}

@media (max-width: 700px) {
  .nearby-section {
    padding-block: 92px 110px;
  }

  .nearby-section h2 {
    font-size: clamp(39px, 10.8vw, 46px);
    line-height: 1.03;
  }

  .nearby-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 42px;
  }

  .nearby-card--camel,
  .nearby-card--patmos,
  .nearby-card--hes,
  .nearby-card--goat-trail,
  .nearby-card--katun {
    grid-column: 1;
    min-height: 350px;
  }

  .nearby-card--camel,
  .nearby-card--katun {
    min-height: 410px;
  }

  .nearby-card__copy,
  .nearby-card--patmos .nearby-card__copy,
  .nearby-card--hes .nearby-card__copy {
    padding: 24px 22px;
  }

  .nearby-card__copy h3,
  .nearby-card--patmos .nearby-card__copy h3,
  .nearby-card--hes .nearby-card__copy h3 {
    font-size: 32px;
  }

  .nearby-card__copy p,
  .nearby-card--patmos .nearby-card__copy p,
  .nearby-card--hes .nearby-card__copy p {
    margin-top: 11px;
    font-size: 14px;
    line-height: 1.55;
  }
}

.reviews-section {
  overflow: clip;
  padding: clamp(96px, 8vw, 132px) 0 clamp(108px, 9vw, 148px);
  color: #19302f;
  background: #f7f4ee;
}

.reviews-section__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: clamp(44px, 6vw, 96px);
}

.reviews-section__header h2 {
  max-width: 780px;
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(58px, 5vw, 72px);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.reviews-summary {
  display: flex;
  align-items: center;
  gap: clamp(24px, 2.5vw, 38px);
  min-width: 360px;
  padding: 10px 0 8px clamp(34px, 3vw, 48px);
  border-left: 1px solid rgba(25, 48, 47, 0.22);
}

.reviews-summary > strong {
  font-family: var(--font-heading);
  font-size: clamp(72px, 6vw, 92px);
  font-weight: 500;
  line-height: 0.8;
  letter-spacing: -0.06em;
}

.reviews-summary__stars,
.review-card__stars {
  color: #e8a724;
  letter-spacing: 0.08em;
}

.reviews-summary__stars {
  display: block;
  font-size: 27px;
  line-height: 1;
  white-space: nowrap;
}

.reviews-summary p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0 0;
  color: #69716e;
  font-size: 15px;
}

.reviews-summary b {
  color: #234d40;
  font-size: 18px;
  font-weight: 700;
}

.reviews-carousel {
  position: relative;
  margin: clamp(48px, 5vw, 68px) -58px 0;
  padding-inline: 58px;
}

.reviews-carousel__track {
  display: grid;
  grid-auto-columns: calc((100% - 36px) / 3);
  grid-auto-flow: column;
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.reviews-carousel__track::-webkit-scrollbar {
  display: none;
}

.review-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 430px;
  padding: clamp(26px, 2.25vw, 34px);
  border: 1px solid rgba(25, 48, 47, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.34);
  scroll-snap-align: start;
}

.review-card__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.review-card__tag {
  max-width: 70%;
  padding: 8px 16px;
  overflow: hidden;
  color: #24483e;
  border-radius: 999px;
  background: #e8eee4;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.review-card__stars {
  flex: 0 0 auto;
  font-size: 18px;
  line-height: 1;
  white-space: nowrap;
}

.review-card__text {
  margin: 24px 0 0;
  overflow: hidden;
  font-size: 16px;
  line-height: 1.65;
  white-space: pre-line;
}

.review-card:not(.is-expanded) .review-card__text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 7;
}

.review-card__toggle {
  align-self: flex-start;
  margin: 18px 0 0;
  padding: 0 0 3px;
  border: 0;
  border-bottom: 1px solid rgba(25, 48, 47, 0.48);
  color: #24483e;
  background: transparent;
  font: 500 14px/1.3 var(--font-body);
  cursor: pointer;
}

.review-card__toggle[hidden] {
  display: none;
}

.review-card__footer {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(25, 48, 47, 0.14);
}

.review-card__author {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
}

.review-card__meta {
  margin: 5px 0 0;
  color: #69716e;
  font-size: 13px;
  line-height: 1.4;
}

.reviews-carousel__arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(25, 48, 47, 0.22);
  border-radius: 50%;
  color: #19302f;
  background: #f7f4ee;
  font: 400 22px/1 var(--font-body);
  cursor: pointer;
  transform: translateY(-50%);
}

.reviews-carousel__arrow:disabled {
  opacity: 0.32;
  cursor: default;
}

.reviews-carousel__arrow--previous {
  left: 0;
}

.reviews-carousel__arrow--next {
  right: 0;
}

.reviews-section__action {
  display: flex;
  justify-content: center;
  margin-top: clamp(40px, 4vw, 56px);
}

.reviews-section__link {
  display: inline-flex;
  min-height: 54px;
  padding: 0 30px;
  align-items: center;
  justify-content: center;
  border: 1px solid #24483e;
  border-radius: 999px;
  color: #19302f;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease;
}

.reviews-section__link:hover {
  color: #f7f4ee;
  background: #24483e;
}

.reviews-carousel__arrow:focus-visible,
.reviews-carousel__track:focus-visible,
.review-card__toggle:focus-visible,
.reviews-section__link:focus-visible {
  outline: 2px solid #2c6b59;
  outline-offset: 4px;
}

@media (max-width: 1050px) {
  .reviews-section__header {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .reviews-summary {
    min-width: 0;
    padding-left: 0;
    border-left: 0;
  }

  .reviews-carousel__track {
    grid-auto-columns: calc((100% - 18px) / 2);
  }
}

@media (max-width: 700px) {
  .reviews-section {
    padding-block: 92px 110px;
  }

  .reviews-section__header {
    gap: 32px;
  }

  .reviews-section__header h2 {
    font-size: clamp(39px, 10.8vw, 46px);
    line-height: 1.03;
  }

  .reviews-summary {
    gap: 22px;
  }

  .reviews-summary > strong {
    font-size: 68px;
  }

  .reviews-summary__stars {
    font-size: 22px;
  }

  .reviews-summary p {
    margin-top: 8px;
    font-size: 13px;
  }

  .reviews-summary b {
    font-size: 16px;
  }

  .reviews-carousel {
    margin: 42px 0 0;
    padding: 0;
  }

  .reviews-carousel__track {
    grid-auto-columns: calc(100% - 38px);
    gap: 12px;
    padding-right: 26px;
  }

  .review-card {
    min-height: 420px;
    padding: 24px 22px;
  }

  .review-card__tag {
    max-width: 66%;
    padding-inline: 13px;
    font-size: 12px;
  }

  .review-card__stars {
    font-size: 16px;
  }

  .review-card__text {
    margin-top: 22px;
    font-size: 15px;
    line-height: 1.65;
  }

  .reviews-carousel__arrow {
    display: none;
  }

  .reviews-section__action {
    justify-content: stretch;
    margin-top: 38px;
  }

  .reviews-section__link {
    width: 100%;
  }
}

.location-section {
  overflow: clip;
  padding: clamp(96px, 8vw, 132px) 0 clamp(104px, 9vw, 148px);
  color: #19302f;
  background: #eef1eb;
}

.location-section__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(480px, 1.12fr);
  align-items: stretch;
  gap: clamp(42px, 5vw, 72px);
}

.location-section__content {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding-block: clamp(6px, 1vw, 16px);
}

.location-section__intro h2 {
  max-width: 610px;
  margin: 0;
  font-family: var(--font-heading);
  font-size: var(--type-section-h2);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.location-section__intro p {
  max-width: 610px;
  margin: clamp(22px, 2.4vw, 32px) 0 0;
  color: #5f6c68;
  font-size: var(--type-section-lead);
  line-height: var(--leading-section-lead);
}

.location-section__find,
.location-section__contact {
  max-width: 620px;
}

.location-section__find {
  margin-top: clamp(42px, 4vw, 56px);
}

.location-section__contact {
  margin-top: clamp(42px, 4.4vw, 62px);
}

.location-section__find h3,
.location-section__contact h3 {
  margin: 0 0 14px;
  color: #6b7873;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.location-section__find address {
  margin: 0;
  color: #213633;
  font-size: clamp(18px, 1.65vw, 23px);
  font-style: normal;
  font-weight: 500;
  line-height: 1.45;
}

.location-section__find > p {
  margin: 5px 0 0;
  color: #66736e;
  font-size: 15px;
  line-height: 1.5;
}

.location-section__route {
  min-height: 50px;
  min-width: 0;
  margin-top: 18px;
  padding-inline: 22px;
  border-color: rgba(25, 48, 47, 0.42);
  color: #19302f;
  background: transparent;
  box-shadow: none;
}

.location-section__route:hover,
.location-section__messenger:hover {
  border-color: #24483e;
  background: rgba(36, 72, 62, 0.06);
}

.location-section__phones {
  display: grid;
  gap: 4px;
}

.location-section__phones a {
  width: fit-content;
  font-family: var(--font-body);
  font-size: clamp(36px, 3vw, 46px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.location-section__phones a:hover {
  color: #2c6b59;
}

.location-section__contact > p {
  margin: 12px 0 0;
  color: #5f6c68;
  font-size: 15px;
  line-height: 1.6;
}

.location-section__actions {
  display: grid;
  grid-template-columns: 1.08fr 1fr 0.85fr;
  gap: 12px;
  margin-top: 22px;
}

.location-section__actions .button {
  min-width: 0;
  min-height: 54px;
  padding-inline: 20px;
}

.location-section__call {
  color: #f5f5ef;
  background: #245543;
  box-shadow: none;
}

.location-section__call:hover {
  background: #2c6751;
}

.location-section__messenger {
  border-color: rgba(25, 48, 47, 0.42);
  color: #19302f;
  background: transparent;
  box-shadow: none;
}

.location-section__route:active,
.location-section__call:active,
.location-section__messenger:active {
  transform: translateY(0);
}

.location-section__route:focus-visible,
.location-section__phones a:focus-visible,
.location-section__call:focus-visible,
.location-section__messenger:focus-visible,
.location-section__map iframe:focus-visible {
  outline: 2px solid #2c6b59;
  outline-offset: 4px;
}

.location-section__map {
  min-width: 0;
  height: clamp(620px, 50vw, 720px);
  overflow: hidden;
  border: 1px solid rgba(25, 48, 47, 0.12);
  border-radius: 12px;
  background: #dfe6dc;
}

.location-section__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

@media (min-width: 1051px) and (min-height: 720px) {
  .location-section {
    height: 100svh;
    min-height: 720px;
    padding-block: 0;
  }

  .location-section__layout {
    grid-template-columns: minmax(0, 0.79fr) minmax(0, 1fr);
    gap: clamp(38px, 4vw, 58px);
    height: 100%;
    min-height: 0;
    padding-block: clamp(32px, 4.8svh, 52px);
  }

  .location-section__content {
    justify-content: center;
    height: 100%;
    min-height: 0;
    padding-block: 0;
  }

  .location-section__intro h2 {
    max-width: 100%;
    font-size: var(--type-section-h2);
    line-height: 1;
  }

  .location-section__intro p {
    margin-top: clamp(12px, 2svh, 21px);
    font-size: clamp(15px, min(1.25vw, 2.15svh), 18px);
    line-height: 1.55;
  }

  .location-section__find {
    margin-top: clamp(24px, 4.1svh, 44px);
  }

  .location-section__contact {
    margin-top: clamp(26px, 4.4svh, 48px);
  }

  .location-section__find h3,
  .location-section__contact h3 {
    margin-bottom: clamp(7px, 1.2svh, 13px);
    font-size: clamp(10px, min(0.9vw, 1.55svh), 12px);
  }

  .location-section__find address {
    font-size: clamp(17px, min(1.55vw, 2.6svh), 22px);
    line-height: 1.38;
  }

  .location-section__find > p {
    margin-top: 3px;
    font-size: clamp(13px, min(1.05vw, 1.8svh), 15px);
  }

  .location-section__route {
    min-height: clamp(44px, 6.3svh, 50px);
    margin-top: clamp(10px, 1.7svh, 16px);
    padding-inline: clamp(18px, 1.7vw, 22px);
    font-size: clamp(13px, min(1.05vw, 1.8svh), 15px);
  }

  .location-section__phones {
    gap: 1px;
  }

  .location-section__phones a {
    font-size: clamp(32px, min(2.8vw, 5svh), 44px);
    line-height: 1.02;
  }

  .location-section__contact > p {
    margin-top: clamp(7px, 1.2svh, 12px);
    font-size: clamp(13px, min(1.05vw, 1.8svh), 15px);
    line-height: 1.5;
  }

  .location-section__actions {
    gap: clamp(8px, 0.9vw, 12px);
    margin-top: clamp(12px, 2svh, 20px);
  }

  .location-section__actions .button {
    min-height: clamp(46px, 6.6svh, 54px);
    padding-inline: clamp(12px, 1.4vw, 19px);
    font-size: clamp(13px, min(1.05vw, 1.8svh), 15px);
  }

  .location-section__map {
    min-height: 0;
    height: 100%;
  }
}

@media (max-width: 1050px) {
  .location-section__layout {
    grid-template-columns: 1fr;
  }

  .location-section__intro h2,
  .location-section__intro p,
  .location-section__find,
  .location-section__contact {
    max-width: 760px;
  }

  .location-section__map {
    height: clamp(500px, 68vw, 650px);
  }
}

@media (max-width: 700px) {
  .location-section {
    padding-block: 92px 110px;
  }

  .location-section__layout {
    gap: 54px;
  }

  .location-section__content {
    padding-block: 0;
  }

  .location-section__intro h2 {
    font-size: clamp(39px, 10.8vw, 46px);
    line-height: 1.03;
  }

  .location-section__intro p {
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.7;
  }

  .location-section__find {
    margin-top: 40px;
  }

  .location-section__contact {
    margin-top: 46px;
  }

  .location-section__find address {
    font-size: 18px;
  }

  .location-section__phones a {
    font-size: clamp(31px, 9vw, 38px);
  }

  .location-section__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .location-section__call {
    grid-column: 1 / -1;
  }

  .location-section__actions .button {
    min-height: 54px;
    padding-inline: 14px;
  }

  .location-section__map {
    height: clamp(380px, 112vw, 480px);
    border-radius: 10px;
  }
}

.booking-section {
  padding-block: clamp(82px, 9vw, 128px);
  color: #17312d;
  background:
    radial-gradient(circle at 16% 56%, rgba(207, 218, 199, 0.34), transparent 31%),
    #f5f3ed;
}

.booking-section__inner {
  display: grid;
  gap: clamp(30px, 3.2vw, 46px);
}

.booking-section h2 {
  max-width: 980px;
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(54px, 5.1vw, 76px);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.booking-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(18px, 2vw, 28px);
  min-width: 0;
}

.booking-conditions,
.booking-form {
  min-width: 0;
  border: 1px solid rgba(23, 49, 45, 0.14);
  border-radius: 16px;
}

.booking-conditions {
  display: flex;
  flex-direction: column;
  padding: clamp(26px, 2.5vw, 36px);
  background: rgba(224, 230, 217, 0.72);
}

.booking-conditions__price {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(49px, 4.4vw, 66px);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.booking-conditions__price span {
  font-size: 0.62em;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.booking-conditions__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: clamp(24px, 2.5vw, 34px) 0 0;
  border-top: 1px solid rgba(23, 49, 45, 0.15);
}

.booking-conditions__list > div {
  min-width: 0;
  padding: clamp(17px, 1.6vw, 23px) clamp(12px, 1.35vw, 19px) clamp(15px, 1.5vw, 21px) 0;
  border-bottom: 1px solid rgba(23, 49, 45, 0.15);
}

.booking-conditions__list > div:not(:nth-child(3)) {
  margin-right: clamp(12px, 1.4vw, 18px);
}

.booking-conditions__list .booking-conditions__wide {
  grid-column: 1 / -1;
  margin-right: 0;
}

.booking-conditions dt,
.booking-conditions dd {
  margin: 0;
}

.booking-conditions dt {
  font-size: clamp(14px, 1.15vw, 16px);
  font-weight: 700;
  line-height: 1.35;
}

.booking-conditions dd {
  margin-top: 4px;
  color: rgba(23, 49, 45, 0.76);
  font-size: clamp(13px, 1.05vw, 15px);
  line-height: 1.45;
}

.booking-conditions__holiday {
  margin: clamp(18px, 1.8vw, 24px) 0 0;
  padding-top: 0;
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.5;
}

.booking-form {
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 2.4vw, 34px);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 20px 52px rgba(29, 50, 41, 0.055);
}

.booking-form__fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(13px, 1.35vw, 18px) clamp(16px, 1.6vw, 22px);
}

.booking-field {
  display: grid;
  min-width: 0;
  gap: 7px;
}

.booking-field--full {
  grid-column: 1 / -1;
}

.booking-field label {
  font-size: clamp(12px, 0.95vw, 14px);
  font-weight: 700;
  line-height: 1.3;
}

.booking-field input,
.booking-field select,
.booking-field textarea {
  width: 100%;
  min-width: 0;
  min-height: 50px;
  padding: 0 15px;
  color: #17312d;
  border: 1px solid rgba(23, 49, 45, 0.22);
  border-radius: 9px;
  outline: 0;
  background: rgba(255, 255, 255, 0.54);
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.booking-field textarea {
  min-height: 78px;
  padding-block: 13px;
  resize: vertical;
}

.booking-field input::placeholder,
.booking-field textarea::placeholder {
  color: rgba(23, 49, 45, 0.49);
}

.booking-field input:focus,
.booking-field select:focus,
.booking-field textarea:focus {
  border-color: #315d50;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(49, 93, 80, 0.12);
}

.booking-form__submit {
  width: 100%;
  min-height: 54px;
  margin-top: clamp(16px, 1.7vw, 22px);
  color: #f8f5ed;
  background: #194d3d;
}

.booking-form__submit:hover {
  background: #225f4c;
}

.booking-form__note {
  max-width: 600px;
  margin: 12px auto 0;
  color: rgba(23, 49, 45, 0.68);
  font-size: clamp(12px, 0.95vw, 14px);
  line-height: 1.45;
  text-align: center;
}

@media (min-width: 1051px) and (min-height: 720px) {
  .booking-section {
    height: 100svh;
    min-height: 720px;
    padding-block: 0;
    overflow: hidden;
  }

  .booking-section__inner {
    grid-template-rows: auto minmax(0, 1fr);
    height: 100%;
    min-height: 0;
    gap: clamp(18px, 3svh, 30px);
    padding-block: clamp(26px, 4.2svh, 46px);
  }

  .booking-section h2 {
    max-width: min(930px, 72vw);
    font-size: clamp(48px, min(5vw, 7.6svh), 72px);
  }

  .booking-section__grid {
    align-self: start;
    width: 100%;
    height: min(100%, 740px);
    min-height: 0;
  }

  .booking-conditions,
  .booking-form {
    height: 100%;
    min-height: 0;
    padding: clamp(21px, min(2.3vw, 3.7svh), 34px);
  }

  .booking-conditions__price {
    font-size: clamp(44px, min(4.25vw, 7.2svh), 64px);
  }

  .booking-conditions__list {
    margin-top: clamp(15px, 2.5svh, 26px);
  }

  .booking-conditions__list > div {
    padding-top: clamp(11px, 1.8svh, 19px);
    padding-bottom: clamp(10px, 1.65svh, 17px);
  }

  .booking-conditions__holiday {
    padding-top: 0;
  }

  .booking-form__fields {
    gap: clamp(8px, 1.45svh, 14px) clamp(14px, 1.45vw, 21px);
  }

  .booking-field {
    gap: clamp(4px, 0.7svh, 7px);
  }

  .booking-field input,
  .booking-field select {
    min-height: clamp(42px, 6.1svh, 50px);
  }

  .booking-field textarea {
    min-height: clamp(62px, 9svh, 82px);
  }

  .booking-form__submit {
    min-height: clamp(46px, 6.7svh, 54px);
    margin-top: clamp(10px, 1.8svh, 18px);
  }

  .booking-form__note {
    margin-top: clamp(7px, 1.25svh, 12px);
    font-size: clamp(11px, min(0.9vw, 1.7svh), 13px);
  }
}

@media (max-width: 1050px) {
  .booking-section__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .booking-section {
    padding-block: 90px 104px;
  }

  .booking-section__inner {
    gap: 34px;
  }

  .booking-section h2 {
    font-size: clamp(43px, 12vw, 54px);
    line-height: 0.98;
  }

  .booking-conditions,
  .booking-form {
    padding: 24px 20px;
    border-radius: 12px;
  }

  .booking-conditions__price {
    font-size: clamp(45px, 13.2vw, 56px);
  }

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

  .booking-conditions__list > div,
  .booking-conditions__list > div:not(:nth-child(3)) {
    margin-right: 0;
    padding-right: 0;
  }

  .booking-conditions__list .booking-conditions__wide {
    grid-column: auto;
  }

  .booking-conditions__holiday {
    margin-top: 0;
  }

  .booking-form__fields {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .booking-field--full {
    grid-column: auto;
  }

  .booking-field input,
  .booking-field select {
    min-height: 54px;
  }

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

  .booking-form__submit {
    min-height: 56px;
    margin-top: 20px;
  }
}

.site-footer {
  height: auto;
  color: #edf1e9;
  background: #102522;
}

.site-footer__inner {
  padding-block: clamp(66px, 6.5vw, 92px) clamp(30px, 3.2vw, 46px);
}

.site-footer__main {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(180px, 0.54fr) minmax(250px, 0.78fr);
  gap: clamp(52px, 7vw, 112px);
  align-items: start;
}

.site-footer__name {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(54px, 5vw, 72px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.035em;
}

.site-footer__description {
  margin: 22px 0 0;
  color: rgba(237, 241, 233, 0.76);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.65;
}

.site-footer__contacts {
  display: grid;
  gap: 22px;
  margin-top: clamp(30px, 3.4vw, 46px);
}

.site-footer__phones,
.site-footer__messengers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px clamp(22px, 2.8vw, 40px);
}

.site-footer__phones {
  flex-direction: column;
  align-items: flex-start;
}

.site-footer__phones a,
.site-footer__messengers a,
.site-footer__nav a,
.site-footer__legal a {
  transition: color 160ms ease, opacity 160ms ease;
}

.site-footer__phones a,
.site-footer__messengers a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  font-size: clamp(15px, 1.15vw, 17px);
}

.site-footer__phones a:hover,
.site-footer__messengers a:hover,
.site-footer__nav a:hover,
.site-footer__legal a:hover {
  color: #cbd8c6;
}

.site-footer address {
  color: rgba(237, 241, 233, 0.76);
  font-size: clamp(14px, 1.1vw, 16px);
  font-style: normal;
  line-height: 1.65;
}

.site-footer__nav {
  display: grid;
  gap: 10px;
}

.site-footer__nav a {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 44px;
  font-size: clamp(15px, 1.2vw, 18px);
}

.site-footer__legal a {
  display: block;
  max-width: 330px;
  color: rgba(237, 241, 233, 0.76);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.55;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: clamp(50px, 6vw, 82px);
  padding-top: clamp(24px, 2.5vw, 34px);
  border-top: 1px solid rgba(237, 241, 233, 0.23);
  color: rgba(237, 241, 233, 0.72);
}

.site-footer__bottom p {
  margin: 0;
  font-size: clamp(13px, 1vw, 15px);
}

.site-footer a:focus-visible {
  outline: 2px solid #cbd8c6;
  outline-offset: 4px;
}

@media (max-width: 980px) {
  .site-footer__main {
    grid-template-columns: minmax(0, 1.25fr) minmax(180px, 0.75fr);
    gap: 56px 72px;
  }

  .site-footer__legal {
    grid-column: 1 / -1;
    padding-top: 30px;
    border-top: 1px solid rgba(237, 241, 233, 0.16);
  }
}

@media (max-width: 650px) {
  .site-footer__inner {
    padding-block: 64px 30px;
  }

  .site-footer__main {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .site-footer__name {
    font-size: clamp(52px, 16vw, 66px);
  }

  .site-footer__description {
    font-size: 15px;
  }

  .site-footer__contacts {
    gap: 18px;
    margin-top: 30px;
  }

  .site-footer__phones a,
  .site-footer__messengers a,
  .site-footer__nav a {
    min-height: 44px;
  }

  .site-footer__nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 20px;
  }

  .site-footer__legal {
    grid-column: auto;
    padding-top: 0;
    border-top: 0;
  }

  .site-footer__bottom {
    flex-direction: column;
    gap: 10px;
    margin-top: 48px;
    padding-top: 24px;
  }
}
