:root {
  --bg: #000;
  --fg: #fff;
  --muted: rgba(255, 255, 255, 0.78);
  --border: rgba(255, 255, 255, 0.16);

  --container: 1120px;
  --radius: 14px;

  --header-height: 74px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--fg);
  background: var(--bg);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

body[data-nav-open="true"] {
  overflow: hidden;
}

body[data-lightbox-open="true"] {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--fg);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin-inline: auto;
}

.page {
  padding-top: calc(var(--header-height) + 1.75rem);
  padding-bottom: 3rem;
}

.page--after-hero {
  padding-top: 2.25rem;
}

.cabin-hero {
  position: relative;
  height: 100svh;
  overflow: clip;
  color: #fff;
}

.cabin-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  opacity: 0;
  animation: heroZoom 14s ease-in-out infinite;
  transition: opacity 220ms ease;
}

.cabin-hero[data-loaded="true"] .cabin-hero__bg {
  opacity: 1;
}

.cabin-hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      1200px 700px at 20% 30%,
      rgba(0, 0, 0, 0.12),
      rgba(0, 0, 0, 0.55)
    ),
    linear-gradient(rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.68));
}

.cabin-hero__inner {
  position: relative;
  height: 100%;
  padding-top: var(--header-height);
  display: grid;
  align-items: center;
}

.cabin-hero__content {
  max-width: 72ch;
  margin-inline: auto;
  padding-inline: clamp(0.75rem, 2vw, 1rem);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cabin-hero__kicker {
  margin: 0 0 0.45rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.85rem;
}

.cabin-hero__title {
  margin: 0;
  font-size: clamp(2.2rem, 4.2vw, 4.1rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
  text-shadow: 0 18px 60px rgba(0, 0, 0, 0.55);
}

.cabin-hero__subtitle {
  margin: 0.85rem 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1rem, 0.6vw + 0.95rem, 1.2rem);
  line-height: 1.55;
  text-shadow: 0 14px 46px rgba(0, 0, 0, 0.45);
}

.cabin-hero__cta {
  margin-top: 1.1rem;
}

@media (min-width: 980px) {
  .cabin-hero__content {
    max-width: 78ch;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cabin-hero__bg {
    animation: none;
    transform: none;
  }
}

.specs {
  background: #fff;
  color: #000;
  padding-block: clamp(2.75rem, 6vw, 4.25rem);
}

.specs__kicker {
  margin: 0 0 0.4rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.6);
  font-size: 0.85rem;
}

.specs__grid {
  margin-top: 1.5rem;
  max-width: 1100px;
}

.specs__layout {
  display: grid;
  gap: 1.25rem;
}

.specs__head {
  max-width: 60ch;
  position: sticky;
  top: var(--header-height);
  z-index: 1;
  padding-top: 0;
  padding-bottom: 0.9rem;
  isolation: isolate;
}

.specs__head::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: #fff;
  border-bottom: 0;
  z-index: -1;
}

.specs__body {
  display: grid;
  gap: 1rem;
}

.specs-panel {
  border-radius: 22px;
  padding: 1.15rem 1.15rem 1.25rem;
  background: radial-gradient(
      160px 160px at 16% 22%,
      rgba(0, 0, 0, 0.06),
      rgba(0, 0, 0, 0) 60%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.01));
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.12);
  transform: translateY(10px);
  opacity: 0;
  transition: transform 220ms ease, box-shadow 220ms ease, opacity 220ms ease;
}

.specs-panel__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}

.specs-panel__icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.92);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.specs-panel__icon i {
  font-size: 1.35rem;
}

.specs-panel__title {
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.01em;
  font-size: 1.15rem;
}

.specs-note {
  border-radius: 18px;
  padding: 1rem 1.1rem;
  background: rgba(0, 0, 0, 0.03);
  color: rgba(0, 0, 0, 0.74);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
  transform: translateY(10px);
  opacity: 0;
  transition: transform 220ms ease, opacity 220ms ease;
}

