/* Dal House — site styles
   Palette drawn from the lake: deep water, walnut wood, saffron, parchment. */

:root {
  --water-900: #07262a;
  --water-800: #0b3439;
  --water-700: #10474d;
  --water-600: #175d63;
  --water-300: #7fb3b3;
  --walnut: #6b4423;
  --walnut-light: #8a5c34;
  --saffron: #c8963e;
  --saffron-light: #e0b463;
  --saffron-dark: #a67729;
  --parchment: #f8f4ec;
  --parchment-dark: #ece4d6;
  --ink: #16211f;
  --ink-soft: #3f4d4a;
  --muted: #6c7d79;
  --line: rgba(11, 52, 57, 0.12);
  --white: #ffffff;
  --success: #2f7a5b;
  --danger: #b3452f;

  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --shadow-sm: 0 1px 3px rgba(7, 38, 42, 0.08), 0 1px 2px rgba(7, 38, 42, 0.04);
  --shadow-md: 0 8px 24px rgba(7, 38, 42, 0.10), 0 2px 6px rgba(7, 38, 42, 0.06);
  --shadow-lg: 0 24px 60px rgba(7, 38, 42, 0.16), 0 6px 16px rgba(7, 38, 42, 0.08);

  --radius: 4px;
  --radius-lg: 8px;
  --wrap: 1200px;
  --header-h: 76px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--parchment);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
  color: var(--water-900);
}

h1 { font-size: clamp(2.4rem, 5.4vw, 4.1rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
h4 { font-size: 1.08rem; font-family: var(--sans); font-weight: 600; letter-spacing: 0; }

p { margin: 0 0 1.1em; }
a { color: var(--water-700); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--saffron-dark); }
img { max-width: 100%; display: block; }

.wrap { width: min(var(--wrap), calc(100% - 3rem)); margin-inline: auto; }
.wrap-narrow { width: min(760px, calc(100% - 3rem)); margin-inline: auto; }

section { padding: clamp(3.5rem, 7vw, 6.5rem) 0; }
section.tight { padding: clamp(2.5rem, 4vw, 3.5rem) 0; }

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--saffron-dark);
  margin: 0 0 0.9rem;
}
.section-head { max-width: 660px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.lede { font-size: 1.12rem; color: var(--ink-soft); }
.muted { color: var(--muted); }
.small { font-size: 0.86rem; }

/* ---------------------------------------------------------- buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.7rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 0.93rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--saffron); color: var(--water-900); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--saffron-light); color: var(--water-900); box-shadow: var(--shadow-md); }
.btn-dark { background: var(--water-800); color: var(--parchment); }
.btn-dark:hover { background: var(--water-700); color: var(--white); }
.btn-outline { border-color: currentColor; color: var(--water-800); background: transparent; }
.btn-outline:hover { background: var(--water-800); color: var(--parchment); border-color: var(--water-800); }
.btn-ghost-light { border: 1px solid rgba(255,255,255,0.55); color: #fff; background: rgba(255,255,255,0.06); }
.btn-ghost-light:hover { background: rgba(255,255,255,0.16); color: #fff; }
.btn-sm { padding: 0.55rem 1.1rem; font-size: 0.85rem; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: 0.55; cursor: not-allowed; }

/* ----------------------------------------------------------- header */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.3s ease, box-shadow 0.3s ease, height 0.3s ease;
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.site-header.solid { background: rgba(248, 244, 236, 0.96); backdrop-filter: blur(12px); box-shadow: var(--shadow-sm); }

.brand { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; }
.brand-mark {
  width: 38px; height: 38px; flex: none;
  border: 1px solid currentColor; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--serif); font-size: 1.05rem; letter-spacing: 0.02em;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: var(--serif); font-size: 1.3rem; letter-spacing: 0.01em; }
.brand-sub { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.72; }

