/* === 275 Buck Blvd · Landing Page === */
:root {
  --bg: #F4EFE6;
  --bg-2: #ECE5D6;
  --paper: #FBF7F0;
  --ink: #1A1815;
  --ink-2: #2C2925;
  --muted: #6B6357;
  --line: #D9CFBC;
  --moss: #3D5240;
  --moss-deep: #2A3A2D;
  --brass: #A87C4F;
  --brass-deep: #80592F;
  --serif: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --sans: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: "Geist Mono", "JetBrains Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
section[id], #schedule { scroll-margin-top: 128px; }
@media (max-width: 768px) { section[id], #schedule { scroll-margin-top: 116px; } }

/* === SITE BAR (Button Real Estate site nav) === */
.sitebar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 110;
  height: 56px;
  display: flex; align-items: center;
  padding: 0 32px;
  gap: 24px;
  background: rgba(244, 239, 230, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.sitebar__brand { display: flex; align-items: center; flex-shrink: 0; }
.sitebar__brand img { height: 36px; width: auto; display: block; }
.sitebar__nav { display: flex; align-items: center; gap: 22px; margin-left: auto; }
.sitebar__link {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--ink);
  font-weight: 400;
  transition: color 0.2s ease;
}
.sitebar__link:hover { color: var(--brass); }
.sitebar__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #fff;
  background: #6DBE4B;
  padding: 9px 18px;
  border-radius: 999px;
  transition: background 0.2s ease;
  flex-shrink: 0;
}
.sitebar__cta:hover { background: #5fa841; }
.sitebar__cta-icon { width: 15px; height: 15px; flex-shrink: 0; }
@media (max-width: 768px) {
  .sitebar { height: 48px; padding: 0 18px; gap: 12px; }
  .sitebar__nav { display: none; }
  .sitebar__brand img { height: 28px; }
  .sitebar__cta { padding: 8px 14px; font-size: 12px; margin-left: auto; }
}
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }

/* Typography */
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.eyebrow--brass { color: var(--brass); }
.eyebrow--light { color: rgba(255,255,255,0.7); }

.serif { font-family: var(--serif); font-weight: 400; letter-spacing: -0.01em; line-height: 1.05; }
.serif-italic { font-family: var(--serif); font-style: italic; font-weight: 400; }

/* === TOP NAV === */
.nav {
  position: fixed; top: 56px; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 32px;
  transition: background 0.4s ease, padding 0.3s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
@media (max-width: 768px) {
  .nav { top: 48px; }
}
.nav--scrolled {
  background: rgba(244, 239, 230, 0.92);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  padding: 14px 32px;
}
.nav__brand {
  display: flex; align-items: center; gap: 12px;
  color: white;
  transition: color 0.4s ease;
}
.nav--scrolled .nav__brand { color: var(--ink); }
.nav__mark {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid currentColor;
  display: grid; place-items: center;
  font-family: var(--serif);
  font-size: 18px; font-style: italic;
}
.nav__brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav__brand-text strong { font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; font-weight: 500; }
.nav__brand-text span { font-family: var(--serif); font-size: 18px; }
.nav__links { display: flex; gap: 28px; align-items: center; }
.nav__link {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: white;
  transition: color 0.4s ease, opacity 0.2s ease;
  opacity: 0.85;
}
.nav--scrolled .nav__link { color: var(--ink); }
.nav__link:hover { opacity: 1; }
.nav__cta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 10px 18px;
  border: 1px solid white;
  color: white;
  transition: all 0.3s ease;
}
.nav--scrolled .nav__cta { border-color: var(--ink); color: var(--ink); }
.nav__cta:hover { background: white; color: var(--ink); }
.nav--scrolled .nav__cta:hover { background: var(--ink); color: var(--bg); }
@media (max-width: 768px) { .nav__links .nav__link { display: none; } }

/* === HERO === */
.hero {
  position: relative;
  height: 100vh; min-height: 720px;
  width: 100%;
  overflow: hidden;
  color: white;
}
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 1.4s ease;
}
.hero__bg.is-active { opacity: 1; z-index: 1; }
.hero__bg.is-inactive { opacity: 0; z-index: 0; }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.15) 35%, rgba(0,0,0,0.65) 100%);
  z-index: 2;
}
.hero__inner {
  position: relative; z-index: 3;
  height: 100%;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 48px 64px;
  max-width: 1400px; margin: 0 auto;
}
.hero__corner {
  position: absolute; top: 110px; right: 48px;
  z-index: 3;
  text-align: right;
  color: white;
}
.hero__corner-num {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.2em;
  opacity: 0.8;
}
.hero__corner-loc {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  line-height: 1.1;
  margin-top: 6px;
}
.hero__eyebrow { margin-bottom: 24px; color: rgba(255,255,255,0.75); }
.hero__eyebrow-line {
  display: inline-block; width: 40px; height: 1px; background: currentColor;
  margin-right: 12px; vertical-align: middle;
}
.hero__title {
  font-family: var(--serif);
  font-size: clamp(56px, 9vw, 144px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  font-weight: 400;
  max-width: 14ch;
}
.hero__title em { font-style: italic; font-weight: 300; }
.hero__meta {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 0;
  margin-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.3);
  padding-top: 24px;
}
.hero__stat {
  padding-right: 40px; margin-right: 40px;
  border-right: 1px solid rgba(255,255,255,0.3);
}
.hero__stat:last-child { border-right: none; padding-right: 0; margin-right: 0; }
.hero__stat-num { font-family: var(--serif); font-size: 40px; line-height: 1; }
.hero__stat-label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.75; margin-top: 6px; }
.hero__ctas { display: flex; gap: 12px; margin-top: 36px; flex-wrap: wrap; }

