/* ======================================================
   HUNCHBACK HIDEAWAY - Boutique Lodge Editorial
   Fraunces + Outfit - Warm neutral - Image-forward
   ====================================================== */

:root {
  --bg: #f6f3ee;
  --bg-alt: #eae5dc;
  --ink: #1c1917;
  --ink-light: #57534e;
  --ink-faint: #a8a29e;
  --accent: #78716c;
  --warm: #c2986a;
  --warm-dark: #a47b52;
  --white: #fffcf7;
  --line: rgba(28, 25, 23, 0.08);
  --line-dark: rgba(28, 25, 23, 0.15);
  --shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.08);
  --radius: 4px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

h1,
h2,
h3,
blockquote {
  font-family: "Fraunces", serif;
  font-weight: 300;
  margin: 0;
  letter-spacing: 0;
}

p {
  margin: 0;
}

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

button,
input {
  font: inherit;
}

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

button {
  border: 0;
  background: none;
  cursor: pointer;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

::selection {
  background: rgba(194, 152, 106, 0.2);
}

.wrap {
  width: min(1200px, calc(100vw - 48px));
  margin: 0 auto;
}

.wrap--narrow {
  max-width: 780px;
}

.hidden {
  display: none !important;
}

.hide-mobile {
  display: inline;
}

.mobile-dock {
  display: none;
}

#cabin,
#gallery,
#area,
#booking,
#faq {
  scroll-margin-top: 96px;
}

/* ============ KICKER ============ */
.kicker {
  font-family: "Outfit", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 12px;
}

.section-number {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm-dark);
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 32px;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  border: 1px solid var(--ink);
  cursor: pointer;
  transition: all 280ms var(--ease);
}

.btn:hover {
  background: #292524;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.btn--text {
  background: transparent;
  border-color: transparent;
  color: inherit;
  min-height: auto;
  padding: 0;
  border-bottom: 1px solid var(--line-dark);
  border-radius: 0;
}

.btn--text:hover {
  border-color: var(--ink);
  transform: none;
  box-shadow: none;
}

.btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-dark);
}

.btn--outline:hover {
  border-color: var(--ink);
  background: rgba(28, 25, 23, 0.03);
}

.btn--full {
  width: 100%;
}

.btn--checkout {
  margin-top: 10px;
}

.btn[disabled] {
  opacity: 0.3;
  cursor: not-allowed;
  transform: none !important;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--warm);
  outline-offset: 3px;
}

/* ============ HEADER ============ */
.hdr {
  position: fixed;
  top: 18px;
  left: 28px;
  right: 28px;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) auto auto;
  align-items: center;
  gap: 20px;
  padding: 16px clamp(16px, 2.6vw, 28px);
  color: var(--white);
  background: rgba(28, 25, 23, 0.18);
  backdrop-filter: blur(18px) saturate(1.18);
  border: 1px solid rgba(255, 252, 247, 0.16);
  border-radius: 999px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.12);
  transition:
    background 300ms var(--ease),
    box-shadow 300ms var(--ease),
    transform 300ms var(--ease);
}

.hdr.is-scrolled {
  color: var(--ink);
  background: rgba(255, 252, 247, 0.94);
  border-color: rgba(28, 25, 23, 0.08);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.1);
}

.hdr__brand {
  text-decoration: none;
  min-width: 0;
}

.hdr__name {
  display: block;
  font-family: "Fraunces", serif;
  font-size: 1.02rem;
  font-weight: 400;
  letter-spacing: 0;
  color: inherit;
  line-height: 1.15;
  max-width: 26rem;
  text-wrap: balance;
}

.hdr__nav {
  display: flex;
  gap: 24px;
  margin-left: auto;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 252, 247, 0.72);
}

.hdr.is-scrolled .hdr__nav {
  color: var(--ink-light);
}

.hdr__nav a {
  position: relative;
  padding: 4px 0;
  transition: color 200ms var(--ease);
}

.hdr__nav a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 300ms var(--ease-out);
}

.hdr__nav a:hover {
  color: var(--white);
}

.hdr.is-scrolled .hdr__nav a:hover {
  color: var(--ink);
}

.hdr__nav a:hover::after {
  width: 100%;
}

.hdr__cta {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 18px;
  margin-left: 12px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius);
  transition: all 200ms var(--ease);
}

.hdr__cta:hover {
  background: #f0ece5;
  transform: translateY(-1px);
}

.hdr.is-scrolled .hdr__cta {
  color: var(--white);
  background: var(--ink);
}

.hdr.is-scrolled .hdr__cta:hover {
  background: #292524;
}

.hdr__toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  margin-left: auto;
  padding: 6px;
}

.hdr__toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: currentColor;
  border-radius: 1px;
  transition: all 200ms var(--ease);
}

.hdr__toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.hdr__toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

/* ============ HERO ============ */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  overflow: hidden;
  background: #1c1917;
  border-radius: 0;
  box-shadow: var(--shadow-lg);
}