.specs-note__text {
  margin: 0;
  line-height: 1.55;
}

.specs[data-inview="true"] .specs-panel {
  opacity: 1;
  transform: translateY(0);
}

.specs[data-inview="true"] .specs-note {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 280ms;
}

.specs[data-inview="true"] .specs-panel:nth-child(1) {
  transition-delay: 40ms;
}
.specs[data-inview="true"] .specs-panel:nth-child(2) {
  transition-delay: 80ms;
}
.specs[data-inview="true"] .specs-panel:nth-child(3) {
  transition-delay: 120ms;
}
.specs[data-inview="true"] .specs-panel:nth-child(4) {
  transition-delay: 160ms;
}
.specs[data-inview="true"] .specs-panel:nth-child(5) {
  transition-delay: 200ms;
}
.specs[data-inview="true"] .specs-panel:nth-child(6) {
  transition-delay: 240ms;
}

.specs__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.55rem;
  color: rgba(0, 0, 0, 0.72);
}

.specs__list li {
  position: relative;
  padding-left: 1.55rem;
  break-inside: avoid;
}

.specs__list li::before {
  content: "✓";
  position: absolute;
  left: 0.15rem;
  top: 0.05rem;
  color: rgba(0, 0, 0, 0.5);
  font-weight: 900;
}

@media (min-width: 860px) {
  .specs__layout {
    grid-template-columns: 360px 1fr;
    gap: 2rem;
    align-items: start;
  }

  .specs__head {
    top: var(--header-height);
    padding-top: 0;
    padding-bottom: 0;
  }

  .specs__head::before {
    left: 0;
    width: 100%;
    transform: none;
    border-bottom: 0;
  }

  .specs-panel--cols .specs__list {
    columns: 2;
    column-gap: 1.5rem;
  }

  .specs-panel--cols .specs__list li {
    break-inside: avoid;
  }
}

@media (hover: hover) and (pointer: fine) {
  .specs-panel:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 58px rgba(0, 0, 0, 0.16);
  }
}

@media (prefers-reduced-motion: reduce) {
  .specs-panel {
    transform: none;
    opacity: 1;
    transition: none;
  }
}

.page-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.page-title {
  margin: 0;
  font-size: clamp(1.6rem, 1.2vw + 1.35rem, 2.2rem);
  letter-spacing: -0.02em;
}

.cabin-intro {
  border-radius: 26px;
  padding: clamp(1.1rem, 2.8vw, 1.6rem);
  background: #fff;
  color: #000;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.2);
  margin-bottom: clamp(1.2rem, 3.5vw, 1.75rem);
}

.cabin-intro__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 3vw, 1.75rem);
  align-items: center;
}

.cabin-intro__media {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.06);
  position: relative;
  isolation: isolate;
}

.cabin-intro__img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  opacity: 0;
  transform: scale(1.01);
  transition: transform 260ms ease, opacity 220ms ease;
}

.cabin-intro__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.05),
    rgba(0, 0, 0, 0.09),
    rgba(0, 0, 0, 0.05)
  );
  background-size: 200% 100%;
  animation: shimmer 1.4s ease-in-out infinite;
  z-index: -1;
}

.cabin-intro__media[data-loaded="true"]::before {
  animation: none;
  opacity: 0;
}

.cabin-intro__media[data-loaded="true"] .cabin-intro__img {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .cabin-intro__media::before {
    animation: none;
  }
}

.cabin-intro__kicker {
  margin: 0 0 0.4rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.6);
  font-size: 0.85rem;
}

