/* ==========================================================================
   Seattle Waterfront Rentals — Brand & Interface Standards v1
   Implements "Seattle Waterfront Style Guide".
   White is the brand (70%), ink is the voice (20%), navy + copper are earned (10%).
   ========================================================================== */

/* --- Tokens --------------------------------------------------------------- */
:root {
  /* Grounds — the 70% */
  --paper:     #FFFFFF;
  --linen:     #F0ECE8;
  --mist:      #F7F9FB;
  --champagne: #EFE4D6;

  /* Ink — the 20% */
  --ink:      #252322;
  --ink-soft: #5C5754;
  --slate:    #6B7785;
  --rule:     #E4DFDA;

  /* Accent — the 10% */
  --navy:        #0E3A5F;
  --navy-lift:   #15558B;
  --copper:      #C9803A;
  --copper-deep: #875525;

  --serif: 'Cormorant Garamond', 'Cormorant', Georgia, 'Times New Roman', serif;
  --sans:  'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;

  /* Spacing scale — 8px base */
  --s1: 8px;
  --s2: 16px;
  --s3: 24px;
  --s4: 40px;
  --s5: 64px;
  --s6: 120px;

  --section: clamp(64px, 9vw, 120px);
  --gutter:  clamp(20px, 4vw, 40px);
  --measure: 1200px;

  --scrim: rgba(37, 35, 34, .34);
  --lift:  0 1px 24px rgba(37, 35, 34, .06);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 104px; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; border: 0; border-radius: 0; }
a { color: inherit; }
button { font: inherit; }

/* --- Typography ----------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--ink);
  margin: 0;
  font-weight: 300;
}

.display {                       /* H1 — Cormorant 300 · 76/1.05 · -1.5% */
  font-size: clamp(40px, 6.4vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  max-width: 15em;
}

.section-title {                 /* H2 — Cormorant 300 · 48/1.12 */
  font-size: clamp(30px, 4.4vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  max-width: 18em;
}

.card-title {                    /* H3 — Cormorant 400 · 28/1.25 */
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(24px, 2.2vw, 28px);
  line-height: 1.25;
}

.eyebrow {                       /* Public Sans 600 · 11/1.4 · +28% */
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--copper);
  margin: 0;
}
.eyebrow-slate { color: var(--slate); }

.lead {                          /* Public Sans 300 · 18/1.75 */
  font-size: 18px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 30em;
  margin: 0;
}

p {                              /* Body — Public Sans 300 · 15/1.7 */
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 34em;
  margin: 0;
}

.caption {                       /* Public Sans 400 · 12/1.6 · +4% */
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: var(--slate);
  margin: 0;
}

/* The short copper rule that sits under a section heading */
.rule-copper {
  width: 56px;
  height: 1px;
  background: var(--copper);
  border: 0;
  margin: var(--s3) 0 0;
}

/* --- Layout --------------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--measure);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section { padding: var(--section) 0; }
.section--linen { background: var(--linen); }
.section--mist  { background: var(--mist); }

.section-head { margin-bottom: var(--s5); }
.section-head .eyebrow + .section-title { margin-top: var(--s3); }
.section-head .lead { margin-top: var(--s4); }

/* --- Buttons -------------------------------------------------------------- */
/* Height 50 · Padding 16/30 · Radius 2 · Border 1px, never 2px */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 16px 30px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease;
}