.hero__img {
  position: absolute;
  inset: 0;
  z-index: 0;
  will-change: transform;
}

.hero__img img {
  width: 100%;
  height: 115%;
  object-fit: cover;
  object-position: center 38%;
  transform: scale(1.02);
}

.hero__fade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(12, 11, 10, 0.84) 0%, rgba(12, 11, 10, 0.46) 43%, rgba(12, 11, 10, 0.12) 78%),
    linear-gradient(180deg, rgba(28, 25, 23, 0.08) 0%, rgba(28, 25, 23, 0.06) 34%, rgba(28, 25, 23, 0.82) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(1200px, calc(100vw - 72px));
  margin: 0 auto;
  padding: 31vh 0 86px;
}

.hero__content .kicker {
  color: rgba(255, 252, 247, 0.6);
  margin-bottom: 16px;
  opacity: 0;
  animation: rise 800ms var(--ease-out) 200ms forwards;
}

.hero__content h1 {
  font-size: 5.8rem;
  line-height: 0.96;
  letter-spacing: 0;
  word-spacing: 0.03em;
  color: var(--white);
  max-width: 850px;
  font-weight: 300;
  text-wrap: balance;
  opacity: 0;
  animation: rise 800ms var(--ease-out) 400ms forwards;
}

.hero__sub {
  max-width: 590px;
  margin-top: 20px;
  color: rgba(255, 252, 247, 0.78);
  font-size: 1.06rem;
  line-height: 1.7;
  font-weight: 300;
  opacity: 0;
  animation: rise 800ms var(--ease-out) 600ms forwards;
}

.hero__sub--hidden {
  display: none;
}

.hero__proof {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
  opacity: 0;
  animation: rise 800ms var(--ease-out) 650ms forwards;
}

.hero__proof span,
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 252, 247, 0.9);
  background: rgba(255, 252, 247, 0.1);
  border: 1px solid rgba(255, 252, 247, 0.18);
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

.hero__ctas {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 36px;
  opacity: 0;
  animation: rise 800ms var(--ease-out) 750ms forwards;
}

.hero__ctas .btn {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

.hero__ctas .btn:hover {
  background: #f0ece5;
}

.hero__ctas .btn--text {
  background: transparent;
  color: rgba(255, 252, 247, 0.8);
  border-color: rgba(255, 252, 247, 0.35);
  border-bottom: 1px solid rgba(255, 252, 247, 0.35);
}

.hero__ctas .btn--text:hover {
  color: var(--white);
  border-color: var(--white);
}

.hero__bar {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(1200px, calc(100vw - 72px));
  margin: 0 auto;
  border-top: 1px solid rgba(255, 252, 247, 0.12);
  opacity: 0;
  animation: rise 800ms var(--ease-out) 900ms forwards;
}

.hero__bar div {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 20px 0;
  color: rgba(255, 252, 247, 0.55);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  border-right: 1px solid rgba(255, 252, 247, 0.06);
}

.hero__bar div:last-child {
  border-right: none;
}

.hero__bar strong {
  font-family: "Fraunces", serif;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--white);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* Keep the lead image full-bleed so the property sets the first impression. */
@media (min-width: 641px) {
  .hero {
    min-height: 100vh;
    min-height: 100dvh;
    margin: 0;
    border-radius: 0;
  }
}

/* ============ INTRO ============ */
.intro {
  padding: 120px 0;
  background: var(--bg);
}

.intro__lead {
  font-family: "Fraunces", serif;
  font-size: 2.05rem;
  line-height: 1.45;
  font-weight: 300;
  color: var(--ink);
  letter-spacing: 0;
}

/* ============ SPLIT ============ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 88vh;
  background: var(--white);
}

.split__media {
  position: relative;
  overflow: hidden;
  will-change: transform;
}

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

.split__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 88px clamp(40px, 6vw, 100px);
}

.split__text h2 {
  font-size: 3.15rem;
  line-height: 1.08;
  color: var(--ink);
  margin-bottom: 24px;
}

.split__text > p {
  color: var(--ink-light);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 520px;
}

.split--rev .split__media {
  order: 2;
}

.split--rev .split__text {
  order: 1;
}

.pillars {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.pillar strong {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}

.pillar span {
  color: var(--ink-light);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ============ AMENITY STRIP ============ */
.strip {
  padding: 0;
  background: #1d1a17;
  border-top: 1px solid rgba(255, 252, 247, 0.08);
  border-bottom: 1px solid rgba(255, 252, 247, 0.08);
}

.strip__inner {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.strip__inner::-webkit-scrollbar {
  display: none;
}

.strip__item {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  min-width: 205px;
  padding: 42px clamp(28px, 4vw, 60px);
  border-right: 1px solid rgba(255, 252, 247, 0.08);
  text-align: left;
  white-space: nowrap;
}

.strip__item:last-child {
  border-right: none;
}

.strip__item strong {
  font-family: "Outfit", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
}

.strip__item .strip__code {
  font-family: "Fraunces", serif;
  font-size: 1.7rem;
  font-weight: 300;
  line-height: 1;
  color: var(--warm);
}

.strip__item .strip__meta {
  font-size: 0.76rem;
  color: rgba(255, 252, 247, 0.48);
  font-weight: 400;
  letter-spacing: 0.04em;
}

/* ============ SLEEPING ============ */
.sleeping {
  padding: 104px 0;
  background: var(--bg);
}

.sleeping h2 {
  max-width: 720px;
  font-size: 3rem;
  line-height: 1.08;
}

.sleeping__lead {
  max-width: 650px;
  margin-top: 18px;
  color: var(--ink-light);
  line-height: 1.75;
}

.sleeping__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 42px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}

.sleeping__room {
  display: grid;
  align-content: start;
  min-height: 230px;
  padding: 28px;
  background: var(--white);
}

.sleeping__icon {
  margin-bottom: 42px;
  font-family: "Fraunces", serif;
  font-size: 2.25rem;
  font-weight: 300;
  line-height: 1;
  color: var(--warm-dark);
}

.sleeping__room strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Fraunces", serif;
  font-size: 1.35rem;
  font-weight: 300;
  line-height: 1.15;
  color: var(--ink);
}