.cabin-intro__title {
  margin: 0;
  font-size: clamp(2rem, 1.8vw + 1.6rem, 3rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.cabin-intro__text,
.cabin-intro__prose {
  margin: 0.9rem 0 0;
  color: rgba(0, 0, 0, 0.72);
  max-width: 70ch;
  font-size: clamp(1rem, 0.35vw + 0.95rem, 1.12rem);
  line-height: 1.55;
}

.cabin-intro__prose p {
  margin: 0;
}

.cabin-intro__prose p + p {
  margin-top: 0.85rem;
}

.cabin-intro__cta {
  margin-top: 1.1rem;
}

.cabin-intro .btn--primary {
  background: #000;
  color: #fff;
}

.cabin-intro .btn--primary:hover {
  background: rgba(0, 0, 0, 0.88);
}

@media (min-width: 920px) {
  .cabin-intro__grid {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .cabin-intro__media {
    height: 100%;
  }

  .cabin-intro__img {
    aspect-ratio: 16 / 10;
  }
}

@media (hover: hover) and (pointer: fine) {
  .cabin-intro:hover .cabin-intro__img {
    transform: scale(1.06);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.05rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: clamp(0.95rem, 0.35vw + 0.88rem, 1.05rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 150ms ease, background-color 150ms ease,
    border-color 150ms ease, color 150ms ease;
  user-select: none;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--fg);
  color: var(--bg);
}

.btn--primary:hover {
  background: rgba(255, 255, 255, 0.9);
}

.btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--fg);
}

.btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.06);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 180ms ease, border-color 180ms ease;
}

.site-header[data-scrolled="true"] {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom-color: rgba(0, 0, 0, 0.1);
}

.site-header[data-scrolled="true"] .brand__text {
  color: rgba(0, 0, 0, 0.92);
}

.site-header[data-scrolled="true"] .nav__link {
  color: rgba(0, 0, 0, 0.86);
}

.site-header[data-scrolled="true"] .nav__link:hover {
  background: rgba(0, 0, 0, 0.06);
}

.site-header[data-scrolled="true"] .nav__toggle {
  border-color: rgba(0, 0, 0, 0.2);
  background: rgba(0, 0, 0, 0.03);
  color: rgba(0, 0, 0, 0.92);
}

.site-header[data-scrolled="true"] .nav__cta {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(0, 0, 0, 0.18);
  color: rgba(0, 0, 0, 0.92);
}

.site-header[data-scrolled="true"] .nav__cta:hover {
  background: rgba(0, 0, 0, 0.04);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.85rem;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand__text {
  font-size: clamp(1.05rem, 0.5vw + 0.9rem, 1.4rem);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: var(--fg);
}

.nav__toggle i {
  font-size: 1.5rem;
}

.nav__panel {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav__sidenav-head {
  display: none;
}

.nav__sidenav-brand {
  display: none;
}

.nav__close {
  display: none;
}

.nav__icon {
  display: none;
}

.nav__label {
  display: inline;
}

.nav__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 0.95rem;
  align-items: center;
}

.nav__link {
  padding: 0.55rem 0.55rem;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(0.95rem, 0.35vw + 0.86rem, 1.15rem);
}

.nav__link:hover {
  background: rgba(255, 255, 255, 0.06);
}

.nav__cta {
  margin-left: 0.25rem;
}

.hero {
  position: relative;
  height: 100svh;
  display: grid;
  align-items: center;
  overflow: clip;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("assets/hero-brackground.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  animation: heroZoom 14s ease-in-out infinite;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      1200px 600px at 20% 30%,
      rgba(0, 0, 0, 0.12),
      rgba(0, 0, 0, 0.55)
    ),
    linear-gradient(rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.68));
}

.hero__inner {
  position: relative;
  width: 100%;
  padding-inline: clamp(1rem, 4vw, 3rem);
  height: 100%;
  display: grid;
  place-items: center;
  padding-top: var(--header-height);
  padding-bottom: clamp(1.25rem, 3vh, 2.25rem);
}

.hero__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero__logo {
  width: auto;
  height: clamp(140px, 20vh, 420px);
}

.hero__title {
  margin: clamp(0.5rem, 1.6vh, 1.1rem) 0 clamp(0.35rem, 1vh, 0.65rem);
  font-size: clamp(2rem, 3.6vh + 1rem, 4.1rem);
  letter-spacing: -0.02em;
}

.hero__subtitle {
  margin: 0 0 clamp(0.85rem, 2.4vh, 1.35rem);
  font-size: clamp(1rem, 1.4vh + 0.65rem, 1.35rem);
}