.btn {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px 28px;
  border: 1px solid;
  transition: all 0.3s ease;
  display: inline-flex; align-items: center; gap: 10px;
}
.btn--filled { background: white; color: var(--ink); border-color: white; }
.btn--filled:hover { background: transparent; color: white; }
.btn--ghost { background: transparent; color: white; border-color: rgba(255,255,255,0.5); }
.btn--ghost:hover { border-color: white; background: rgba(255,255,255,0.1); }
.btn--ink { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.btn--ink:hover { background: transparent; color: var(--ink); }
.btn--ink-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ink-ghost:hover { background: var(--ink); color: var(--bg); }
.btn__arrow { display: inline-block; transition: transform 0.3s ease; }
.btn:hover .btn__arrow { transform: translateX(4px); }

.hero__scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.hero__scroll-line {
  width: 1px; height: 40px; background: rgba(255,255,255,0.5);
  position: relative; overflow: hidden;
}
.hero__scroll-line::after {
  content: ''; position: absolute; top: -40px; left: 0; right: 0;
  height: 40px; background: white;
  animation: scroll-line 2.4s ease-in-out infinite;
}
@keyframes scroll-line {
  0% { transform: translateY(0); }
  100% { transform: translateY(80px); }
}

.hero__dots {
  position: absolute; bottom: 56px; right: 48px;
  z-index: 3;
  display: flex; gap: 8px;
}
@media (max-width: 640px) {
  .hero__scroll { display: none; }
  .hero__dots { bottom: 24px; right: 24px; }
}
.hero__dot {
  width: 28px; height: 2px;
  background: rgba(255,255,255,0.35);
  transition: background 0.3s ease;
}
.hero__dot.is-active { background: white; }

/* === SECTION COMMON === */
.section { padding: 120px 48px; max-width: 1400px; margin: 0 auto; }
.section--wide { max-width: 100%; padding: 120px 0; }
.section--tight { padding: 80px 48px; }
@media (max-width: 768px) { .section { padding: 80px 24px; } }

.section__head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 40px; margin-bottom: 64px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 32px;
}
.section__head-left { flex: 1; }
.section__head-right { max-width: 380px; }
.section__title {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-top: 16px;
}
.section__title em { font-style: italic; font-weight: 300; }
.section__lead {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-2);
  font-weight: 300;
}