.sleeping__room span {
  color: var(--ink-light);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ============ GALLERY (HORIZONTAL SCROLL) ============ */
.gal {
  padding: 112px 0 88px;
  background: var(--bg);
  overflow: hidden;
}

.gal__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 18px;
}

.gal__top h2 {
  max-width: 760px;
  font-size: 3rem;
  line-height: 1.08;
  color: var(--ink);
}

.gal__top .btn--outline {
  color: var(--ink);
  border-color: var(--line-dark);
}

.gal__intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.gal__hint {
  max-width: 640px;
  color: var(--ink-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

.gal__controls {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.82);
  box-shadow: var(--shadow);
  color: var(--ink-light);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.gal__arrow {
  font-size: 1rem;
  color: var(--ink);
}

.gal__drag {
  opacity: 0.82;
}

.gal__rail {
  position: relative;
}

.gal__rail::before,
.gal__rail::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 72px;
  z-index: 2;
  pointer-events: none;
}

.gal__rail::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg) 0%, rgba(246, 243, 238, 0) 100%);
}

.gal__rail::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg) 0%, rgba(246, 243, 238, 0) 100%);
}

.gal__scroll {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0 max(24px, calc((100vw - 1200px) / 2));
  cursor: grab;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}

.gal__scroll::-webkit-scrollbar {
  display: none;
}

.gal__scroll:active {
  cursor: grabbing;
}

.gal__track {
  display: flex;
  gap: 16px;
  padding: 4px 0 8px;
}

.gallery-card {
  position: relative;
  flex: 0 0 auto;
  width: 420px;
  height: 560px;
  overflow: hidden;
  border-radius: 0;
  background: var(--bg-alt);
  cursor: pointer;
}

.gallery-card-large {
  width: 620px;
  height: 560px;
}

.gallery-card-tall {
  width: 360px;
  height: 560px;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease-out);
}

.gallery-card:hover img {
  transform: scale(1.04);
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 45%;
  background: linear-gradient(transparent, rgba(28, 25, 23, 0.7));
  pointer-events: none;
  opacity: 0;
  transition: opacity 300ms var(--ease);
}

.gallery-card:hover::after {
  opacity: 1;
}

.gallery-card-copy {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 2;
  color: var(--white);
  opacity: 0;
  transform: translateY(8px);
  transition: all 300ms var(--ease);
}

.gallery-card:hover .gallery-card-copy {
  opacity: 1;
  transform: none;
}

.gallery-card-copy strong {
  display: block;
  font-family: "Fraunces", serif;
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 4px;
}

.gallery-card-copy span {
  font-size: 0.82rem;
  color: rgba(255, 252, 247, 0.7);
}

.gallery-card:focus-visible {
  outline: 2px solid var(--warm);
  outline-offset: 4px;
}

/* ============ TESTIMONIAL ============ */
.quote {
  padding: 120px 0;
  background: var(--bg-alt);
  text-align: center;
}

.quote--early {
  padding: 96px 0 72px;
  background: #fffaf2;
  text-align: left;
}

.quote--early .wrap--narrow {
  max-width: 1120px;
}

.quote__heading {
  font-family: Fraunces, serif;
  font-weight: 300;
  max-width: 760px;
  font-size: 2.55rem;
  line-height: 1.15;
  margin-bottom: 28px;
}

.quote blockquote {
  font-size: 2.55rem;
  line-height: 1.3;
  font-style: italic;
  font-weight: 300;
  color: var(--ink);
  max-width: 700px;
  margin: 0 auto 40px;
}

.quote__lead {
  max-width: 760px;
  margin: 0 auto 16px;
  font-family: "Fraunces", serif;
  font-size: 2.25rem;
  line-height: 1.35;
  font-weight: 300;
  color: var(--ink);
  letter-spacing: 0;
}

