/* =========================================================
   PANORAMA RESIDENCES, Brand-aligned design system
   Palette sourced from Panorama Style Guide v1.0 (Altus Branding):
   White Down #e6e3d9, Whitecap Gray #ddd3c5, Simply Taupe #aba092,
   Midnight Black #171d1a, Ultra White #f1f1f1
   ========================================================= */

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("assets/fonts/inter-latin-site.woff2") format("woff2");
}

@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/fraunces-400-site.woff2") format("woff2");
}

@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/fraunces-500-site.woff2") format("woff2");
}

@font-face {
  font-family: "Fraunces";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/fraunces-italic-400-site.woff2") format("woff2");
}

:root {
  /* Ink */
  --ink:            #171d1a; /* Midnight Black */
  --ink-soft:       #3a352f;
  --muted:          #6b6357;
  --muted-soft:     #8a8175;

  /* Warm neutrals */
  --paper:          #e6e3d9; /* White Down */
  --paper-deep:     #ddd3c5; /* Whitecap Gray */
  --cream:          #ddd3c5;
  --surface:        #f1ede4;
  --surface-light:  #f6f3ec;
  --sand:           #aba092; /* Simply Taupe */

  /* Signature accent, Simply Taupe family only */
  --taupe:          #aba092;
  --taupe-light:    #c9bfaf;
  --taupe-deep:     #7d715f;

  /* Utility */
  --line:           rgba(23, 29, 26, 0.10);
  --line-soft:      rgba(23, 29, 26, 0.06);
  --shadow-sm:      0 6px 18px rgba(60, 52, 40, 0.08);
  --shadow-md:      0 18px 48px rgba(60, 52, 40, 0.12);
  --shadow-lg:      0 34px 90px rgba(60, 52, 40, 0.18);

  /* Type */
  --font-serif:     "Fraunces", "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans:      "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Layout */
  --gutter:         clamp(20px, 5vw, 72px);
  --content-max:    1240px;
}

/* =========================================================
   Base
   ========================================================= */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

button { font-family: inherit; }

:focus-visible {
  outline: 3px solid rgba(125, 113, 95, 0.65);
  outline-offset: 3px;
}

::selection {
  background: var(--taupe);
  color: #fff;
}

h1, h2, h3, h4, p, ul, ol, blockquote, figure {
  margin-top: 0;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -0.005em;
  color: var(--ink);
}

/* Content stays visible without JavaScript; animation is progressively enhanced. */
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 900ms ease, transform 900ms cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: opacity, transform;
}
.js .reveal.is-visible {
  opacity: 1;
  transform: none;
  will-change: auto;
}

.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;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: #fff;
  background: var(--ink);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}
.skip-link:focus {
  transform: translateY(0);
}

/* =========================================================
   Header
   ========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 25;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  min-height: 84px;
  padding: 14px var(--gutter);
  background: rgba(230, 227, 217, 0.88);
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(18px) saturate(1.1);
  -webkit-backdrop-filter: blur(18px) saturate(1.1);
  transition: box-shadow 300ms ease, background 300ms ease;
}
.site-header.is-scrolled {
  background: rgba(230, 227, 217, 0.96);
  box-shadow: 0 12px 40px rgba(60, 52, 40, 0.08);
}

.brand img {
  width: clamp(150px, 16vw, 200px);
  height: auto;
}

.nav {
  justify-self: center;
  display: flex;
  gap: clamp(20px, 3.4vw, 44px);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.nav a {
  position: relative;
  color: var(--ink-soft);
  transition: color 220ms ease;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: var(--taupe-deep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 320ms ease;
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after { transform: scaleX(1); }
.nav-toggle {
  display: none;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.62);
  font: inherit;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* =========================================================
   Buttons
   ========================================================= */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--taupe-light) 0%, var(--taupe) 50%, var(--taupe-deep) 100%);
  background-size: 200% 100%;
  background-position: 0% 0%;
  box-shadow: 0 14px 30px rgba(90, 78, 62, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-position 500ms ease, transform 220ms ease, box-shadow 300ms ease;
}
.button:hover {
  background-position: 100% 0%;
  transform: translateY(-1px);
  box-shadow: 0 20px 38px rgba(90, 78, 62, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}
.button:active { transform: translateY(0); }

.button--small {
  min-height: 42px;
  padding: 0 20px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.button--ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(23, 29, 26, 0.18);
  box-shadow: none;
}
.button--ghost:hover {
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 28px rgba(60, 52, 40, 0.08);
}

/* =========================================================
   Hero
   ========================================================= */

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 84px));
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background: var(--ink);
}
.hero__image {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  transform: scale(1.02);
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1.00); }
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(23, 29, 26, 0.46) 0%, rgba(23, 29, 26, 0.22) 34%, rgba(23, 29, 26, 0.05) 62%, rgba(23, 29, 26, 0) 100%),
    linear-gradient(180deg, rgba(23, 29, 26, 0) 0%, rgba(23, 29, 26, 0.12) 72%, rgba(23, 29, 26, 0.28) 100%);
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 2;
  width: min(560px, 92vw);
  padding: 100px var(--gutter) 140px;
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.62);
}