.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.highlights {
  background: #fff;
  color: #000;
  padding-block: clamp(2.25rem, 5vw, 3.75rem);
}

.highlights__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

.highlights__item {
  position: relative;
  overflow: hidden;
  display: flex;
  gap: 0.95rem;
  align-items: flex-start;
  padding: 1.1rem 1.15rem;
  border-radius: 18px;
  background: radial-gradient(
      120px 120px at 18% 28%,
      rgba(0, 0, 0, 0.06),
      rgba(0, 0, 0, 0) 60%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.01));
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.highlights__bgicon {
  position: absolute;
  right: -0.6rem;
  top: -0.6rem;
  font-size: 7.5rem;
  color: rgba(0, 0, 0, 0.06);
  transform: rotate(-10deg) translateZ(0);
  transition: transform 240ms ease, color 240ms ease;
  pointer-events: none;
}

.highlights__bgflag {
  width: min(150px, 46%);
  height: auto;
  opacity: 0.22;
  filter: saturate(1.05) contrast(1.05);
}

@media (prefers-reduced-motion: no-preference) {
  .highlights__bgflag {
    transform-origin: 70% 35%;
    animation: highlights-flag-float 5.4s ease-in-out infinite;
  }
}

@keyframes highlights-flag-float {
  0% {
    transform: rotate(-10deg) translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: rotate(-14deg) translate3d(6px, -4px, 0) scale(1.03);
  }
  100% {
    transform: rotate(-10deg) translate3d(0, 0, 0) scale(1);
  }
}

.highlights__text {
  min-width: 0;
}

.highlights__title {
  margin: 0;
  font-size: clamp(1.05rem, 0.35vw + 1rem, 1.3rem);
  letter-spacing: -0.01em;
}

.highlights__subtitle {
  margin: 0.35rem 0 0;
  color: rgba(0, 0, 0, 0.68);
  font-size: 0.98rem;
  line-height: 1.35;
}

.cabins {
  background: #fff;
  color: #000;
  padding-block: clamp(2.75rem, 6vw, 4.25rem);
}

.build {
  background: #fff;
  color: #000;
  padding-block: clamp(2.75rem, 6vw, 4.5rem);
}

.build__grid {
  display: grid;
  gap: 1.75rem;
  align-items: start;
}

.feature-list {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 0.95rem;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.02);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.feature-item i {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: #000;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex: 0 0 auto;
}

.feature-flag {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: #000;
  padding: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  box-sizing: border-box;
}

.feature-item span {
  font-size: 1.02rem;
  color: rgba(0, 0, 0, 0.9);
}

.quality {
  border-radius: 22px;
  padding: 1.25rem 1.25rem 1.35rem;
  background: radial-gradient(
      140px 140px at 18% 22%,
      rgba(0, 0, 0, 0.06),
      rgba(0, 0, 0, 0) 60%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.01));
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.09);
}

.quality__title {
  margin: 0;
  font-size: clamp(1.25rem, 0.7vw + 1.1rem, 1.75rem);
  letter-spacing: -0.02em;
}

.quality__text {
  margin: 0.85rem 0 0;
  color: rgba(0, 0, 0, 0.72);
  line-height: 1.55;
}