.site-header a.brand, .site-header .nav a { color: var(--water-900); }
.site-header.transparent a.brand, .site-header.transparent .nav a { color: #fff; }
.site-header.transparent .nav a::after { background: rgba(255,255,255,0.9); }

.nav { display: flex; align-items: center; gap: 1.8rem; }
.nav a {
  position: relative;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  padding: 0.3rem 0;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: var(--saffron); transition: width 0.25s ease;
}
.nav a:hover::after, .nav a.active::after { width: 100%; }
.nav .btn { margin-left: 0.5rem; }
.btn-header { padding: 0.85rem 2.6rem; font-size: 1rem; min-width: 150px; }
@media (max-width: 900px) { .btn-header { width: 100%; } }
.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer; padding: 0.5rem;
  color: inherit;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: currentColor; margin: 5px 0; transition: 0.25s; }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--parchment); padding: 1rem 1.5rem 2rem;
    box-shadow: var(--shadow-md);
    transform: translateY(-120%); transition: transform 0.3s ease;
    max-height: calc(100vh - var(--header-h)); overflow-y: auto;
  }
  .nav.open { transform: translateY(0); }
  .site-header.transparent .nav a { color: var(--water-900); }
  .nav a { padding: 0.85rem 0; border-bottom: 1px solid var(--line); }
  .nav .btn { margin: 1rem 0 0; }
}

/* ------------------------------------------------------------- hero */

.hero {
  position: relative;
  min-height: min(92vh, 860px);
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,38,42,0.55) 0%, rgba(7,38,42,0.25) 35%, rgba(7,38,42,0.86) 100%);
}
.hero-inner { position: relative; z-index: 1; padding-bottom: clamp(3rem, 7vw, 6rem); padding-top: calc(var(--header-h) + 3rem); }
/* balance evens out the line lengths so the headline never ends on a stub */
.hero h1 {
  color: #fff;
  max-width: 26ch;
  font-size: clamp(2rem, 4.3vw, 3.5rem);
  text-shadow: 0 2px 30px rgba(0,0,0,0.35);
  text-wrap: balance;
}
.hero .eyebrow { color: var(--saffron-light); }
.hero p { font-size: clamp(1.02rem, 1.6vw, 1.2rem); max-width: 52ch; color: rgba(255,255,255,0.9); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2rem; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 2.5rem; }
.hero-badge {
  font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.4); border-radius: 100px;
  padding: 0.4rem 0.95rem; color: rgba(255,255,255,0.92);
}
.scroll-hint {
  position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%);
  z-index: 2; font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.75); display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
}
.scroll-hint::after {
  content: ""; width: 1px; height: 34px;
  background: linear-gradient(rgba(255,255,255,0.8), transparent);
  animation: drift 2.2s ease-in-out infinite;
}
@keyframes drift { 0%,100% { opacity: 0.3; transform: scaleY(0.6); } 50% { opacity: 1; transform: scaleY(1); } }

/* --------------------------------------------------- booking widget */

.book-bar {
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-lg);
  padding: 1.15rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 0.9rem;
  align-items: end;
}
.book-bar.floating { margin-top: -3.5rem; position: relative; z-index: 5; }

/* Date inputs and selects have different intrinsic heights, so aligning on
   the baseline alone left the labels sitting at different levels. Stretch
   every field and pin the controls to one height instead. */
.book-bar { align-items: stretch; }
.book-bar .field { margin: 0; display: flex; flex-direction: column; }
.book-bar .field label { min-height: 1.05rem; }
.book-bar .field input,
.book-bar .field select {
  height: 48px;
  margin-top: auto;
}
.book-bar .btn { height: 48px; align-self: end; }
@media (max-width: 900px) {
  .book-bar { grid-template-columns: 1fr 1fr; }
  .book-bar .btn { grid-column: 1 / -1; }
}
@media (max-width: 520px) { .book-bar { grid-template-columns: 1fr; } }

/* ----------------------------------------------------------- fields */

.field { margin-bottom: 1.15rem; }
.field label,
.field > .label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 0.4rem;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 0.72rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  font-family: var(--sans);
  font-size: 0.97rem;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field textarea { min-height: 140px; resize: vertical; line-height: 1.6; }

/* Native selects render shorter, in the OS chrome, and sit at a different
   height from the inputs beside them. Strip the native look everywhere and
   draw our own chevron so every control on the site matches. */
.field select {
  appearance: none;
  -webkit-appearance: none;
  height: 48px;
  padding-right: 2.2rem;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none' stroke='%236c7d79' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  background-size: 12px 8px;
}
/* Text and date inputs share the select's height so rows line up. */
.field input[type="text"], .field input[type="email"],
.field input[type="tel"], .field input[type="date"], .field input[type="password"] {
  height: 48px;
}