.eyebrow {
  display: inline-block;
  margin: 0 0 18px;
  padding: 6px 14px;
  border: 1px solid rgba(201, 191, 175, 0.55);
  border-radius: 999px;
  color: var(--taupe-light);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: rgba(23, 29, 26, 0.28);
  backdrop-filter: blur(6px);
}

.eyebrow--dark {
  color: var(--taupe-deep);
  background: rgba(255, 255, 255, 0.6);
  border-color: rgba(125, 113, 95, 0.35);
}

.hero h1 {
  margin: 0 0 20px;
  color: #f6efe3;
  font-size: clamp(2.15rem, 4.3vw, 4.2rem);
  line-height: 1.04;
  font-weight: 400;
  letter-spacing: -0.01em;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.48);
}
.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--taupe-light);
}

.hero__lead {
  max-width: 460px;
  margin: 0 0 30px;
  color: #fff8ee;
  font-size: clamp(0.98rem, 1.1vw, 1.08rem);
  line-height: 1.58;
  font-weight: 300;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* =========================================================
   Booking strip
   ========================================================= */

.booking-strip {
  position: sticky;
  top: 84px;
  z-index: 15;
  display: grid;
  grid-template-columns: minmax(200px, 260px) 1fr;
  align-items: start;
  column-gap: clamp(14px, 2vw, 24px);
  row-gap: 10px;
  max-width: var(--content-max);
  margin: -56px auto 0;
  padding: 18px 22px 14px;
  border-radius: 4px;
  background: #fff;
  box-shadow: var(--shadow-lg);
}
.booking-strip__intro strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--ink);
}
.booking-strip__intro span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.date-search {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(130px, 1fr)) minmax(180px, auto);
  gap: 10px;
  align-items: stretch;
}
.date-search label {
  display: grid;
  gap: 4px;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.date-search input,
.date-search select,
.date-display {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 0 14px;
  color: var(--ink);
  background: var(--surface-light);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.date-display {
  display: flex;
  align-items: center;
  text-align: left;
  cursor: pointer;
}
.date-display.is-empty {
  color: var(--ink);
}
.date-search input:focus,
.date-search select:focus,
.date-display:focus {
  outline: none;
  border-color: var(--taupe);
  box-shadow: 0 0 0 3px rgba(171, 160, 146, 0.24);
}
.date-display.has-error {
  border-color: #9f4d3f;
  box-shadow: 0 0 0 3px rgba(159, 77, 63, 0.16);
}
.booking-error {
  display: none;
  grid-column: 1 / -1;
  margin: 0;
  color: #8d3328;
  font-size: 0.84rem;
  font-weight: 700;
}
.has-booking-error .booking-error {
  display: block;
}
.date-picker {
  position: absolute;
  left: 0;
  top: calc(100% + 12px);
  z-index: 40;
  width: min(390px, 100%);
  padding: 16px;
  border: 1px solid rgba(125, 113, 95, 0.18);
  border-radius: 4px;
  background: #fff;
  box-shadow: var(--shadow-lg);
}
.date-picker[hidden] {
  display: none;
}
.date-picker__header,
.date-picker__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.date-picker__month {
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
}
.date-picker__nav {
  border: 1px solid var(--line);
  border-radius: 3px;
  color: var(--ink);
  background: var(--surface-light);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.date-picker__nav {
  width: 36px;
  height: 36px;
}
.date-picker__hint {
  color: var(--muted);
  font-size: 0.84rem;
}
.date-picker__weekdays,
.date-picker__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.date-picker__weekdays {
  margin: 14px 0 6px;
  color: var(--muted-soft);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}
.date-picker__day {
  min-height: 38px;
  border: 0;
  border-radius: 3px;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-size: 0.86rem;
  cursor: pointer;
}
.date-picker__day:hover {
  background: var(--surface);
}
.date-picker__day.is-muted {
  color: rgba(23, 29, 26, 0.28);
  cursor: default;
}
.date-picker__day.is-muted:hover {
  background: transparent;
}
.date-picker__day.is-in-range {
  background: rgba(171, 160, 146, 0.18);
}
.date-picker__day.is-selected {
  color: #fff;
  background: var(--taupe-deep);
}
.date-picker__footer {
  margin-top: 14px;
}
.booking-strip .button {
  min-height: 42px;
  border-radius: 3px;
  padding-inline: 22px;
  box-shadow: 0 10px 22px rgba(90, 78, 62, 0.22);
}
.booking-essentials {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  padding-top: 10px;
  border-top: 1px solid var(--line-soft);
}
.booking-essentials span {
  display: grid;
  gap: 2px;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.25;
}
.booking-essentials strong {
  color: var(--ink);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.booking-essentials--compact {
  grid-template-columns: 1fr;
  margin-top: 14px;
  padding: 14px;
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  background: rgba(246, 243, 236, 0.78);
}

/* =========================================================
   Editorial split
   ========================================================= */

.editorial-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  min-height: 620px;
  margin-top: 100px;
  background: var(--surface);
}
.editorial-split--reverse {
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1fr);
  background: var(--cream);
}
.editorial-split img {
  width: 100%; height: 100%;
  min-height: 520px;
  object-fit: cover;
}
.editorial-split--reverse img { order: 2; }
.editorial-split__content {
  display: grid;
  align-content: center;
  padding: clamp(48px, 7vw, 100px);
}
.editorial-split h2 {
  margin: 12px 0 22px;
  font-size: clamp(2.6rem, 4.6vw, 4.6rem);
  line-height: 1.02;
  font-weight: 400;
}
.editorial-split h2 em {
  font-style: italic;
  color: var(--taupe-deep);
  font-weight: 400;
}
.editorial-split__content > p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
  max-width: 44ch;
}

/* =========================================================
   Sections
   ========================================================= */

.section {
  padding: clamp(80px, 9vw, 130px) var(--gutter);
}
.section__intro {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}
.section__intro h2 {
  margin: 12px 0 18px;
  font-size: clamp(2.4rem, 4.4vw, 4.4rem);
  font-weight: 400;
  line-height: 1.04;
}
.section__intro h2 em {
  font-style: italic;
  color: var(--taupe-deep);
  font-weight: 400;
}
.section__intro p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.residences {
  position: relative;
  color: var(--ink);
  background: var(--paper-deep);
}

/* =========================================================
   Room cards
   ========================================================= */

.room-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  max-width: var(--content-max);
  margin: 0 auto;
}
.room-card {
  position: relative;
  display: grid;
  grid-template-rows: 300px 1fr;
  overflow: hidden;
  border-radius: 4px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 400ms cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 400ms ease;
}
.room-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.room-card__media {
  position: relative;
  overflow: hidden;
}
.room-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.room-card__image--lift {
  filter: brightness(1.16) saturate(1.05) contrast(0.96);
}
.room-card:hover .room-card__media img { transform: scale(1.05); }