.quote__note {
  max-width: 720px;
  margin: 0 auto 28px;
  color: var(--ink-light);
  font-size: 0.92rem;
  line-height: 1.7;
}

.quote__scores--top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 28px;
  padding: 18px 0;
  border-top: 1px solid rgba(28, 25, 23, 0.14);
  border-bottom: 1px solid rgba(28, 25, 23, 0.14);
}

.quote__score-card {
  padding: 0 24px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.quote__score-card:first-child {
  padding-left: 0;
}

.quote__score-card + .quote__score-card {
  border-left: 1px solid rgba(28, 25, 23, 0.12);
}

.quote__score-card strong {
  display: block;
  font-family: "Fraunces", serif;
  font-size: 1.75rem;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 4px;
}

.quote__score-card span {
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-light);
}

/* ============ AREA + RULES ============ */
.area__distances {
  display: grid;
  gap: 1px;
  margin-top: 28px;
  border: 1px solid var(--line-dark);
  background: var(--line-dark);
}

.area__distance {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 16px;
  background: var(--white);
  color: var(--ink-light);
  font-size: 0.9rem;
}

.area__distance strong {
  color: var(--ink);
}

.rules {
  padding: 104px 0;
  background: var(--white);
}

.rules h2 {
  font-size: 2.7rem;
  line-height: 1.08;
  margin-bottom: 32px;
}

.rules__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line-dark);
  background: var(--line-dark);
}

.rules__item {
  min-height: 116px;
  padding: 22px;
  background: var(--bg);
}

.rules__item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-dark);
}

.rules__item span {
  color: var(--ink-light);
  line-height: 1.55;
}

.quote__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  text-align: left;
}

.quote__facts div {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 252, 247, 0.65);
}

.quote__facts strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Fraunces", serif;
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--ink);
}

.quote__facts span {
  color: var(--ink-light);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ============ BOOKING ============ */
.book {
  padding: 112px 0;
  background:
    linear-gradient(180deg, rgba(28, 25, 23, 0.92), rgba(28, 25, 23, 0.92)),
    url("https://a0.muscache.com/im/pictures/hosting/Hosting-1390627616966485823/original/674016cb-c4b4-4dba-980a-99e8cee115c9.jpeg?im_w=1200") center/cover;
  color: var(--white);
}

.book__layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: start;
}

.book__copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 16px;
}

.book .section-number {
  color: var(--warm);
}

.book__copy h2 {
  font-size: 3.2rem;
  line-height: 1.08;
  color: var(--white);
}

.book__copy > p {
  color: rgba(255, 252, 247, 0.68);
  line-height: 1.75;
  max-width: 440px;
}

.book__perks {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 252, 247, 0.16);
}

.book__perks strong {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.book__perks span {
  color: rgba(255, 252, 247, 0.62);
  font-size: 0.9rem;
  line-height: 1.6;
}

.book__card {
  padding: 32px;
  border: 1px solid rgba(255, 252, 247, 0.14);
  border-radius: 0;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  color: var(--ink);
}

/* Calendar */
.cal {
  margin-bottom: 20px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(246, 243, 238, 0.5);
}

.cal__bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 14px;
  margin-bottom: 12px;
}

.cal__label {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm-dark);
}

.cal__sel {
  margin: 0;
  color: var(--ink-light);
  font-size: 0.88rem;
  line-height: 1.5;
}

.cal__arrows {
  display: flex;
  gap: 6px;
}

.cal__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  color: var(--ink);
  font-size: 1rem;
  transition: all 200ms var(--ease);
}

.cal__arrow:hover {
  border-color: var(--ink);
  background: var(--bg);
}

.cal__arrow:disabled {
  opacity: 0.25;
  cursor: not-allowed;
}

.calendar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.calendar-legend span {
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 3px;
  color: var(--ink-light);
  font-size: 0.7rem;
  font-weight: 500;
}

.legend-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 6px;
  border-radius: 50%;
}

.legend-available {
  background: var(--line-dark);
}

.legend-booked {
  background: var(--ink-faint);
}

.legend-selected {
  background: var(--warm);
}

.calendar-months {
  display: grid;
}

.calendar-month {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.calendar-month-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}

.calendar-month-header strong {
  font-size: 1.2rem;
  color: var(--ink);
}

