:root {
  --ink: #1f1b16;
  --ink-soft: #5a524a;
  --paper: #faf7f2;
  --paper-2: #f1ece4;
  --line: #d9d1c5;
  --accent: #8a4b1f;
  --accent-soft: #f3e4d6;
  --max: 1080px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  font-size: 17px;
}
img { max-width: 100%; display: block; }
a { color: var(--accent); }
h1, h2, h3 { line-height: 1.15; margin: 0 0 .5rem; letter-spacing: -0.01em; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-top: 0; }
h3 { font-size: 1.15rem; margin-top: 1.5rem; }
p { margin: 0 0 1rem; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 1.25rem; }

/* header and nav */
.top { position: sticky; top: 0; z-index: 20; background: rgba(250,247,242,.94); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); }
.top .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: 56px; }
.brand { font-weight: 700; text-decoration: none; color: var(--ink); white-space: nowrap; }
.brand span { color: var(--accent); }
nav { display: flex; gap: 1.1rem; overflow-x: auto; }
nav a { text-decoration: none; color: var(--ink-soft); font-size: .92rem; white-space: nowrap; padding: .3rem 0; }
nav a:hover { color: var(--accent); }

/* hero */
.hero { position: relative; color: #fff; min-height: 62vh; max-height: 720px; display: flex; align-items: flex-end; background: #2b241d; overflow: hidden; }
.hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 62%; opacity: .82; }
.hero .wrap { position: relative; padding: 3rem 1.25rem 2.5rem; width: 100%; }
.hero .kicker { text-transform: uppercase; letter-spacing: .14em; font-size: .78rem; opacity: .9; margin-bottom: .6rem; }
.hero p.lead { font-size: 1.15rem; max-width: 42rem; margin: .6rem 0 0; text-shadow: 0 1px 8px rgba(0,0,0,.5); }
.hero h1 { text-shadow: 0 2px 14px rgba(0,0,0,.55); }

/* sections */
section { padding: 3.5rem 0; border-bottom: 1px solid var(--line); }
section:last-of-type { border-bottom: 0; }
.muted { color: var(--ink-soft); }
.small { font-size: .9rem; }

/* quick facts */
.facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: .8rem; margin: 1.5rem 0 0; }
.fact { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: .9rem 1rem; }
.fact b { display: block; font-size: 1.35rem; }
.fact span { color: var(--ink-soft); font-size: .85rem; }

/* two column */
.cols { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; }
@media (max-width: 760px) { .cols { grid-template-columns: 1fr; } }

/* spec table */
table { width: 100%; border-collapse: collapse; font-size: .95rem; background: #fff; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
th, td { text-align: left; padding: .55rem .8rem; border-bottom: 1px solid var(--line); vertical-align: top; }
th { background: var(--paper-2); font-weight: 600; width: 44%; }
tr:last-child td, tr:last-child th { border-bottom: 0; }
.tables { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.25rem; margin-top: 1.5rem; }
.tables h3 { margin-top: 0; }

/* floor plan */
.floorplan { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 1.25rem; margin: 1.5rem 0; }
.floorplan img { margin: 0 auto; }
.floorplan figcaption { text-align: center; color: var(--ink-soft); font-size: .88rem; margin-top: .6rem; }

/* features */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1.25rem; margin-top: 1.5rem; }
.feature { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 1.2rem 1.3rem; }
.feature h3 { margin-top: 0; }
.feature ul { padding-left: 1.1rem; margin: .4rem 0 0; }
.feature li { margin: .3rem 0; }
.feature .ref { display: block; margin-top: .8rem; font-size: .82rem; color: var(--ink-soft); }

/* galleries */
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: .7rem; margin-top: 1.5rem; }
.gallery a { display: block; aspect-ratio: 4/3; overflow: hidden; border-radius: 8px; background: var(--paper-2); }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .25s; }
.gallery a:hover img { transform: scale(1.03); }
.gallery a.wide { grid-column: span 2; aspect-ratio: 8/3; }
@media (max-width: 520px) { .gallery a.wide { grid-column: span 1; aspect-ratio: 4/3; } }
.caption-list { columns: 2; column-gap: 2rem; font-size: .9rem; color: var(--ink-soft); margin-top: 1rem; }
@media (max-width: 640px) { .caption-list { columns: 1; } }

/* lightbox */
.lb { position: fixed; inset: 0; background: rgba(15,12,9,.94); display: none; align-items: center; justify-content: center; z-index: 50; }
.lb.open { display: flex; }
.lb img { max-width: 94vw; max-height: 86vh; object-fit: contain; border-radius: 4px; }
.lb .cap { position: absolute; bottom: 1rem; left: 0; right: 0; text-align: center; color: #eee; font-size: .9rem; padding: 0 1rem; }
.lb button { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.12); color: #fff; border: 0; font-size: 2rem; width: 52px; height: 52px; border-radius: 50%; cursor: pointer; }
.lb .prev { left: 1rem; } .lb .next { right: 1rem; }
.lb .close { top: 1rem; right: 1rem; transform: none; font-size: 1.5rem; width: 44px; height: 44px; }

/* docs and footer */
.doc { display: flex; gap: 1rem; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 1rem 1.2rem; margin-top: 1rem; }
.doc .icon { font-size: 2rem; }
.btn { display: inline-block; background: var(--accent); color: #fff; text-decoration: none; padding: .55rem 1rem; border-radius: 8px; font-weight: 600; }
.btn:hover { filter: brightness(1.08); }
footer { padding: 2rem 0 3rem; color: var(--ink-soft); font-size: .88rem; }
.callout { background: var(--accent-soft); border-left: 4px solid var(--accent); padding: .9rem 1.1rem; border-radius: 6px; margin: 1.25rem 0; }