.room-card__badge {
  position: absolute;
  top: 18px; left: 18px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--taupe-deep);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.14);
}
.room-card__badge--gold {
  background: linear-gradient(135deg, var(--taupe-light), var(--taupe));
  color: #fff;
}

.room-card__body {
  display: grid;
  padding: 30px 28px 28px;
}
.room-card__tag {
  margin: 0 0 10px;
  color: var(--taupe-deep);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.room-card h3 {
  margin: 0 0 14px;
  font-size: 1.75rem;
  line-height: 1.15;
  font-weight: 400;
}
.room-card p {
  margin: 0 0 20px;
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.98rem;
}
.room-card__meta {
  display: flex;
  gap: 18px;
  padding: 14px 0;
  margin-bottom: 22px;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.room-card__meta strong {
  display: block;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2px;
}
.room-card__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}
.room-card__price {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}
.room-card__price strong {
  display: block;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
}
.room-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--taupe-light), var(--taupe) 60%, var(--taupe-deep));
  box-shadow: 0 10px 20px rgba(90, 78, 62, 0.24);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: transform 220ms ease, box-shadow 300ms ease;
}
.room-card__link:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(90, 78, 62, 0.32);
}

.room-card--featured {
  transform: scale(1.02);
}
.room-card--featured:hover { transform: scale(1.02) translateY(-6px); }
.room-card--featured::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 4px;
  border: 1px solid rgba(125, 113, 95, 0.35);
  pointer-events: none;
}