.calendar-weekdays,
.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.calendar-weekdays {
  margin-bottom: 4px;
  color: var(--ink-faint);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.calendar-weekdays span {
  padding: 4px 0;
  text-align: center;
}

.calendar-day {
  min-height: 50px;
  padding: 4px;
  border: 1px solid transparent;
  border-radius: 3px;
  background: transparent;
  text-align: left;
  color: var(--ink);
  cursor: pointer;
  transition: all 160ms var(--ease);
}

.calendar-day:hover {
  background: rgba(194, 152, 106, 0.08);
  border-color: rgba(194, 152, 106, 0.2);
}

.calendar-day.is-empty,
.calendar-day.is-past {
  cursor: default;
  opacity: 0.25;
}

.calendar-day.is-past:hover,
.calendar-day.is-booked:hover {
  background: transparent;
  border-color: transparent;
}

.calendar-day.is-booked {
  color: var(--ink-faint);
}

.calendar-day.is-selected,
.calendar-day.is-in-range {
  border-color: rgba(194, 152, 106, 0.4);
  background: rgba(194, 152, 106, 0.1);
}

.calendar-day.is-selected {
  background: rgba(194, 152, 106, 0.18);
}

.calendar-day-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 500;
}

.calendar-price {
  display: block;
  margin-top: 3px;
  color: var(--warm-dark);
  font-size: 0.6rem;
  font-weight: 600;
}

.book__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 16px;
}

.book__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.book__field span {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink-light);
}

.book__field input[type="number"] {
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font-weight: 500;
}

.book__field--toggle {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(246, 243, 238, 0.5);
}

.book__field--toggle input {
  width: 18px;
  height: 18px;
  accent-color: var(--warm);
}

.book__card .btn {
  margin-top: 6px;
}

.book__card .btn--outline {
  margin-top: 0;
}

.book__status,
.book__quote {
  margin-top: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(246, 243, 238, 0.5);
  color: var(--ink-light);
  font-size: 0.88rem;
  line-height: 1.6;
}

.book__quote strong {
  display: block;
  margin-bottom: 4px;
  font-family: "Fraunces", serif;
  color: var(--ink);
  font-size: 1.6rem;
  font-weight: 300;
}

.book__note {
  margin-top: 16px;
  color: var(--ink-light);
  font-size: 0.8rem;
  line-height: 1.6;
}

.book__price-anchor {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.book__from,
.book__per {
  color: var(--ink-light);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.book__rate {
  font-family: "Fraunces", serif;
  font-size: 2.3rem;
  font-weight: 300;
  line-height: 1;
  color: var(--ink);
}

/* ============ FAQ ============ */
.faq {
  padding: 100px 0;
  background: var(--bg-alt);
}

.faq h2 {
  font-size: 2.6rem;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 32px;
}

.faq__item {
  border-bottom: 1px solid var(--line-dark);
}

.faq__item:first-of-type {
  border-top: 1px solid var(--line-dark);
}

.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  transition: color 200ms var(--ease);
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: "+";
  font-family: "Fraunces", serif;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--ink-faint);
  transition: transform 200ms var(--ease);
}

.faq__item[open] summary::after {
  content: "–";
}

.faq__item summary:hover {
  color: var(--warm-dark);
}

.faq__item p {
  padding: 0 0 20px;
  color: var(--ink-light);
  line-height: 1.75;
  max-width: 600px;
}

/* ============ FINALE CTA ============ */
.finale {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  overflow: hidden;
  text-align: center;
}

.finale__img {
  position: absolute;
  inset: 0;
  z-index: 0;
  will-change: transform;
}

.finale__img img {
  width: 100%;
  height: 115%;
  object-fit: cover;
}

.finale__fade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(28, 25, 23, 0.55);
}

.finale__body {
  position: relative;
  z-index: 2;
  padding: 60px 24px;
}

.finale__body h2 {
  font-size: 3.8rem;
  line-height: 1.06;
  color: var(--white);
  max-width: 600px;
  margin: 0 auto 32px;
}

.finale__ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.finale__ctas .btn {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

.finale__ctas .btn:hover {
  background: #f0ece5;
}

.finale__ctas .btn--text {
  background: transparent;
  color: rgba(255, 252, 247, 0.8);
  border-color: transparent;
  border-bottom: 1px solid rgba(255, 252, 247, 0.35);
}

.finale__ctas .btn--text:hover {
  color: var(--white);
  border-color: var(--white);
}

/* ============ REVIEWS ============ */
.reviews-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 auto 24px;
  text-align: left;
}

.reviews-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.reviews-nav__btn {
  min-width: 108px;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
}

.reviews-search__status {
  min-width: 220px;
  margin: 0;
  color: var(--ink-light);
  font-size: 0.86rem;
  line-height: 1.6;
  text-align: left;
}

.reviews-container {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 32px;
  border-top: 1px solid rgba(28, 25, 23, 0.14);
}

.review-card {
  display: grid;
  grid-template-columns: minmax(128px, 180px) minmax(0, 1fr);
  column-gap: 36px;
  padding: 30px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(28, 25, 23, 0.14);
  border-radius: 0;
}

.review-header {
  display: block;
  grid-column: 1;
  grid-row: 1 / span 3;
  margin-bottom: 0;
}

.review-author {
  font-family: Fraunces, serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--ink);
}

.review-date {
  display: block;
  margin-top: 6px;
  font-size: 0.75rem;
  color: var(--ink-faint);
}