.btn-primary {                   /* Navy fill. Booking only. */
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.btn-primary:hover, .btn-primary:focus-visible { background: var(--navy-lift); border-color: var(--navy-lift); color: #fff; }

.btn-secondary {                 /* Ink outline. The workhorse. */
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn-secondary:hover, .btn-secondary:focus-visible { background: var(--ink); color: #fff; }

.btn-on-photo {                  /* White fill, inverts on hover. Never navy on a photo. */
  background: #fff;
  border-color: #fff;
  color: var(--ink);
}
.btn-on-photo:hover, .btn-on-photo:focus-visible { background: transparent; color: #fff; }

.btn-on-photo-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, .7);
  color: #fff;
}
.btn-on-photo-outline:hover, .btn-on-photo-outline:focus-visible { background: #fff; border-color: #fff; color: var(--ink); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
  margin-top: var(--s4);
}

/* Tertiary — copper underline. Editorial links, "see more". */
.link-copper {
  display: inline-flex;
  align-items: center;
  gap: var(--s1);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--copper-deep);
  border-bottom: 1px solid var(--copper);
  padding-bottom: 6px;
  transition: color .18s ease, border-color .18s ease;
}
.link-copper:hover { color: var(--copper); border-color: var(--copper-deep); }

:focus-visible { outline: 2px solid var(--navy-lift); outline-offset: 2px; }

/* --- Navigation ----------------------------------------------------------- */
/* White pill on whatever sits behind it. Active page is copper, not navy —
   the one navy element is the reserve button. */
.nav-shell {
  position: fixed;
  top: var(--s2);
  left: 0;
  right: 0;
  z-index: 900;
  padding: 0 var(--gutter);
  pointer-events: none;
}

.nav {
  pointer-events: auto;
  max-width: var(--measure);
  margin: 0 auto;
  background: var(--paper);
  border-radius: 999px;
  box-shadow: var(--lift);
  display: flex;
  align-items: center;
  gap: var(--s3);
  padding: 10px 10px 10px var(--s3);
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex: none;
}
.nav-brand img { width: 30px; height: 30px; border-radius: 999px; }
.nav-brand span {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 21px;
  line-height: 1;
  letter-spacing: 0;
  color: var(--ink);
  white-space: nowrap;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.8vw, 26px);
  margin: 0 auto 0 var(--s2);
  padding: 0;
  flex: 1 1 auto;
  justify-content: flex-end;
}
.nav-links a {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  white-space: nowrap;
  transition: color .18s ease;
}
.nav-links a:hover { color: var(--copper-deep); }
.nav-links a[aria-current="page"] { color: var(--copper); }

.nav .btn-primary {
  border-radius: 999px;
  min-height: 44px;
  padding: 14px 26px;
  flex: none;
}

.nav-toggle { display: none; }
.nav-burger { display: none; }

@media (max-width: 1199px) {
  /* Still a pill when closed; a rounded panel once the menu drops open. */
  .nav { padding: 10px var(--s2) 10px var(--s3); flex-wrap: wrap; border-radius: 32px; }
  .nav-burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    margin-left: auto;
    padding: 0 11px;
    cursor: pointer;
    border-radius: 999px;
  }
  .nav-burger span { display: block; height: 1px; background: var(--ink); transition: transform .2s ease, opacity .2s ease; }
  .nav-links {
    display: none;
    flex: 1 0 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    margin: 0;
    padding: var(--s2) var(--s1) var(--s1);
    border-top: 1px solid var(--rule);
  }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 14px 0; border-bottom: 1px solid var(--rule); }
  .nav-links li:last-child a { border-bottom: 0; }
  .nav-toggle:checked ~ .nav-links { display: flex; }
  .nav-toggle:checked ~ .nav-burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav-toggle:checked ~ .nav-burger span:nth-child(2) { opacity: 0; }
  .nav-toggle:checked ~ .nav-burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .nav .btn-primary { order: 3; margin-left: 0; }
  .nav-toggle:checked ~ .btn-primary { flex: 1 0 100%; margin-bottom: var(--s1); }
}

@media (max-width: 520px) {
  .nav-brand span { font-size: 17px; }
  .nav > .btn-primary { display: none; }
  /* The reserve button rejoins the bar once the menu is open. */
  .nav-toggle:checked ~ .btn-primary { display: inline-flex; flex: 1 0 100%; border-radius: 2px; margin-bottom: var(--s1); }
}

/* --- Hero ----------------------------------------------------------------- */
/* The view is the product, so nothing is laid over it: no scrim, no type, no
   overlay of any kind — the guide's preferred state for photography. The copy
   sits beside the picture on linen, where it needs no help to be read. */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 48fr) minmax(0, 52fr);
  min-height: min(88vh, 820px);
  background: var(--linen);
}

.hero-copy {
  display: flex;
  align-items: center;
  /* Left padding lines the headline up with the container edge used by every
     section below, so the page has one left margin rather than two. */
  padding: calc(var(--s6) + var(--s2)) var(--s5) var(--section)
           max(var(--gutter), calc((100vw - var(--measure)) / 2 + var(--gutter)));
}
.hero-copy-inner { max-width: 620px; }

/* The guide's 76px display assumes a full-width page; in a half-width column
   it breaks to four lines. Sized down so the headline sets in three. */
.hero .display { margin-top: var(--s3); font-size: clamp(38px, 4.4vw, 60px); }
.hero .lead {
  margin-top: var(--s4);
  font-size: clamp(18px, 1.4vw, 20px);
  font-weight: 400;
  line-height: 1.7;
  max-width: 32em;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2) var(--s4);
  margin: var(--s4) 0 0;
  padding: var(--s3) 0 0;
  border-top: 1px solid var(--rule);
  list-style: none;
}
.hero-facts li {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
}

.hero .btn-row { align-items: center; gap: var(--s3); }

.hero-figure { margin: 0; position: relative; overflow: hidden; }
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: 0; }
  /* The view leads on a phone too — photograph first, then the copy. */
  .hero-figure { order: -1; position: relative; height: clamp(300px, 56vw, 440px); }
  .hero-copy { padding: var(--section) var(--gutter); }
  .hero-copy-inner { max-width: none; }
}

/* --- Three-point intro (the 01 / 02 / 03 pattern) ------------------------- */
.points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s4) var(--s3);
  margin-top: var(--s5);
  padding-top: var(--s5);
  border-top: 1px solid var(--rule);
}
.points .point-num {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 26px;
  line-height: 1;
  color: var(--copper);
  margin: 0 0 var(--s2);
}
.points .point-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 var(--s2);
}
.points .point-text { font-size: 14px; }