.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--water-600);
  box-shadow: 0 0 0 3px rgba(23, 93, 99, 0.13);
}
.field .hint { font-size: 0.78rem; color: var(--muted); margin-top: 0.35rem; }
.field.error input, .field.error select, .field.error textarea { border-color: var(--danger); }
.field .err { display: none; font-size: 0.8rem; color: var(--danger); margin-top: 0.35rem; }
.field.error .err { display: block; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }
.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; }

.check {
  display: flex; gap: 0.75rem; align-items: flex-start;
  padding: 0.85rem 1rem; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--white); cursor: pointer; margin-bottom: 0.6rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.check:hover { border-color: var(--water-300); }
.check input { margin-top: 0.25rem; accent-color: var(--water-700); flex: none; }
.check.selected { border-color: var(--water-600); background: rgba(23,93,99,0.04); }
.check-body { flex: 1; }
.check-title { font-weight: 600; font-size: 0.94rem; }
.check-price { font-size: 0.86rem; color: var(--muted); }

/* ------------------------------------------------------------ cards */

.grid { display: grid; gap: 1.6rem; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); }

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--parchment-dark); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.card:hover .card-media img { transform: scale(1.05); }
.card-body { padding: 1.4rem 1.5rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { margin-bottom: 0.3rem; }
.card-tagline { color: var(--muted); font-size: 0.92rem; margin-bottom: 1rem; }
.card-foot { margin-top: auto; padding-top: 1.1rem; border-top: 1px solid var(--line);
  display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; }

.rate-note {
  font-size: 0.82rem; color: var(--muted); line-height: 1.35; max-width: 14ch;
}
.price { font-family: var(--serif); font-size: 1.65rem; color: var(--water-800); line-height: 1; }
.price small { font-family: var(--sans); font-size: 0.74rem; color: var(--muted); display: block;
  letter-spacing: 0.1em; text-transform: uppercase; margin-top: 0.35rem; }

.tag {
  position: absolute; top: 0.9rem; left: 0.9rem;
  background: rgba(7,38,42,0.82); color: #fff;
  font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.35rem 0.75rem; border-radius: 100px; backdrop-filter: blur(6px);
}
.tag.gold { background: var(--saffron); color: var(--water-900); }
.tag.right { left: auto; right: 0.9rem; }

.pill-list { display: flex; flex-wrap: wrap; gap: 0.4rem; margin: 0 0 1rem; padding: 0; list-style: none; }
.pill {
  font-size: 0.76rem; padding: 0.28rem 0.7rem; border-radius: 100px;
  background: var(--parchment-dark); color: var(--ink-soft);
}
.meta-row { display: flex; flex-wrap: wrap; gap: 1.1rem; font-size: 0.84rem; color: var(--muted); margin-bottom: 1rem; }
.meta-row span { display: inline-flex; align-items: center; gap: 0.35rem; }

/* ---------------------------------------------------------- feature */

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split.reverse .split-media { order: 2; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } .split.reverse .split-media { order: 0; } }
.split-media { position: relative; }
.split-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.split-media .stamp {
  position: absolute; right: -1rem; bottom: -1.2rem;
  background: var(--water-800); color: var(--parchment);
  padding: 1.1rem 1.4rem; border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
  font-family: var(--serif); font-size: 1.05rem; max-width: 200px; line-height: 1.35;
}

.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.stat-value { font-family: var(--serif); font-size: 2.1rem; color: var(--water-700); line-height: 1; }
.stat-label { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-top: 0.4rem; }

.amenity {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.35rem; background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); height: 100%;
}
.amenity .ico {
  flex: none; width: 42px; height: 42px; border-radius: 50%;
  background: var(--parchment-dark); color: var(--water-700);
  display: grid; place-items: center;
}
.amenity .ico svg { width: 21px; height: 21px; }
.amenity h4 { margin-bottom: 0.2rem; }
.amenity p { margin: 0; font-size: 0.88rem; color: var(--muted); line-height: 1.55; }