.review-rating {
  grid-column: 2;
  color: var(--warm-dark);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.review-text {
  grid-column: 2;
  color: var(--ink-light);
  line-height: 1.7;
  font-size: 0.95rem;
}

.review-location {
  grid-column: 2;
  display: inline-block;
  margin-top: 12px;
  font-size: 0.75rem;
  color: var(--ink-faint);
  font-style: italic;
}

.reviews-loading,
.reviews-empty {
  color: var(--ink-faint);
  font-style: italic;
  padding: 20px 0;
}

/* ============ FOOTER ============ */
.ft {
  padding: 56px 0 40px;
  border-top: 1px solid var(--line);
  background: var(--bg);
}

.ft__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
}

.ft__left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ft__right {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: right;
}

.ft__brand {
  font-family: "Fraunces", serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--ink);
}

.ft__loc {
  color: var(--ink-faint);
  font-size: 0.85rem;
}

.ft__detail {
  color: var(--ink-light);
  font-size: 0.82rem;
  line-height: 1.6;
}

.ft__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid var(--line);
}

.ft__copy {
  color: var(--ink-faint);
  font-size: 0.76rem;
  line-height: 1.6;
}

.ft__admin {
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(28, 25, 23, 0.26);
  transition: color 200ms var(--ease);
}

.ft__admin:hover {
  color: rgba(28, 25, 23, 0.46);
}

