/* ==========================================================================
   Willowbank House — public site
   Airy riverside editorial: warm linen paper, deep river-green accent,
   Playfair Display serif with italic accents, arched image motif.
   ========================================================================== */

:root {
  --paper: #f7f5ef;
  --paper-2: #efece2;
  --ink: #22322c;
  --muted: #64716a;
  --line: #dcd8ca;
  --river: #2a5d4b;
  --river-deep: #1d4536;
  --pine: #16241f;
  --pine-ink: #e9ede7;
  --pine-muted: #9fb0a5;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Figtree', system-ui, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --arch: 999px 999px 0 0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }
::selection { background: var(--river); color: var(--paper); }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ---------- type ---------- */
h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.15; }
.display { font-size: clamp(2.4rem, 5.4vw, 4rem); letter-spacing: -0.01em; }
.h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
.h2 em, .display em { font-style: italic; font-weight: 500; color: var(--river); padding-bottom: 0.15em; }
.band-pine .h2 em, .band-pine .display em { color: #c9b98a; }
.lead { font-size: 1.08rem; color: var(--muted); max-width: 60ch; }
.band-pine .lead { color: var(--pine-muted); }
.smallcaps {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--river);
}
.band-pine .smallcaps { color: #c9b98a; }
.rule { width: 56px; height: 1px; background: var(--river); border: 0; margin: 1.3rem 0; }
.center .rule { margin-inline: auto; }

/* ---------- bands ---------- */
.band { padding: clamp(4.5rem, 9vw, 7.5rem) 0; }
.band-tight { padding: clamp(3rem, 6vw, 4.5rem) 0; }
.band-shade { background: var(--paper-2); }
.band-pine { background: var(--pine); color: var(--pine-ink); }
.center { text-align: center; }

/* ---------- buttons & links ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.9rem 1.9rem;
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--river);
  border-radius: 999px;
  position: relative;
  overflow: hidden;
  transition: color 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.15s ease, box-shadow 0.3s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 17px; height: 17px; transition: transform 0.35s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--river-deep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.btn:hover::before { transform: scaleX(1); }
.btn > * { position: relative; z-index: 1; }
.btn-solid { background: var(--river); color: #f4f1e8; }
.btn-line { background: transparent; color: var(--river); }
.btn-line:hover { color: #f4f1e8; }
.band-pine .btn-line, .hero .btn-line { border-color: #f4f1e8; color: #f4f1e8; }
.band-pine .btn-line::before, .hero .btn-line::before { background: #f4f1e8; }
.band-pine .btn-line:hover, .hero .btn-line:hover { color: var(--pine); }

.tlink {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
  font-size: 0.84rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--river);
  position: relative;
  padding-bottom: 4px;
}
.tlink::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.tlink:hover::after { transform: scaleX(1); transform-origin: left; }
.tlink svg { width: 16px; height: 16px; }
.band-pine .tlink { color: #c9b98a; }

/* ---------- ribbon + nav ---------- */
.ribbon {
  background: var(--river);
  color: #f4f1e8;
  font-size: 0.82rem;
  text-align: center;
  padding: 0.5rem 1rem;
}
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 245, 239, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.nav.scrolled { border-color: var(--line); box-shadow: 0 6px 24px rgba(34, 50, 44, 0.07); }
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand { display: flex; flex-direction: column; line-height: 1.05; text-decoration: none; }
.brand strong { font-family: var(--serif); font-weight: 600; font-size: 1.35rem; letter-spacing: 0.01em; }
.brand small { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.34em; text-transform: uppercase; color: var(--muted); }
.nav-links { display: flex; align-items: center; gap: 1.9rem; list-style: none; }
.nav-links a:not(.btn) {
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--muted);
  position: relative;
  padding: 6px 0;
  transition: color 0.3s ease;
}
.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--river);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}
.nav-links a:not(.btn):hover, .nav-links a:not(.btn).active { color: var(--ink); }
.nav-links a:not(.btn):hover::after, .nav-links a:not(.btn).active::after { transform: scaleX(1); transform-origin: left; }
.nav .btn { padding: 0.62rem 1.3rem; }
.nav-links a.btn-solid { color: #f4f1e8; }
.nav-toggle { display: none; background: none; border: 0; color: var(--ink); padding: 8px; }
.nav-toggle svg { width: 26px; height: 26px; display: block; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 88dvh;
  display: grid;
  align-items: end;
  color: #f4f1e8;
  overflow: hidden;
  isolation: isolate;
}
.hero-media, .hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media img { object-fit: cover; }
.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 24, 20, 0.34), rgba(15, 24, 20, 0.12) 45%, rgba(15, 24, 20, 0.72));
}
@media (prefers-reduced-motion: no-preference) {
  .hero-media img { animation: heroDrift 16s var(--ease) forwards; }
  @keyframes heroDrift { from { transform: scale(1.1); } to { transform: scale(1); } }
}
.hero-content { position: relative; z-index: 1; width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px clamp(3rem, 7vw, 5.5rem); }
.hero .smallcaps { color: #d9cba0; }
.hero h1 { font-size: clamp(2.6rem, 6.5vw, 4.8rem); max-width: 14ch; margin: 0.6rem 0 1rem; }
.hero h1 em { font-style: italic; font-weight: 500; color: #d9cba0; }
.hero p { max-width: 46ch; color: #e6e2d4; margin-bottom: 2rem; font-size: 1.06rem; }
.hero-ctas { display: flex; gap: 0.9rem; flex-wrap: wrap; }
.page-hero { min-height: 44dvh; }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }

/* ---------- split ---------- */
.split {
  display: grid;
  grid-template-columns: 6fr 5fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.split.flip .split-media { order: -1; }
.split-media img { width: 100%; object-fit: cover; aspect-ratio: 4 / 4.7; }
.split-media.arch img { border-radius: var(--arch); }
.split-media.wide img { aspect-ratio: 5 / 3.8; border-radius: 14px; }
.split-body .h2 { margin: 0.6rem 0 0; }
.split-body .lead { margin-top: 1.2rem; }
.split-body .lead + .lead { margin-top: 0.8rem; }
.split-body .tlink, .split-body .btn { margin-top: 1.6rem; }

/* ---------- room cards ---------- */
.room-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 3.5vw, 2.8rem);
  margin-top: 3rem;
}
.room-grid.trio { grid-template-columns: repeat(3, 1fr); }
.room-card {
  text-decoration: none;
  color: inherit;
  display: block;
  background: #fffdf7;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s ease;
}
.room-card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(34, 50, 44, 0.13); }
.room-card .rc-img { overflow: hidden; aspect-ratio: 16 / 10; }
.room-card .rc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.room-card:hover .rc-img img { transform: scale(1.05); }
.rc-body { padding: 1.5rem 1.7rem 1.8rem; }
.rc-top { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.rc-top h3 { font-size: 1.45rem; }
.rc-price { font-family: var(--serif); font-style: italic; font-size: 1.15rem; color: var(--river); white-space: nowrap; }
.rc-price b { font-size: 1.45rem; font-weight: 600; font-style: normal; }
.rc-meta { display: flex; gap: 1.2rem; margin: 0.5rem 0 0.7rem; color: var(--muted); font-size: 0.86rem; }
.rc-meta span { display: inline-flex; align-items: center; gap: 0.4rem; }
.rc-meta svg { width: 16px; height: 16px; color: var(--river); }
.rc-body p { color: var(--muted); font-size: 0.95rem; }
.rc-cta { margin-top: 1.1rem; }

/* ---------- room detail ---------- */
.room-hero { display: grid; grid-template-columns: 7fr 5fr; gap: clamp(2rem, 4vw, 4rem); align-items: start; }
.room-hero-img img { width: 100%; aspect-ratio: 4 / 3.1; object-fit: cover; border-radius: 16px; }
.amenities { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0.55rem 1.4rem; margin: 1.6rem 0; }
.amenities li { display: flex; gap: 0.6rem; align-items: center; font-size: 0.94rem; color: var(--muted); }
.amenities svg { width: 17px; height: 17px; color: var(--river); flex-shrink: 0; }

/* booking widget */
.bw { background: #fffdf7; border: 1px solid var(--line); border-radius: 16px; padding: 1.7rem; position: sticky; top: 96px; }
.bw h3 { font-size: 1.25rem; margin-bottom: 0.2rem; }
.bw .bw-price { color: var(--muted); font-size: 0.92rem; margin-bottom: 1.2rem; }
.bw .bw-price b { color: var(--river); font-size: 1.15rem; }
.bw-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.bw-grid .full { grid-column: 1 / -1; }
.bw-note { min-height: 1.4em; font-size: 0.88rem; margin-top: 0.9rem; }
.bw-note.ok { color: var(--river); font-weight: 600; }
.bw-note.bad { color: #a2402a; }
.bw .btn { width: 100%; justify-content: center; margin-top: 0.9rem; }

/* ---------- inputs ---------- */
.input, textarea.input, select.input {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fffdf7;
  font: inherit;
  color: var(--ink);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.input:focus { outline: none; border-color: var(--river); box-shadow: 0 0 0 3px rgba(42, 93, 75, 0.14); }
.input::placeholder { color: #a8a294; }
.form-field label, .flabel {
  display: block;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-grid .full { grid-column: 1 / -1; }
.form-help { font-size: 0.82rem; color: var(--muted); margin-top: 0.4rem; }
.form-error { color: #a2402a; font-size: 0.9rem; margin-top: 0.9rem; display: none; }
.form-error.show { display: block; }

/* ---------- book page ---------- */
.book-bar {
  background: #fffdf7;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.6rem;
  display: grid;
  grid-template-columns: 1fr 1fr 130px auto;
  gap: 1rem;
  align-items: end;
}
.book-bar .btn { height: 48px; }
.stay-summary { margin: 1.6rem 0 0; color: var(--muted); font-size: 0.95rem; min-height: 1.5em; }
.stay-summary b { color: var(--ink); }
.result-grid { display: grid; gap: 1.2rem; margin-top: 1.6rem; }
.result-card {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  gap: 1.4rem;
  align-items: center;
  background: #fffdf7;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}
.result-card:hover { border-color: var(--river); box-shadow: 0 14px 36px rgba(34, 50, 44, 0.1); }
.result-card.off { opacity: 0.55; }
.result-card img { width: 220px; height: 140px; object-fit: cover; border-radius: 10px; }
.result-card h3 { font-size: 1.3rem; }
.result-card .rc-meta { margin: 0.25rem 0 0.4rem; }
.result-card p { color: var(--muted); font-size: 0.92rem; max-width: 52ch; }
.result-price { text-align: right; padding-right: 0.6rem; }
.result-price .t { font-family: var(--serif); font-size: 1.7rem; font-weight: 600; color: var(--river); }
.result-price .n { font-size: 0.8rem; color: var(--muted); white-space: nowrap; }
.result-price .btn { margin-top: 0.7rem; }
.result-price .unavail { font-size: 0.85rem; color: #a2402a; font-weight: 600; }

.details-panel { background: #fffdf7; border: 1px solid var(--line); border-radius: 16px; padding: clamp(1.6rem, 3vw, 2.4rem); margin-top: 2rem; }
.details-panel .picked { color: var(--muted); font-size: 0.95rem; margin-bottom: 1.4rem; }
.details-panel .picked b { color: var(--ink); }

.success-panel { text-align: center; padding: 3rem 1rem; display: none; }
.success-panel.show { display: block; }
.success-panel svg { width: 54px; height: 54px; color: var(--river); margin: 0 auto 1.2rem; display: block; }
.success-ref { font-family: var(--serif); font-style: italic; font-weight: 600; font-size: 2rem; color: var(--river); margin: 0.8rem 0 1rem; }

/* ---------- feature tiles (breakfast/explore) ---------- */
.tile-row { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1.4rem; margin-top: 3rem; }
.tile { position: relative; border-radius: 14px; overflow: hidden; display: block; }
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.tile:hover img { transform: scale(1.05); }
.tile-a { grid-column: span 7; aspect-ratio: 16 / 10; }
.tile-b { grid-column: span 5; aspect-ratio: 4 / 3.6; }
.tile-c { grid-column: span 4; aspect-ratio: 4 / 4.4; }
.tile-cap { padding: 0.8rem 0.2rem 0; font-size: 0.92rem; color: var(--muted); }
.tile-cap b { color: var(--ink); font-weight: 600; display: block; }

/* explore list */
.explore-list { display: grid; gap: 0; margin-top: 2.5rem; }
.ex-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 1.4rem;
  align-items: center;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
}
.ex-item:last-child { border-bottom: 1px solid var(--line); }
.ex-ico { width: 64px; height: 64px; border-radius: 50%; background: var(--paper-2); display: grid; place-items: center; color: var(--river); }
.ex-ico svg { width: 26px; height: 26px; }
.ex-item h3 { font-size: 1.25rem; }
.ex-item p { color: var(--muted); font-size: 0.95rem; max-width: 62ch; }
.ex-dist { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--river); white-space: nowrap; }

/* ---------- gallery ---------- */
.gallery-grid { columns: 3; column-gap: 1.2rem; }
.gallery-grid .g-item { margin-bottom: 1.2rem; width: 100%; overflow: hidden; border-radius: 12px; display: block; border: 0; padding: 0; background: none; }
.gallery-grid img { width: 100%; transition: transform 0.6s var(--ease); }
.g-item:hover img { transform: scale(1.04); }
.lightbox { position: fixed; inset: 0; z-index: 90; background: rgba(16, 24, 20, 0.94); display: none; place-items: center; padding: 4vh 4vw; }
.lightbox.open { display: grid; }
.lightbox img { max-width: 100%; max-height: 88dvh; object-fit: contain; border-radius: 8px; }
.lightbox-close { position: absolute; top: 20px; right: 20px; background: none; border: 0; color: #f4f1e8; padding: 10px; }
.lightbox-close svg { width: 28px; height: 28px; }

/* ---------- quote band ---------- */
.pullquote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  line-height: 1.4;
  max-width: 26ch;
  margin: 0 auto;
  padding-bottom: 0.2em;
}
.pullquote-by { margin-top: 1.3rem; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--pine-muted); }

/* ---------- info strip ---------- */
.info-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 2.6rem; }
.info-cell { border-top: 2px solid var(--river); padding-top: 1.1rem; }
.band-pine .info-cell { border-color: #c9b98a; }
.info-cell h3 { font-family: var(--sans); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.5rem; }
.info-cell h3 svg { width: 16px; height: 16px; color: var(--river); }
.band-pine .info-cell h3 svg { color: #c9b98a; }
.info-cell p { font-size: 0.94rem; color: var(--muted); }
.band-pine .info-cell p { color: var(--pine-muted); }

/* ---------- contact ---------- */
.contact-layout { display: grid; grid-template-columns: 5fr 6fr; gap: clamp(2.5rem, 5vw, 5rem); align-items: start; }
.contact-list { list-style: none; margin: 1.6rem 0 0; }
.contact-list li { display: flex; gap: 1rem; align-items: flex-start; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.contact-list svg { width: 20px; height: 20px; color: var(--river); flex-shrink: 0; margin-top: 3px; }
.contact-list b { display: block; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.contact-list a { text-decoration: none; }
.contact-list a:hover { color: var(--river); }
#map { height: 360px; border-radius: 14px; border: 1px solid var(--line); filter: saturate(0.9); }
.map-note { font-size: 0.86rem; color: var(--muted); margin-top: 0.7rem; }

/* ---------- footer ---------- */
footer { background: var(--pine); color: var(--pine-ink); padding: clamp(3.5rem, 7vw, 5rem) 0 0; }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.1fr; gap: clamp(2rem, 4vw, 4rem); padding-bottom: 3rem; }
.foot-brand strong { font-family: var(--serif); font-weight: 600; font-size: 1.7rem; display: block; }
.foot-brand p { color: var(--pine-muted); font-size: 0.92rem; max-width: 32ch; margin-top: 0.6rem; }
.foot-col h4 { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--pine-muted); margin-bottom: 1rem; }
.foot-col ul { list-style: none; }
.foot-col li { padding: 0.26rem 0; font-size: 0.92rem; }
.foot-col a { text-decoration: none; color: var(--pine-ink); transition: color 0.25s ease; }
.foot-col a:hover { color: #c9b98a; }
.foot-social { display: flex; gap: 0.7rem; margin-top: 1.2rem; }
.foot-social a { display: grid; place-items: center; width: 40px; height: 40px; border: 1px solid #2c3d35; border-radius: 50%; color: var(--pine-ink); transition: all 0.3s ease; }
.foot-social a:hover { background: var(--river); border-color: var(--river); }
.foot-social svg { width: 18px; height: 18px; }
.foot-bottom { border-top: 1px solid #2c3d35; padding: 1.3rem 0; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: 0.8rem; color: var(--pine-muted); }
.foot-bottom a { color: inherit; text-decoration: none; }
.foot-bottom a:hover { color: var(--pine-ink); }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  background: #23a55a;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(16, 24, 20, 0.3);
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
}
.wa-float:hover { transform: translateY(-4px) scale(1.05); }
.wa-float svg { width: 28px; height: 28px; }

/* ---------- reveals ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); transition-delay: var(--d, 0s); }
.reveal.in { opacity: 1; transform: none; }
.wipe { clip-path: inset(0 0 100% 0); transition: clip-path 1s var(--ease); transition-delay: var(--d, 0s); }
.wipe.in { clip-path: inset(0 0 0 0); }
@media (prefers-reduced-motion: reduce) {
  .reveal, .wipe { opacity: 1; transform: none; clip-path: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .split, .split.flip, .room-hero, .contact-layout { grid-template-columns: 1fr; }
  .split.flip .split-media { order: 0; }
  .room-grid, .room-grid.trio { grid-template-columns: 1fr; }
  .book-bar { grid-template-columns: 1fr 1fr; }
  .book-bar .btn { grid-column: 1 / -1; justify-content: center; }
  .result-card { grid-template-columns: 1fr; }
  .result-card img { width: 100%; height: 200px; }
  .result-price { text-align: left; display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; }
  .result-price .btn { margin: 0; }
  .tile-a, .tile-b, .tile-c { grid-column: span 12; }
  .info-strip { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { columns: 2; }
  .bw { position: static; }
  .amenities { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav-links {
    position: fixed;
    inset: 74px 0 auto 0;
    flex-direction: column;
    gap: 0;
    background: var(--paper);
    padding: 0.6rem 0 1.4rem;
    display: none;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 40px rgba(34, 50, 44, 0.12);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; text-align: center; }
  .nav-links a { display: block; padding: 0.9rem 0; }
  .nav-links a:not(.btn)::after { display: none; }
  .nav-toggle { display: block; }
  .hero { min-height: 74dvh; }
  .form-grid, .bw-grid, .book-bar { grid-template-columns: 1fr; }
  .gallery-grid { columns: 1; }
  .foot-grid { grid-template-columns: 1fr; }
  .ex-item { grid-template-columns: 48px 1fr; }
  .ex-ico { width: 48px; height: 48px; }
  .ex-dist { display: none; }
}