/* --- Property cards ------------------------------------------------------- */
.property-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s6) var(--s4);
}

.property {
  display: flex;
  flex-direction: column;
  background: var(--paper);
}

.property-photo { display: block; overflow: hidden; }
.property-photo:focus-visible { outline: 2px solid var(--copper); outline-offset: 3px; }
.property-img {
  aspect-ratio: 16 / 10;
  width: 100%;
  object-fit: cover;
  transition: opacity .2s ease;
}
.property-photo:hover .property-img { opacity: .9; }

.property-body { padding-top: var(--s3); }
.property-body .card-title { margin: var(--s2) 0 var(--s2); }
.property-body p { font-size: 15px; }

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s1);
  margin: var(--s3) 0 0;
  padding: 0;
  list-style: none;
}
.chip {
  background: var(--champagne);
  color: var(--copper-deep);
  border-radius: 2px;
  padding: 7px 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1;
}

.property-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--s3);
  margin-top: var(--s3);
  padding-top: var(--s3);
  border-top: 1px solid var(--rule);
}

.property-more { margin-top: var(--s3); }

/* Live price — set in the serif so it reads as a rate, not a discount. */
.property-price, .rate { min-width: 0; }
.property-price .hsp-price,
.rate .hsp-price { font-family: var(--sans); min-height: 0; }
.property-price .hsp-from::before,
.rate .hsp-from::before {
  content: "From";
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 6px;
}
.property-price .hsp-from-main,
.rate .hsp-from-main { gap: 6px; }
.property-price .hsp-from-amount,
.rate .hsp-from-amount {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--ink);
  line-height: 1;
}
.property-price .hsp-from-unit,
.rate .hsp-from-unit {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  color: var(--slate);
  opacity: 1;
}
.property-price .hsp-from-meta,
.rate .hsp-from-meta {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--slate);
  opacity: 1;
  margin-top: 8px;
}
.price-fallback {
  display: block;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--slate);
}

@media (max-width: 860px) {
  .property-grid { grid-template-columns: 1fr; gap: var(--s5); }
  .points { grid-template-columns: 1fr; gap: var(--s4); }
}

@media (max-width: 560px) {
  .property-foot { flex-direction: column; align-items: flex-start; gap: var(--s3); }
  .btn { padding: 16px 24px; }
}

/* --- Editorial split ------------------------------------------------------ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s5) var(--s6);
  align-items: center;
}
.split img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }

@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap: var(--s4); }
}

/* --- Imagery -------------------------------------------------------------- */
/* No borders, no radius, no overlay unless type sits on top. */
.gallery {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: var(--s3);
}
.gallery img { width: 100%; height: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.gallery-note { margin-top: var(--s3); max-width: 44em; }

/* Each photo is a button, but it must look like nothing but the photograph. */
.gallery-item {
  display: block;
  padding: 0;
  margin: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
  position: relative;
  overflow: hidden;
}
.gallery-item img { transition: transform .4s ease, opacity .2s ease; }
.gallery-item:hover img { opacity: .88; }
.gallery-item:focus-visible { outline: 2px solid var(--copper); outline-offset: 3px; }

@media (max-width: 860px) {
  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery .gallery-item:first-child { grid-column: 1 / -1; }
  .gallery .gallery-item:first-child img { aspect-ratio: 16 / 9; }
}

/* --- Photo viewer --------------------------------------------------------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  background: rgba(37, 35, 34, .98);
  padding: var(--s3) var(--s3) var(--s4);
}
/* display:flex above outranks the UA [hidden] rule, so restate it here —
   without this the overlay is up from first paint. */
.lightbox[hidden] { display: none; }

.lightbox-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s3);
  flex: none;
  margin-bottom: var(--s3);
}
.lightbox-count { color: rgba(255, 255, 255, .7); letter-spacing: 0.14em; }

.lightbox-close {
  flex: none;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 999px;      /* pill — the guide's one exception, as on modals */
  background: none;
  color: #fff;
  cursor: pointer;
  transition: background-color .16s ease, color .16s ease, border-color .16s ease;
}
.lightbox-close:hover { background: #fff; color: var(--ink); border-color: #fff; }

.lightbox-stage {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s3);
}

.lightbox-img {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
  height: 100%;
  /* Sources top out around 900px, so cap the upscale rather than blowing
     them across a 1440 screen and showing the softness. */
  max-width: 1100px;
  object-fit: contain;
  border-radius: 0;
  transition: opacity .2s ease;
}
.lightbox-img.is-loading { opacity: 0; }