/* === AT A GLANCE === */
.glance {
  background: var(--bg-2);
  padding: 100px 48px;
}
.glance__inner {
  max-width: 1400px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}
.glance__cell {
  background: var(--bg-2);
  padding: 40px 32px;
  display: flex; flex-direction: column; gap: 16px;
  position: relative;
}
.glance__num {
  font-family: var(--serif);
  font-size: clamp(64px, 7vw, 96px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.glance__num .unit { font-size: 0.4em; font-family: var(--mono); letter-spacing: 0.05em; margin-left: 6px; color: var(--muted); vertical-align: middle; }
.glance__label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.glance__sub { font-size: 14px; color: var(--muted); margin-top: -8px; }
@media (max-width: 900px) {
  .glance__inner { grid-template-columns: repeat(2, 1fr); }
}

/* === STORY === */
.story { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.story__text { padding-right: 40px; }
.story__title {
  font-family: var(--serif);
  font-size: clamp(36px, 4.2vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 24px 0;
}
.story__title em { font-style: italic; font-weight: 300; }
.story__body {
  font-size: 17px; line-height: 1.7;
  color: var(--ink-2);
  font-weight: 300;
}
.story__body p + p { margin-top: 18px; }
.story__sig { display: flex; align-items: center; gap: 16px; margin-top: 32px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.story__sig::before { content: ''; width: 32px; height: 1px; background: var(--line); }
.story__img { position: relative; aspect-ratio: 4/5; overflow: hidden; }
.story__img img { width: 100%; height: 100%; object-fit: cover; }
.story__img-caption {
  position: absolute; bottom: 16px; left: 16px;
  background: var(--paper); padding: 12px 16px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink);
}
@media (max-width: 900px) { .story { grid-template-columns: 1fr; gap: 48px; } .story__text { padding-right: 0; } }

/* === ROOM NAVIGATOR === */
.rooms { background: var(--ink); color: var(--bg); padding: 120px 0; overflow: hidden; }
.rooms__head { max-width: 1400px; margin: 0 auto 56px; padding: 0 48px;
  display: flex; justify-content: space-between; align-items: flex-end; gap: 40px;
}
.rooms .section__title { color: var(--bg); }
.rooms .eyebrow { color: rgba(246, 242, 235, 0.6); }
.rooms .section__lead { color: rgba(246, 242, 235, 0.75); }

.rooms__viewer {
  max-width: 1400px; margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  align-items: stretch;
}
.rooms__stage {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #000;
}
.rooms__stage-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: opacity 0.6s ease, transform 6s ease;
}
.rooms__stage-img.is-active { opacity: 1; transform: scale(1.05); }
.rooms__stage-img.is-inactive { opacity: 0; }
.rooms__stage-overlay {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 32px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.7));
  z-index: 2;
  display: flex; justify-content: space-between; align-items: flex-end; gap: 24px;
}
.rooms__stage-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1;
}
.rooms__stage-desc {
  font-size: 14px;
  max-width: 480px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  margin-top: 12px;
}
.rooms__stage-counter { font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em; opacity: 0.7; }
.rooms__list {
  display: flex; flex-direction: column;
  gap: 1px;
  background: rgba(246, 242, 235, 0.12);
  max-height: 100%;
  overflow-y: auto;
}
.rooms__item {
  display: flex; align-items: center; gap: 16px;
  background: var(--ink);
  padding: 18px 20px;
  text-align: left;
  width: 100%;
  transition: background 0.2s ease, padding-left 0.2s ease;
  border-left: 2px solid transparent;
}
.rooms__item:hover { background: rgba(246, 242, 235, 0.05); }
.rooms__item.is-active { background: rgba(246, 242, 235, 0.08); border-left-color: var(--brass); padding-left: 24px; }
.rooms__item-thumb {
  width: 56px; height: 42px; flex-shrink: 0;
  background-size: cover; background-position: center;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}