.stats {
  margin: 1.15rem 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.stat {
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}

.stat__value {
  margin: 0;
  font-size: clamp(1.8rem, 1.4vw + 1.4rem, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.stat__label {
  margin: 0.2rem 0 0;
  color: rgba(0, 0, 0, 0.7);
  font-size: 0.98rem;
}

.quote {
  background: #fff;
  color: #000;
  padding-block: clamp(2.75rem, 6vw, 4.5rem);
}

.quote__inner {
  display: grid;
  gap: 1.5rem;
  align-items: start;
  justify-items: center;
}

.quote__top {
  text-align: center;
  max-width: 70ch;
}

.quote__title {
  margin: 0;
  font-size: clamp(1.65rem, 1.4vw + 1.25rem, 2.25rem);
  letter-spacing: -0.02em;
}

.quote__subtitle {
  margin: 0.65rem 0 0;
  color: rgba(0, 0, 0, 0.68);
  line-height: 1.55;
}

.quote-form {
  width: min(980px, 100%);
  border-radius: 22px;
  padding: 1.15rem 1.15rem 1.25rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.01));
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.1);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

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

.field label {
  display: block;
  font-weight: 600;
  font-size: 0.98rem;
  margin: 0 0 0.4rem;
}

.control {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 14px;
  padding: 0.85rem 0.9rem;
  font: inherit;
  background: #fff;
  color: #000;
  outline: none;
}

.control:focus {
  border-color: rgba(0, 0, 0, 0.35);
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.08);
}

.phone-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 0.75rem;
}

.privacy {
  margin: 0.85rem 0 0;
  color: rgba(0, 0, 0, 0.62);
  font-size: 0.95rem;
  line-height: 1.45;
}

.quote-actions {
  margin-top: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.quote-status {
  min-height: 1.25rem;
  color: rgba(0, 0, 0, 0.72);
  font-size: 0.98rem;
}

.faq {
  width: min(980px, 100%);
  margin-top: 1.35rem;
}

.faq__head {
  text-align: center;
  margin: 0 0 0.85rem;
}

.faq__title {
  margin: 0;
  font-size: clamp(1.25rem, 0.8vw + 1.1rem, 1.75rem);
  letter-spacing: -0.02em;
}

.faq__subtitle {
  margin: 0.55rem auto 0;
  max-width: 70ch;
  color: rgba(0, 0, 0, 0.68);
  line-height: 1.55;
}

.faq__list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.01));
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.faq-item__q {
  list-style: none;
  padding: 1rem 1.05rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  cursor: pointer;
  font-weight: 650;
  letter-spacing: -0.01em;
}

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

.faq-item__q::after {
  content: "";
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.06);
  flex: 0 0 auto;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.9;
  transition: transform 220ms ease;
}

.faq-item[open] .faq-item__q::after {
  transform: rotate(180deg);
}

.faq-item__a {
  padding: 0 1.05rem 1.05rem;
  color: rgba(0, 0, 0, 0.72);
  line-height: 1.6;
}

.faq-item__a p {
  margin: 0.1rem 0 0;
}

@media (hover: hover) and (pointer: fine) {
  .faq-item {
    transition: transform 200ms ease, box-shadow 200ms ease;
  }

  .faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.12);
  }
}

@media (min-width: 720px) {
  .build__grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
  }

  .feature-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
  }

  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.05rem;
  }
}

.section-head {
  max-width: 70ch;
}

.section-head--spaced {
  margin-top: clamp(2rem, 5vw, 3rem);
}

.section-title {
  margin: 0;
  font-size: clamp(1.6rem, 1.3vw + 1.3rem, 2.2rem);
  letter-spacing: -0.02em;
}

.section-subtitle {
  margin: 0.6rem 0 0;
  color: rgba(0, 0, 0, 0.68);
}

.cabins__grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.cabins__card {
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.01));
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.1);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.cabins__media {
  margin: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.06);
}

.cabins__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: transform 220ms ease, opacity 220ms ease;
  transform: scale(1.01);
}

.cabins__media[data-loaded="true"] .cabins__img {
  opacity: 1;
}

.cabins__card-inner {
  padding: clamp(1.25rem, 2.2vw, 1.75rem);
}

.cabins__kicker {
  margin: 0 0 0.4rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: rgba(0, 0, 0, 0.62);
}

.cabins__title {
  margin: 0;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
}

.cabins__text {
  margin: 0.65rem 0 1.1rem;
  color: rgba(0, 0, 0, 0.72);
  max-width: 60ch;
}

.cabins__cta {
  display: inline-flex;
}

.cabins .btn--primary {
  background: #000;
  color: #fff;
}

