/* ═══════════════════════════════════════════════════════════════
   Fisherman's Quay — Sitka, Alaska
   Design system: warm bark + taupe + sage, salmon accent.
   ═══════════════════════════════════════════════════════════════ */

:root {
  /* ── ground / dark ── */
  --bark-950: #241C15;
  --bark-900: #33291F;
  --bark-800: #423528;
  --bark-700: #574737;
  --bark-600: #6E5C48;
  --bark-500: #8A7561;

  /* ── warm neutrals ── */
  --taupe:      #BDB5A1;
  --taupe-deep: #A69C85;
  --taupe-pale: #D6D0C0;
  --sage:       #E3E4CF;
  --sage-deep:  #C9CCAD;
  --olive:      #6B6D4A;
  --olive-deep: #565839;

  /* ── paper ── */
  --cream:   #F2EEE6;
  --paper:   #FAF8F3;
  --white:   #FFFFFF;
  --border:      #DED7C7;
  --border-soft: #E9E3D6;
  --border-warm: #C6BEAB;

  /* ── accent ── */
  --salmon:      #FD5B5B;
  --salmon-deep: #C13434;
  --salmon-soft: #FFE3E0;
  --on-salmon:   var(--bark-950);  /* text on salmon fills — 5.45:1; white is only 3.08:1 */

  /* ── ink ── */
  --ink-dark: #2C241C;
  --ink:      #4A3F34;
  --ink-mid:  #5D5145;
  --ink-soft: #6F6255;
  --ink-light:#6F6255;  /* was #857868: 3.7:1 on cream, below the 4.5:1 minimum */
  --on-dark:      #F4F0E8;
  --on-dark-soft: #CFC6B6;
  --on-dark-mute: #A79B89;

  /* ── type ── */
  --display: "Playfair Display", Georgia, serif;
  --body: Jost, system-ui, -apple-system, sans-serif;

  /* ── metrics ── */
  --wrap: 1240px;
  --r:    4px;
  --r-md: 10px;
  --shadow-sm: 0 2px 10px rgba(44, 36, 28, 0.06);
  --shadow:    0 14px 38px rgba(44, 36, 28, 0.10);
  --shadow-lg: 0 26px 60px rgba(44, 36, 28, 0.16);

  /* ── legacy aliases (older markup still references these) ── */
  --navy-950: var(--bark-950);
  --navy-900: var(--bark-900);
  --navy-800: var(--bark-800);
  --navy-700: var(--bark-700);
  --navy-muted: var(--bark-500);
  --rust: var(--salmon);
  --rust-dark: var(--salmon-deep);
  --rust-bright: var(--salmon);
  --tan: var(--taupe);
  --slate: var(--on-dark-mute);
  --slate-pale: var(--on-dark-soft);
  --slate-faint: var(--on-dark-mute);
  --pale: var(--on-dark);
  --off-white: var(--on-dark);
  --border-light: var(--border-soft);
}

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

/* author display rules would otherwise beat the UA rule for [hidden] */
[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-wrap: pretty;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1, h2, h3, h4 { margin: 0; }
p { margin: 0; }
ul { margin: 0; }
img { max-width: 100%; }
input, textarea, select, button { font: inherit; }

/* italic serif accents inside display headings — "Our *Forestside* Guesthouse" */
h1 em, h2 em, h3 em, .h1-display em, .h1-serif em, .h2 em, .h2-sm em {
  font-style: italic;
  font-weight: 400;
}

a { color: var(--salmon-deep); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--bark-900); }

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--bark-900); color: #fff; padding: 10px 16px; z-index: 200;
  border-radius: 0 0 var(--r) 0;
}
.skip:focus { left: 8px; top: 8px; }

:focus-visible { outline: 2px solid var(--salmon); outline-offset: 3px; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 900px; margin: 0 auto; padding: 0 24px; }

/* ═══════════ icon system ═══════════
   Decorative line icons drawn with CSS masks, so they inherit
   colour from `background` and need no markup beyond a span. */

.ico {
  display: inline-block; width: 1em; height: 1em; flex-shrink: 0;
  background: currentColor;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-position: center;  mask-position: center;
  -webkit-mask-size: contain;     mask-size: contain;
  vertical-align: -0.125em;
}

.ico-wifi      { -webkit-mask-image: var(--i-wifi);      mask-image: var(--i-wifi); }
.ico-bed       { -webkit-mask-image: var(--i-bed);       mask-image: var(--i-bed); }
.ico-bath      { -webkit-mask-image: var(--i-bath);      mask-image: var(--i-bath); }
.ico-kitchen   { -webkit-mask-image: var(--i-kitchen);   mask-image: var(--i-kitchen); }
.ico-laundry   { -webkit-mask-image: var(--i-laundry);   mask-image: var(--i-laundry); }
.ico-anchor    { -webkit-mask-image: var(--i-anchor);    mask-image: var(--i-anchor); }
.ico-boat      { -webkit-mask-image: var(--i-boat);      mask-image: var(--i-boat); }
.ico-fish      { -webkit-mask-image: var(--i-fish);      mask-image: var(--i-fish); }
.ico-kayak     { -webkit-mask-image: var(--i-kayak);     mask-image: var(--i-kayak); }
.ico-bike      { -webkit-mask-image: var(--i-bike);      mask-image: var(--i-bike); }
.ico-snow      { -webkit-mask-image: var(--i-snow);      mask-image: var(--i-snow); }
.ico-box       { -webkit-mask-image: var(--i-box);       mask-image: var(--i-box); }
.ico-pin       { -webkit-mask-image: var(--i-pin);       mask-image: var(--i-pin); }
.ico-phone     { -webkit-mask-image: var(--i-phone);     mask-image: var(--i-phone); }
.ico-mail      { -webkit-mask-image: var(--i-mail);      mask-image: var(--i-mail); }
.ico-users     { -webkit-mask-image: var(--i-users);     mask-image: var(--i-users); }
.ico-ruler     { -webkit-mask-image: var(--i-ruler);     mask-image: var(--i-ruler); }
.ico-walk      { -webkit-mask-image: var(--i-walk);      mask-image: var(--i-walk); }
.ico-key       { -webkit-mask-image: var(--i-key);       mask-image: var(--i-key); }
.ico-clock     { -webkit-mask-image: var(--i-clock);     mask-image: var(--i-clock); }
.ico-mountain  { -webkit-mask-image: var(--i-mountain);  mask-image: var(--i-mountain); }
.ico-waves     { -webkit-mask-image: var(--i-waves);     mask-image: var(--i-waves); }
.ico-plug      { -webkit-mask-image: var(--i-plug);      mask-image: var(--i-plug); }
.ico-forklift  { -webkit-mask-image: var(--i-forklift);  mask-image: var(--i-forklift); }
.ico-smoke     { -webkit-mask-image: var(--i-smoke);     mask-image: var(--i-smoke); }
.ico-star      { -webkit-mask-image: var(--i-star);      mask-image: var(--i-star); }
.ico-arrow     { -webkit-mask-image: var(--i-arrow);     mask-image: var(--i-arrow); }
.ico-check     { -webkit-mask-image: var(--i-check);     mask-image: var(--i-check); }

