@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Jost:wght@300;400;500&display=swap");

:root {
  --font-display: "Cormorant Garamond", "Times New Roman", Times, serif;
  --font-sans: "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --ink: #2c2620;
  --ink-soft: #3a342c;
  --ink-muted: #5c5346;
  --bone: #fcfbf5;
  --bone-warm: #f7f3ea;
  --paper: #fffff8;
  --line: #b9976d55;
  --line-soft: #e4d9c8;
  --bronze: #b9976d;
  --bronze-light: #c9ab82;
  --bronze-pale: #e8dfd0;
  --champagne: #c4a574;
  --white: #fff;
  --fg: var(--ink-muted);
  --bg: var(--bone);
  --step--1: clamp(0.78rem, 0.74rem + 0.18vw, 0.875rem);
  --step-0: clamp(0.95rem, 0.9rem + 0.22vw, 1.05rem);
  --step-1: clamp(1.15rem, 1.05rem + 0.5vw, 1.4rem);
  --step-2: clamp(1.5rem, 1.25rem + 1.1vw, 2.1rem);
  --step-3: clamp(1.9rem, 1.45rem + 2.1vw, 3.1rem);
  --step-4: clamp(2.4rem, 1.6rem + 3.6vw, 4.6rem);
  --step-5: clamp(2.9rem, 1.7rem + 5.4vw, 6.2rem);
  --gutter: clamp(1.25rem, 5vw, 4rem);
  --section-y: clamp(3rem, 3.4vw, 4rem);
  --maxw: 1400px;
  --measure: 68ch;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --header-h: 78px;
  --hero-height: 100dvh;
}

@media (max-width: 900px) {
  :root { --header-h: 66px; }
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: var(--step-0);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
img[hidden] { display: none !important; }
button, input, select, textarea { font-family: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.08;
  margin: 0;
}
em { font-style: italic; }
.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--ink);
  color: var(--bone);
  padding: 0.6rem 1rem;
  z-index: 2000;
}
.skip-link:focus { top: 0.6rem; }