.cabins .btn--primary:hover {
  background: rgba(0, 0, 0, 0.88);
}

.gallery {
  border-radius: 24px;
  padding: clamp(1rem, 2.5vw, 1.25rem);
  background: rgba(0, 0, 0, 0.02);
}

.gallery-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.gallery-skeleton {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.05),
    rgba(0, 0, 0, 0.09),
    rgba(0, 0, 0, 0.05)
  );
  background-size: 200% 100%;
  animation: shimmer 1.4s ease-in-out infinite;
}

.gallery-item button {
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.gallery-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 220ms ease;
  display: block;
}

.gallery-item button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0, 0, 0, 0) 35%,
    rgba(0, 0, 0, 0.35) 100%
  );
  opacity: 0;
  transition: opacity 180ms ease;
}

.gallery-item button:hover::after {
  opacity: 1;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
}

.lightbox[data-open="true"] {
  display: grid;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(10px);
}

.lightbox__panel {
  position: relative;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  max-width: min(1100px, 100%);
  width: 100%;
  height: 100%;
}

.lightbox__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  color: rgba(255, 255, 255, 0.92);
}

.lightbox__close {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.92);
}

.lightbox__close i {
  font-size: 1.7rem;
}

.lightbox__stage {
  position: relative;
  display: grid;
  place-items: center;
  padding: 0.5rem 1rem;
}

.lightbox__img {
  max-width: min(980px, 92vw);
  max-height: 70svh;
  width: auto;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.92);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.lightbox__nav i {
  font-size: 1.8rem;
}

.lightbox__nav--prev {
  left: 0.75rem;
}

.lightbox__nav--next {
  right: 0.75rem;
}

.lightbox__thumbs {
  padding: 0.7rem 1rem 1rem;
  overflow: auto;
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.lightbox__thumb {
  border: 0;
  padding: 0;
  background: transparent;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
  border: 2px solid transparent;
}

.lightbox__thumb[aria-current="true"] {
  border-color: rgba(255, 255, 255, 0.7);
}

.lightbox__thumb img {
  width: 76px;
  height: 52px;
  object-fit: cover;
  display: block;
}

@keyframes shimmer {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 200% 0%;
  }
}

@media (hover: hover) and (pointer: fine) {
  .cabins__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 58px rgba(0, 0, 0, 0.16);
  }

  .gallery-item button:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 52px rgba(0, 0, 0, 0.2);
  }

  .gallery-item button:hover img {
    transform: scale(1.06);
  }
}

@media (min-width: 700px) {
  .cabins__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }

  .lightbox__panel {
    margin: 0 auto;
    padding: 1rem 1rem 1.25rem;
    height: 100%;
  }
}

@media (min-width: 980px) {
  .gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}


@media (hover: hover) and (pointer: fine) {
  .highlights__item:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.14);
  }

  .highlights__item:hover .highlights__bgicon {
    color: rgba(0, 0, 0, 0.075);
    transform: rotate(-14deg) translate(6px, -4px) scale(1.04) translateZ(0);
  }

  .highlights__item:hover .highlights__bgflag {
    opacity: 0.28;
    filter: saturate(1.1) contrast(1.1);
  }
}

@media (min-width: 520px) {
  .highlights__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .highlights__item:nth-child(5) {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(520px, 100%);
  }
}

@media (min-width: 1024px) {
  .highlights__list {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1.25rem;
  }

  .highlights__item {
    grid-column: span 2;
    padding: 1.2rem 1.25rem;
  }

  .highlights__item:nth-child(4) {
    grid-column: 2 / span 2;
  }

  .highlights__item:nth-child(5) {
    grid-column: 4 / span 2;
    justify-self: stretch;
    width: auto;
  }
}

.site-footer {
  background: #000;
  color: #fff;
  padding-block: clamp(2.5rem, 5vw, 3.5rem);
}

.site-footer__inner {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.25rem);
}

.brochure {
  border-radius: 18px;
  padding: clamp(1.1rem, 3vw, 1.55rem);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  gap: 1rem;
}