/* icon artwork — 24×24 line glyphs, URL-encoded as mask sources */
:root {
  --i-wifi: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2.6 9.2a16 16 0 0 1 18.8 0'/%3E%3Cpath d='M5.6 12.8a11 11 0 0 1 12.8 0'/%3E%3Cpath d='M8.7 16.4a6 6 0 0 1 6.6 0'/%3E%3Ccircle cx='12' cy='20' r='1'/%3E%3C/svg%3E");
  --i-bed: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 19v-8h18v8'/%3E%3Cpath d='M3 11V5'/%3E%3Cpath d='M7 11V8h4v3'/%3E%3Cpath d='M13 11V8h4v3'/%3E%3Cpath d='M3 16h18'/%3E%3C/svg%3E");
  --i-bath: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 12h18'/%3E%3Cpath d='M4.5 12v4a3 3 0 0 0 3 3h9a3 3 0 0 0 3-3v-4'/%3E%3Cpath d='M7.5 12V6a2 2 0 0 1 4 0'/%3E%3Cpath d='M8 19l-1 2'/%3E%3Cpath d='M16 19l1 2'/%3E%3C/svg%3E");
  --i-kitchen: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 3v6a2 2 0 0 0 4 0V3'/%3E%3Cpath d='M7 9v12'/%3E%3Cpath d='M17.5 3c-1.7 1.4-2.5 3.3-2.5 5.5 0 1.9.8 3 2.5 3.2V21'/%3E%3C/svg%3E");
  --i-laundry: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='3' width='16' height='18' rx='2'/%3E%3Ccircle cx='12' cy='14' r='4'/%3E%3Ccircle cx='8' cy='6.5' r='.6'/%3E%3Ccircle cx='11' cy='6.5' r='.6'/%3E%3C/svg%3E");
  --i-anchor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='4.5' r='2.2'/%3E%3Cpath d='M12 6.7V21'/%3E%3Cpath d='M7.5 10.5h9'/%3E%3Cpath d='M5 13.5a7 7 0 0 0 14 0'/%3E%3Cpath d='M5 13.5H3'/%3E%3Cpath d='M19 13.5h2'/%3E%3C/svg%3E");
  --i-boat: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 18h20l-2.5 4H4.5z'/%3E%3Cpath d='M12 15V2L5 15z'/%3E%3Cpath d='M14 15h5l-5-9z'/%3E%3C/svg%3E");
  --i-fish: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 12c0 3.3-3.1 6-7 6s-7-2.7-7-6 3.1-6 7-6 7 2.7 7 6z'/%3E%3Cpath d='M16 12l6-4v8z'/%3E%3Ccircle cx='6' cy='10.5' r='.8'/%3E%3C/svg%3E");
  --i-kayak: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2c3.2 4.2 4.4 7.2 4.4 10S15.2 17.8 12 22c-3.2-4.2-4.4-7.2-4.4-10S8.8 6.2 12 2z'/%3E%3Cpath d='M8.4 9h7.2'/%3E%3Cpath d='M8.4 15h7.2'/%3E%3C/svg%3E");
  --i-bike: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='5.5' cy='17' r='3.5'/%3E%3Ccircle cx='18.5' cy='17' r='3.5'/%3E%3Cpath d='M5.5 17l4-9h4'/%3E%3Cpath d='M9.5 8L14 17h4.5'/%3E%3Cpath d='M12 8h4'/%3E%3C/svg%3E");
  --i-snow: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2v20'/%3E%3Cpath d='M4.2 6.5l15.6 11'/%3E%3Cpath d='M19.8 6.5l-15.6 11'/%3E%3Cpath d='M9.5 4.5L12 7l2.5-2.5'/%3E%3Cpath d='M9.5 19.5L12 17l2.5 2.5'/%3E%3C/svg%3E");
  --i-box: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 7l9-4 9 4v10l-9 4-9-4z'/%3E%3Cpath d='M3 7l9 4 9-4'/%3E%3Cpath d='M12 11v10'/%3E%3C/svg%3E");
  --i-pin: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 21s7-6.2 7-11a7 7 0 1 0-14 0c0 4.8 7 11 7 11z'/%3E%3Ccircle cx='12' cy='10' r='2.6'/%3E%3C/svg%3E");
  --i-phone: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 3h4l2 5-2.5 1.5a12 12 0 0 0 5 5L16 12l5 2v4a2 2 0 0 1-2.2 2A17 17 0 0 1 4 5.2 2 2 0 0 1 6 3z'/%3E%3C/svg%3E");
  --i-mail: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2.5' y='5' width='19' height='14' rx='2'/%3E%3Cpath d='M3 7l9 6 9-6'/%3E%3C/svg%3E");
  --i-users: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='8' r='3.4'/%3E%3Cpath d='M2.5 20a6.5 6.5 0 0 1 13 0'/%3E%3Cpath d='M16 5.2a3.4 3.4 0 0 1 0 5.6'/%3E%3Cpath d='M17.5 14.2A6.5 6.5 0 0 1 21.5 20'/%3E%3C/svg%3E");
  --i-ruler: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='8' width='20' height='8' rx='1.5'/%3E%3Cpath d='M7 8v3'/%3E%3Cpath d='M12 8v4'/%3E%3Cpath d='M17 8v3'/%3E%3C/svg%3E");
  --i-walk: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='13' cy='4' r='2'/%3E%3Cpath d='M11 21l2-5-3-3 1-5 3 2 3 1'/%3E%3Cpath d='M10 13l-3 2-1 6'/%3E%3C/svg%3E");
  --i-key: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='7.5' cy='15.5' r='4'/%3E%3Cpath d='M10.5 12.5L20 3'/%3E%3Cpath d='M17 6l2.5 2.5'/%3E%3Cpath d='M14.5 8.5L17 11'/%3E%3C/svg%3E");
  --i-clock: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 6.5V12.5l3.5 2'/%3E%3C/svg%3E");
  --i-mountain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 20l7-12 4.5 7.5'/%3E%3Cpath d='M10.5 20l5-9 6.5 9z'/%3E%3Cpath d='M2 20h20'/%3E%3C/svg%3E");
  --i-waves: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 8c2.5-2.6 5-2.6 7.5 0s5 2.6 7.5 0 3.5-2.2 5-1.2'/%3E%3Cpath d='M2 14c2.5-2.6 5-2.6 7.5 0s5 2.6 7.5 0 3.5-2.2 5-1.2'/%3E%3Cpath d='M2 20c2.5-2.6 5-2.6 7.5 0'/%3E%3C/svg%3E");
  --i-plug: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 2v6'/%3E%3Cpath d='M15 2v6'/%3E%3Cpath d='M6 8h12v3a6 6 0 0 1-12 0z'/%3E%3Cpath d='M12 17v5'/%3E%3C/svg%3E");
  --i-forklift: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3.5 16.5V7.5h7v9'/%3E%3Ccircle cx='6.5' cy='19' r='2.1'/%3E%3Ccircle cx='14' cy='19' r='2.1'/%3E%3Cpath d='M10.5 16.5h1.4'/%3E%3Cpath d='M17.5 4v15'/%3E%3Cpath d='M17.5 15.5h4'/%3E%3C/svg%3E");
  --i-smoke: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M5.6 18.4L18.4 5.6'/%3E%3C/svg%3E");
  --i-star: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black' stroke='black' stroke-width='1.2' stroke-linejoin='round'%3E%3Cpath d='M12 3l2.8 5.7 6.2.9-4.5 4.4 1.1 6.2-5.6-3-5.6 3 1.1-6.2L3 9.6l6.2-.9z'/%3E%3C/svg%3E");
  --i-arrow: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 17L17 7'/%3E%3Cpath d='M8 7h9v9'/%3E%3C/svg%3E");
  --i-check: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12.5l5.5 5.5L20 7'/%3E%3C/svg%3E");
}

/* ═══════════ header ═══════════ */

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--bark-900);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.header-desktop {
  max-width: var(--wrap); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: stretch; justify-content: space-between;
  gap: 20px; min-height: 82px;
}

.brand {
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-decoration: none; padding: 14px 0; flex: 0 1 auto; min-width: 0;
}
.brand-name {
  font-family: var(--display); font-weight: 600; font-size: 22px;
  letter-spacing: 0.01em; line-height: 1; color: #fff; white-space: nowrap;
}
.brand-place {
  font-family: var(--body); font-weight: 400; font-size: 9.5px;
  letter-spacing: 0.32em; color: var(--taupe); margin-top: 8px; white-space: nowrap;
}