.wrap { width: min(var(--maxw), calc(100% - var(--gutter) * 2)); margin-inline: auto; }
.eyebrow, .modal-kicker {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bronze);
  font-weight: 400;
  margin: 0 0 0.7rem;
}
.gold-rule { width: 3.5rem; height: 1px; background: var(--bronze); margin: 0.7rem 0 0.85rem; }
.lede { max-width: var(--measure); color: var(--ink-muted); margin: 0; }
.section { padding: var(--section-y) 0; }
@media (max-width: 800px) {
  :root { --section-y: 2.25rem; }
}
.section-paper { background: var(--paper); }
.section-warm { background: var(--bone-warm); }
.section-ink { background: #17120d; color: var(--bone); }
.section-ink .lede, .section-ink p { color: rgba(252, 251, 245, 0.82); }
.section-head { margin-bottom: 1.5rem; }
@media (max-width: 800px) {
  .section-head { margin-bottom: 1rem; }
}
.section-head h2 { font-size: var(--step-3); max-width: 18ch; }

.btn {
  --btn-bg: var(--ink);
  --btn-fg: var(--bone);
  --btn-bd: var(--ink);
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid var(--btn-bd);
  padding: 0.95em 1.45em;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.68rem;
  font-weight: 400;
  cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
  line-height: 1.2;
}
.btn:hover { --btn-bg: var(--ink-soft); }
.btn-solid-light { --btn-bg: var(--bone); --btn-fg: var(--ink); --btn-bd: var(--bone); }
.btn-solid-light:hover { --btn-bg: var(--white); }
.btn-gold { --btn-bg: var(--bronze); --btn-fg: #fff; --btn-bd: var(--bronze); }
.btn-gold:hover { --btn-bg: var(--bronze-light); --btn-fg: #17120d; --btn-bd: var(--bronze-light); }
.btn-gold-outline, .hero-ctas .btn-gold-outline { --btn-bg: var(--bone); --btn-fg: var(--ink); --btn-bd: var(--bronze); }
.btn-gold-outline:hover, .hero-ctas .btn-gold-outline:hover { --btn-bg: var(--bronze); --btn-fg: #fff; --btn-bd: var(--bronze); }
.btn-block { width: 100%; }
.btn-light { --btn-bg: transparent; --btn-fg: var(--ink); --btn-bd: var(--bronze); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: var(--maxw);
  height: var(--header-h);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand { display: flex; align-items: center; flex-shrink: 1; min-width: 0; max-width: 82px; line-height: 0; }
.brand-lockup {
  display: block;
  width: 82px;
  height: 28px;
  max-width: 82px;
  object-fit: contain;
  object-position: left center;
}
@media (max-width: 900px) {
  .brand { max-width: 74px; margin-inline-start: 0.35rem; }
  .brand-lockup { width: 74px; height: 26px; max-width: 74px; }
}
.nav-desktop { display: flex; align-items: center; gap: clamp(0.85rem, 1.6vw, 1.7rem); }
.nav-desktop a {
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.72rem;
  padding-block: 0.4rem;
  border-bottom: 1px solid transparent;
  white-space: nowrap;
  color: var(--ink);
}
.nav-desktop a.is-current, .nav-desktop a:hover { border-bottom-color: var(--bronze); }
.header-actions { display: flex; align-items: center; gap: 0.7rem; flex-shrink: 0; }
.header-cta {
  --btn-bg: var(--bronze);
  --btn-fg: #fff;
  --btn-bd: var(--bronze);
  min-height: 44px;
  padding: 0.75rem 1.5rem;
  letter-spacing: 0.2em;
  font-size: 0.66rem;
  font-weight: 500;
  flex-shrink: 0;
}
.header-cta:hover { --btn-bg: var(--bronze-light); --btn-fg: #17120d; --btn-bd: var(--bronze-light); animation: none; }
@media (max-width: 900px) {
  .header-cta { letter-spacing: 0.12em; min-height: 44px; padding: 0.55rem 1rem; font-size: 0.62rem; margin-right: 0.2rem; }
}
.header-phone { letter-spacing: 0.08em; font-size: 0.78rem; color: var(--ink); white-space: nowrap; }
.burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.burger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--ink);
  transition: transform 0.35s var(--ease), opacity 0.25s var(--ease);
}
.site-header.is-open { z-index: 1000; background: var(--paper); border-bottom-color: var(--line); }
.site-header.is-open .burger span:first-child { transform: translateY(6px) rotate(45deg); }
.site-header.is-open .burger span:nth-child(2) { opacity: 0; }
.site-header.is-open .burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.nav-mobile {
  display: none;
  position: fixed;
  z-index: 999;
  inset: calc(var(--header-h) + env(safe-area-inset-top, 0px)) 0 0 0;
  background: var(--paper);
  color: var(--ink);
  padding: clamp(1.5rem, 6vw, 3rem) var(--gutter) 1.5rem;
  overflow-y: auto;
  overscroll-behavior: contain;
  flex-direction: column;
}
.nav-mobile[hidden] { display: none !important; }
.nav-mobile nav { display: flex; flex-direction: column; }
.nav-mobile nav a {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 7vw, 2.4rem);
  line-height: 1.15;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
  padding-block: 0.5rem;
  border-bottom: 1px solid var(--line);
}
.nav-mobile-actions {
  display: grid;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 2.25rem;
}
.nav-mobile-actions .btn { width: 100%; min-height: 48px; }
.nav-mobile-actions .btn-ghost { --btn-bg: transparent; --btn-fg: var(--ink); --btn-bd: var(--ink); }
.nav-mobile-actions .btn-ghost:hover { --btn-bg: var(--ink); --btn-fg: var(--bone); }
body.nav-open .nav-mobile { display: flex; }
body.nav-open { overflow: hidden; }

@media (max-width: 1080px) {
  .nav-desktop, .header-phone { display: none; }
  .burger { display: flex; }
}

/* Hero — full-bleed 100dvh. Slide 1 keeps the whole tower (contain on desktop, cover on mobile). */
.hero {
  position: relative;
  height: 100svh;
  height: var(--hero-height);
  min-height: 100svh;
  min-height: var(--hero-height);
  overflow: hidden;
  color: #fff;
  background: #17120d;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 0;
}
.hero-slides, .hero-slide, .hero-overlay { position: absolute; inset: 0; }
.hero-slide { opacity: 0; transition: opacity 1.1s ease; overflow: hidden; }
.hero-slide.is-active { opacity: 1; z-index: 1; }
.hero-slide img, .hero-slide picture, .page-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.hero-slide picture { display: block; position: absolute; inset: 0; }
.hero-overlay {
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(23, 18, 13, 0.66) 0, rgba(23, 18, 13, 0.46) 34%, rgba(23, 18, 13, 0.12) 60%, rgba(23, 18, 13, 0) 76%),
    linear-gradient(180deg, rgba(23, 18, 13, 0.58) 0, rgba(23, 18, 13, 0.34) 28%, rgba(23, 18, 13, 0.22) 52%, rgba(23, 18, 13, 0.62));
}
.hero > .hero-inner {
  position: relative;
  z-index: 3;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding: calc(var(--header-h) + 1.1rem) var(--gutter) 4.75rem;
  box-sizing: border-box;
  min-height: 0;
}
.hero > .hero-inner::before { content: ""; flex: 1 1 auto; min-height: 0; }
.hero > .hero-inner::after { content: ""; flex-shrink: 0; margin-top: 1.45rem; height: 2.125rem; }
.hero-eyebrow {
  display: block;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 0.85rem;
  text-shadow: 0 1px 12px rgba(23, 18, 13, 0.7);
}
.hero-title {
  font-size: clamp(2.8rem, 8.2vw, 6.4rem);
  line-height: 1.02;
  color: #fff;
  max-width: 22ch;
  margin: 0 0 1.05rem;
  text-shadow: 0 2px 34px rgba(23, 18, 13, 0.65), 0 1px 4px rgba(23, 18, 13, 0.4);
}
.hero-sub {
  font-size: clamp(0.94rem, 1.6vw, 1.1rem);
  color: rgba(255, 255, 255, 0.96);
  max-width: 56ch;
  margin: 0 0 1.6rem;
  font-weight: 300;
  line-height: 1.75;
  text-shadow: 0 1px 18px rgba(23, 18, 13, 0.85), 0 1px 3px rgba(23, 18, 13, 0.5);
}
.hero-sub-short { display: none; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-ctas .btn { flex: 0 1 auto; white-space: nowrap; }
.hero-dots {
  position: absolute;
  z-index: 4;
  left: var(--gutter);
  bottom: 1.4rem;
  display: flex;
  gap: 0.5rem;
}
.hero-dot {
  width: 26px;
  height: 2px;
  border-radius: 0;
  border: none;
  background: rgba(245, 237, 224, 0.28);
  padding: 0;
  cursor: pointer;
}
.hero-dot.is-active { background: var(--bronze); }
.hero-slide-label {
  position: absolute;
  z-index: 4;
  right: var(--gutter);
  bottom: 1.25rem;
  max-width: 36ch;
  text-align: right;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 1px 8px rgba(23, 18, 13, 0.7);
}

@media (max-width: 640px) {
  .hero > .hero-inner {
    padding-top: calc(var(--header-h) + 0.55rem);
    padding-bottom: 5.6rem;
    padding-right: 1.25rem;
  }
  .hero > .hero-inner::after { margin-top: 0.85rem; height: 3.5rem; }
  .hero-title {
    max-width: 18ch;
    font-size: clamp(2.05rem, 10.2vw, 2.85rem);
    margin: 0 0 0.5rem;
    line-height: 1.05;
  }
  .hero-eyebrow { letter-spacing: 0.2em; margin-bottom: 0.35rem; font-size: 0.58rem; }
  .hero-sub { max-width: 28ch; margin-bottom: 0.7rem; font-size: 0.84rem; line-height: 1.45; }
  .hero-sub-full { display: none; }
  .hero-sub-short { display: inline; }
  .hero-ctas { gap: 0.38rem; }
  .hero-ctas .btn {
    min-height: 32px;
    padding: 0.38em 0.72em;
    font-size: 0.5rem;
    letter-spacing: 0.1em;
  }
  .hero-slide-label { display: none; }
}
@media (max-width: 900px) {
  .hero-slide.is-aerial img { object-position: 82% center; }
}

.page-hero {
  position: relative;
  min-height: clamp(46vh, 58vh, 640px);
  padding-top: var(--header-h);
  color: var(--bone);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #17120d;
}
.page-hero .hero-media { position: absolute; inset: 0; }
.page-hero .hero-media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, #080c11c7, #080c1180 32%, #080c1100 72%), linear-gradient(#080c1199, #080c1133 40%, #080c11d9);
}
.page-hero .hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 0;
  padding-bottom: clamp(2.5rem, 6vh, 4rem);
}
.page-hero h1 {
  font-size: var(--step-4);
  max-width: 16ch;
  color: #fff;
  text-shadow: 0 2px 34px rgba(23, 18, 13, 0.65);
  margin-bottom: 0.7rem;
}
.page-hero .hero-sub { margin-bottom: 0; max-width: 52ch; }
.crumbs { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.8); margin-bottom: 0.8rem; }
.crumbs a { border-bottom: 1px solid rgba(255,255,255,0.35); }