.rooms__item.is-active .rooms__item-thumb { opacity: 1; }
.rooms__item-meta { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.rooms__item-name { font-family: var(--serif); font-size: 17px; }
.rooms__item-tag { font-family: var(--mono); font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(246,242,235,0.5); }
@media (max-width: 900px) {
  .rooms__viewer { grid-template-columns: 1fr; }
  .rooms__list { flex-direction: row; overflow-x: auto; max-height: none; }
  .rooms__item { flex-shrink: 0; min-width: 200px; }
}

/* === MATTERPORT === */
.tour { background: var(--paper); padding: 120px 48px; }
.tour__inner { max-width: 1400px; margin: 0 auto; }
.tour__head { text-align: center; margin-bottom: 56px; }
.tour__title {
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 96px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-top: 16px;
}
.tour__title em { font-style: italic; font-weight: 300; }
.tour__sub { font-size: 16px; color: var(--ink-2); max-width: 520px; margin: 24px auto 0; }

.tour__frame {
  position: relative;
  aspect-ratio: 16/10;
  background: var(--ink);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(26, 24, 21, 0.25);
}
.tour__frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.tour__chrome {
  position: absolute; top: 0; left: 0; right: 0;
  z-index: 5;
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 18px;
  background: linear-gradient(180deg, rgba(0,0,0,0.5), transparent);
  color: white;
  pointer-events: none;
}
.tour__chrome-left { display: flex; align-items: center; gap: 14px; }
.tour__chrome-dots { display: flex; gap: 6px; }
.tour__chrome-dots span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.4); }
.tour__chrome-label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.85; }
.tour__expand {
  pointer-events: auto;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: white; padding: 8px 12px;
  border: 1px solid rgba(255,255,255,0.4);
}
.tour__expand:hover { background: white; color: var(--ink); }

.tour__placeholder {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  background: #1a1a1a url('') center/cover;
  cursor: pointer;
}
.tour__placeholder-content { text-align: center; color: white; }
.tour__play {
  width: 96px; height: 96px;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  display: grid; place-items: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}
.tour__placeholder:hover .tour__play { border-color: white; transform: scale(1.05); background: rgba(255,255,255,0.06); }
.tour__play svg { width: 28px; height: 28px; }
.tour__placeholder-label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; opacity: 0.85; }
.tour__placeholder-title { font-family: var(--serif); font-size: 36px; margin-top: 8px; }

.tour__meta { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--line); }
.tour__meta-item { display: flex; flex-direction: column; gap: 4px; }
.tour__meta-key { font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.tour__meta-val { font-family: var(--serif); font-size: 20px; }

/* Fullscreen overlay for tour */
.tour-full {
  position: fixed; inset: 0; z-index: 200;
  background: black;
  display: none; flex-direction: column;
}
.tour-full.is-open { display: flex; }
.tour-full__slot { flex: 1; display: flex; }
.tour-full__slot iframe { flex: 1; width: 100%; border: 0; }
.tour-full__bar { display: flex; justify-content: space-between; align-items: center; padding: 16px 24px; color: white; }
.tour-full__title { font-family: var(--serif); font-size: 20px; }
.tour-full__close {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: white; padding: 10px 16px; border: 1px solid rgba(255,255,255,0.4);
}
.tour-full__close:hover { background: white; color: var(--ink); }

/* === GALLERY === */
.gallery { padding: 120px 48px; max-width: 1600px; margin: 0 auto; }
.gallery__head {
  display: flex; justify-content: space-between; align-items: flex-end; gap: 40px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 28px;
}
.gallery__filters {
  display: flex; gap: 4px; flex-wrap: wrap;
  margin-bottom: 32px;
}
.gallery__filter {
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 10px 16px;
  border: 1px solid var(--line);
  color: var(--ink-2);
  background: transparent;
  transition: all 0.2s ease;
}
.gallery__filter:hover { border-color: var(--ink); }
.gallery__filter.is-active { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.gallery__filter-count { opacity: 0.5; margin-left: 6px; }

.gallery__grid {
  columns: 3;
  column-gap: 16px;
}
.gallery__item {
  break-inside: avoid;
  margin-bottom: 16px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  background: var(--bg-2);
}
.gallery__item img {
  width: 100%; height: auto;
  display: block;
  transition: transform 0.6s ease, opacity 0.4s ease;
  opacity: 0; /* fade in on load */
}
.gallery__item img.is-loaded { opacity: 1; }
.gallery__item:hover img { transform: scale(1.04); }
.gallery__item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.5));
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex; align-items: flex-end; padding: 20px;
}
.gallery__item:hover .gallery__item-overlay { opacity: 1; }
.gallery__item-label { color: white; font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; }