.nav-primary {
  display: flex; align-items: stretch; gap: 2px;
  flex-wrap: wrap; justify-content: center;
}
.nav-primary a {
  position: relative; display: flex; align-items: center; padding: 0 13px;
  font-family: var(--body); font-weight: 400; font-size: 11.5px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--on-dark-soft); text-decoration: none; white-space: nowrap;
  transition: color .18s;
}
.nav-primary a:hover { color: #fff; }
.nav-primary a.is-active { color: #fff; }
.nav-primary a.is-active::after {
  content: ""; position: absolute; left: 13px; right: 13px; bottom: 26px;
  height: 1.5px; background: var(--salmon);
}

.book { display: flex; align-items: center; flex-shrink: 0; padding: 14px 0; position: relative; }
.book-toggle {
  display: flex; align-items: center; gap: 10px;
  background: var(--salmon); color: var(--on-salmon); border: none; padding: 14px 22px;
  border-radius: 100px;
  font-family: var(--body); font-weight: 500; font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase; cursor: pointer; white-space: nowrap;
  transition: background .18s, color .18s;
}
.book-toggle:hover { background: var(--salmon-deep); color: #fff; }
.book-toggle span { font-size: 8px; line-height: 1; }

.book-menu {
  position: absolute; top: calc(100% - 6px); right: 0; z-index: 120; min-width: 268px;
  background: var(--paper); border: 1px solid var(--border);
  border-radius: var(--r-md); overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column;
}
.book-menu p {
  padding: 15px 20px 11px;
  font-family: var(--body); font-weight: 500; font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--salmon-deep);
}
.book-menu a {
  padding: 14px 20px; border-top: 1px solid var(--border-soft);
  font-family: var(--display); font-weight: 500; font-size: 17px;
  color: var(--bark-900); text-decoration: none; transition: background .15s;
}
.book-menu a:hover { background: var(--sage); color: var(--bark-950); }

.header-mobile {
  padding: 0 16px; display: none; align-items: center;
  justify-content: space-between; gap: 10px; min-height: 66px;
}
.header-mobile .brand { align-items: flex-start; }
.header-mobile .brand-name { font-size: 17px; }
.mobile-actions { display: flex; align-items: center; gap: 9px; flex-shrink: 0; }
.icon-btn {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; background: var(--salmon); color: var(--on-salmon);
  border-radius: 50%; text-decoration: none; font-size: 17px;
}
.icon-btn:hover { background: var(--salmon-deep); color: #fff; }
.icon-btn .ico { font-size: 19px; }
.menu-toggle {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 5px; width: 44px; height: 44px; background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.32); border-radius: 50%; cursor: pointer; padding: 0;
}
.menu-toggle i { display: block; width: 18px; height: 1.5px; background: #fff; }

.nav-mobile {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 8px 18px 20px; display: flex; flex-direction: column;
}
.nav-mobile a.nav-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 2px; border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  font-family: var(--body); font-weight: 400; font-size: 13px;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--on-dark); text-decoration: none;
}
.nav-mobile a.nav-link:hover { color: #fff; }
.nav-mobile a.nav-link.is-active::after {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--salmon);
}
.nav-mobile .menu-head {
  padding: 20px 2px 8px; font-family: var(--body); font-weight: 500;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--taupe);
}
.nav-mobile a.book-link {
  display: flex; align-items: center; padding: 14px 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  font-family: var(--display); font-weight: 500; font-size: 18px;
  color: #fff; text-decoration: none;
}
.nav-mobile a.office { display: flex; flex-direction: column; gap: 4px; padding: 16px 2px; text-decoration: none; }
.nav-mobile a.office .label {
  font-family: var(--body); font-weight: 400; font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--on-dark-mute);
}
.nav-mobile a.office .num { font-family: var(--display); font-weight: 600; font-size: 19px; color: #fff; }

@media (max-width: 940px) {
  .header-desktop { display: none; }
  .header-mobile { display: flex; }
}
@media (min-width: 941px) {
  .nav-mobile { display: none !important; }
}

main { flex: 1; }

/* ═══════════ type ═══════════ */

/* small letterspaced label — on its own, or as a solid chip */
.kicker {
  font-family: var(--body); font-weight: 400; font-size: 11px;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--taupe);
}
.kicker-rust { color: var(--salmon-deep); }

.eyebrow {
  display: inline-block;
  background: var(--olive); color: var(--paper);
  padding: 7px 15px 6px; border-radius: 2px;
  font-family: var(--body); font-weight: 400; font-size: 10.5px;
  letter-spacing: 0.26em; text-transform: uppercase;
}
.eyebrow-salmon { background: var(--salmon); color: var(--on-salmon); }
.eyebrow-light  { background: rgba(255, 255, 255, 0.14); color: var(--on-dark); }
.eyebrow-sage   { background: var(--sage-deep); color: var(--bark-800); }

.h1-serif,
.h1-display {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(38px, 5.4vw, 68px); line-height: 1.06;
  letter-spacing: -0.015em; color: #fff; max-width: 15em;
}
.h2 {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(29px, 3.6vw, 47px); line-height: 1.14;
  letter-spacing: -0.014em; color: var(--bark-900);
}
.h2-sm {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(23px, 2.5vw, 31px); line-height: 1.2;
  letter-spacing: -0.012em; color: var(--bark-900);
}
.lede { font-size: 17.5px; line-height: 1.72; color: var(--ink-mid); max-width: 40em; font-weight: 300; }
.prose p { font-size: 17px; line-height: 1.76; color: var(--ink); font-weight: 300; }
.prose { display: flex; flex-direction: column; gap: 20px; }