.res-grid, .amenity-grid, .plan-grid, .gallery-grid, .point-grid, .collection-grid {
  display: grid;
  gap: 1.25rem;
}
.res-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.15rem; width: min(1272px, 100%); margin-inline: auto; }
.res-grid.is-featured { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.plan-grid, .gallery-grid { grid-template-columns: repeat(3, 1fr); }
@media (min-width: 1100px) {
  .plan-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.amenity-grid, .collection-grid { grid-template-columns: repeat(3, 1fr); }
.point-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem 1.5rem; }
@media (max-width: 1100px) {
  .res-grid, .res-grid.is-featured { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 980px) {
  .plan-grid, .gallery-grid, .amenity-grid, .collection-grid, .point-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .res-grid, .res-grid.is-featured, .plan-grid, .gallery-grid, .amenity-grid, .collection-grid, .point-grid { grid-template-columns: 1fr; }
}

.res-card, .plan-card, .collection-card, .amenity-card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  min-width: 0;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
}
.res-card { min-height: 456px; }
.res-card-hit { min-height: 100%; }
@media (max-width: 700px) {
  .res-card { min-height: 430px; }
}
.res-card:hover, .plan-card:hover { transform: translateY(-6px); border-color: var(--line); box-shadow: 0 26px 60px #17120d24; }
.res-card-hit {
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}
.res-card-hit:focus-visible { outline: 2px solid var(--bronze); outline-offset: 3px; }
.res-media, .plan-media { position: relative; overflow: hidden; background: var(--ink); }
.res-media img, .plan-media img, .gallery-grid img, .slider img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.res-media { aspect-ratio: auto; }
.res-media .media { position: relative; display: block; margin: 0; width: 100%; height: 240px; min-height: 240px; aspect-ratio: auto; overflow: hidden; }
.res-media .media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.res-badges {
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  position: absolute;
  top: 1rem;
  left: 1rem;
}
.res-badge {
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bone);
  background: #17120db8;
  backdrop-filter: blur(6px);
  padding: 0.4rem 0.75rem;
  font-size: 0.56rem;
}
.res-badge-sale { background: var(--bronze); color: #fff; }
.res-card:hover .res-media img { transform: scale(1.05); }
.res-body, .plan-body, .collection-card, .amenity-card { padding: 1.15rem 1.2rem 1.3rem; }
.res-body {
  flex-direction: column;
  flex: 1 1 auto;
  padding: 1.05rem 1.1rem 0.9rem;
  display: flex;
}
.res-card-hit .res-body { display: flex; flex-direction: column; flex: 1; }
.res-kicker, .price-kicker { color: var(--bronze); letter-spacing: 0.14em; text-transform: uppercase; font-size: 0.68rem; }
.res-price {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1;
  margin: 0;
  color: var(--ink);
}
.res-address {
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-top: 0.45rem;
  font-size: 0.6rem;
}
.res-specs {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-size: 0.6rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.55rem;
}
.res-specs .dot { color: var(--bronze); opacity: 0.6; }
.res-links { display: flex; flex-wrap: wrap; align-items: center; gap: 0.45rem; margin-top: 0.75rem; }
.res-link {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  color: var(--bronze);
  font-size: 0.52rem;
  font-family: var(--font-sans);
  background: transparent;
  min-height: 32px;
  padding: 0.35rem 0.7rem;
  display: inline-flex;
  align-items: center;
}
.res-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 0.75rem;
}
.res-brand {
  font-family: var(--font-display);
  letter-spacing: 0.12em;
  color: var(--ink);
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
}
.res-mark { display: block; height: 22px; width: auto; object-fit: contain; }
.res-brand-name { white-space: nowrap; font-size: 0.82rem; }
.res-grid.is-featured .res-brand-name { display: none; }
.res-name { font-size: 1.05rem; margin-bottom: 0.35rem; }
.res-meta { color: var(--ink-muted); font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1rem; }
.res-cta {
  margin-top: 0;
  color: var(--bronze);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.62rem;
  font-family: var(--font-sans);
  background: none;
  border: none;
  min-height: 40px;
  white-space: nowrap;
  flex-shrink: 0;
}
@media (max-width: 700px) {
  .res-badges { top: 0.7rem; left: 0.7rem; gap: 0.3rem; }
  .res-badge { padding: 0.28rem 0.55rem; font-size: 0.5rem; }
  .res-mark { height: 18px; }
  .res-cta { min-height: 32px; font-size: 0.56rem; }
  .res-price { font-size: 1.45rem; }
}
.res-actions { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: auto; }
.see-more { margin-top: 1.6rem; }

.table-wrap { overflow-x: auto; border: 1px solid var(--line-soft); background: var(--white); }
table { width: 100%; border-collapse: collapse; min-width: 640px; }
th, td { text-align: left; padding: 0.9rem 1rem; border-bottom: 1px solid var(--line-soft); vertical-align: top; }
th { font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--bronze); font-weight: 400; }
td strong { font-weight: 400; color: var(--ink); }
.fine { color: var(--ink-muted); font-size: var(--step--1); margin-top: 0.8rem; }