/* ============ LIGHTBOX ============ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  align-content: start;
  gap: 20px;
  padding: 24px;
  background: rgba(28, 25, 23, 0.96);
  overflow-y: auto;
  backdrop-filter: blur(8px);
}

.lightbox-x {
  position: sticky;
  top: 0;
  justify-self: end;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  font-size: 1.8rem;
  color: var(--white);
  border: 1px solid rgba(255, 252, 247, 0.15);
  border-radius: 50%;
  z-index: 2;
  transition: all 200ms var(--ease);
}

.lightbox-x:hover {
  border-color: rgba(255, 252, 247, 0.4);
}

.lightbox__grid {
  width: min(1100px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.lightbox__figure {
  margin: 0;
  display: grid;
  gap: 14px;
}

.lightbox__grid img {
  border-radius: 6px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.lightbox__caption {
  display: grid;
  gap: 4px;
  color: var(--white);
}

.lightbox__caption strong {
  font-family: "Fraunces", serif;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.1;
}

.lightbox__caption span {
  max-width: 680px;
  color: rgba(255, 252, 247, 0.72);
  line-height: 1.6;
}

/* ============ REVEAL ============ */
[data-reveal] {
  opacity: 1;
  transform: none;
}

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .hero__content .kicker,
  .hero__content h1,
  .hero__sub,
  .hero__ctas,
  .hero__bar {
    opacity: 1;
  }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hdr {
    grid-template-columns: minmax(0, 1fr) auto;
    top: 12px;
    left: 12px;
    right: 12px;
    padding: 14px 14px 13px;
    gap: 14px;
  }

  .hdr__name {
    max-width: 100%;
    font-size: 0.98rem;
  }

  .hdr__nav {
    position: fixed;
    top: 76px;
    left: 12px;
    right: 12px;
    width: auto;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 14px 16px 18px;
    background: rgba(246, 243, 238, 0.98);
    border: 1px solid var(--line);
    border-radius: 18px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition:
      transform 300ms var(--ease-out),
      opacity 220ms var(--ease);
    z-index: 60;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    max-height: calc(100dvh - 92px);
    color: var(--ink-light);
  }

  .hero__content {
    padding: 88px 0 48px;
  }

  .hero__content h1 {
    font-size: 4.4rem;
  }

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

  .gal__controls {
    align-self: flex-start;
  }

  .reviews-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .reviews-nav {
    justify-content: flex-start;
  }

  .reviews-search__status {
    text-align: left;
    min-width: 0;
  }

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

  .hdr__nav a {
    padding: 16px 0;
    font-size: 0.95rem;
    width: 100%;
    border-bottom: 1px solid var(--line);
  }

  .hdr__nav a:last-child {
    border-bottom: none;
  }

  .hdr__nav a::after {
    display: none;
  }

  .hdr__cta {
    display: none;
  }

  .hdr__toggle {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 36px;
    border: 1px solid rgba(255, 252, 247, 0.2);
    border-radius: 999px;
  }

  .hdr.is-scrolled .hdr__toggle {
    border-color: var(--line-dark);
  }

  .hero__content {
    padding-bottom: 48px;
  }

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

  .hero__bar div {
    padding: 18px 0;
  }

  .split {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .split__media {
    height: 60vw;
    min-height: 320px;
  }

  .split--rev .split__media {
    order: 0;
  }

  .split--rev .split__text {
    order: 1;
  }

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

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

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

@media (max-width: 640px) {
  body {
    padding-bottom: 0;
  }

  .wrap {
    width: calc(100vw - 24px);
  }

  .hdr {
    display: flex;
    top: 12px;
    left: 12px;
    right: auto;
    width: auto;
    max-width: calc(100vw - 24px);
    overflow: visible;
    padding: 0;
    color: var(--white);
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    transition:
      opacity 180ms var(--ease),
      transform 180ms var(--ease);
  }

  .hdr.is-scrolled {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    color: var(--white);
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .hdr__brand {
    display: inline-flex;
    max-width: calc(100vw - 24px);
    padding: 10px 13px;
    border: 1px solid rgba(255, 252, 247, 0.18);
    border-radius: 999px;
    background: rgba(28, 25, 23, 0.24);
    backdrop-filter: blur(14px) saturate(1.12);
  }

  .hdr__name {
    max-width: 100%;
    overflow: hidden;
    font-size: 0.82rem;
    line-height: 1.14;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hdr__toggle {
    display: none;
  }

  .hdr__nav {
    display: none;
    top: 70px;
    left: 10px;
    right: 10px;
    padding: 14px 12px 16px;
    border-radius: 16px;
    max-height: calc(100dvh - 84px);
  }

  .gal__intro {
    gap: 14px;
    margin-bottom: 18px;
  }

  .gal__hint {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .gal__controls {
    font-size: 0.68rem;
    letter-spacing: 0.06em;
    padding: 9px 12px;
  }

  .strip__item {
    min-width: 168px;
    padding: 30px 24px;
  }

  .strip__item .strip__code {
    font-size: 1.5rem;
  }

  .reviews-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
  }

  .reviews-nav__btn {
    width: 100%;
    min-width: 0;
  }

  .reviews-search__status {
    font-size: 0.82rem;
  }

  .quote__scores--top {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
  }

  .quote__score-card {
    padding: 16px 0;
  }

  .quote__score-card + .quote__score-card {
    border-left: 0;
    border-top: 1px solid rgba(28, 25, 23, 0.12);
  }

  .quote__score-card strong {
    font-size: 1.4rem;
  }

  .review-card {
    display: block;
    padding: 24px 0;
  }

  .review-header {
    margin-bottom: 8px;
  }

  .hero__proof {
    flex-wrap: wrap;
    gap: 8px;
  }

  .status-intro {
    padding-top: 110px !important;
  }

  .status-actions {
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 36px !important;
  }

  .status-actions .btn {
    width: 100%;
  }

  .hero {
    display: block;
    min-height: auto;
    margin: 0;
    border-radius: 0;
    background: #15120f;
    box-shadow: none;
    padding-bottom: 24px;
  }

  .hero__img {
    position: relative;
    inset: auto;
    height: 48vh;
    min-height: 330px;
    max-height: 470px;
  }

  .hero__img img {
    height: 100%;
    object-position: center top;
    transform: none;
  }

  .hero__fade {
    inset: 0 0 auto;
    height: 48vh;
    min-height: 330px;
    max-height: 470px;
    background:
      linear-gradient(180deg, rgba(12, 11, 10, 0.2) 0%, rgba(12, 11, 10, 0.04) 35%, rgba(12, 11, 10, 0.72) 100%),
      linear-gradient(90deg, rgba(12, 11, 10, 0.4) 0%, rgba(12, 11, 10, 0.04) 58%);
  }

  .hero__content {
    width: auto;
    max-width: none;
    margin: -76px 16px 0;
    padding: 22px;
    border: 1px solid rgba(255, 252, 247, 0.12);
    border-radius: 16px;
    background: rgba(21, 18, 15, 0.92);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(12px) saturate(1.08);
  }

  .hero__content .kicker {
    margin-bottom: 10px;
    font-size: 0.62rem;
    letter-spacing: 0.16em;
    color: rgba(255, 252, 247, 0.6);
  }

  .hero__content h1 {
    max-width: 100%;
    overflow-wrap: normal;
    font-size: 2.08rem;
    line-height: 1.08;
  }

  .hero__sub {
    max-width: 100%;
    margin-top: 14px;
    font-size: 0.92rem;
    line-height: 1.55;
    color: rgba(255, 252, 247, 0.72);
  }

  .hero__proof {
    display: block;
    margin-top: 16px;
  }

  .hero__proof span {
    display: none;
  }

  .hero__proof::before {
    content: "4.95 rating / 20 verified reviews";
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 8px 12px;
    border: 1px solid rgba(255, 252, 247, 0.18);
    border-radius: 999px;
    background: rgba(255, 252, 247, 0.1);
    color: rgba(255, 252, 247, 0.88);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-align: center;
    text-transform: uppercase;
  }

  .hero__ctas {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 18px;
  }

  .hero__ctas .btn,
  .finale__ctas .btn {
    width: 100%;
    min-height: 48px;
    padding: 0 12px;
    font-size: 0.78rem;
  }

  .hero__ctas .btn--text {
    min-height: 48px;
    padding: 0 12px;
    border: 1px solid rgba(255, 252, 247, 0.22);
    border-radius: var(--radius);
  }

  .hero__bar {
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: auto;
    max-width: none;
    margin: 16px 16px 0;
    border: 1px solid rgba(255, 252, 247, 0.1);
    background: rgba(255, 252, 247, 0.04);
  }

  .hero__bar div {
    border-right: none;
    border-bottom: 1px solid rgba(255, 252, 247, 0.06);
    padding: 14px 0;
    min-height: 66px;
    align-items: flex-start;
    flex-direction: column;
  }

  .hero__bar div:nth-child(odd) {
    border-right: 1px solid rgba(255, 252, 247, 0.06);
  }

  .hero__bar div:nth-last-child(-n + 2) {
    border-bottom: none;
  }

  .hero__bar strong {
    font-size: 1.15rem;
  }

  .intro {
    padding: 72px 0;
  }

  .intro__lead {
    font-size: 1.55rem;
    line-height: 1.5;
  }

  .split__text {
    padding: 40px 18px;
  }

  .split__text h2,
  .gal__top h2,
  .quote__lead,
  .book__copy h2,
  .faq h2,
  .finale__body h2 {
    font-size: 2.25rem;
  }

  .quote__heading,
  .sleeping h2,
  .rules h2 {
    font-size: 2.2rem;
  }

  .sleeping {
    padding: 50px 0 22px;
  }

  .sleeping__grid {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 22px;
    background: transparent;
    border-left: 0;
    border-right: 0;
  }

  .sleeping__room {
    grid-template-columns: 48px minmax(0, 1fr);
    column-gap: 18px;
    align-content: center;
    min-height: 0;
    padding: 18px 0;
    background: transparent;
    border-bottom: 1px solid var(--line-dark);
  }

  .sleeping__icon {
    grid-row: 1 / span 2;
    margin: 1px 0 0;
    font-size: 1.35rem;
  }

  .sleeping__room strong {
    margin-bottom: 4px;
    font-size: 1.22rem;
  }

  .sleeping__room span {
    font-size: 0.88rem;
    line-height: 1.45;
  }

  .rules {
    padding: 62px 0;
  }

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

  .gal,
  .book,
  .faq {
    padding: 56px 0;
  }

  .gal {
    padding: 36px 0 52px;
  }

  .quote {
    padding: 72px 0;
  }

  .gal__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 18px;
  }

  .gal__top h2 {
    font-size: 2.05rem;
    line-height: 1.08;
  }

  .gal__top .btn--outline {
    min-height: 46px;
    padding: 0 22px;
  }

  .gal__intro {
    gap: 0;
    margin-bottom: 20px;
  }

  .gal__controls {
    display: none;
  }

  .gal__scroll {
    padding: 0 12px 6px;
    scroll-snap-type: x mandatory;
  }

  .gallery-card,
  .gallery-card-large,
  .gallery-card-tall {
    width: min(84vw, 330px);
    height: min(104vw, 420px);
    scroll-snap-align: center;
  }

  .gallery-card-large {
    width: min(86vw, 340px);
    height: min(108vw, 440px);
  }

  .gallery-card-tall {
    width: min(76vw, 292px);
    height: min(104vw, 420px);
  }

  .gallery-card-copy {
    opacity: 1;
    transform: none;
  }

  .gallery-card::after {
    opacity: 1;
  }

  .book__card {
    padding: 22px;
  }

  .cal {
    padding: 12px;
  }

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

  .cal__arrows {
    align-self: flex-end;
  }

  .calendar-legend {
    gap: 6px;
    margin-bottom: 12px;
  }

  .calendar-legend span {
    height: auto;
    min-height: 26px;
    white-space: normal;
    line-height: 1.2;
    padding: 5px 10px;
  }

  .calendar-month {
    padding: 10px;
  }

  .calendar-day {
    min-height: 44px;
    padding: 3px;
  }

  .calendar-day-top {
    font-size: 0.72rem;
  }

  .calendar-price {
    font-size: 0.56rem;
  }

  .book__field--toggle {
    padding: 12px 14px;
  }

  .book__status,
  .book__quote,
  .book__note {
    font-size: 0.82rem;
    line-height: 1.55;
  }

  .quote__facts {
    gap: 12px;
  }

  .finale__ctas {
    flex-direction: column;
    gap: 12px;
  }

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

  .ft__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .ft__right {
    text-align: left;
  }

  .ft__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .hide-mobile {
    display: none;
  }

  .mobile-dock {
    display: none;
  }

  .mobile-dock__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 14px;
    border-radius: 14px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
    white-space: normal;
  }

  .mobile-dock__btn--secondary {
    background: rgba(28, 25, 23, 0.06);
    color: var(--ink);
  }

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

@media (hover: none) and (pointer: coarse) {
  .btn:hover,
  .hdr__cta:hover,
  .gallery-card:hover img,
  .gallery-card:hover::after,
  .gallery-card:hover .gallery-card-copy {
    transform: none;
    box-shadow: none;
  }

  .gallery-card-copy {
    opacity: 1;
    transform: none;
  }

  .gallery-card::after {
    opacity: 1;
  }
}