.lightbox-nav {
  flex: none;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 2px;
  background: none;
  color: #fff;
  cursor: pointer;
  transition: background-color .16s ease, color .16s ease, border-color .16s ease;
}
.lightbox-nav:hover { background: #fff; color: var(--ink); border-color: #fff; }

.lightbox-caption {
  flex: none;
  margin-top: var(--s3);
  color: rgba(255, 255, 255, .78);
  text-align: center;
  max-width: 44em;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 640px) {
  .lightbox { padding: var(--s2) var(--s2) var(--s3); }
  .lightbox-stage { gap: var(--s1); }
  .lightbox-nav { width: 40px; height: 40px; }
}

/* --- Plan your stay: form + questions ------------------------------------ */
.plan-band {
  background: var(--linen);
  padding: var(--s5) var(--gutter);
  margin-bottom: var(--s5);
}
.plan-band-inner { max-width: var(--measure); margin: 0 auto; }
.plan-band-inner .section-title { margin-top: var(--s3); }
.plan-band-inner .lead { margin-top: var(--s3); }

.plan-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s5) var(--s6);
  align-items: start;
}
@media (max-width: 860px) { .plan-grid { grid-template-columns: 1fr; gap: var(--s5); } }

.col-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--slate);
  margin: 0 0 var(--s3);
  padding-bottom: var(--s2);
  border-bottom: 1px solid var(--rule);
}

/* Forms — labels above the field, never placeholders as labels.
   Focus is a navy border: no glow, no outline offset. */
.field { margin-bottom: var(--s3); }
.field label {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: var(--s2);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 2px;
  padding: 15px var(--s2);
  transition: border-color .16s ease;
}
.field textarea { min-height: 132px; resize: vertical; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%236B7785' stroke-width='1.4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--s2) center;
  padding-right: var(--s4);
}
.field input::placeholder,
.field textarea::placeholder { color: var(--slate); opacity: .75; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--navy);
}

.form-note { margin-top: var(--s3); }

.alert {
  border: 1px solid var(--rule);
  border-radius: 2px;
  padding: var(--s2);
  margin-bottom: var(--s3);
  font-size: 14px;
}
.alert-success { border-color: var(--copper); color: var(--copper-deep); background: var(--champagne); }
.alert-danger  { border-color: var(--copper-deep); color: var(--copper-deep); background: var(--linen); }

/* Questions — no cards, no fills, no icon circles. Hairlines and a copper sign. */
.qa { border-top: 1px solid var(--rule); }
.qa details { border-bottom: 1px solid var(--rule); }
.qa summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--s3);
  padding: var(--s3) 0;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--ink);
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary::after {
  content: "+";
  flex: none;
  font-weight: 400;
  font-size: 18px;
  line-height: 1;
  color: var(--copper);
}
.qa details[open] summary::after { content: "\2013"; }
.qa details[open] summary { padding-bottom: var(--s2); }
.qa .answer { padding: 0 0 var(--s3); }
.qa .answer p { max-width: 40em; }

/* --- Map ------------------------------------------------------------------ */
.map-frame { border: 0; width: 100%; height: clamp(280px, 42vw, 440px); display: block; }

/* --- The one navy moment -------------------------------------------------- */
.invitation {
  background: var(--navy);
  color: #fff;
  padding: clamp(64px, 8vw, 104px) 0;
}
.invitation .eyebrow { color: rgba(255, 255, 255, .75); }
.invitation .section-title { color: #fff; margin-top: var(--s3); max-width: 16em; }
.invitation .lead { color: rgba(255, 255, 255, .82); margin-top: var(--s4); }

/* --- Footer --------------------------------------------------------------- */
.footer { padding: var(--s5) 0; background: var(--paper); }
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s3) var(--s4);
  align-items: baseline;
  justify-content: space-between;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s1) var(--s3);
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-links a {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--slate);
  text-decoration: none;
}
.footer-links a:hover { color: var(--copper-deep); }

/* --- Booking modals ------------------------------------------------------- */
.booking-toggle { position: absolute; opacity: 0; pointer-events: none; width: 0; height: 0; }

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--s3);
}
.booking-toggle:checked + .booking-modal { display: flex; }

.booking-backdrop { position: absolute; inset: 0; background: rgba(37, 35, 34, .5); cursor: pointer; }

.booking-dialog {
  position: relative;
  width: min(720px, 100%);
  max-height: min(88vh, 860px);
  display: flex;
  flex-direction: column;
  background: var(--paper);
  box-shadow: var(--lift);
}
.booking-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s3);
  padding: var(--s3) var(--s3) var(--s3) var(--s4);
  border-bottom: 1px solid var(--rule);
}
.booking-head h3 { font-family: var(--serif); font-weight: 400; font-size: 24px; line-height: 1.25; }
.booking-close {
  flex: none;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--rule);
  border-radius: 999px;
  color: var(--ink);
  cursor: pointer;
  background: var(--paper);
  transition: background-color .16s ease, color .16s ease;
}
.booking-close:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.booking-body { flex: 1 1 auto; min-height: 0; }
.booking-body iframe { width: 100%; height: 68vh; max-height: 720px; border: 0; display: block; }