.brochure__title {
  margin: 0;
  font-size: clamp(1.25rem, 0.9vw + 1rem, 1.6rem);
  letter-spacing: -0.01em;
}

.brochure__subtitle {
  margin: 0.4rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  max-width: 70ch;
}

.brochure__form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.brochure__input {
  width: 100%;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.35);
  color: rgba(255, 255, 255, 0.92);
  padding-inline: 1rem;
}

.brochure__input::placeholder {
  color: rgba(255, 255, 255, 0.65);
}

.brochure__btn {
  height: 46px;
  justify-content: center;
}

.footer-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

.footer-col {
  padding: 1.05rem 1.05rem 1.1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col--brand {
  display: grid;
  gap: 0.85rem;
  align-content: start;
  background: transparent;
  border-color: transparent;
}

.footer-logo {
  width: min(190px, 100%);
  height: auto;
}

.footer-title {
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}

.footer-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  max-width: 55ch;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.45rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.84);
}

.footer-link:hover {
  color: rgba(255, 255, 255, 1);
}

.footer-meta {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.78);
}

.footer-meta__item {
  margin: 0;
}

.footer-contact {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.84);
}

.footer-contact:hover {
  color: rgba(255, 255, 255, 1);
}

.footer-contact i {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  margin-top: 0.05rem;
}

.footer-contact span {
  display: inline-block;
  line-height: 1.35;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.88);
}

.footer-flag {
  width: 24px;
  height: 18px;
  border-radius: 4px;
  display: block;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.footer-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
}

@media (min-width: 720px) {
  .brochure {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 1.25rem;
  }

  .brochure__form {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .footer-grid {
    grid-template-columns: 1.3fr 0.9fr 1.1fr;
    gap: 1.5rem;
  }

  .footer-col {
    background: transparent;
    border-color: transparent;
    padding: 0;
  }

  .footer-col--brand {
    padding: 0;
  }
}

@media (max-width: 719px) {
  .footer-col--brand {
    text-align: center;
    justify-items: center;
  }

  .footer-col--brand .footer-text {
    margin-inline: auto;
  }
}

@keyframes heroZoom {
  0%,
  100% {
    transform: scale(1.03);
  }
  50% {
    transform: scale(1.09);
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
  .btn:hover {
    transform: none;
  }
  .hero__bg {
    animation: none;
    transform: none;
  }
}

@media (max-width: 860px) {
  .nav__backdrop {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease;
  }

  .nav__panel {
    position: fixed;
    top: 0;
    right: 0;
    height: 100svh;
    width: min(360px, 88vw);
    padding: 0.95rem 0.95rem 1.05rem;
    background: rgba(255, 255, 255, 0.96);
    color: rgba(0, 0, 0, 0.92);
    border-left: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.22);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 220ms ease;
  }

  .nav__sidenav-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    background: rgba(0, 0, 0, 0.92);
    border: 1px solid rgba(0, 0, 0, 0.22);
    border-radius: 16px;
    padding: 0.9rem 0.85rem;
    width: 100%;
  }

  .nav__sidenav-brand {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
  }

  .nav__sidenav-logo {
    width: auto;
    height: 86px;
  }

  .nav__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.92);
  }

  .nav__close i {
    font-size: 1.6rem;
  }

  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
  }

  .nav__link {
    padding: 0.9rem 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    border-radius: 14px;
    color: rgba(0, 0, 0, 0.88);
    font-size: 1.15rem;
  }

  .nav__link:hover {
    background: rgba(0, 0, 0, 0.05);
  }

  .nav__icon {
    display: inline-flex;
    font-size: 1.5rem;
    opacity: 0.85;
  }

  .nav__cta {
    width: 100%;
    margin-top: auto;
    justify-content: center;
    border-color: rgba(0, 0, 0, 0.14);
  }

  .nav[data-open="true"] .nav__panel {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
  }

  .nav[data-open="true"] .nav__backdrop {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (min-width: 861px) {
  .nav__toggle {
    display: none;
  }
}