.split { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem; align-items: start; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 1.5rem; } }
.stat-list { display: grid; gap: 0.85rem; }
.stat { border-top: 1px solid var(--line); padding-top: 0.7rem; }
.stat span { display: block; letter-spacing: 0.16em; text-transform: uppercase; font-size: 0.66rem; color: var(--bronze); }
.num { font-family: var(--font-display); font-size: 2rem; color: var(--bronze); display: block; margin-bottom: 0.35rem; }
.point h3 { font-size: 1.55rem; margin-bottom: 0.45rem; }

.slider { position: relative; }
.slider-frame { position: relative; aspect-ratio: 16/9; overflow: hidden; background: #17120d; touch-action: pan-y; cursor: pointer; }
.slider-frame img { pointer-events: none; -webkit-user-drag: none; }
.slider-swipe-hint { margin: 0 0 0.65rem; }
.slider-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
}
.slider-frame img.is-active { opacity: 1; z-index: 1; }
.slider-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 0.8rem; color: var(--ink-muted); font-size: 0.85rem; }
.slider-nav button {
  width: 42px; height: 42px; border: 1px solid var(--line); background: transparent; cursor: pointer; font-size: 1.2rem;
}

.icon-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
@media (max-width: 800px) { .icon-grid { grid-template-columns: 1fr 1fr; } }
.amenity-card h3 { font-size: 1.45rem; margin-bottom: 0.3rem; }
.amenity-card p { margin: 0; color: var(--ink-muted); }
.check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
@media (max-width: 800px) { .check-grid { grid-template-columns: 1fr; } }
.check-grid h3 { font-size: 1.4rem; margin-bottom: 0.6rem; }
.check-grid ul { margin: 0; padding-left: 1.1rem; color: var(--ink-muted); }
.check-grid li { margin: 0.3rem 0; }

.highlights { columns: 2; gap: 2rem; margin: 0; padding: 0; list-style: none; }
.highlights li { break-inside: avoid; border-top: 1px solid var(--line); padding: 0.75rem 0; }
@media (max-width: 700px) { .highlights { columns: 1; } }

.plan-media { aspect-ratio: 4/3; background: var(--paper); }
.plan-media img { object-fit: contain; background: #fff; }
.collection-card { background: var(--paper); }
.collection-card h3 { font-size: 1.7rem; margin-bottom: 0.7rem; }
.collection-card ul { margin: 0 0 1rem; padding-left: 1.1rem; color: var(--ink-muted); }

.faq details { border-top: 1px solid var(--line); padding: 0.95rem 0; }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; font-size: 1.15rem; font-family: var(--font-display); list-style: none; display: flex; justify-content: space-between; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--bronze); font-family: var(--font-sans); }
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--ink-muted); max-width: 75ch; }