/* --- Formoid alert modal (Bootstrap JS drives it; styling is ours) -------- */
.modal { position: fixed; inset: 0; z-index: 1100; display: none; width: 100%; height: 100%; overflow: hidden auto; outline: 0; }
.modal-backdrop { position: fixed; inset: 0; z-index: 1090; width: 100vw; height: 100vh; background: rgba(37, 35, 34, .5); }
.modal-dialog { position: relative; width: auto; max-width: 460px; margin: 12vh auto; pointer-events: none; }
.modal-content { position: relative; display: flex; flex-direction: column; width: 100%; pointer-events: auto; background: var(--paper); border-radius: 2px; box-shadow: var(--lift); }
.modal-body { position: relative; flex: 1 1 auto; padding: var(--s4); }
.modal-body p { max-width: none; text-align: center; }
.modal .close { background: none; border: 0; font-size: 24px; line-height: 1; color: var(--ink); cursor: pointer; }
/* Formoid writes its own green/orange fills and shadow inline — pull them back to the palette. */
.modal-content.alert-success,
.modal-content.alert-danger {
  box-shadow: var(--lift) !important;
  border-radius: 2px !important;
  color: var(--copper-deep);
}
.modal-content.alert-success { background-color: var(--champagne) !important; }
.modal-content.alert-danger  { background-color: var(--linen) !important; }
.modal-content.alert-success p,
.modal-content.alert-danger p { color: var(--copper-deep); font-size: 15px; }
.d-flex { display: flex !important; }
.flex-column { flex-direction: column !important; }
.align-items-end { align-items: flex-end !important; }
.justify-content-end { justify-content: flex-end !important; }

/* --- Reviews widget ------------------------------------------------------- */
.reviews { min-height: 200px; }   /* Elfsight widget placeholder */
/* Guest reviews — static cards above the widget, baked in by scripts/build-reviews.py */
.reviews-summary { display: flex; flex-wrap: wrap; align-items: baseline; gap: var(--s1) var(--s2); margin: 0 0 var(--s4); max-width: none; }
.reviews-summary strong { font-family: var(--serif); font-weight: 400; font-size: 32px; line-height: 1; color: var(--ink); }
.review-stars { color: var(--copper); letter-spacing: .1em; font-size: 14px; white-space: nowrap; }
.review-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s3); }
.review-grid--4 { grid-template-columns: repeat(4, 1fr); }
.review-card { border: 1px solid var(--rule); background: var(--paper); padding: var(--s3); display: flex; flex-direction: column; gap: var(--s2); }
.review-card blockquote { margin: 0; }
.review-card blockquote p { font-family: var(--serif); font-weight: 400; font-size: 19px; line-height: 1.5; color: var(--ink); max-width: none; }
.review-meta { margin-top: auto; font-size: 12px; letter-spacing: .04em; color: var(--slate); max-width: none; }
.review-meta a { color: var(--copper-deep); text-decoration: none; border-bottom: 1px solid currentColor; }
.review-meta a:hover { color: var(--copper); }
.review-more { margin-top: var(--s3); border-top: 1px solid var(--rule); }
.review-more summary { cursor: pointer; list-style: none; padding: var(--s2) 0; font-size: 12px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--copper-deep); }
.review-more summary::-webkit-details-marker { display: none; }
.review-more summary::after { content: " +"; }
.review-more[open] summary::after { content: " \2013"; }
.review-more[open] summary { margin-bottom: var(--s3); }
.reviews-static > .caption { margin-top: var(--s3); }
.reviews-static + .reviews { margin-top: var(--s5); }
@media (max-width: 1023px) { .review-grid, .review-grid--4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px)  { .review-grid, .review-grid--4 { grid-template-columns: 1fr; } }


/* --- Property pages ======================================================= */

/* Hero rate — the same price treatment as a card, one size up, sitting on the
   hairline above the buttons rather than in a box of its own. */
.rate {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: var(--s3) var(--s4);
  margin-top: var(--s4);
  padding-top: var(--s3);
  border-top: 1px solid var(--rule);
}
.rate .hsp-from-amount { font-size: 40px; }

/* A photograph set inside the measure — a breath between sections, never a
   parallax band and never with type over it. */
.photoband { margin: 0; }
.photoband img { width: 100%; aspect-ratio: 21 / 9; object-fit: cover; }
.photoband figcaption { margin-top: var(--s2); }

/* --- Photo tour ----------------------------------------------------------- */
/* Same hairline accordion as the questions list, with a contact print of the
   first photo where the question mark would be. */
.tour { border-top: 1px solid var(--rule); }
.tour details { border-bottom: 1px solid var(--rule); }
.tour summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: var(--s3);
  padding: var(--s3) 0;
}
.tour summary::-webkit-details-marker { display: none; }
.tour-cover {
  width: 104px;
  height: 72px;
  object-fit: cover;
  flex: none;
}
.tour-meta { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.tour-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.2;
  color: var(--ink);
}
.tour-count {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--slate);
}
.tour summary::after {
  content: "+";
  margin-left: auto;
  flex: none;
  font-size: 18px;
  line-height: 1;
  color: var(--copper);
}
.tour details[open] summary::after { content: "\2013"; }
.tour-body { padding: 0 0 var(--s4); }
.tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--s3);
}
.tour-figure { margin: 0; }
.tour-figure img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.tour-figure figcaption { margin-top: var(--s1); }