@media (max-width: 1100px) { .gallery__grid { columns: 2; } }
@media (max-width: 640px) { .gallery__grid { columns: 1; } }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(10, 9, 8, 0.96);
  display: none; align-items: center; justify-content: center;
  padding: 40px;
}
.lightbox.is-open { display: flex; }
.lightbox__img { max-width: 100%; max-height: 100%; object-fit: contain; }
.lightbox__close {
  position: absolute; top: 24px; right: 24px;
  color: white; font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 10px 16px; border: 1px solid rgba(255,255,255,0.4);
}
.lightbox__close:hover { background: white; color: var(--ink); }
.lightbox__caption {
  position: absolute; bottom: 24px; left: 0; right: 0;
  text-align: center; color: white;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  opacity: 0.7;
}
.lightbox__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 64px; height: 64px;
  display: grid; place-items: center;
  color: white;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  transition: all 0.2s ease;
}
.lightbox__nav:hover { background: rgba(255,255,255,0.1); border-color: white; }
.lightbox__nav--prev { left: 24px; }
.lightbox__nav--next { right: 24px; }
.lightbox__nav svg { width: 20px; height: 20px; }

/* === SPECS / DETAILS === */
.specs { background: var(--bg-2); padding: 120px 48px; }
.specs__inner { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 380px 1fr; gap: 80px; }
.specs__side { position: sticky; top: 100px; align-self: start; }
.specs__list { display: flex; flex-direction: column; }
.specs__group { border-top: 1px solid var(--line); }
.specs__group:last-child { border-bottom: 1px solid var(--line); }
.specs__group-head {
  width: 100%; padding: 28px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  text-align: left;
  cursor: pointer;
}
.specs__group-head:hover .specs__group-title { color: var(--brass); }
.specs__group-num { font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; color: var(--muted); }
.specs__group-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
  flex: 1;
}
.specs__group-toggle {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 16px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.specs__group.is-open .specs__group-toggle { background: var(--ink); color: var(--bg); transform: rotate(45deg); border-color: var(--ink); }
.specs__group-body {
  max-height: 0; overflow: hidden;
  transition: max-height 0.5s ease;
}
.specs__group.is-open .specs__group-body { max-height: 2000px; }
.specs__items {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 4px 32px;
  padding: 8px 0 32px;
}
.specs__item {
  display: flex; gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dotted rgba(0,0,0,0.08);
  font-size: 15px;
  color: var(--ink-2);
  font-weight: 300;
}
.specs__item-bullet {
  flex-shrink: 0; width: 6px; height: 6px; margin-top: 9px;
  border-radius: 50%; background: var(--brass);
}
@media (max-width: 900px) { .specs__inner { grid-template-columns: 1fr; gap: 40px; } .specs__side { position: static; } .specs__items { grid-template-columns: 1fr; } }

/* === OUTSIDE === */
.outside { padding: 120px 48px; max-width: 1400px; margin: 0 auto; }
.outside__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}
.outside__card {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: white;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 32px;
  min-height: 320px;
}
.outside__card-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.8s ease;
}
.outside__card:hover .outside__card-bg { transform: scale(1.03); }
.outside__card-fade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.85));
}
.outside__card-content { position: relative; z-index: 2; }
.outside__card-eyebrow { font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; opacity: 0.8; }
.outside__card-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1;
  margin: 12px 0 12px;
}
.outside__card-title em { font-style: italic; font-weight: 300; }
.outside__card-desc { font-size: 14px; line-height: 1.6; opacity: 0.9; max-width: 460px; }
.outside__card--tall { grid-row: span 2; min-height: 660px; }
.outside__card--featured {
  background: var(--moss);
  color: var(--paper);
}
.outside__card--featured .outside__card-bg,
.outside__card--featured .outside__card-fade { display: none; }
.outside__card--featured .outside__card-title { font-size: clamp(48px, 5vw, 80px); }
.outside__card-stats { display: flex; gap: 32px; margin-top: 20px; }
.outside__card-stat-num { font-family: var(--serif); font-size: 36px; line-height: 1; }
.outside__card-stat-lbl { font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.7; margin-top: 4px; }
@media (max-width: 900px) {
  .outside__grid { grid-template-columns: 1fr; }
  .outside__card--tall { grid-row: span 1; min-height: 320px; }
}