.form-panel {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  padding: clamp(1.5rem, 3.5vw, 2.75rem);
}
.lead-brand { margin: 0 0 0.55rem; }
.lead-brand img { display: block; height: 30px; width: auto; max-width: 108px; object-fit: contain; }
.lead-form { display: grid; gap: 1.15rem; }
.field { display: grid; gap: 0.4rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.15rem; }
@media (max-width: 640px) { .field-row { grid-template-columns: 1fr; } }
.lead-form label, .chips legend {
  font-size: var(--step--1);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--bronze);
}
.lead-form input[type="email"],
.lead-form input[type="tel"],
.lead-form input[type="text"],
.lead-form select,
.lead-form textarea {
  background: var(--paper);
  border: 1px solid var(--line);
  width: 100%;
  font-size: max(16px, var(--step-0));
  border-radius: 0;
  min-height: 48px;
  padding: 0.85em 1em;
}
.lead-form textarea { min-height: 110px; resize: vertical; }
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus { border-color: var(--bronze); outline: none; }
.lead-form input[aria-invalid="true"], .lead-form select[aria-invalid="true"] { border-color: #a4402f; }
.phone-row { display: grid; grid-template-columns: 4.6rem 1fr; gap: 0.4rem; }
.phone-dial {
  border: 1px solid var(--line);
  background: var(--paper);
  width: 100%;
  min-width: 0;
  min-height: 48px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.3rem;
  padding: 0.6em;
  font-size: max(16px, var(--step-0));
  text-align: left;
}
.phone-row input[type="tel"] { flex: 1; min-width: 0; }
.phone-row input[type="tel"]::placeholder { color: transparent; opacity: 0; }
.dial-wrap { position: relative; }
.dial-menu {
  position: absolute;
  z-index: 20;
  top: calc(100% + 4px);
  left: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  list-style: none;
  margin: 0;
  padding: 0.3rem 0;
  width: 220px;
  max-height: 240px;
  overflow: auto;
}
.dial-menu button { width: 100%; text-align: left; background: none; border: 0; padding: 0.45rem 0.8rem; cursor: pointer; display: flex; gap: 0.6rem; }
.dial-menu button:hover, .dial-menu button:focus-visible { background: var(--bone-warm); }
.dial-menu button.is-selected { background: var(--bone-warm); color: var(--bronze); }
.dial-menu button.is-selected .dial-code { color: var(--bronze); }
.chips { border: 0; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chips legend { flex-basis: 100%; padding: 0; }
.chip { position: relative; }
.chip input { position: absolute; opacity: 0; width: 0; height: 0; }
.chip span {
  display: inline-block;
  border: 1px solid var(--line);
  min-height: 40px;
  padding: 0.6em 1.1em;
  letter-spacing: 0.08em;
  font-size: var(--step--1);
  cursor: pointer;
  background: var(--paper);
}
.chip input:checked + span { background: var(--ink); border-color: var(--ink); color: var(--bone); }
.chip input:focus-visible + span { outline: 2px solid var(--bronze); outline-offset: 2px; }
.chip-row { display: grid; grid-template-columns: 1fr auto; align-items: start; gap: 0.8rem 1.1rem; }
.hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }
.err { color: #a4402f; font-size: var(--step--1); letter-spacing: 0; text-transform: none; }
.err-block { background: #f6e9e6; border-left: 2px solid #a4402f; padding: 0.75rem 1rem; color: #6b2c24; }
.fineprint, .form-note { color: var(--ink-muted); font-size: var(--step--1); margin: 0; }
.fineprint a { border-bottom: 1px solid var(--line); }
.lead-success h3 { font-size: 2rem; margin-bottom: 0.5rem; }
.dl-list { display: grid; gap: 0.6rem; margin: 1rem 0; }
.dl-item { display: flex; justify-content: space-between; gap: 1rem; border: 1px solid var(--line); padding: 0.8rem 1rem; background: var(--paper); }
.dl-item em { display: block; font-style: normal; color: var(--ink-muted); font-size: 0.85rem; }

.prose { max-width: 78ch; }
.prose p, .prose li { color: var(--ink-muted); }
.prose h2 { font-size: var(--step-2); margin: 2rem 0 0.6rem; }
.prose a { border-bottom: 1px solid var(--line); }

.site-footer { background: #17120d; color: rgba(252, 251, 245, 0.82); padding: 4rem 0 6.5rem; }
body.sticky-on .site-footer { padding-bottom: calc(7.5rem + env(safe-area-inset-bottom, 0px)); }
@media (max-width: 800px) {
  body.sticky-on { scroll-padding-bottom: var(--sticky-clear, 14rem); }
  body.sticky-on main { padding-bottom: var(--sticky-clear, 14rem); }
  body.sticky-on .site-footer { padding-bottom: calc(var(--sticky-clear, 14rem) + 1.5rem); }
}
.footer-top { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 2rem; }
@media (max-width: 800px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand img { height: 54px; width: auto; margin-bottom: 0.8rem; }
.footer-address { font-style: normal; color: rgba(252, 251, 245, 0.72); }
.footer-h { font-family: var(--font-sans); font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--bronze-light); font-weight: 400; margin-bottom: 0.8rem; }
.footer-nav a, .footer-contact a { display: block; padding: 0.22rem 0; color: rgba(252, 251, 245, 0.88); }
.footer-legal { margin-top: 2.5rem; display: grid; gap: 0.85rem; font-size: 0.78rem; color: rgba(252, 251, 245, 0.62); }
.footer-legal .upper { letter-spacing: 0.04em; text-transform: uppercase; }
.footer-bottom { margin-top: 1.6rem; padding-top: 1rem; border-top: 1px solid rgba(185, 151, 109, 0.35); display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: 0.82rem; }
.footer-links { display: flex; gap: 0.55rem; align-items: center; }

.sticky-bar {
  position: fixed;
  z-index: 90;
  left: 0; right: 0; bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem var(--gutter) calc(0.75rem + env(safe-area-inset-bottom, 0px));
  background: #17120df2;
  color: var(--bone);
  transform: translateY(110%);
  transition: transform 0.45s var(--ease);
}
body.sticky-on .sticky-bar { transform: translateY(0); }
.sticky-bar[hidden] { display: flex; }
.sticky-bar-text { display: grid; }
.sticky-bar-text strong { font-weight: 400; letter-spacing: 0.14em; text-transform: uppercase; font-size: 0.72rem; }
.sticky-bar-text span { color: var(--bronze-light); font-size: 0.82rem; }
.sticky-bar-ctas { display: flex; gap: 0.6rem; }
.sticky-bar-cta, .sticky-bar-close {
  background: transparent;
  color: var(--bone);
  border: 1px solid var(--bronze);
  cursor: pointer;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.68rem;
  padding: 0.75rem 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.sticky-bar-cta {
  background: var(--bronze);
  color: #fff;
  border: none;
  letter-spacing: 0.2em;
  font-size: 0.66rem;
  font-weight: 500;
  min-height: 44px;
  padding: 0.75rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.sticky-bar-cta:hover { background: var(--bronze-light); color: #17120d; animation: none; }
.sticky-bar-close { border-color: transparent; font-size: 1.3rem; padding: 0.3rem 0.55rem; }
@media (max-width: 800px) {
  .sticky-bar { flex-wrap: wrap; }
  .sticky-bar-text { display: none; }
  .sticky-bar-ctas { flex: 1; }
  .sticky-bar-cta { flex: 1; justify-content: center; font-size: 0.58rem; letter-spacing: 0.08em; }
}

.fab-stack {
  position: fixed;
  z-index: 95;
  right: max(1.15rem, env(safe-area-inset-right, 0px));
  bottom: calc(1.5rem + env(safe-area-inset-bottom, 0px));
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
  transition: bottom 0.45s var(--ease);
}
body.sticky-on .fab-stack { bottom: calc(7.25rem + env(safe-area-inset-bottom, 0px)); }
@media (max-width: 900px) {
  body.sticky-on .fab-stack { bottom: calc(8.5rem + env(safe-area-inset-bottom, 0px)); }
}
.fab-round {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  text-decoration: none;
}
.fab-round:hover, .fab-round:focus-visible { transform: scale(1.08); animation: none; }
.fab-tip {
  position: absolute;
  right: calc(100% + 0.7rem);
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  background: #17120df2;
  color: var(--bone);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.6rem;
  padding: 0.45rem 0.8rem;
  opacity: 0;
  pointer-events: none;
}
.fab-round.is-tip .fab-tip { opacity: 1; }
@media (hover: hover) and (pointer: fine) {
  .fab-round:hover .fab-tip,
  .fab-round:focus-visible .fab-tip { opacity: 1; }
}
@media (hover: none), (pointer: coarse) {
  .fab-round:hover .fab-tip,
  .fab-round:focus .fab-tip,
  .fab-round:focus-visible .fab-tip { opacity: 0; }
  .fab-round.is-tip .fab-tip { opacity: 1; }
}
.fab-call { background: var(--champagne); animation: fabPulseGold 1.8s ease-in-out infinite; }
.fab-chat { background: var(--ink); border: 1px solid rgba(197, 160, 89, 0.45); animation: fabPulseGold 1.8s ease-in-out infinite; }
.fab-wa { background: #25d366; animation: fabPulseGreen 1.8s ease-in-out infinite; }
@keyframes fabPulseGold {
  0%, 100% { box-shadow: 0 4px 14px rgba(197, 160, 89, 0.28); transform: scale(1); opacity: 1; }
  50% { box-shadow: 0 8px 22px rgba(197, 160, 89, 0.42), 0 0 0 7px rgba(197, 160, 89, 0.12); transform: scale(1.04); opacity: 0.92; }
}
@keyframes fabPulseGreen {
  0%, 100% { box-shadow: 0 4px 14px rgba(37, 211, 102, 0.28); transform: scale(1); opacity: 1; }
  50% { box-shadow: 0 8px 22px rgba(37, 211, 102, 0.42), 0 0 0 7px rgba(37, 211, 102, 0.14); transform: scale(1.04); opacity: 0.92; }
}
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(184, 147, 90, 0.5); }
  50% { box-shadow: 0 0 0 10px rgba(184, 147, 90, 0); }
}
@keyframes ctaShimmer {
  0% { left: -100%; }
  55%, 100% { left: 160%; }
}
.cta-pulse { position: relative; overflow: hidden; animation: ctaPulse 2.8s ease-in-out infinite; }
.cta-pulse::before {
  content: "";
  pointer-events: none;
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  animation: ctaShimmer 2.8s ease-in-out infinite;
}
.cta-pulse > * { position: relative; z-index: 1; }
.hero-ctas .btn.cta-pulse::before {
  background: linear-gradient(90deg, transparent, rgba(185, 151, 109, 0.55), transparent);
}

.chatbox {
  position: fixed;
  z-index: 96;
  right: max(1.15rem, env(safe-area-inset-right, 0px));
  bottom: calc(14rem + env(safe-area-inset-bottom, 0px));
  width: min(340px, calc(100vw - 2rem));
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 20px 50px #17120d33;
}
body.sticky-on .chatbox { bottom: calc(19rem + env(safe-area-inset-bottom, 0px)); }
.chat-head { display: flex; justify-content: space-between; align-items: center; padding: 0.85rem 1rem; border-bottom: 1px solid var(--line-soft); }
.chat-name { font-family: var(--font-display); font-size: 1.25rem; }
.chat-status { font-size: 0.75rem; color: var(--ink-muted); }
.chat-x { border: 0; background: none; font-size: 1.4rem; cursor: pointer; }
.chat-body { padding: 1rem; }
.chat-msg { background: var(--bone-warm); padding: 0.8rem 0.9rem; margin-bottom: 0.8rem; }
.chat-chips { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.chat-chip { border: 1px solid var(--line); background: var(--paper); padding: 0.4rem 0.7rem; cursor: pointer; font-size: 0.8rem; }

.modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(23, 18, 13, 0.62);
  display: grid;
  place-items: center;
  padding: 1rem;
}
.modal[hidden] { display: none; }
.modal.nl-modal.is-open {
  display: grid !important;
  visibility: visible;
  opacity: 1;
}
.modal-panel {
  background: var(--bone);
  width: min(560px, 100%);
  max-height: calc(100svh - 2rem);
  overflow: auto;
  padding: clamp(1.75rem, 4vw, 2.75rem);
  position: relative;
}
@media (min-width: 901px) {
  .modal { place-items: center; padding: 2rem; }
  .modal-panel.lead-modal {
    width: 626px;
    max-width: calc(100vw - 4rem);
    max-height: 533px;
    padding: 1.15rem 1.35rem 0.75rem;
    overflow: auto;
  }
  .lead-modal .lead-brand { margin-bottom: 0.2rem; }
  .lead-modal .lead-brand img { height: 28px; max-width: 100px; }
  .lead-modal .modal-kicker { margin-bottom: 0.2rem; }
  .lead-modal .modal-title {
    font-size: 2rem;
    line-height: 1.05;
    margin-bottom: 0.25rem;
  }
  .lead-modal .modal-blurb {
    margin: 0 0 0.4rem;
    font-size: 0.85rem;
    line-height: 1.35;
  }
  .lead-modal .lead-form.is-compact { gap: 0.28rem; }
  .lead-modal .lead-form.is-compact .fineprint { margin-top: 0; }
}
.modal-close {
  position: absolute;
  top: 0.45rem;
  right: 0.45rem;
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
  font-size: 2rem;
  cursor: pointer;
  color: var(--ink-muted);
}
.modal-title { font-size: clamp(2rem, 4vw, 2.7rem); margin-bottom: 0.55rem; }
.modal-blurb { margin: 0 0 1.2rem; color: var(--ink-muted); }
.modal.nl-modal {
  background: rgba(10, 15, 20, 0.68);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.nl-panel {
  width: min(480px, 100%);
  max-height: calc(100svh - 2.5rem);
  padding: 0;
  background: var(--bone);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.nl-panel .modal-close {
  color: #fff;
  z-index: 5;
  top: 0.4rem;
  right: 0.35rem;
  width: 48px;
  height: 48px;
  background: transparent;
}
.nl-panel .modal-close:hover { color: var(--bone); }
.nl-media {
  position: relative;
  flex: none;
  width: 100%;
  aspect-ratio: 480 / 262;
  background: var(--ink);
  overflow: hidden;
}
.nl-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 62% center;
}
.nl-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(8, 12, 17, 0.28), rgba(8, 12, 17, 0.06) 55%, rgba(250, 247, 242, 0.9));
}
.nl-body { padding: 0.95rem 1.05rem 1rem; overflow-y: auto; min-height: 0; }
.nl-body .lead-brand { margin: 0 0 0.5rem; justify-content: flex-start; }
.nl-body .lead-brand img { height: 40px; width: auto; max-width: 148px; object-fit: contain; }
.nl-body .modal-kicker { margin-bottom: 0.35rem; }
.nl-body .modal-title {
  font-size: clamp(1.25rem, 3.4vw, 1.55rem);
  line-height: 1.15;
  margin-bottom: 0.35rem;
  padding-right: 2.2rem;
}
.nl-body .modal-blurb { margin: 0 0 0.55rem; font-size: 0.82rem; line-height: 1.4; }
.nl-body .lead-form .btn {
  font-size: clamp(0.78rem, 0.74rem + 0.18vw, 0.875rem);
  letter-spacing: 0.2em;
}
.nl-panel .modal-close { display: grid; place-items: center; line-height: 1; }
.nl-dismiss {
  display: block;
  width: 100%;
  margin-top: 0.15rem;
  min-height: 40px;
  padding: 0.5rem;
  border: 0;
  background: transparent;
  color: var(--ink-muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.72rem;
  cursor: pointer;
}
.nl-dismiss:hover { color: var(--ink); }
@media (max-width: 800px) {
  .modal.nl-modal.is-open {
    display: grid !important;
    align-items: flex-start;
    justify-content: center;
    padding: 0.25rem;
    padding-bottom: calc(0.25rem + env(safe-area-inset-bottom, 0px));
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    overflow: hidden;
  }
  .modal.nl-modal .nl-panel {
    position: relative !important;
    left: auto;
    right: auto;
    bottom: auto;
    top: auto;
    align-self: start;
    width: 100%;
    max-width: 480px;
    height: auto !important;
    min-height: 0 !important;
    max-height: calc(100svh - 0.5rem) !important;
    border-radius: 0;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  .nl-media { display: none; }
  .nl-panel .nl-close {
    position: absolute;
    top: 0.4rem;
    right: 0.35rem;
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    margin: 0;
    font-size: 2rem;
    color: var(--ink-muted);
    background: transparent;
    border-radius: 0;
    z-index: 5;
  }
  .nl-panel .nl-close:hover { color: var(--ink); }
  .nl-body { padding: 0.7rem 0.8rem calc(0.8rem + env(safe-area-inset-bottom, 0px)); }
  .nl-panel .lead-form input,
  .nl-panel .lead-form select { font-size: 16px; }
  .nl-body .lead-brand img { height: 36px; max-width: 132px; }
  .nl-body .modal-title { font-size: 1.35rem; }
}

.gallery-grid a { display: block; aspect-ratio: 4/3; overflow: hidden; background: #17120d; }
a[data-lightbox] { cursor: pointer; -webkit-user-drag: none; }
.gallery-swipe { display: none; }
.gallery-swipe-hint {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0 0 0.75rem;
  font-size: 0.62rem;
}
.gallery-swipe-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  touch-action: manipulation;
  min-width: 0;
  width: 100%;
  gap: 0.65rem;
}
.gallery-swipe-track::-webkit-scrollbar { display: none; }
.gallery-swipe-slide {
  flex: 0 0 86%;
  scroll-snap-align: start;
  scroll-snap-stop: normal;
  display: block;
  touch-action: manipulation;
  background: #17120d;
}
.gallery-swipe-slide .media { display: block; aspect-ratio: 4/3; overflow: hidden; }
.gallery-swipe-slide img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; -webkit-user-drag: none; }
.gallery-swipe-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 0.85rem;
}
.gallery-swipe-arrow {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
}
.gallery-swipe-count {
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-size: 0.68rem;
}
@media (max-width: 720px) {
  .gallery-set .gallery-grid { display: none; }
  .gallery-swipe { display: block; }
}
.sneak { position: relative; }
.sneak-stage { position: relative; }
.sneak-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: clamp(168px, 17vw, 230px) clamp(230px, 24vw, 328px) clamp(168px, 15vw, 196px);
  gap: 8px;
}
.sneak-grid figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  min-width: 0;
  min-height: 0;
  background: #17120d;
}
.sneak-grid a { display: block; position: relative; width: 100%; height: 100%; }
.sneak-grid img { position: absolute; inset: 0; width: 100%; height: 100%; max-width: none; object-fit: cover; }
.sneak-grid .s-w2 { grid-column: span 2; }
.sneak-grid .s-w3 { grid-column: span 3; }
.sneak-grid .s-w4 { grid-column: span 4; }
.sneak-blur {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 22px;
  pointer-events: none;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  -webkit-mask-image: linear-gradient(to top, #000 0%, #000 28%, transparent 100%);
  mask-image: linear-gradient(to top, #000 0%, #000 28%, transparent 100%);
}
.sneak-wash {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 36px;
  pointer-events: none;
  background: linear-gradient(to top,
    #fcfbf5 0%,
    rgba(252, 251, 245, 0.72) 46%,
    rgba(252, 251, 245, 0) 100%);
}
.sneak-lock {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: end;
  justify-items: center;
  gap: 0.85rem;
  margin-top: 1.15rem;
  padding-bottom: 0.2rem;
  text-align: center;
  pointer-events: none;
}
.sneak-count {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #8a847a;
}
.sneak-cta {
  pointer-events: auto;
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.9em 1.7em;
  background: #17120d;
  color: #fcfbf5;
  border: 0;
  border-radius: 0;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
}
.sneak-cta:hover, .sneak-cta:focus-visible { background: #2a261f; }
@media (max-width: 759px) {
  .sneak-grid, .sneak-blur, .sneak-wash { display: none; }
  .sneak .gallery-swipe { display: block; }
  .sneak .gallery-swipe-track { scroll-behavior: auto; }
  .sneak-lock {
    position: relative;
    height: auto;
    margin-top: 0;
    padding: 1.35rem 0 0.25rem;
  }
}
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.gallery-grid a:hover img { transform: scale(1.04); }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1300;
  color: var(--ink);
  background: var(--bone);
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: center;
  justify-items: center;
  gap: clamp(0.75rem, 2vw, 1.4rem);
  padding: clamp(3.4rem, 6vw, 4.5rem) clamp(1rem, 3vw, 2.5rem) clamp(1rem, 2.4vw, 1.6rem);
  touch-action: none;
}
.lightbox[hidden] { display: none; }
.lb-close {
  position: absolute;
  top: clamp(1.1rem, 3vw, 1.7rem);
  right: clamp(1.2rem, 3.4vw, 2.2rem);
  color: var(--ink);
  background: none;
  border: 0;
  cursor: pointer;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.62rem;
  padding: 0.4rem 0.15rem;
}
.lb-close span { letter-spacing: 0.08em; margin-left: 0.35rem; font-size: 1.15rem; }
.lb-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.6rem, 2.2vw, 1.8rem);
  width: 100%;
  max-width: 1480px;
}
.lb-figure {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(0.85rem, 1.8vw, 1.25rem);
  min-width: 0;
  max-width: min(72vw, 1120px);
}
.lb-image {
  position: relative;
  aspect-ratio: 16/10;
  width: 100%;
  max-height: min(62vh, 640px);
  border-radius: 28px;
  overflow: hidden;
  background: var(--bronze-pale);
}
.lb-image, .lb-stage, .lb-figure { touch-action: none; }
.lb-strip { touch-action: pan-x; }
.lb-image img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.lb-caps {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.62rem;
}
.lb-title { text-align: right; }
.lb-nav {
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--ink);
  background: var(--bone);
  color: var(--ink);
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
}
.lb-nav:hover { background: var(--ink); color: var(--bone); }
.lb-strip {
  display: flex;
  justify-content: flex-start;
  gap: 0.55rem;
  width: min(100%, 1320px);
  overflow-x: auto;
  padding: 0.15rem 0 0.35rem;
  scrollbar-width: none;
}
.lb-strip::-webkit-scrollbar { display: none; }
.lb-thumb {
  position: relative;
  flex: 0 0 76px;
  width: 76px;
  height: 50px;
  border: 0;
  padding: 0;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.72;
  background: var(--bronze-pale);
}
.lb-thumb img { width: 100%; height: 100%; object-fit: cover; }
.lb-thumb.is-active { opacity: 1; box-shadow: 0 0 0 1px var(--ink); }
body:has(.lightbox:not([hidden])) .chatbox,
body:has(.lightbox:not([hidden])) .fab-stack,
body:has(.lightbox:not([hidden])) .sticky-bar,
body:has(.modal:not([hidden])) .chatbox,
body:has(.modal:not([hidden])) .fab-stack,
body:has(.modal:not([hidden])) .sticky-bar { visibility: hidden; pointer-events: none; }
@media (max-width: 800px) {
  .lightbox { padding: 4.2rem 0.7rem 1rem; gap: 0.85rem; }
  .lb-stage { gap: 0.35rem; }
  .lb-figure { max-width: min(78vw, 640px); }
  .lb-image { max-height: min(52vh, 460px); border-radius: 20px; }
  .lb-nav { width: 46px; height: 46px; }
  .lb-thumb { flex-basis: 58px; width: 58px; height: 38px; border-radius: 6px; }
}
.amen-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.15rem; margin-top: 0.4rem; }
.amen-card { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--ink); min-height: 220px; }
.amen-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.amen-ov {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.7rem;
  background: linear-gradient(0deg, rgba(23, 18, 13, 0.9) 0, rgba(23, 18, 13, 0.15) 60%, transparent);
  pointer-events: none;
}
.amen-h { font-family: var(--font-display); font-size: 1.5rem; color: var(--bone); line-height: 1.2; margin: 0; }
.amen-s { font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--bronze-light); margin-top: 0.55rem; }
@media (max-width: 900px) { .amen-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .amen-grid { grid-template-columns: 1fr; } }
.form-panel.is-compact { padding: 1.6rem; }
.lead-form.is-compact { gap: 0.55rem; }
.lead-form.is-compact input[type="email"],
.lead-form.is-compact input[type="tel"],
.lead-form.is-compact input[type="text"],
.lead-form.is-compact select {
  min-height: 44px;
  padding: 0.5em 0.75em;
}
.lead-form.is-compact .phone-dial { min-height: 44px; }
.lead-form.is-compact .chip span { min-height: 34px; padding: 0.35em 0.7em; font-size: 0.6rem; line-height: 1.35; }
.lead-form.is-compact .btn { min-height: 48px; padding: 0.85em 1em; letter-spacing: 0.2em; }
.lead-form.is-compact .fineprint { font-size: 0.72rem; line-height: 1.45; }
.split-form { grid-template-columns: minmax(0, 1fr) min(626px, 100%); align-items: start; }
@media (max-width: 860px) { .split-form { grid-template-columns: 1fr; } }
@media (max-width: 700px) {
  .form-panel, .form-panel.is-compact, .modal-panel.lead-modal { padding: 1rem 0.95rem; }
  .form-panel .lead-brand img, .lead-modal .lead-brand img { height: 26px; max-width: 96px; }
  .lead-form, .lead-form.is-compact { gap: 0.42rem; }
  .lead-form label, .chips legend { font-size: 0.58rem; letter-spacing: 0.12em; margin: 0; }
  .lead-form input[type="email"],
  .lead-form input[type="tel"],
  .lead-form input[type="text"],
  .lead-form select { min-height: 44px; padding: 0.5em 0.75em; font-size: 16px; }
  .lead-form.is-compact .phone-dial,
  .lead-form.is-compact input[name="phoneLocal"] { min-height: 48px; }
  .lead-form .chip-row { grid-template-columns: 1fr auto; gap: 0.55rem 1rem; }
  .lead-form .chips { gap: 0.28rem; }
  .lead-form .chip span { min-height: 34px; padding: 0.35em 0.7em; font-size: 0.6rem; line-height: 1.35; }
  .lead-form .btn { min-height: 48px; padding: 0.85em 1em; letter-spacing: 0.2em; }
  .lead-form .fineprint { font-size: 0.62rem; line-height: 1.45; }
  .modal-panel.lead-modal { width: 100%; max-height: 100svh; padding: 0.85rem 0.9rem 1rem; }
  .modal-panel.lead-modal .modal-title { font-size: 1.2rem; margin-bottom: 0.35rem; padding-right: 2.2rem; }
  .modal-panel.lead-modal .modal-blurb { margin-bottom: 0.5rem; font-size: 0.78rem; }
  .field-row { gap: 0.42rem; }
}