@media (max-width: 520px) {
  .tour-cover { width: 72px; height: 54px; }
  .tour-grid { grid-template-columns: 1fr; }
}

/* --- Nearby ---------------------------------------------------------------- */
.places {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 var(--s5);
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--rule);
}
.places li {
  position: relative;
  padding: var(--s3) 0 var(--s3) var(--s3);
  border-bottom: 1px solid var(--rule);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--ink);
}
.places li::before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(var(--s3) + 0.7em);
  width: 10px;
  height: 1px;
  background: var(--copper);
}

@media (max-width: 860px) { .places { grid-template-columns: 1fr 1fr; gap: 0 var(--s4); } }
@media (max-width: 560px) { .places { grid-template-columns: 1fr; } }

/* --- Questions sidebar ----------------------------------------------------- */
.aside img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.aside p { margin-top: var(--s3); }
.aside .btn { margin-top: var(--s3); }

/* --- Long-form (the travel guide) ------------------------------------------ */
.guide-article {
  border-top: 1px solid var(--rule);
  padding-top: var(--s5);
  margin-top: var(--s5);
}
.guide-article:first-of-type { border-top: 0; padding-top: 0; margin-top: 0; }
.guide-article .section-title { margin-top: var(--s3); }

.prose { margin-top: var(--s4); }
.prose > p { margin: 0 0 var(--s3); }
.prose h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.3;
  margin: var(--s4) 0 var(--s2);
}
.prose ul {
  margin: 0 0 var(--s3);
  padding: 0;
  list-style: none;
  max-width: 40em;
}
.prose ul li {
  position: relative;
  padding-left: var(--s3);
  margin-bottom: var(--s2);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--ink-soft);
}
.prose ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8em;
  width: 10px;
  height: 1px;
  background: var(--copper);
}
.prose strong { font-weight: 500; color: var(--ink); }

/* The in-article invitation back to a property. Champagne, never navy — the
   page keeps its one navy moment for the close. */
.callout {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--s3) var(--s4);
  background: var(--champagne);
  padding: var(--s4);
  margin-top: var(--s4);
}
.callout p { color: var(--ink); max-width: 32em; margin: 0; }

/* --- Live quote widget ----------------------------------------------------- */
/* live-pricing.css ships its own rounded, navy-on-mist look; this brings it
   back to hairlines, 2px controls and the brand type. */
.hsp-quote {
  border: 1px solid var(--rule);
  border-radius: 0;
  background: var(--mist);
  color: var(--ink);
  font-family: var(--sans);
  padding: var(--s4);
  margin-top: var(--s4);
}
.hsp-quote h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.25;
  color: var(--ink);
  margin: 0;
}
.hsp-quote-sub { font-size: 14px; color: var(--slate); margin: var(--s1) 0 var(--s3); }
.hsp-quote-form label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: var(--slate);
  gap: var(--s1);
}
.hsp-quote-form input {
  border: 1px solid var(--rule);
  border-radius: 2px;
  background: var(--paper);
  color: var(--ink);
  font-size: 15px;
  padding: 12px;
}
.hsp-quote-form input:focus { outline: 2px solid var(--copper); outline-offset: 1px; }
.hsp-quote-form button {
  border-radius: 2px;
  background: var(--ink);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 14px 20px;
}
.hsp-quote-form button:hover { background: var(--navy); }
.hsp-lines li { border-bottom: 1px solid var(--rule); }
.hsp-lines li.hsp-total { border-top: 1px solid var(--ink); font-weight: 500; font-size: 18px; }
.hsp-lines li.hsp-muted { color: var(--slate); }
.hsp-quote-error {
  color: var(--copper-deep);
  background: var(--champagne);
  border: 1px solid var(--copper);
  border-radius: 0;
}
.hsp-book {
  border-radius: 2px;
  background: var(--copper-deep);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 14px 20px;
}
.hsp-book:hover { background: var(--copper); }
.hsp-fineprint { color: var(--slate); font-size: 12px; }

/* --- Stay finder ------------------------------------------------------------ */
/* The hotel-style search bar that straddles the bottom edge of the hero: one
   white card, hairline-divided cells, the single navy button at the end. */