/* centred section opener: chip → headline → lede */
.section-intro {
  max-width: 720px; margin: 0 auto; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.section-intro .lede { max-width: 46em; }
.section-intro + * { margin-top: 52px; }

.page-head {
  background: var(--sage); position: relative;  /* light, so it reads apart from the dark menu bar */
  text-align: center;
}
.page-head .wrap { padding-top: 74px; padding-bottom: 92px; }
.page-head .kicker { display: block; margin-bottom: 20px; }
.page-head .eyebrow { margin-bottom: 24px; }
.page-head .h1-display,
.page-head .h1-serif { margin-left: auto; margin-right: auto; }
.page-head .sub {
  margin: 26px auto 0; max-width: 38em; font-size: 18px; font-weight: 300;
  line-height: 1.72; color: var(--ink-mid);
}
.page-head .breadcrumb,
.page-head .badges,
.page-head .btn-row { justify-content: center; }
.page-head .pull,
.page-head .intro { margin-left: auto; margin-right: auto; }

/* page heads sit on sage: headline and details switch to dark ink. The shared
   dark-context styles (light chip, breadcrumb, on-dark spec row, light outline
   button) stay untouched for the dark sections that still use them. */
.page-head .h1-display,
.page-head .h1-serif { color: var(--bark-900); }
.page-head .eyebrow-light { background: var(--olive); color: var(--paper); }
.page-head .breadcrumb a { color: var(--ink-mid); }
.page-head .breadcrumb a:hover { color: var(--bark-900); }
.page-head .breadcrumb .sep,
.page-head .breadcrumb .here { color: var(--ink-soft); }
.page-head .pull p { color: var(--ink-dark); }
.page-head .spec-row.on-dark li { color: var(--ink-mid); }
.page-head .spec-row.on-dark .ico { color: var(--bark-700); }
.page-head .btn-outline-light { border-color: var(--bark-700); color: var(--bark-900); }
.page-head .btn-outline-light:hover { background: var(--bark-900); border-color: var(--bark-900); color: #fff; }

/* ═══════════ buttons ═══════════ */

.btn {
  display: inline-flex; align-items: center; gap: 9px;
  text-decoration: none; white-space: nowrap;
  font-family: var(--body); font-weight: 500; font-size: 11.5px;
  letter-spacing: 0.18em; text-transform: uppercase; padding: 15px 28px;
  border: none; border-radius: 100px; cursor: pointer;
  transition: background .18s, color .18s, border-color .18s;
}
.btn .ico { font-size: 13px; }
.btn-rust { background: var(--salmon); color: var(--on-salmon); }
.btn-rust:hover { background: var(--salmon-deep); color: #fff; }
.btn-navy { background: var(--bark-900); color: #fff; }
.btn-navy:hover { background: var(--bark-950); color: #fff; }
.btn-outline-navy { border: 1px solid var(--bark-700); color: var(--bark-900); padding: 14px 27px; }
.btn-outline-navy:hover { background: var(--bark-900); color: #fff; border-color: var(--bark-900); }
.btn-outline-light { border: 1px solid rgba(255, 255, 255, 0.42); color: #fff; padding: 14px 27px; }
.btn-outline-light:hover { background: #fff; color: var(--bark-900); }
.btn-ghost-light { border: 1px solid rgba(255, 255, 255, 0.18); color: var(--on-dark-soft); padding: 14px 27px; }
.btn-ghost-light:hover { color: #fff; background: rgba(255, 255, 255, 0.12); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* ═══════════ curved section joins ═══════════
   An ellipse in the section's own colour, rising over whatever sits above it. */

.curve-top { position: relative; }
.curve-top::before {
  content: ""; position: absolute; z-index: 1;
  left: 0; right: 0; top: -58px; height: 60px;
  background: inherit;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  pointer-events: none;
}
.curve-top > * { position: relative; z-index: 2; }

/* ═══════════ hero ═══════════ */

.hero {
  position: relative; background: var(--bark-950);
  min-height: min(78vh, 720px);
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
  padding: 110px 24px 130px;
}
.hero-art { position: absolute; inset: 0; }
.hero-art img { width: 100%; height: 100%; object-fit: cover; }
.hero-art::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 72% at 50% 52%, rgba(28, 21, 15, 0.72) 0%, rgba(28, 21, 15, 0.36) 62%, rgba(28, 21, 15, 0.18) 100%),
    linear-gradient(180deg, rgba(28, 21, 15, 0.55) 0%, rgba(28, 21, 15, 0.32) 30%, rgba(28, 21, 15, 0.50) 72%, rgba(28, 21, 15, 0.82) 100%);
}
.hero-copy {
  position: relative; z-index: 3; max-width: 880px;
  display: flex; flex-direction: column; align-items: center; gap: 24px;
}
.hero-copy .kicker { color: var(--taupe-pale); letter-spacing: 0.34em; }

/* the hero kicker doubles as quick links to the three services */
.hero-copy .kicker a {
  position: relative; display: inline-block;
  padding: 6px 0; margin: -6px 0;  /* taller hit area without moving the layout */
  color: inherit; text-decoration: none;
  transition: color .18s;
}
.hero-copy .kicker a::after {
  content: ""; position: absolute; left: 0; bottom: 1px; height: 1.5px;
  right: 0.34em;  /* stop at the last letter, not the trailing letter-spacing */
  background: var(--salmon);
  transform: scaleX(0); transform-origin: left; transition: transform .22s ease;
}
.hero-copy .kicker a:hover,
.hero-copy .kicker a:focus-visible { color: #fff; }
.hero-copy .kicker a:hover::after,
.hero-copy .kicker a:focus-visible::after { transform: scaleX(1); }
.hero-copy .h1-display,
.hero-copy .h1-serif {
  text-shadow: 0 2px 30px rgba(20, 14, 10, 0.4);
  max-width: 16em;
}
.hero-sub {
  max-width: 26em; font-family: var(--display); font-style: italic; font-weight: 400;
  font-size: clamp(19px, 1.7vw, 23px); line-height: 1.5;
  color: #fff; text-shadow: 0 1px 20px rgba(20, 14, 10, 0.6);
}
.hero .btn-row { justify-content: center; margin-top: 6px; }

/* guest-rating flourish under the hero buttons — links down to the guest book */
.hero-rating {
  display: flex; align-items: center; gap: 10px;
  margin: 4px 0 -6px; padding: 6px 0;  /* taller hit area; the text stays where it was */
  font-family: var(--body); font-size: 11.5px; font-weight: 400;
  letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255, 255, 255, 0.88);
  text-decoration: none; text-shadow: 0 1px 14px rgba(20, 14, 10, 0.6);
  transition: color .18s;
}
.hero-rating .stars { display: flex; gap: 3px; color: var(--salmon); }
.hero-rating .stars .ico { font-size: 12px; }
.hero-rating-text { position: relative; }
.hero-rating-text::after {
  content: ""; position: absolute; left: 0; bottom: -5px; height: 1.5px;
  right: 0.2em;  /* stop at the last letter, not the trailing letter-spacing */
  background: var(--salmon);
  transform: scaleX(0); transform-origin: left; transition: transform .22s ease;
}
.hero-rating:hover,
.hero-rating:focus-visible { color: #fff; }
.hero-rating:hover .hero-rating-text::after,
.hero-rating:focus-visible .hero-rating-text::after { transform: scaleX(1); }

/* in-page jump target: land with the section's top edge just under the sticky header */
#guest-book { scroll-margin-top: 83px; }
@media (max-width: 940px) { #guest-book { scroll-margin-top: 67px; } }

.pull {
  margin: 4px 0 0; max-width: 34em;
  border-left: 2px solid var(--salmon); padding: 4px 0 4px 22px; text-align: left;
}
.pull p { font-size: 20px; line-height: 1.58; color: var(--on-dark); font-family: var(--display); font-style: italic; font-weight: 400; }
.pull footer {
  margin-top: 12px; font-family: var(--body); font-weight: 400; font-size: 10.5px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--taupe);
}

/* ═══════════ icon cards — the amenity grid ═══════════ */

/* three cards: one row from 900px up; below that a single centred column, so tablets never get a lone 2 + 1 */
.icon-grid {
  display: grid; grid-template-columns: 1fr; gap: 20px;
  max-width: 560px; margin-left: auto; margin-right: auto;
}
@media (min-width: 900px) { .icon-grid { grid-template-columns: repeat(3, 1fr); max-width: none; } }
.icon-card {
  background: var(--paper); border: 1px solid var(--border-soft); border-radius: var(--r-md);
  padding: 38px 30px 34px; text-align: center;
  display: flex; flex-direction: column; align-items: center;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.icon-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--border-warm); }
.band-sage .icon-card,
.band-sage .amenity { background: var(--white); }
.icon-card .ico { font-size: 32px; color: var(--bark-500); margin-bottom: 20px; }
.icon-card h3 {
  font-family: var(--display); font-weight: 600; font-size: 20px;
  line-height: 1.25; color: var(--bark-900);
}
.icon-card p { margin-top: 11px; font-size: 15.5px; font-weight: 300; line-height: 1.64; color: var(--ink-soft); }

/* compact inline icon+label row, e.g. under a unit heading */
.spec-row {
  list-style: none; padding: 0; display: flex; flex-wrap: wrap;
  gap: 10px 26px; align-items: center;
}
.spec-row li {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--body); font-weight: 400; font-size: 12px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft);
}
.spec-row .ico { font-size: 17px; color: var(--salmon); }
.spec-row.on-dark li { color: var(--on-dark-soft); }
.spec-row.on-dark .ico { color: var(--taupe); }
.spec-row.center { justify-content: center; }

/* ═══════════ card grids + unit cards ═══════════ */

.card-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(290px, 100%), 1fr));
  gap: 20px;
}

/* three room cards: one row from 900px up; below that a single centred column, so tablets never get a lone 2 + 1 */
.unit-grid {
  display: grid; grid-template-columns: 1fr; gap: 24px;
  max-width: 560px; margin-left: auto; margin-right: auto;
}
@media (min-width: 900px) { .unit-grid { grid-template-columns: repeat(3, 1fr); max-width: none; } }
.unit-card {
  display: flex; flex-direction: column; background: var(--paper);
  border: 1px solid var(--border-soft); border-radius: var(--r-md); overflow: hidden;
  text-decoration: none; min-width: 0;
  transition: transform .2s, box-shadow .2s;
}
.unit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.unit-card img { display: block; width: 100%; height: auto; aspect-ratio: 4/3; object-fit: cover; }
.unit-card-body {
  padding: 28px 28px 30px; display: flex; flex-direction: column; flex: 1;
  align-items: center; text-align: center;
}
.unit-card-name {
  font-family: var(--display); font-weight: 500; font-size: 26px;
  letter-spacing: -0.01em; color: var(--bark-900); line-height: 1.2;
}
.unit-card-meta {
  margin-top: 10px; font-family: var(--body); font-weight: 400; font-size: 10.5px;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--salmon-deep);
}
.unit-card-body p { margin-top: 15px; font-size: 15.5px; font-weight: 300; line-height: 1.66; color: var(--ink-soft); flex: 1; }
.unit-card-cta {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 24px; font-family: var(--body); font-weight: 500; font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--bark-900);
  border: 1px solid var(--border-warm); border-radius: 100px; padding: 11px 22px;
  transition: background .18s, color .18s, border-color .18s;
}
.unit-card:hover .unit-card-cta { background: var(--salmon); color: var(--on-salmon); border-color: var(--salmon); }

/* ═══════════ reviews ═══════════ */

.reviews { background: var(--bark-900); position: relative; }
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 22px; }
.review {
  margin: 0; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--r-md); padding: 34px 30px 30px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.review .stars { display: flex; gap: 4px; color: var(--salmon); margin-bottom: 18px; }
.review .stars .ico { font-size: 14px; }
.review p {
  font-family: var(--display); font-style: italic; font-weight: 400;
  font-size: 18px; line-height: 1.62; color: var(--on-dark); flex: 1;
}
.review footer {
  margin-top: 20px; padding-top: 16px; width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-family: var(--body); font-weight: 400; font-size: 10.5px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--taupe);
}

/* ═══════════ splits + offset image stacks ═══════════ */

.split { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr)); gap: 60px; align-items: start; }
.split-center { align-items: center; }