/* Rows of cards read as a grid, so their internals have to line up even when
   the text runs to different lengths. Stretch every card to the row height and
   reserve a consistent block for the heading. */
.grid > .card, .grid > .amenity { height: 100%; }
.grid-4 .amenity h4 { min-height: 2.6em; display: flex; align-items: flex-start; }
/* Two lines of tagline is the realistic maximum, so reserve that much in
   every card and the rows beneath it stay level across the grid. */
.card-tagline { min-height: 3.4em; }
/* Titles run to different lengths across a row; reserving two lines keeps the
   text beneath them on the same line as its neighbours. */
.grid-3 .card-body > h3 { min-height: 2.4em; }

/* ------------------------------------------------------------ bands */

.band-dark { background: var(--water-900); color: rgba(255,255,255,0.86); }
.band-dark h2, .band-dark h3 { color: #fff; }
.band-dark .eyebrow { color: var(--saffron-light); }
.band-dark .lede { color: rgba(255,255,255,0.75); }
.band-cream { background: var(--parchment-dark); }
.band-white { background: var(--white); }

.quote-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg); padding: 1.8rem;
}
.quote-card .stars { color: var(--saffron-light); letter-spacing: 0.15em; margin-bottom: 0.9rem; font-size: 0.9rem; }
.quote-card p { font-family: var(--serif); font-size: 1.1rem; line-height: 1.6; color: rgba(255,255,255,0.92); }
.quote-card footer { font-size: 0.82rem; color: rgba(255,255,255,0.6); letter-spacing: 0.06em; }

/* ---------------------------------------------------------- gallery */

.masonry { columns: 3; column-gap: 1rem; }
@media (max-width: 900px) { .masonry { columns: 2; } }
@media (max-width: 560px) { .masonry { columns: 1; } }
.masonry figure { break-inside: avoid; margin: 0 0 1rem; position: relative; cursor: zoom-in;
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.masonry img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; transition: transform 0.5s ease; }
.masonry figure:hover img { transform: scale(1.04); }
.masonry figcaption {
  position: absolute; inset: auto 0 0 0; padding: 2rem 1rem 0.9rem;
  background: linear-gradient(transparent, rgba(7,38,42,0.8));
  color: #fff; font-size: 0.85rem; opacity: 0; transition: opacity 0.3s ease;
}
.masonry figure:hover figcaption { opacity: 1; }

.filters { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.filter-btn {
  border: 1px solid var(--line); background: var(--white); color: var(--ink-soft);
  padding: 0.5rem 1.1rem; border-radius: 100px; cursor: pointer;
  font-size: 0.85rem; font-family: var(--sans); transition: 0.2s;
}
.filter-btn:hover { border-color: var(--water-600); }
.filter-btn.active { background: var(--water-800); color: var(--parchment); border-color: var(--water-800); }

.lightbox {
  position: fixed; inset: 0; z-index: 200; background: rgba(7,38,42,0.94);
  display: none; align-items: center; justify-content: center; padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 86vh; object-fit: contain; border-radius: var(--radius); }
.lightbox-close, .lightbox-nav {
  position: absolute; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.25);
  color: #fff; width: 46px; height: 46px; border-radius: 50%; cursor: pointer;
  font-size: 1.3rem; display: grid; place-items: center;
}
.lightbox-close { top: 1.5rem; right: 1.5rem; }
.lightbox-nav.prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-nav.next { right: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-caption { position: absolute; bottom: 1.5rem; left: 0; right: 0; text-align: center;
  color: rgba(255,255,255,0.8); font-size: 0.88rem; }

/* ------------------------------------------------------- page hero */

.page-hero {
  padding: calc(var(--header-h) + 4.5rem) 0 3.5rem;
  background: var(--water-900); color: #fff; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 80% at 80% 0%, rgba(200,150,62,0.18), transparent 60%);
}
.page-hero .wrap { position: relative; }
.page-hero h1 { color: #fff; margin-bottom: 0.4rem; }
.page-hero p { color: rgba(255,255,255,0.75); max-width: 60ch; margin: 0; }
.crumbs { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); margin-bottom: 1rem; }
.crumbs a { color: rgba(255,255,255,0.75); text-decoration: none; }
.crumbs a:hover { color: var(--saffron-light); }

/* ------------------------------------------------------- room detail */

.room-layout { display: grid; grid-template-columns: 1fr 380px; gap: 3rem; align-items: start; }
@media (max-width: 980px) { .room-layout { grid-template-columns: 1fr; } }
.booking-panel {
  background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
  padding: 1.7rem; position: sticky; top: calc(var(--header-h) + 1.5rem);
}
.panel-price { display: flex; align-items: baseline; gap: 0.5rem; margin-bottom: 1.3rem;
  padding-bottom: 1.3rem; border-bottom: 1px solid var(--line); }

.gallery-main { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 16/10; }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.6rem; margin-top: 0.6rem; }
.thumbs button { padding: 0; border: 2px solid transparent; border-radius: var(--radius); overflow: hidden;
  cursor: pointer; background: none; aspect-ratio: 4/3; }