.finder { position: relative; z-index: 20; margin-top: calc(var(--s4) * -1); }
.finder-bar {
  position: relative;
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr .8fr 1fr auto;
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  box-shadow: var(--lift);
}
.finder-field { background: var(--paper); padding: 14px var(--s3) 12px; min-width: 0; }
.finder-field label {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 4px;
}
.finder-field select,
.finder-date {
  display: block;
  width: 100%;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 4px 0;
  margin: 0;
  text-align: left;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.finder-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%236B7785' stroke-width='1.4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2px center;
  padding-right: 22px;
}
.finder-date-text.is-placeholder { color: var(--slate); font-weight: 300; }
.finder-nights {
  display: block;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--copper-deep);
  min-height: 1.4em;
  margin-top: -2px;
}
.finder-nights:empty { display: none; }
.finder-submit { border-radius: 0; margin: 0; min-height: 100%; padding: 16px 34px; }

/* Calendar popover — two months on a desk, a bottom sheet on a phone. */
.finder-scrim { position: fixed; inset: 0; z-index: 25; background: var(--scrim); }
.finder-calendar {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: min(100%, 720px);
  z-index: 30;
  background: var(--paper);
  border: 1px solid var(--rule);
  box-shadow: 0 16px 48px rgba(37, 35, 34, .16);
  padding: var(--s3);
}
.finder-cal-head { display: flex; align-items: center; justify-content: space-between; gap: var(--s2); margin-bottom: var(--s2); }
.finder-cal-prompt {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--copper);
  text-align: center;
}
.finder-cal-nav {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--rule);
  border-radius: 2px;
  color: var(--ink);
  cursor: pointer;
  padding: 0;
  transition: border-color .16s ease;
}
.finder-cal-nav:hover:not(:disabled) { border-color: var(--ink); }
.finder-cal-nav:disabled { color: var(--rule); cursor: default; }
.finder-months { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s4); }
.finder-month-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  text-align: center;
  max-width: none;
  margin-bottom: var(--s2);
}
.finder-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px 0; }
.finder-dow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate);
  text-align: center;
  padding-bottom: 6px;
}
.finder-day-blank { display: block; }
/* Each cell is the day number over that night's rate (the lowest across the
   properties in the location filter). Booked nights are struck through;
   nights above the "Nightly rate" cap are faded and can't be picked. */
.finder-day {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-height: 50px;
  width: 100%;
  border: 0;
  border-radius: 2px;
  background: transparent;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: var(--ink);
  cursor: pointer;
  padding: 6px 0 5px;
  transition: background-color .12s ease, color .12s ease;
}
.finder-day-num { display: block; }
.finder-day-rate {
  display: block;
  min-height: 11px;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
  color: var(--slate);
}
.finder-day:hover:not(:disabled) { background: var(--linen); }
.finder-day:disabled { color: var(--rule); cursor: default; }
.finder-day:disabled .finder-day-rate { color: var(--rule); }
.finder-day.is-unavailable { color: var(--slate); opacity: .6; }
.finder-day.is-unavailable .finder-day-num { text-decoration: line-through; }
.finder-day.is-over { color: var(--slate); opacity: .38; }
.finder-day.is-over .finder-day-rate { color: var(--slate); }
.finder-day.is-short { color: var(--slate); opacity: .38; }
.finder-day.is-blocked { color: var(--slate); opacity: .38; }
.finder-day.is-inrange { background: var(--champagne); border-radius: 0; }
.finder-day.is-checkin, .finder-day.is-checkout { background: var(--navy); color: #fff; opacity: 1; }
.finder-day.is-checkin .finder-day-num, .finder-day.is-checkout .finder-day-num { text-decoration: none; }
.finder-day.is-checkin .finder-day-rate, .finder-day.is-checkout .finder-day-rate { color: rgba(255, 255, 255, .78); }
.finder-day.is-checkin:hover, .finder-day.is-checkout:hover { background: var(--navy-lift); }
.finder-day.is-today .finder-day-num {
  text-decoration: underline;
  text-decoration-color: var(--copper);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}
.finder-cal-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s2) var(--s3);
  margin-top: var(--s3);
  padding-top: var(--s2);
  border-top: 1px solid var(--rule);
}
.finder-cal-note { font-size: 12px; letter-spacing: 0.02em; color: var(--slate); max-width: 34em; flex: 1 1 260px; }
.finder-cal-actions { display: flex; align-items: center; gap: var(--s3); }
.finder-cal-link {
  background: none;
  border: 0;
  padding: 0 0 4px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper-deep);
  border-bottom: 1px solid var(--copper);
  cursor: pointer;
}
.finder-cal-link:hover { color: var(--copper); }
.finder-cal-done { min-height: 40px; padding: 12px 22px; }