.frame {
  border: none; background: var(--taupe-pale); border-radius: var(--r-md); overflow: hidden;
}
.frame img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* two images, the smaller overlapping the larger — Cedar River's collage */
.stack-offset { position: relative; padding: 0 0 68px 0; }
.stack-offset .stack-back {
  border-radius: var(--r-md); overflow: hidden; background: var(--taupe-pale);
  margin-left: 14%;
}
.stack-offset .stack-back img { display: block; width: 100%; height: 340px; object-fit: cover; }
.stack-offset .stack-front {
  position: absolute; left: 0; bottom: 0; width: 52%;
  border: 8px solid var(--cream); border-radius: var(--r-md); overflow: hidden;
  box-shadow: var(--shadow);
}
.stack-offset .stack-front img { display: block; width: 100%; height: 210px; object-fit: cover; }

/* a tinted panel sitting behind a card, offset — image 1's layered block */
.offset-card { position: relative; }
.offset-card::before {
  content: ""; position: absolute; inset: 22px -22px -22px 22px;
  background: var(--taupe); border-radius: var(--r-md); z-index: 0;
}
.offset-card > * { position: relative; z-index: 1; }

.rows {
  list-style: none; padding: 0; display: grid; gap: 0;
}
.rows > li { background: transparent; padding: 17px 4px; border-bottom: 1px solid var(--border); }
.rows > li:first-child { border-top: 1px solid var(--border); }
.row-between { display: flex; justify-content: space-between; gap: 20px; align-items: baseline; }
.row-place { font-size: 16px; font-weight: 300; color: var(--ink-dark); display: flex; align-items: center; gap: 11px; }
.row-place .ico { font-size: 17px; color: var(--bark-500); flex-shrink: 0; }
.row-time {
  font-family: var(--body); font-weight: 500; font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--salmon-deep);
  text-align: right; flex-shrink: 0;
}

/* directions card */
.map-card {
  display: flex; flex-direction: column; justify-content: space-between; align-items: center;
  text-align: center; gap: 24px; background: var(--bark-900); border-radius: var(--r-md);
  padding: 40px 34px; text-decoration: none; min-height: 280px;
  transition: background .2s;
}
.map-card:hover { background: var(--bark-800); }
.map-card > div { display: flex; flex-direction: column; align-items: center; }
.map-card .ico { font-size: 30px; color: var(--taupe); margin-bottom: 18px; }
.map-card .kicker { color: var(--taupe); }
.map-card address {
  font-style: normal; margin-top: 14px;
  font-family: var(--display); font-weight: 500;
  font-size: clamp(23px, 2.4vw, 31px); line-height: 1.28; color: #fff;
}
.map-card .hint { font-size: 15px; font-weight: 300; line-height: 1.66; color: var(--on-dark-soft); margin-top: 14px; max-width: 26em; }
.map-card .go {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--body); font-weight: 500; font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase; color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.38); border-radius: 100px; padding: 11px 22px;
  transition: background .18s, color .18s;
}
.map-card:hover .go { background: #fff; color: var(--bark-900); }

/* ═══════════ unit + lodging pages ═══════════ */

.breadcrumb {
  display: flex; flex-wrap: wrap; gap: 11px; align-items: center;
  font-family: var(--body); font-weight: 400; font-size: 10.5px;
  letter-spacing: 0.22em; text-transform: uppercase;
}
.breadcrumb a { color: var(--taupe); text-decoration: none; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { color: var(--bark-500); }
.breadcrumb .here { color: var(--on-dark-mute); }

.unit-head .h1-display { font-size: clamp(34px, 4.8vw, 62px); line-height: 1.06; max-width: 16em; margin-top: 26px; }
.unit-head .pull { margin-top: 26px; max-width: 36em; text-align: left; }
.unit-head .pull p { font-size: 19px; line-height: 1.58; }
.unit-head .intro { margin-top: 24px; max-width: 38em; font-size: 18px; font-weight: 300; line-height: 1.72; color: var(--ink-mid); }

.badges { display: flex; flex-wrap: wrap; gap: 9px; align-items: center; margin-top: 26px; }
.badge {
  font-family: var(--body); font-weight: 400; font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase; padding: 7px 13px; border-radius: 100px;
}
.badge-rust { background: var(--salmon); color: var(--on-salmon); }
.badge-tan { background: var(--taupe); color: var(--bark-900); }
.badge-navy { background: var(--bark-900); color: #fff; }
.badge-outline-light { border: 1px solid rgba(255, 255, 255, 0.34); color: var(--on-dark-soft); padding: 6px 13px; }
.badge-outline { border: 1px solid var(--border-warm); color: var(--ink-soft); padding: 6px 13px; }

.section-head {
  display: flex; flex-wrap: wrap; gap: 14px; align-items: baseline;
  justify-content: space-between; border-bottom: 1px solid var(--border); padding-bottom: 16px;
}
.section-head .meta {
  font-family: var(--body); font-weight: 400; font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--salmon-deep);
}

.photo-grid { margin-top: 28px; display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 18px; }
.photo-grid figure { margin: 0; }
.photo-grid img {
  display: block; cursor: zoom-in; width: 100%; height: 300px;
  object-fit: cover; border-radius: var(--r-md); background: var(--taupe-pale);
  transition: opacity .2s;
}
.photo-grid img:hover { opacity: 0.9; }
.caption { padding: 12px 4px 0; font-size: 14px; font-weight: 300; line-height: 1.55; color: var(--ink-light); }

.facts { background: var(--paper); border: 1px solid var(--border-soft); border-radius: var(--r-md); padding: 30px 30px 26px; }
.facts h3 {
  font-family: var(--body); font-weight: 500; font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--salmon-deep);
}
.facts dl { margin: 18px 0 0; display: grid; grid-template-columns: auto 1fr; gap: 13px 20px; font-size: 15.5px; }
.facts dt { font-family: var(--body); font-weight: 500; color: var(--bark-900); }
.facts dd { margin: 0; color: var(--ink-mid); font-weight: 300; }

.checks {
  list-style: none; padding: 0; display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 12px 26px;
}
.checks li { font-size: 15.5px; font-weight: 300; line-height: 1.5; color: var(--ink-mid); display: flex; gap: 11px; align-items: flex-start; }
.checks li::before {
  content: ""; flex-shrink: 0; width: 1em; height: 1em; margin-top: 0.22em;
  background: var(--salmon-deep);
  -webkit-mask: var(--i-check) center / contain no-repeat;
  mask: var(--i-check) center / contain no-repeat;
}

.quote-block {
  margin: 26px 0 0; border-left: 2px solid var(--salmon); padding: 4px 0 4px 22px;
}
.quote-block p {
  font-family: var(--display); font-style: italic; font-weight: 400;
  font-size: 19px; line-height: 1.58; color: var(--ink-dark);
}
.quote-block footer {
  margin-top: 12px; font-family: var(--body); font-weight: 400; font-size: 10.5px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-light);
}