.comparison-section {
  padding-top: 20px;
}
.comparison-table {
  max-width: var(--content-max);
  margin: 0 auto;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.comparison-table table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
}
.comparison-table th,
.comparison-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
  text-align: left;
}
.comparison-table thead th {
  color: var(--taupe-deep);
  font-size: 0.68rem;
  font-family: var(--font-sans);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.comparison-table tbody th {
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 1.08rem;
  font-weight: 500;
}
.comparison-table tr:last-child th,
.comparison-table tr:last-child td {
  border-bottom: 0;
}
.comparison-table a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 3px;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease;
}
.comparison-table a:hover {
  border-color: var(--taupe);
  background: var(--surface-light);
}

/* =========================================================
   Why book direct
   ========================================================= */

.direct-section {
  display: grid;
  justify-items: center;
  text-align: center;
  padding: clamp(80px, 9vw, 130px) var(--gutter);
  background:
    linear-gradient(135deg, rgba(23, 29, 26, 0.90), rgba(58, 53, 47, 0.80)),
    image-set(
      url("assets/styleguide/styleguide-p10-01-1600.avif") type("image/avif"),
      url("assets/styleguide/styleguide-p10-01-1600.webp") type("image/webp"),
      url("assets/styleguide/styleguide-p10-01.jpeg") type("image/jpeg")
    ) center / cover;
  color: #f1ede4;
}
.direct-section h2 {
  color: #fff;
  margin: 12px 0 20px;
  font-size: clamp(2.4rem, 4.4vw, 4.2rem);
  line-height: 1.04;
}
.direct-section h2 em {
  color: var(--taupe-light);
  font-style: italic;
  font-weight: 400;
}
.direct-section > div > p {
  color: rgba(241, 237, 228, 0.82);
  font-size: 1.08rem;
  line-height: 1.75;
  max-width: 48ch;
  margin-left: auto;
  margin-right: auto;
}
.direct-benefits {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  width: min(1120px, 100%);
  margin: 34px auto 0;
  padding: 0;
  list-style: none;
  text-align: left;
}
.direct-benefits li {
  position: relative;
  min-height: 116px;
  padding: 22px 20px 22px 42px;
  border: 1px solid rgba(241, 237, 228, 0.16);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(241, 237, 228, 0.9);
  font-weight: 600;
  line-height: 1.45;
}
.direct-benefits li::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 20px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
}

/* =========================================================
   Reviews
   ========================================================= */