/* === LOCATION === */
.location {
  background: var(--moss-deep);
  color: var(--paper);
  padding: 120px 48px;
}
.location__inner {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.location .eyebrow { color: rgba(246,242,235,0.6); }
.location__title {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-top: 16px;
}
.location__title em { font-style: italic; font-weight: 300; }
.location__body {
  font-size: 16px; line-height: 1.7;
  color: rgba(246,242,235,0.85);
  margin-top: 24px;
  max-width: 480px;
}
.location__points { display: flex; flex-direction: column; gap: 16px; margin-top: 36px; }
.location__point {
  display: grid; grid-template-columns: 60px 1fr auto;
  gap: 16px; align-items: baseline;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(246,242,235,0.15);
}
.location__point-num { font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; opacity: 0.55; }
.location__point-name { font-family: var(--serif); font-size: 22px; line-height: 1.2; }
.location__point-dist { font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; opacity: 0.7; }

.location__map {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--moss);
  overflow: hidden;
  border: 1px solid rgba(246,242,235,0.15);
}
.location__map svg { width: 100%; height: 100%; display: block; }
.location__pin {
  position: absolute; left: 50%; top: 42%;
  transform: translate(-50%, -50%);
  display: flex; flex-direction: column; align-items: center;
  z-index: 2;
}
.location__pin-dot {
  width: 16px; height: 16px;
  background: var(--brass);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(168,124,79,0.3), 0 0 0 12px rgba(168,124,79,0.15);
  animation: pin-pulse 2.4s ease-in-out infinite;
}
@keyframes pin-pulse {
  0%, 100% { box-shadow: 0 0 0 6px rgba(168,124,79,0.3), 0 0 0 12px rgba(168,124,79,0.15); }
  50% { box-shadow: 0 0 0 10px rgba(168,124,79,0.35), 0 0 0 20px rgba(168,124,79,0.08); }
}
.location__pin-label {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  margin-top: 12px; color: var(--paper);
  background: var(--moss-deep);
  padding: 6px 10px;
  border: 1px solid rgba(246,242,235,0.25);
}
@media (max-width: 900px) { .location__inner { grid-template-columns: 1fr; gap: 48px; } }