.cta-band { background: var(--sage); position: relative; }  /* light, so it never sits dark-on-dark against the footer */
.cta-band .wrap {
  padding-top: 78px; padding-bottom: 78px; display: flex; flex-direction: column;
  gap: 26px; align-items: center; text-align: center;
}
.cta-band h2 {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(27px, 3.2vw, 40px); line-height: 1.16;
  letter-spacing: -0.014em; color: var(--bark-900); max-width: 18em;
}
.cta-band p { max-width: 34em; font-size: 17px; font-weight: 300; line-height: 1.7; color: var(--ink-mid); }
.cta-band .btn-row { justify-content: center; }
.cta-band .btn-outline-light { border-color: var(--bark-700); color: var(--bark-900); }
.cta-band .btn-outline-light:hover { background: var(--bark-900); border-color: var(--bark-900); color: #fff; }
.cta-band .btn-ghost-light { border-color: rgba(51, 41, 31, 0.28); color: var(--ink-mid); }
.cta-band .btn-ghost-light:hover { background: rgba(51, 41, 31, 0.08); border-color: rgba(51, 41, 31, 0.4); color: var(--bark-900); }

.unit-row {
  background: var(--paper); border: 1px solid var(--border-soft);
  border-radius: var(--r-md); overflow: hidden; display: flex; flex-wrap: wrap;
}
.unit-row-photo {
  flex: 1 1 320px; min-width: 0; align-self: stretch;
  min-height: 300px; position: relative; background: var(--taupe-pale); display: block;
  cursor: zoom-in; border: none; padding: 0; width: 100%;
}
.unit-row-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.unit-row-photo .count {
  position: absolute; left: 16px; bottom: 16px; background: rgba(36, 28, 21, 0.82); color: #fff;
  font-family: var(--body); font-weight: 400; font-size: 10px; border-radius: 100px;
  letter-spacing: 0.18em; text-transform: uppercase; padding: 9px 16px;
}
.unit-row-body { flex: 1.25 1 380px; padding: 44px 44px 40px; }
.unit-row-body h2 {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(28px, 2.8vw, 38px); letter-spacing: -0.014em;
  color: var(--bark-900); margin-top: 18px; line-height: 1.14;
}
.unit-row-body h2 a { color: var(--bark-900); text-decoration: none; }
.unit-row-body h2 a:hover { color: var(--salmon-deep); }
.unit-row-body .body { margin-top: 16px; font-size: 16.5px; font-weight: 300; line-height: 1.72; color: var(--ink); }
.unit-row-body .checks { margin-top: 24px; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 10px 24px; }
.unit-row-body .checks li { font-size: 15px; line-height: 1.45; }
.unit-row-body .quote-block { margin-top: 28px; padding-left: 20px; }
.unit-row-body .quote-block p { font-size: 17px; line-height: 1.58; }
.unit-row-body .quote-block footer { font-size: 10.5px; margin-top: 10px; }
.unit-row-body .btn-row { margin-top: 32px; }

/* ═══════════ tables ═══════════ */

.table-scroll {
  overflow-x: auto; border: 1px solid var(--border-soft);
  border-radius: var(--r-md); background: var(--paper);
}
table.data { width: 100%; border-collapse: collapse; min-width: 640px; }
table.data caption {
  text-align: left; padding: 20px 24px;
  font-family: var(--body); font-weight: 500; font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--salmon-deep);
  background: var(--paper); border-bottom: 1px solid var(--border-soft);
}
table.data thead tr { background: var(--bark-900); }
table.data th[scope="col"] {
  text-align: left; padding: 16px 24px;
  font-family: var(--body); font-weight: 400; font-size: 10.5px;
  letter-spacing: 0.2em; text-transform: uppercase; color: #fff;
}
table.data th[scope="col"]:first-child { color: var(--taupe); }
table.data tbody tr { border-top: 1px solid var(--border-soft); }
table.data tbody tr:nth-child(even) { background: rgba(227, 228, 207, 0.28); }
table.data tbody th[scope="row"] {
  text-align: left; padding: 18px 24px;
  font-family: var(--display); font-weight: 600; font-size: 17px; color: var(--bark-900);
}
table.data td { padding: 18px 24px; font-size: 15.5px; font-weight: 300; color: var(--ink); }
table.data.storage tbody th[scope="row"] { font-size: 20px; padding: 19px 24px; }
table.data.storage td { padding: 19px 24px; font-size: 16px; }
.pill {
  display: inline-block;
  font-family: var(--body); font-weight: 400; font-size: 10.5px;
  letter-spacing: 0.16em; text-transform: uppercase; border-radius: 100px;
  background: var(--salmon); color: var(--on-salmon); padding: 7px 14px;
}

/* ═══════════ amenity cards ═══════════ */

.amenity {
  background: var(--paper); border: 1px solid var(--border-soft);
  border-radius: var(--r-md); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.amenity:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.amenity-art { height: 220px; background: var(--taupe-pale); }
.amenity-art img { display: block; width: 100%; height: 100%; object-fit: cover; }
.amenity-body { padding: 26px 28px 30px; text-align: center; display: flex; flex-direction: column; align-items: center; }
.amenity-body .ico { font-size: 28px; color: var(--bark-500); margin-bottom: 14px; }
.amenity-body h3 {
  font-family: var(--display); font-weight: 600; font-size: 20px;
  letter-spacing: -0.005em; color: var(--bark-900); line-height: 1.28;
}
.amenity-body p { margin-top: 11px; font-size: 15.5px; font-weight: 300; line-height: 1.66; color: var(--ink-soft); }

/* three photos: one row from 900px up; below that a single centred column, so tablets never get a lone 2 + 1 */
.figure-row {
  display: grid; grid-template-columns: 1fr; gap: 18px;
  max-width: 560px; margin-left: auto; margin-right: auto;
}
@media (min-width: 900px) { .figure-row { grid-template-columns: repeat(3, 1fr); max-width: none; } }
.figure-row figure { margin: 0; }
.figure-row img {
  display: block; width: 100%; height: 250px; object-fit: cover;
  border-radius: var(--r-md); background: var(--taupe-pale);
}

.note {
  margin-top: 30px; padding: 26px 28px; background: var(--sage);
  border-radius: var(--r-md); border: none;
}
.note .label {
  font-family: var(--body); font-weight: 500; font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--olive-deep);
}
.note p { margin-top: 12px; font-size: 16px; font-weight: 300; line-height: 1.7; color: var(--ink-dark); }
.note strong { color: var(--bark-900); font-weight: 500; }

.aside-rule { margin-top: 30px; border-left: 2px solid var(--salmon); padding: 4px 0 4px 22px; }
.aside-rule p {
  font-family: var(--display); font-style: italic; font-weight: 400;
  font-size: 18px; line-height: 1.62; color: var(--ink-dark);
}

.term-list > li { padding: 21px 4px; }
.term-list .t { font-family: var(--display); font-weight: 600; font-size: 18px; color: var(--bark-900); }
.term-list .d { margin-top: 7px; font-size: 15.5px; font-weight: 300; line-height: 1.66; color: var(--ink-mid); }

.tile-list {
  list-style: none; padding: 0; display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 12px;
}
.tile-list li {
  background: var(--paper); border: 1px solid var(--border-soft); border-radius: var(--r);
  padding: 20px 18px; text-align: center;
  font-family: var(--body); font-weight: 400; font-size: 14px;
  line-height: 1.45; color: var(--bark-900);
}

/* ═══════════ forms ═══════════ */

form.inquiry {
  background: var(--bark-900); border-radius: var(--r-md);
  padding: 38px 36px 36px; display: flex; flex-direction: column; gap: 17px;
}
form.inquiry > p.form-title {
  font-family: var(--body); font-weight: 400; font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--taupe);
}
form.inquiry label { display: flex; flex-direction: column; gap: 8px; }
form.inquiry label > span, form.inquiry legend {
  font-family: var(--body); font-weight: 400; font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--on-dark-mute);
}
form.inquiry input[type="text"], form.inquiry input[type="tel"],
form.inquiry input[type="email"], form.inquiry textarea, form.inquiry select {
  background: var(--paper); border: 1px solid transparent; border-radius: var(--r);
  padding: 13px 15px; font-size: 15.5px; font-weight: 300; color: var(--bark-900);
}
form.inquiry input:focus, form.inquiry textarea:focus, form.inquiry select:focus {
  outline: none; border-color: var(--salmon);
}
form.inquiry textarea { resize: vertical; }
form.inquiry .field-pair { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 16px; }
form.inquiry fieldset { border: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
form.inquiry legend { padding: 0; }
form.inquiry .checks-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 9px 20px; margin-top: 4px;
}
form.inquiry .check {
  display: flex; align-items: center; gap: 11px; font-size: 15.5px; font-weight: 300;
  color: var(--on-dark); cursor: pointer; flex-direction: row;
}
form.inquiry .check input { width: 17px; height: 17px; accent-color: var(--salmon); flex-shrink: 0; }
form.inquiry button {
  margin-top: 8px; align-self: flex-start;
  background: var(--salmon); color: var(--on-salmon); border: none; border-radius: 100px; padding: 16px 32px;
  font-family: var(--body); font-weight: 500; font-size: 11.5px;
  letter-spacing: 0.18em; text-transform: uppercase; cursor: pointer;
  transition: background .18s, color .18s;
}
form.inquiry button:hover { background: var(--salmon-deep); color: #fff; }
form.inquiry .fine { font-size: 13px; font-weight: 300; line-height: 1.6; color: var(--on-dark-mute); }
form.inquiry .fine a { color: var(--taupe); }

/* ═══════════ team + info ═══════════ */

.stack-list { display: flex; flex-direction: column; gap: 20px; }
.person {
  background: var(--paper); border: 1px solid var(--border-soft); border-radius: var(--r-md);
  padding: 38px 40px; display: flex; flex-wrap: wrap; gap: 40px; align-items: flex-start;
}
.person-id { flex: 1 1 220px; }
.person-where {
  font-family: var(--body); font-weight: 400; font-size: 10px;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--salmon-deep);
}
.person-id h3 {
  font-family: var(--display); font-weight: 500; font-size: 27px;
  letter-spacing: -0.012em; color: var(--bark-900); margin-top: 12px; line-height: 1.15;
}
.person-role { margin-top: 9px; font-size: 15px; line-height: 1.5; color: var(--ink-soft); font-weight: 400; }
.person-tel { margin-top: 16px; }
.person-tel a { font-family: var(--body); font-weight: 500; font-size: 16px; }
.person-mail { margin-top: 7px; }
.person-mail a { font-size: 15px; font-weight: 300; word-break: break-word; }
.person-bio { flex: 2.2 1 340px; font-size: 16.5px; font-weight: 300; line-height: 1.76; color: var(--ink); }