.reviews {
  background: var(--paper);
}
.reviews__badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 14px auto 0;
  padding: 10px 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink);
}
.reviews__badge strong { color: var(--taupe-deep); }
.reviews__badge-stars {
  color: #fbbc04;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  line-height: 1;
  text-shadow: 0 1px 0 rgba(85, 68, 34, 0.14);
}
.google-word {
  font-weight: 700;
}
.google-word span:nth-child(1),
.google-word span:nth-child(4) { color: #4285f4; }
.google-word span:nth-child(2),
.google-word span:nth-child(6) { color: #db4437; }
.google-word span:nth-child(3) { color: #f4b400; }
.google-word span:nth-child(5) { color: #0f9d58; }

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--content-max);
  margin: 0 auto;
}
blockquote {
  display: grid;
  align-content: start;
  gap: 16px;
  margin: 0;
  padding: 34px 30px;
  border-radius: 4px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 300ms ease, box-shadow 300ms ease;
}
blockquote:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
blockquote p {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 1.32rem;
  line-height: 1.4;
  font-weight: 400;
}
.review-stars {
  color: #fbbc04;
  font-size: 1.08rem;
  letter-spacing: 0.08em;
  line-height: 1;
  text-shadow: 0 1px 0 rgba(85, 68, 34, 0.14);
}
cite {
  display: grid;
  gap: 4px;
  color: var(--muted);
  font-style: normal;
  font-weight: 600;
  font-size: 0.92rem;
}
cite span {
  color: var(--muted-soft);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
}

/* =========================================================
   Location
   ========================================================= */

.location {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
  padding: clamp(80px, 9vw, 130px) var(--gutter);
  background:
    linear-gradient(90deg, rgba(230, 227, 217, 0.96) 0%, rgba(221, 211, 197, 0.86) 100%),
    image-set(
      url("assets/balcony-860.avif") type("image/avif"),
      url("assets/balcony-860.webp") type("image/webp"),
      url("assets/balcony.avif") type("image/avif")
    ) center / cover;
}
.location h2 {
  margin: 12px 0 20px;
  font-size: clamp(2.4rem, 4.4vw, 4.4rem);
  line-height: 1.04;
  font-weight: 400;
}
.location h2 em {
  font-style: italic;
  color: var(--taupe-deep);
  font-weight: 400;
}
.location > div > p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 46ch;
}
.location__highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 22px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}
.location__highlights li {
  position: relative;
  padding-left: 20px;
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: 500;
}
.location__highlights li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--taupe-deep);
}
.location-card {
  display: grid;
  gap: 8px;
  padding: 36px;
  border-radius: 4px;
  color: var(--ink);
  background: #fff;
  box-shadow: var(--shadow-lg);
}
.location-card__eyebrow {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.location-card strong {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.1;
}
.location-card span {
  color: var(--muted);
}
.location-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: var(--taupe-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.location-card__link::after {
  content: "→";
  transition: transform 220ms ease;
}
.location-card__link:hover::after { transform: translateX(4px); }

.arrival-section {
  padding: 80px var(--gutter);
  background: var(--surface-light);
}
.arrival-section .section__intro {
  margin-bottom: 34px;
}
.arrival-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: var(--content-max);
  margin: 0 auto;
}
.arrival-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.arrival-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 1.22rem;
  font-weight: 500;
}
.arrival-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.65;
}

/* =========================================================
   Gallery
   ========================================================= */

.property-gallery {
  background: var(--surface);
}
.room-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 260px;
  gap: 16px;
  max-width: var(--content-max);
  margin: 0 auto;
}
.room-gallery img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 4px;
  cursor: zoom-in;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.room-gallery img:hover { transform: scale(1.02); }

.room-gallery img:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.room-gallery img:nth-child(4) { grid-column: span 2; }

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) 76px;
  grid-template-rows: 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 34px;
  background: rgba(23, 29, 26, 0.9);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 220ms ease, visibility 220ms ease;
}
.gallery-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.gallery-lightbox__figure {
  grid-column: 2;
  grid-row: 1;
  display: grid;
  justify-items: center;
  gap: 14px;
  width: 100%;
  min-width: 0;
}
.gallery-lightbox__image {
  max-width: 100%;
  max-height: min(76vh, 760px);
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}
.gallery-lightbox__caption {
  max-width: 760px;
  margin: 0;
  color: rgba(246, 239, 227, 0.86);
  font-size: 0.92rem;
  text-align: center;
}
.gallery-lightbox__close,
.gallery-lightbox__nav {
  border: 1px solid rgba(246, 239, 227, 0.26);
  border-radius: 999px;
  color: #fff8ee;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}
.gallery-lightbox__close:hover,
.gallery-lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}
.gallery-lightbox__close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 46px;
  height: 46px;
  font-size: 1.5rem;
  line-height: 1;
}
.gallery-lightbox__nav {
  width: 54px;
  height: 54px;
  font-size: 2rem;
  line-height: 1;
}
.gallery-lightbox__nav--prev {
  grid-column: 1;
  justify-self: center;
}
.gallery-lightbox__nav--next {
  grid-column: 3;
  justify-self: center;
}
.gallery-lightbox__count {
  grid-column: 2;
  grid-row: 2;
  color: rgba(246, 239, 227, 0.72);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
}
body.gallery-is-open {
  overflow: hidden;
}

/* =========================================================
   FAQ
   ========================================================= */

.faq-section {
  background: var(--paper);
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: var(--content-max);
  margin: 0 auto;
}
.faq-grid article {
  padding: 32px 30px;
  border-radius: 4px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.faq-grid h3 {
  margin: 0 0 14px;
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.15;
}
.faq-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.98rem;
}