/* Results — one hairline row per property, price set in the serif. */
.finder-results { margin-top: var(--s2); }
.finder-results:empty { display: none; }
.finder-summary {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--s2) var(--s3);
  flex-wrap: wrap;
  padding: var(--s3) 0 var(--s2);
  border-bottom: 1px solid var(--ink);
}
.finder-summary-text { display: flex; align-items: baseline; flex-wrap: wrap; gap: var(--s1) var(--s3); max-width: none; }
.finder-summary-count { font-family: var(--serif); font-size: 26px; line-height: 1.2; color: var(--ink); }
.finder-summary-meta { font-size: 13px; letter-spacing: 0.02em; color: var(--slate); }
.finder-result {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr) auto auto;
  grid-template-areas: "thumb body price actions";
  align-items: center;
  gap: var(--s3) var(--s4);
  padding: var(--s3) 0;
  border-bottom: 1px solid var(--rule);
}
.finder-thumb { grid-area: thumb; display: block; overflow: hidden; }
.finder-thumb img { width: 160px; height: 110px; object-fit: cover; transition: transform .4s ease; }
.finder-result:hover .finder-thumb img { transform: scale(1.03); }
.finder-result-body { grid-area: body; min-width: 0; }
.finder-result-body .card-title { font-size: 24px; margin-top: 4px; }
.finder-result-body .card-title a { text-decoration: none; }
.finder-result-body .card-title a:hover { color: var(--navy); }
.finder-facts { font-size: 13px; letter-spacing: 0.02em; color: var(--slate); margin-top: 4px; }
.finder-result-price { grid-area: price; text-align: right; min-width: 170px; }
.finder-price-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--slate);
  max-width: none;
}
.finder-price-amount { font-family: var(--serif); font-size: 34px; font-weight: 400; line-height: 1; color: var(--ink); margin-top: 6px; max-width: none; }
.finder-price-unit { font-family: var(--sans); font-size: 13px; color: var(--slate); }
.finder-price-meta { font-size: 12px; letter-spacing: 0.04em; color: var(--slate); margin-top: 8px; max-width: 22em; margin-left: auto; }
.finder-result-actions { grid-area: actions; display: flex; flex-direction: column; align-items: flex-end; gap: var(--s2); }
.finder-result-actions .btn { min-width: 150px; }
.finder-result.is-unavailable .finder-thumb img { filter: grayscale(1); opacity: .6; }
.finder-result.is-unavailable .finder-price-label { color: var(--copper-deep); }
.finder-result.is-loading .finder-price-label { color: var(--copper); }
.finder-result.is-loading .finder-price-meta::after { content: ""; display: inline-block; width: 1em; animation: finder-dots 1.2s steps(4, end) infinite; }
@keyframes finder-dots { 0% { content: ""; } 25% { content: "."; } 50% { content: ".."; } 75% { content: "..."; } }
.finder-note { font-size: 13px; letter-spacing: 0.02em; color: var(--slate); padding: var(--s2) 0; max-width: none; }
.finder-note .finder-cal-link { margin-left: var(--s1); }
.finder-empty { padding: var(--s4) 0 var(--s2); }
.finder-empty .btn-row { margin-top: var(--s3); align-items: center; gap: var(--s3); }

@media (max-width: 1100px) {
  .finder-bar { grid-template-columns: repeat(3, 1fr); }
  .finder-submit { grid-column: 3; min-height: 0; }
}
@media (max-width: 900px) {
  .finder { margin-top: calc(var(--s3) * -1); }
  .finder-result {
    grid-template-columns: 120px minmax(0, 1fr);
    grid-template-areas: "thumb body" "price price" "actions actions";
    gap: var(--s2) var(--s3);
  }
  .finder-thumb img { width: 120px; height: 84px; }
  .finder-result-price { text-align: left; min-width: 0; }
  .finder-price-meta { margin-left: 0; }
  .finder-result-actions { flex-direction: row; align-items: center; justify-content: flex-start; flex-wrap: wrap; gap: var(--s3); }
}
@media (max-width: 720px) {
  .finder-calendar {
    position: fixed;
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
    width: auto;
    max-height: 88vh;
    overflow: auto;
    border: 0;
    border-top: 1px solid var(--rule);
    padding: var(--s3) var(--gutter) calc(var(--s3) + env(safe-area-inset-bottom, 0px));
  }
  .finder-months { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .finder-bar { grid-template-columns: 1fr 1fr; }
  .finder-field:first-child { grid-column: 1 / -1; }
  .finder-submit { grid-column: 1 / -1; }
  .finder-summary-count { font-size: 22px; }
}

/* --- Utility -------------------------------------------------------------- */
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition-duration: .01ms !important; }
}

/* --- Comparison table (Federal Way hub) ----------------------------------- */
/* Hairlines only, no fills. Heading row rules in ink, body rows in --rule. */
.compare-wrap { overflow-x: auto; margin-top: var(--s5); -webkit-overflow-scrolling: touch; }
.compare {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.5;
}
.compare th, .compare td {
  text-align: left;
  vertical-align: top;
  padding: var(--s2) var(--s3) var(--s2) 0;
  border-bottom: 1px solid var(--rule);
}
.compare thead th {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
}
.compare thead th a { color: var(--ink); text-decoration: none; }
.compare thead th a:hover { color: var(--copper-deep); }
.compare tbody th { font-weight: 500; color: var(--ink); width: 22%; }
.compare td { font-weight: 300; color: var(--ink-soft); width: 39%; }