/* three cards: one row from 900px up; below that a single centred column, so tablets never get a lone 2 + 1 */
.info-grid {
  display: grid; grid-template-columns: 1fr; gap: 20px;
  max-width: 560px; margin-left: auto; margin-right: auto;
}
@media (min-width: 900px) { .info-grid { grid-template-columns: repeat(3, 1fr); max-width: none; } }
.info-card {
  background: var(--paper); border: 1px solid var(--border-soft); border-radius: var(--r-md);
  padding: 34px 32px; text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.info-card .ico { font-size: 28px; color: var(--bark-500); margin-bottom: 16px; }
.info-card h3 { font-family: var(--display); font-weight: 500; font-size: 22px; color: var(--bark-900); line-height: 1.25; }
.info-card p { margin-top: 13px; font-size: 15.5px; font-weight: 300; line-height: 1.7; color: var(--ink-mid); }
.info-card strong { color: var(--bark-900); font-weight: 500; }
.info-card .arrow-link {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 20px;
  font-family: var(--body); font-weight: 500; font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase; text-decoration: none;
  color: var(--bark-900); border: 1px solid var(--border-warm); border-radius: 100px; padding: 10px 20px;
  transition: background .18s, color .18s, border-color .18s;
}
.info-card .arrow-link:hover { background: var(--bark-900); color: #fff; border-color: var(--bark-900); }
.info-card .tel { margin-top: 18px; }
.info-card .tel a { font-family: var(--body); font-weight: 500; font-size: 17px; }

.contact-address { font-style: normal; margin-top: 22px; font-size: 17.5px; font-weight: 300; line-height: 1.8; color: var(--ink-dark); }
.contact-address a.strong { font-family: var(--body); font-weight: 500; }
.sub-head {
  font-family: var(--body); font-weight: 500; font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--salmon-deep); margin-top: 42px;
}
.rows.tight > li { padding: 15px 4px; }
.rows .who { display: block; font-family: var(--display); font-weight: 600; font-size: 17px; color: var(--bark-900); }
.rows .whom { display: block; font-size: 14.5px; font-weight: 300; color: var(--ink-light); margin-top: 4px; }
.rows .num { font-family: var(--body); font-weight: 500; font-size: 16px; white-space: nowrap; }
.rows .hours { font-family: var(--body); font-weight: 500; font-size: 13.5px; color: var(--salmon-deep); text-align: right; }

/* ═══════════ FAQ ═══════════ */

.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-list details {
  background: var(--paper); border: 1px solid var(--border-soft);
  border-radius: var(--r-md); padding: 0 26px; transition: border-color .18s, box-shadow .18s;
}
.faq-list details[open] { border-color: var(--border-warm); box-shadow: var(--shadow-sm); }
.faq-list summary {
  cursor: pointer; padding: 24px 0;
  font-family: var(--display); font-weight: 500; font-size: 19px; line-height: 1.4;
  color: var(--bark-900); list-style: none; display: flex; gap: 18px; align-items: center;
  justify-content: space-between;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: ""; flex-shrink: 0; width: 13px; height: 13px;
  background: var(--salmon);
  -webkit-mask: var(--i-arrow) center / contain no-repeat;
  mask: var(--i-arrow) center / contain no-repeat;
  transform: rotate(45deg); transition: transform .2s;
}
.faq-list details[open] > summary::after { transform: rotate(135deg); }
.faq-list summary:hover { color: var(--salmon-deep); }
.faq-body { padding: 0 0 26px; }
.faq-body > p { font-size: 16.5px; font-weight: 300; line-height: 1.76; color: var(--ink); max-width: 52em; }
.faq-answer { padding: 0 0 26px; font-size: 16.5px; font-weight: 300; line-height: 1.76; color: var(--ink); }
.faq-blurb { font-size: 16px; font-weight: 300; line-height: 1.7; color: var(--ink-soft); max-width: 52em; }

.link-list {
  list-style: none; padding: 0; margin-top: 20px;
  display: flex; flex-direction: column; gap: 10px;
}
.link-list li {
  background: var(--paper); border: 1px solid var(--border-soft);
  border-radius: var(--r); padding: 18px 20px;
}
.link-list .head { display: flex; flex-wrap: wrap; gap: 6px 14px; align-items: baseline; }
.link-list .name { font-family: var(--display); font-weight: 600; font-size: 17px; color: var(--bark-900); }
.link-list .tel { font-family: var(--body); font-weight: 400; font-size: 14px; letter-spacing: 0.03em; white-space: nowrap; }
.link-list .web {
  font-family: var(--body); font-weight: 400; font-size: 10.5px;
  letter-spacing: 0.16em; text-transform: uppercase;
}
.link-list .detail { margin-top: 7px; font-size: 15.5px; font-weight: 300; line-height: 1.66; color: var(--ink-mid); max-width: 52em; }
.nested-list { margin-top: 22px; display: flex; flex-direction: column; gap: 10px; }

.panel {
  background: var(--bark-900); border-radius: var(--r-md); padding: 40px 38px;
  text-align: center; display: flex; flex-direction: column; align-items: center;
}
.panel .ico { font-size: 30px; color: var(--taupe); margin-bottom: 18px; }
.panel h2 { font-family: var(--display); font-weight: 500; font-size: 28px; letter-spacing: -0.012em; color: #fff; line-height: 1.2; }
.panel p { margin-top: 14px; font-size: 16.5px; font-weight: 300; line-height: 1.7; color: var(--on-dark-soft); }
.panel p a { color: var(--taupe); font-weight: 400; }  /* text links only — must not recolour the .btn links */
.panel .btn-row { margin-top: 26px; justify-content: center; }

/* ═══════════ also-on-the-dock band ═══════════
   Storage and moorage usually run full, so the home page gives them one
   slim row above the footer rather than a full section. */

.also-band { background: var(--sage); }
.also-inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 20px 40px; padding-top: 36px; padding-bottom: 36px;
}
.also-lead { display: flex; align-items: center; gap: 22px; flex: 1 1 440px; }
.also-icons { display: flex; gap: 10px; flex-shrink: 0; color: var(--bark-600); font-size: 28px; }
.also-title {
  font-family: var(--display); font-weight: 500; font-size: clamp(20px, 2vw, 25px);
  line-height: 1.25; letter-spacing: -0.01em; color: var(--bark-900);
}
.also-note { margin-top: 6px; font-size: 15px; font-weight: 300; line-height: 1.6; color: var(--ink-mid); }
.also-links { display: flex; flex-wrap: wrap; gap: 10px; }
.also-links a {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--body); font-weight: 500; font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase; text-decoration: none;
  color: var(--bark-900); border: 1px solid var(--bark-500); border-radius: 100px; padding: 11px 20px;
  transition: background .18s, color .18s, border-color .18s;
}
.also-links a .ico { font-size: 12px; }
.also-links a:hover { background: var(--bark-900); color: #fff; border-color: var(--bark-900); }

@media (max-width: 780px) {
  .also-inner { flex-direction: column; text-align: center; padding-top: 40px; padding-bottom: 42px; }
  .also-lead { flex-direction: column; gap: 14px; flex: none; }
  .also-links { justify-content: center; }
}

/* ═══════════ footer ═══════════ */

.site-footer { background: var(--bark-950); color: var(--on-dark-mute); }
/* three columns — brand & address / page links / contact — on fixed layouts,
   so no column is left alone on a row and short columns don't strand empty space */
.footer-grid {
  max-width: var(--wrap); margin: 0 auto; padding: 60px 24px 36px;
  display: grid; gap: 36px 48px;
  grid-template-columns: 1fr;
  grid-template-areas: "brand" "pages" "contact";
}
.footer-grid > :nth-child(1) { grid-area: brand; }
.footer-grid > :nth-child(2) { grid-area: pages; }
.footer-grid > :nth-child(3) { grid-area: contact; }
@media (min-width: 700px) {
  .footer-grid { grid-template-columns: 1fr 1fr; grid-template-areas: "brand contact" "pages pages"; }
}
@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 1.1fr 1fr 1.2fr; grid-template-areas: "brand pages contact"; padding-top: 68px; }
}
.footer-brand { font-family: var(--display); font-weight: 500; font-size: 23px; letter-spacing: 0.01em; color: #fff; }
.footer-place {
  font-family: var(--body); font-weight: 400; font-size: 9.5px;
  letter-spacing: 0.32em; color: var(--taupe); margin-top: 9px;
}
.footer-grid p.blurb { margin-top: 22px; font-size: 15px; font-weight: 300; line-height: 1.75; }
.footer-head {
  font-family: var(--body); font-weight: 400; font-size: 10px;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--taupe);
}
.footer-head.footer-sub { margin-top: 26px; }
.footer-grid address { font-style: normal; margin-top: 16px; font-size: 15px; font-weight: 300; line-height: 1.8; }
.footer-links {
  list-style: none; padding: 0; margin-top: 16px;
  display: grid; grid-auto-flow: column; grid-template-rows: repeat(5, auto);
  justify-content: start; gap: 10px 36px;
}
@media (min-width: 700px) and (max-width: 1023px) { .footer-links { grid-template-rows: repeat(2, auto); gap: 10px 28px; } }
.footer-links a { font-size: 15px; font-weight: 300; color: var(--on-dark-soft); text-decoration: none; transition: color .15s; }
.footer-links a:hover { color: #fff; }
.footer-contact { margin-top: 16px; font-size: 15px; font-weight: 300; line-height: 1.8; }
.footer-contact strong { color: #fff; font-weight: 500; }
.footer-contact a { color: #fff; }
.footer-note { margin-top: 18px; font-size: 14px; font-weight: 300; line-height: 1.75; }
.footer-bar {
  max-width: var(--wrap); margin: 0 auto; padding: 22px 24px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: baseline;
}
.footer-bar p { font-size: 13px; font-weight: 300; }

/* ═══════════ lightbox ═══════════ */

.lightbox {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(24, 18, 13, 0.97); display: flex; flex-direction: column;
}
.lightbox[hidden] { display: none; }
.lb-top {
  display: flex; flex-wrap: wrap; gap: 14px; align-items: center;
  justify-content: space-between; padding: 16px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.lb-title {
  font-family: var(--body); font-weight: 400; font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--taupe);
}
.lb-top .right { display: flex; align-items: center; gap: 20px; }
.lb-pos { font-family: var(--body); font-weight: 400; font-size: 12px; letter-spacing: 0.14em; color: var(--on-dark-mute); }
.lb-close {
  background: var(--salmon); color: var(--on-salmon); border: none; border-radius: 100px; padding: 11px 22px;
  font-family: var(--body); font-weight: 500; font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase; cursor: pointer;
  transition: background .18s, color .18s;
}
.lb-close:hover { background: var(--salmon-deep); color: #fff; }
.lb-stage { flex: 1; min-height: 0; display: flex; align-items: center; gap: 14px; padding: 22px 16px; }
.lb-arrow {
  flex-shrink: 0; width: 46px; height: 72px; border-radius: 100px;
  background: rgba(255, 255, 255, 0.10);
  color: #fff; border: none; font-size: 22px; line-height: 1; cursor: pointer;
  transition: background .18s;
}
.lb-arrow:hover { background: rgba(255, 255, 255, 0.22); }
.lb-figure {
  flex: 1; min-width: 0; height: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 16px; margin: 0;
}
.lb-figure img { max-width: 100%; min-height: 0; max-height: 100%; object-fit: contain; border-radius: var(--r); }
.lb-figure figcaption { font-size: 15px; font-weight: 300; line-height: 1.55; color: var(--on-dark-soft); text-align: center; }
.lb-thumbs {
  display: flex; gap: 9px; overflow-x: auto; padding: 14px 18px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.lb-thumbs img {
  width: 92px; height: 66px; object-fit: cover; flex-shrink: 0; cursor: pointer;
  background: var(--bark-800); border: 2px solid transparent; border-radius: var(--r);
  opacity: 0.6; transition: opacity .18s, border-color .18s;
}
.lb-thumbs img:hover { opacity: 0.9; }
.lb-thumbs img.is-current { border-color: var(--salmon); opacity: 1; }
body.lb-open { overflow: hidden; }

/* ═══════════ bands + spacing helpers ═══════════ */

.band-sage { background: var(--sage); }
.band-cream { background: var(--cream); }
.band-white { background: var(--white); }

.center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

.pt-38 { padding-top: 38px; } .pt-56 { padding-top: 62px; } .pt-60 { padding-top: 66px; }
.pt-62 { padding-top: 68px; } .pt-64 { padding-top: 70px; } .pt-68 { padding-top: 74px; }
.pt-72 { padding-top: 80px; } .pt-76 { padding-top: 84px; }
.pt-80 { padding-top: 88px; } .pt-88 { padding-top: 96px; }
.pb-8 { padding-bottom: 8px; } .pb-20 { padding-bottom: 20px; } .pb-62 { padding-bottom: 68px; }
.pb-60 { padding-bottom: 66px; } .pb-64 { padding-bottom: 70px; }
.pb-72 { padding-bottom: 80px; } .pb-76 { padding-bottom: 84px; }
.pb-80 { padding-bottom: 88px; } .pb-84 { padding-bottom: 92px; }
.pb-88 { padding-bottom: 96px; }
.mt-14 { margin-top: 14px; } .mt-16 { margin-top: 16px; } .mt-18 { margin-top: 18px; }
.mt-22 { margin-top: 22px; } .mt-24 { margin-top: 24px; } .mt-26 { margin-top: 26px; }
.mt-28 { margin-top: 28px; } .mt-30 { margin-top: 30px; } .mt-36 { margin-top: 36px; }
.mt-38 { margin-top: 38px; } .mt-40 { margin-top: 40px; }
.mt-52 { margin-top: 52px; }

/* ═══════════ responsive ═══════════ */

@media (max-width: 780px) {
  .hero { min-height: 0; padding: 78px 22px 96px; }
  .curve-top::before { top: -34px; height: 36px; }
  .unit-row-body { padding: 32px 28px 30px; }
  .person { padding: 30px 26px; gap: 24px; }
  .form-and-panel { gap: 28px; }
  form.inquiry { padding: 30px 24px 28px; }
  .stack-offset { padding-bottom: 0; }
  .stack-offset .stack-back { margin-left: 0; }
  .stack-offset .stack-front { position: static; width: 100%; border-width: 0; margin-top: 14px; box-shadow: none; }
  .stack-offset .stack-front img { height: 200px; }
  .offset-card::before { inset: 14px -12px -14px 12px; }
  .panel { padding: 32px 26px; }
  .split { gap: 40px; }
}

@media (max-width: 560px) {
  .amenity-art { height: 160px; }  /* shorter photos keep the six-card stack from running 3 screens */
  .icon-card { padding: 30px 24px 28px; }
  .review { padding: 28px 24px 26px; }
  .map-card { padding: 32px 26px; }
  .photo-grid img { height: 240px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  .unit-card:hover, .icon-card:hover,
  .amenity:hover { transform: none; }
}

@media print {
  .site-header, nav, .lightbox { display: none !important; }
}

/* unit page heads are centred, so the hero quote drops its left rule */
.unit-head .pull {
  border-left: none; padding: 0; text-align: center;
  margin: 28px auto 0; max-width: 34em;
}
.unit-head .pull p { font-size: clamp(18px, 1.7vw, 21px); }
.unit-head .pull footer { color: var(--ink-soft); }
.unit-head .spec-row { margin-top: 30px; }

/* storage unit codes are alphanumeric — the sans keeps them unambiguous */
table.data.storage tbody th[scope="row"] {
  font-family: var(--body); font-weight: 500; letter-spacing: 0.04em;
}

/* four testimonials sit better as a 2x2 than a 3 + 1 */
@media (min-width: 900px) { .review-grid { grid-template-columns: repeat(2, 1fr); } }