/* =========================================================
   Final CTA
   ========================================================= */

.final-cta {
  position: relative;
  padding: clamp(90px, 10vw, 160px) var(--gutter);
  overflow: hidden;
  color: #fff;
  text-align: center;
  isolation: isolate;
}
.final-cta__image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%; height: 100%;
  object-fit: cover;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(23, 29, 26, 0.74), rgba(23, 29, 26, 0.90));
}
.final-cta__inner {
  max-width: 720px;
  margin: 0 auto;
}
.final-cta h2 {
  color: #fff;
  margin: 18px 0 22px;
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 1.02;
  font-weight: 400;
}
.final-cta h2 em {
  font-style: italic;
  color: var(--taupe-light);
  font-weight: 400;
}
.final-cta p {
  max-width: 560px;
  margin: 0 auto 32px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.1rem;
  line-height: 1.7;
}
.final-cta .hero__actions {
  justify-content: center;
}
.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
  text-align: left;
}
.guarantee-grid article {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}
.guarantee-grid strong,
.guarantee-grid span {
  display: block;
}
.guarantee-grid strong {
  margin-bottom: 8px;
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.guarantee-grid span {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
}
.guarantee-grid a {
  color: #fff;
  font-weight: 700;
}

/* =========================================================
   Footer
   ========================================================= */

.site-footer {
  padding: 60px var(--gutter) 40px;
  background: var(--ink);
  color: rgba(241, 237, 228, 0.82);
}
.site-footer__inner {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 48px;
  max-width: var(--content-max);
  margin: 0 auto;
}
.site-footer h4 {
  color: var(--taupe-light);
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 18px;
}
.site-footer__brand strong {
  display: block;
  color: #fff;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.site-footer__brand p {
  color: rgba(241, 237, 228, 0.68);
  font-size: 0.94rem;
  line-height: 1.6;
  margin: 0;
}
.site-footer ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-footer a {
  color: rgba(241, 237, 228, 0.82);
  font-size: 0.94rem;
  transition: color 200ms ease;
}
.site-footer a:hover { color: var(--taupe-light); }
.footer-button {
  padding: 0;
  border: 0;
  color: rgba(241, 237, 228, 0.82);
  background: transparent;
  font: inherit;
  font-size: 0.94rem;
  text-align: left;
  cursor: pointer;
}
.footer-button:hover { color: var(--taupe-light); }
.site-footer__base {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  max-width: var(--content-max);
  margin: 40px auto 0;
  padding-top: 28px;
  border-top: 1px solid rgba(241, 237, 228, 0.12);
  font-size: 0.82rem;
  color: rgba(241, 237, 228, 0.6);
}
.site-footer__social {
  display: flex;
  gap: 16px;
}

/* =========================================================
   Legal and cookie consent
   ========================================================= */

.legal-page {
  padding: clamp(80px, 10vw, 130px) var(--gutter);
  background: var(--surface);
}
.legal-page__inner {
  max-width: 880px;
  margin: 0 auto;
}
.legal-page h1 {
  margin: 12px 0 20px;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 1.02;
}
.legal-page h2 {
  margin: 42px 0 12px;
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
}
.legal-page p,
.legal-page li {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}
.legal-page ul {
  display: grid;
  gap: 8px;
  padding-left: 22px;
}
.legal-page a {
  color: var(--taupe-deep);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-note {
  margin: 28px 0;
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.46);
}
.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 80;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  max-width: 880px;
  margin: 0 auto;
  padding: 18px;
  border: 1px solid rgba(125, 113, 95, 0.22);
  border-radius: 4px;
  background: rgba(246, 243, 236, 0.96);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.cookie-banner p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.55;
}
.cookie-banner__custom {
  display: grid;
  gap: 8px;
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}
.cookie-banner__custom[hidden] {
  display: none;
}
.cookie-banner__custom label {
  display: flex;
  gap: 8px;
  align-items: center;
}
.cookie-banner__custom a {
  color: var(--taupe-deep);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cookie-banner__actions {
  display: flex;
  gap: 10px;
}
.cookie-banner__button {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--taupe-deep);
  border-radius: 3px;
  color: #fff;
  background: var(--taupe-deep);
  font: inherit;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}
.cookie-banner__button--ghost {
  color: var(--ink);
  background: transparent;
}

/* =========================================================
   Sticky mobile CTA
   ========================================================= */