.thumbs button.active { border-color: var(--saffron); }
.thumbs img { width: 100%; height: 100%; object-fit: cover; }

.spec-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1.2rem;
  padding: 1.5rem 0; margin: 1.5rem 0; border-block: 1px solid var(--line); }
.spec-label { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.spec-value { font-size: 1rem; font-weight: 600; margin-top: 0.2rem; }

/* --------------------------------------------------------- summary */

.summary { background: var(--parchment-dark); border-radius: var(--radius-lg); padding: 1.5rem; }
.summary-row { display: flex; justify-content: space-between; gap: 1rem; padding: 0.5rem 0; font-size: 0.94rem; }
.summary-row.total { border-top: 1px solid var(--line); margin-top: 0.6rem; padding-top: 0.9rem;
  font-family: var(--serif); font-size: 1.3rem; color: var(--water-800); }
.summary-row .muted { color: var(--muted); }

.steps { display: flex; gap: 0.5rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.step { display: flex; align-items: center; gap: 0.55rem; font-size: 0.85rem; color: var(--muted); }
.step + .step::before { content: ""; width: 28px; height: 1px; background: var(--line); margin-right: 0.5rem; }
.step .num { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center;
  background: var(--parchment-dark); font-size: 0.78rem; font-weight: 600; }
.step.active { color: var(--water-800); font-weight: 600; }
.step.active .num { background: var(--water-800); color: #fff; }
.step.done .num { background: var(--success); color: #fff; }

/* ------------------------------------------------------- contact */

.contact-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 1.5rem;
  box-shadow: var(--shadow-sm); border-left: 3px solid var(--saffron);
}
.contact-card h3 { font-size: 1.15rem; margin-bottom: 0.15rem; }
.contact-card .role { font-size: 0.85rem; color: var(--muted); margin-bottom: 1rem; }
.contact-lines { list-style: none; margin: 0; padding: 0; font-size: 0.92rem; }
.contact-lines li { display: flex; gap: 0.6rem; align-items: center; padding: 0.3rem 0; }
.contact-lines svg { width: 16px; height: 16px; color: var(--water-600); flex: none; }
.contact-lines a { text-decoration: none; }
.contact-lines a:hover { text-decoration: underline; }

/* ------------------------------------------------- faq & long-form text */

.faq-item {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; padding: 1.25rem 1.4rem; background: none; border: 0; cursor: pointer;
  font-family: var(--serif); font-size: 1.12rem; color: var(--water-900);
  text-align: left; line-height: 1.35;
}
.faq-q:hover { color: var(--saffron-dark); }
.faq-q .chev {
  flex: none; width: 22px; height: 22px; position: relative; transition: transform 0.25s ease;
}
.faq-q .chev::before, .faq-q .chev::after {
  content: ""; position: absolute; top: 50%; left: 50%; background: currentColor;
  transform: translate(-50%, -50%); transition: opacity 0.25s ease;
}
.faq-q .chev::before { width: 13px; height: 1.5px; }
.faq-q .chev::after { width: 1.5px; height: 13px; }
.faq-item.open .faq-q .chev::after { opacity: 0; }
.faq-a {
  display: none; padding: 0 1.4rem 1.4rem; color: var(--ink-soft); max-width: 68ch;
}
.faq-item.open .faq-a { display: block; }
.faq-a p:last-child { margin-bottom: 0; }

.prose { max-width: 70ch; }
.prose h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.prose p { color: var(--ink-soft); }
.prose ul { color: var(--ink-soft); padding-left: 1.2rem; }
.prose li { margin-bottom: 0.4rem; }

.policy-block { padding: 1.8rem 0; border-bottom: 1px solid var(--line); }
.policy-block:last-child { border-bottom: 0; }
.policy-block h3 { margin-bottom: 0.6rem; }
.policy-block p { color: var(--ink-soft); max-width: 68ch; }
.policy-block p:last-child { margin-bottom: 0; }

.benefit-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.85rem; }
.benefit-list li { display: flex; gap: 0.75rem; align-items: flex-start; font-size: 0.95rem; }
.benefit-list li svg { flex: none; color: var(--success); margin-top: 0.15rem; }

.map-frame {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid var(--line); line-height: 0;
}
.map-frame iframe { width: 100%; height: 320px; border: 0; }

.note {
  padding: 1rem 1.2rem; border-radius: var(--radius); font-size: 0.92rem;
  background: rgba(47,122,91,0.09); border: 1px solid rgba(47,122,91,0.25); color: #1f5842;
}
.note.warn { background: rgba(179,69,47,0.08); border-color: rgba(179,69,47,0.25); color: #8a3421; }
.note.info { background: rgba(23,93,99,0.07); border-color: rgba(23,93,99,0.2); color: var(--water-800); }

/* --------------------------------------------------------- footer */

.site-footer { background: var(--water-900); color: rgba(255,255,255,0.7); padding: 4rem 0 2rem; font-size: 0.92rem; }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr 1.3fr; gap: 2.25rem; }
@media (max-width: 1080px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: #fff; font-size: 0.76rem; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 1.1rem; }
.site-footer a { color: rgba(255,255,255,0.7); text-decoration: none; }
.site-footer a:hover { color: var(--saffron-light); }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { padding: 0.25rem 0; }
.site-footer .brand { color: #fff; margin-bottom: 1rem; }
.footer-bottom {
  margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

/* -------------------------------------------------------- utility */

/* Content is visible by default; the entrance animation is only armed once the
   script confirms it can drive it, so a script failure never hides the page. */
.js-anim .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.js-anim .reveal.in { opacity: 1; transform: none; }
.center { text-align: center; }
.mt-0 { margin-top: 0; } .mt-1 { margin-top: 0.5rem; } .mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2.5rem; }
.mb-0 { margin-bottom: 0; } .mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; }
.flex { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.flex-between { display: flex; gap: 1rem; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.hide { display: none !important; }

.spinner {
  width: 22px; height: 22px; border: 2px solid var(--line); border-top-color: var(--water-700);
  border-radius: 50%; animation: spin 0.7s linear infinite; margin: 2rem auto;
}
@keyframes spin { to { transform: rotate(360deg); } }
.loading-block { padding: 3rem; text-align: center; color: var(--muted); }

.skeleton { background: linear-gradient(90deg, var(--parchment-dark) 25%, #f3ede2 50%, var(--parchment-dark) 75%);
  background-size: 200% 100%; animation: shimmer 1.4s infinite; border-radius: var(--radius); }
@keyframes shimmer { to { background-position: -200% 0; } }

.toast {
  position: fixed; left: 50%; bottom: 2rem; transform: translate(-50%, 200%);
  background: var(--water-900); color: #fff; padding: 0.9rem 1.5rem; border-radius: var(--radius);
  box-shadow: var(--shadow-lg); z-index: 300; transition: transform 0.35s ease; font-size: 0.92rem;
  max-width: 90vw;
}
.toast.show { transform: translate(-50%, 0); }
.toast.error { background: var(--danger); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------------------------------------------------- floating WhatsApp */
#wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 900;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: var(--shadow-md);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
#wa-float:hover {
  transform: scale(1.06);
  box-shadow: var(--shadow-lg);
  color: #fff;
}
#wa-float:focus-visible {
  outline: 3px solid var(--saffron);
  outline-offset: 3px;
}
@media (max-width: 640px) {
  #wa-float { right: 16px; bottom: 16px; width: 52px; height: 52px; }
}
@media (prefers-reduced-motion: reduce) {
  #wa-float { transition: none; }
}