/* === CTA === */
.cta { padding: 140px 48px; background: var(--ink); color: var(--paper); text-align: center; }
.cta__eyebrow { color: rgba(246,242,235,0.5); }
.cta__title {
  font-family: var(--serif);
  font-size: clamp(56px, 8vw, 128px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 24px auto 0;
  max-width: 18ch;
}
.cta__title em { font-style: italic; font-weight: 300; }
.cta__lead {
  font-size: 17px;
  color: rgba(246,242,235,0.7);
  max-width: 520px;
  margin: 32px auto 48px;
  font-weight: 300;
}
.cta__form {
  max-width: 720px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(246,242,235,0.2);
  border: 1px solid rgba(246,242,235,0.2);
}
.cta__field {
  background: var(--ink);
  display: flex; flex-direction: column;
  padding: 18px 20px;
  text-align: left;
}
.cta__field--full { grid-column: span 2; }
.cta__field label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(246,242,235,0.55); margin-bottom: 8px; }
.cta__field input,
.cta__field select,
.cta__field textarea {
  background: transparent;
  border: none;
  color: var(--paper);
  font-family: var(--serif);
  font-size: 20px;
  outline: none;
}
.cta__field textarea { resize: vertical; min-height: 60px; font-family: var(--sans); font-size: 16px; font-weight: 300; }
.cta__field option { background: var(--ink); color: var(--paper); font-family: var(--sans); font-size: 14px; }
.cta__submit { margin-top: 32px; }
.cta__success {
  margin: 32px auto 0;
  max-width: 480px;
  padding: 24px;
  border: 1px solid var(--brass);
  background: rgba(168, 124, 79, 0.1);
  color: var(--paper);
}
.cta__success-title { font-family: var(--serif); font-size: 28px; }
.cta__success-body { font-size: 14px; color: rgba(246,242,235,0.7); margin-top: 8px; }

.cta__honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.cta__consent { padding: 14px 20px; }
.cta__field label.cta__consent-label { display: flex; gap: 12px; align-items: flex-start; cursor: pointer; font-family: var(--sans); font-size: 11px; line-height: 1.5; color: rgba(246,242,235,0.65); font-weight: 300; letter-spacing: 0; text-transform: none; margin-bottom: 0; }
.cta__consent-label input[type=checkbox] { flex-shrink: 0; margin-top: 2px; width: 14px; height: 14px; accent-color: var(--brass); cursor: pointer; }
.cta__consent-label a { color: rgba(246,242,235,0.95); text-decoration: underline; text-underline-offset: 2px; }
.cta__consent-label a:hover { color: var(--brass); }
.cta__submit-row { flex-direction: row; justify-content: flex-end; align-items: center; gap: 16px; }
.cta__submit-note { font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; color: rgba(246,242,235,0.5); }
.cta__submit { background: var(--brass); color: var(--paper); border-color: var(--brass); }
.cta__submit:hover { background: var(--brass-deep); border-color: var(--brass-deep); }
.cta__submit:disabled { opacity: 0.6; cursor: wait; }
@media (max-width: 640px) {
  .cta__form { grid-template-columns: 1fr; }
  .cta__field--full { grid-column: span 1; }
  .cta__submit-row { flex-direction: column; align-items: stretch; }
}

/* === FOOTER === */
.footer { background: var(--ink); color: rgba(246,242,235,0.6); padding: 60px 48px 40px; border-top: 1px solid rgba(246,242,235,0.1); }
.footer__inner { max-width: 1400px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.footer__brand { font-family: var(--serif); font-style: italic; font-size: 18px; color: var(--paper); }
.footer__meta { font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; }

/* Sticky bottom inquire bar */
.stickybar {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
  padding: 14px 32px;
  display: flex; justify-content: space-between; align-items: center;
  z-index: 90;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.08);
}
.stickybar.is-visible { transform: translateY(0); }
.stickybar__left { display: flex; align-items: center; gap: 16px; }
.stickybar__addr { font-family: var(--serif); font-size: 20px; }
.stickybar__meta { font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.stickybar__right { display: flex; gap: 8px; }
@media (max-width: 640px) { .stickybar { padding: 10px 16px; } .stickybar__meta { display: none; } }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.is-in { opacity: 1; transform: translateY(0); }

/* Mobile: stack section heads that use side-by-side flex (rooms / gallery / outside).
   Placed at end of file to win cascade against the desktop rules above. */
@media (max-width: 768px) {
  .rooms__head,
  .gallery__head,
  .outside > .section__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .rooms__head { padding: 0 24px; }
}