.mobile-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 40;
  display: none;
  padding: 12px 14px calc(12px + env(safe-area-inset-bottom, 0px));
  background: rgba(230, 227, 217, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -14px 40px rgba(60, 52, 40, 0.14);
  gap: 10px;
  transform: translateY(120%);
  transition: transform 400ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.mobile-cta.is-visible { transform: translateY(0); }
.mobile-cta a {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.mobile-cta__book {
  color: #fff;
  background: linear-gradient(135deg, var(--taupe-light), var(--taupe) 60%, var(--taupe-deep));
  box-shadow: 0 10px 22px rgba(90, 78, 62, 0.28);
}
.mobile-cta__email {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
}

/* =========================================================
   Room detail pages
   ========================================================= */

.room-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 540px);
  min-height: calc(100vh - 84px);
  background: var(--cream);
}
.room-hero__media { min-height: 520px; position: relative; overflow: hidden; }
.room-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.room-hero__content {
  display: grid;
  align-content: center;
  padding: clamp(48px, 6vw, 90px);
  background: linear-gradient(180deg, var(--surface-light), var(--cream));
}
.room-hero__content .eyebrow {
  color: var(--taupe-deep);
  background: rgba(255, 255, 255, 0.6);
  border-color: rgba(125, 113, 95, 0.35);
}
.room-hero__content h1 {
  margin: 14px 0 18px;
  font-size: clamp(2.6rem, 4.6vw, 4.6rem);
  line-height: 1.03;
  font-weight: 400;
}
.room-hero__content h1 em {
  font-style: italic;
  color: var(--taupe-deep);
  font-weight: 400;
}
.room-hero__content > p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}
.room-hero__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 22px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
}
.room-hero__specs div strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.1;
}
.room-hero__specs div span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.room-booking-card {
  margin-top: 28px;
  padding: 26px;
  border-radius: 4px;
  background: #fff;
  box-shadow: var(--shadow-lg);
}
.room-booking-card__price {
  margin: 0 0 18px;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 1.2rem;
  line-height: 1.2;
}
.room-booking-card .date-search {
  grid-template-columns: 1fr;
  gap: 10px;
}
.room-booking-card .button {
  width: 100%;
}

.room-details {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 400px);
  gap: clamp(32px, 6vw, 80px);
  padding: clamp(72px, 9vw, 120px) var(--gutter);
  background: var(--surface);
}
.room-details h2 {
  margin: 12px 0 20px;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 400;
  line-height: 1.04;
}
.room-details h2 em {
  font-style: italic;
  color: var(--taupe-deep);
  font-weight: 400;
}
.room-details p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}
.amenity-list,
.spec-list {
  display: grid;
  gap: 0;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}
.amenity-list li,
.spec-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 0.96rem;
}
.amenity-list li::before {
  content: "✓";
  margin-right: 14px;
  color: var(--taupe-deep);
  font-weight: 700;
}

.spec-card {
  align-self: start;
  padding: 34px 30px;
  border-radius: 4px;
  background: #fff;
  box-shadow: var(--shadow-md);
}
.spec-card h3 {
  margin: 0 0 8px;
  font-size: 1.6rem;
  font-weight: 500;
}
.spec-card p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.95rem;
}
.spec-list li:last-child { border-bottom: 0; }

/* =========================================================
   Journal / Soro embed
   ========================================================= */

.journal-page {
  min-height: 70vh;
  padding: clamp(64px, 9vw, 120px) var(--gutter) clamp(80px, 10vw, 140px);
  background: var(--surface-light);
}
.journal-page__header {
  width: min(760px, 100%);
  margin: 0 auto clamp(44px, 6vw, 76px);
  text-align: center;
}
.journal-page__header h1 {
  margin: 16px 0 20px;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: .98;
}
.journal-page__header h1 em {
  color: var(--taupe-deep);
  font-weight: 400;
}
.journal-page__header > p:last-child {
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.16rem);
}
.soro-blog-shell {
  width: min(var(--content-max), 100%);
  min-height: 360px;
  margin: 0 auto;
}
.soro-blog-shell noscript {
  display: block;
  padding: 28px;
  border: 1px solid var(--line);
  background: #fff;
  text-align: center;
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
    gap: 16px;
    min-height: 72px;
  }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav {
    position: fixed;
    top: 72px;
    left: 16px;
    right: 16px;
    z-index: 50;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    background: rgba(246, 243, 236, 0.98);
    box-shadow: var(--shadow-lg);
  }
  .nav.is-open { display: grid; }
  .nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 0 10px;
  }
  .nav a::after { display: none; }

  .booking-strip,
  .location,
  .room-hero,
  .room-details,
  .editorial-split,
  .editorial-split--reverse {
    grid-template-columns: 1fr;
  }
  .editorial-split--reverse img { order: 0; }

  .booking-strip {
    max-width: none;
    margin: -40px var(--gutter) 0;
    padding: 18px 18px 14px;
    top: 72px;
  }
  .booking-strip .date-search {
    grid-template-columns: 1fr 1fr;
  }
  .booking-strip .button { grid-column: span 2; }

  .room-grid,
  .review-grid,
  .direct-benefits,
  .faq-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .room-card { grid-template-rows: 260px 1fr; }
  .room-card--featured { transform: none; }
  .room-card--featured:hover { transform: translateY(-6px); }

  .room-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }
  .room-gallery img:nth-child(1),
  .room-gallery img:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
  }
  .room-gallery img:nth-child(1) { grid-column: span 2; }

  .site-footer__inner { grid-template-columns: 1fr 1fr; }

  .mobile-cta { display: flex; }
}

@media (max-width: 640px) {
  .brand img { width: 140px; }
  .site-header > .button { display: none; }

  .hero { min-height: 620px; }
  .hero__content { padding: 60px var(--gutter) 100px; }
  .hero h1 { font-size: clamp(1.9rem, 8.4vw, 2.3rem); }
  .hero__lead { font-size: 0.9rem; line-height: 1.48; }

  .booking-strip {
    position: relative;
    top: auto;
    margin: -30px 16px 0;
    padding: 16px 16px 12px;
  }
  .booking-strip__intro strong { font-size: 1.3rem; }
  .booking-strip .date-search {
    grid-template-columns: 1fr;
  }
  .booking-strip .date-search .button { grid-column: auto; }
  .booking-essentials { grid-template-columns: 1fr; }
  .comparison-section { padding-top: 10px; }
  .comparison-table th,
  .comparison-table td { padding: 16px; }

  .editorial-split { min-height: unset; margin-top: 60px; }
  .editorial-split img { min-height: 300px; max-height: 380px; }

  .room-grid,
  .review-grid,
  .direct-benefits,
  .guarantee-grid,
  .faq-grid { grid-template-columns: 1fr; }

  .section { padding: 70px var(--gutter); }
  .section__intro { margin-bottom: 36px; }

  .direct-section { padding: 70px var(--gutter); }

  .location { padding: 70px var(--gutter); }
  .location__highlights { grid-template-columns: 1fr; }
  .arrival-section { padding: 70px var(--gutter); }
  .arrival-grid { grid-template-columns: 1fr; }

  .room-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }
  .room-gallery img:nth-child(1) { grid-column: auto; }

  .gallery-lightbox {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto auto;
    align-content: center;
    gap: 12px;
    padding: 64px 16px 22px;
    background: rgba(23, 29, 26, 0.96);
  }
  .gallery-lightbox__figure {
    grid-column: 1;
    justify-self: center;
    width: min(100%, calc(100vw - 32px));
  }
  .gallery-lightbox__image {
    width: 100%;
    max-height: 68vh;
  }
  .gallery-lightbox__nav {
    position: absolute;
    bottom: 52px;
    width: 48px;
    height: 48px;
  }
  .gallery-lightbox__nav--prev {
    left: calc(50% - 58px);
  }
  .gallery-lightbox__nav--next {
    right: calc(50% - 58px);
  }
  .gallery-lightbox__count {
    grid-column: 1 / -1;
    grid-row: 3;
  }

  .site-footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .cookie-banner {
    grid-template-columns: 1fr;
    left: 12px;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  }
  .cookie-banner__actions {
    justify-content: stretch;
  }
  .cookie-banner__button {
    flex: 1;
  }

  .room-hero { min-height: unset; }
  .room-hero__media { min-height: 360px; }
  .room-hero__content { padding: 40px 22px; }

  .room-hero__specs { gap: 16px; }

  .room-details h2 { font-size: 2.1rem; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__image { animation: none; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  * { transition-duration: 0.001ms !important; animation-duration: 0.001ms !important; }
}
