:root {
  --bg: #090807;
  --bg-2: #100e0c;
  --surface: #171310;
  --surface-2: #1e1915;
  --line: rgba(232, 196, 140, 0.14);
  --gold: #d4a24a;
  --gold-2: #f0c56d;
  --gold-dim: rgba(212, 162, 74, 0.16);
  --ember: #c45c26;
  --cream: #f6eee4;
  --cream-2: #e8dccb;
  --muted: #9b8c7c;
  --ink: #0b0a09;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --radius: 22px;
  --nav-h: 84px;
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Outfit", system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font-family: inherit; }

.page-wrap { min-height: 100vh; }

/* NAV */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 50;
  display: flex;
  align-items: center;
  transition: background .35s ease, border-color .35s ease, backdrop-filter .35s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(9, 8, 7, 0.78);
  backdrop-filter: blur(18px);
  border-bottom-color: var(--line);
}
.nav-inner {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  letter-spacing: 0.28em;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
}
.brand img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--line);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-2);
  opacity: 0.78;
  transition: opacity .2s, color .2s;
}
.nav-links a:hover,
.nav-links a.active { opacity: 1; color: var(--gold-2); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 14px 26px;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold {
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(212, 162, 74, 0.28);
}
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--line);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-2); }

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--cream);
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: end start;
  padding: calc(var(--nav-h) + 40px) 0 80px;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9,8,7,.35) 0%, rgba(9,8,7,.2) 30%, rgba(9,8,7,.78) 72%, var(--bg) 100%),
    linear-gradient(90deg, rgba(9,8,7,.72) 0%, rgba(9,8,7,.2) 55%, rgba(9,8,7,.45) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  max-width: 760px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-2);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 11px;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}
h1, h2, h3 { font-family: var(--font-display); font-weight: 500; line-height: 1.05; margin: 0; }
.hero h1 {
  font-size: clamp(52px, 8vw, 96px);
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-2);
  font-weight: 400;
}
.lede {
  color: var(--cream-2);
  font-size: clamp(16px, 1.5vw, 19px);
  max-width: 540px;
  margin: 0 0 32px;
  opacity: 0.88;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-meta {
  display: flex;
  gap: 28px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--gold-2);
  font-weight: 500;
}
.stat span {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.container { width: min(1240px, calc(100% - 40px)); margin: 0 auto; }
.section { padding: 96px 0; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 42px;
}
.section-head h2 {
  font-size: clamp(36px, 5vw, 58px);
}
.section-head p { max-width: 420px; color: var(--muted); margin: 0; }

/* KITCHEN CARDS */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.kitchen-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 420px;
  background: var(--surface);
  isolation: isolate;
  transition: transform .35s ease;
}
.kitchen-card:hover { transform: translateY(-6px); }
.kitchen-card > img.cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}
.kitchen-card:hover > img.cover { transform: scale(1.06); }
.logo-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  width: 96px;
  height: 96px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(12, 10, 8, 0.78);
  border: 1px solid rgba(232, 196, 140, 0.38);
  box-shadow: 0 10px 28px rgba(0,0,0,.4);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.logo-badge img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,.45));
}
.detail-logo-badge {
  width: 108px;
  height: 108px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(12, 10, 8, 0.78);
  border: 1px solid rgba(232, 196, 140, 0.38);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.detail-logo-badge img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,.45));
}
.kitchen-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(9,8,7,.92) 100%);
}
.kitchen-body {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: 24px;
}
.pill {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-2);
  border: 1px solid rgba(240,197,109,.35);
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(9,8,7,.45);
  backdrop-filter: blur(8px);
  margin-bottom: 10px;
}
.kitchen-body h3 { font-size: 32px; margin-bottom: 6px; }
.kitchen-body p { margin: 0; color: var(--cream-2); font-size: 14px; }
.kitchen-body p.muted { color: var(--muted); margin-top: 8px; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; }
.kitchen-body .text-link { display: inline-block; margin-top: 10px; color: var(--gold-2); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; }
.street-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.group-filters { margin-top: 12px; }
.street-filters .pill { margin-bottom: 0; color: var(--cream-2); }
.street-filters .pill.on { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.group-pill {
  display: inline-block;
  margin: 8px 8px 0 0;
  border-color: rgba(212, 162, 74, 0.55);
  color: var(--gold-2);
  background: rgba(12, 10, 8, 0.35);
}
.text-list {
  display: grid;
  gap: 12px;
  max-width: 820px;
}
.text-row {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  color: inherit;
}
.text-row:hover { border-color: var(--gold); }
.text-row strong {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
}
.text-row .hh-when {
  color: var(--gold-2);
  font-size: 14px;
  letter-spacing: 0.04em;
}

/* HOW */
.how-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.steps { display: grid; gap: 22px; }
.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.02), transparent);
}
.step-num {
  font-family: var(--font-display);
  font-size: 34px;
  color: var(--gold);
}
.step h3 { font-size: 26px; margin-bottom: 6px; }
.step p { margin: 0; color: var(--muted); }
.media-frame {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.media-frame img { width: 100%; height: 560px; object-fit: cover; }

/* PLANS */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.plan {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  min-height: 460px;
}
.plan.featured {
  background:
    radial-gradient(1200px 200px at 50% -40%, rgba(212,162,74,.22), transparent),
    var(--surface-2);
  border-color: rgba(212,162,74,.4);
  transform: translateY(-10px);
}
.plan .price {
  font-family: var(--font-display);
  font-size: 52px;
  margin: 16px 0 6px;
}
.plan .price span { font-size: 18px; color: var(--muted); }
.plan ul { list-style: none; padding: 0; margin: 18px 0 28px; color: var(--cream-2); }
.plan li { padding: 8px 0 8px 22px; position: relative; }
.plan li::before {
  content: "";
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  position: absolute; left: 0; top: 15px;
}
.plan .btn { margin-top: auto; width: 100%; }

/* QUOTE / ABOUT BAND */
.band {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
.band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.38) saturate(1.1);
}
.band-inner { position: relative; z-index: 2; max-width: 760px; }
.band blockquote {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.4vw, 54px);
  line-height: 1.15;
  margin: 0 0 18px;
  font-style: italic;
}

/* FORM */
.form {
  display: grid;
  gap: 16px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
input, textarea, select {
  width: 100%;
  margin-top: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--cream);
  border-radius: 14px;
  padding: 14px 16px;
  outline: none;
}
input:focus, textarea:focus, select:focus { border-color: var(--gold); }
textarea { min-height: 140px; resize: vertical; }
.hp {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}
.alert {
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(212,162,74,.35);
  background: var(--gold-dim);
  color: var(--gold-2);
}

/* FOOTER */
footer {
  border-top: 1px solid var(--line);
  padding: 56px 0 28px;
  color: var(--muted);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 42px;
}
footer h4 {
  font-family: var(--font-body);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--cream);
  margin: 0 0 14px;
}
footer a { display: block; padding: 5px 0; color: var(--muted); }
footer a:hover { color: var(--gold-2); }
.legal {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  font-size: 13px;
}
.disclaimer {
  flex: 1 1 100%;
  margin: 4px 0 0;
  max-width: 720px;
  font-size: 12px;
  line-height: 1.55;
  color: var(--muted);
}

.page-hero {
  padding: calc(var(--nav-h) + 56px) 0 40px;
}
.page-hero h1 { font-size: clamp(44px, 6vw, 76px); margin: 10px 0 14px; }

.reveal { opacity: 0; transform: translateY(18px); animation: rise .8s ease forwards; }
@keyframes rise { to { opacity: 1; transform: none; } }

@media (max-width: 980px) {
  .grid-3, .plans, .how-grid, .grid-2, .footer-grid, .form-row { grid-template-columns: 1fr; }
  .plan.featured { transform: none; }
  .nav-toggle { display: grid; place-items: center; }
  .nav-links, .nav .btn-gold { display: none; }
  .nav.open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(9,8,7,.96);
    padding: 24px;
    border-bottom: 1px solid var(--line);
  }
  .hero-meta { flex-wrap: wrap; }
  .media-frame img { height: 360px; }
  .section-head { flex-direction: column; align-items: start; }
}

/* DETAIL */
.detail-hero {
  position: relative;
  min-height: 72vh;
  display: grid;
  align-items: end;
}
.detail-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9,8,7,.25) 0%, rgba(9,8,7,.88) 78%);
}
.detail-hero-copy {
  position: relative;
  z-index: 2;
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 140px 0 56px;
}
.detail-mark {
  font-family: var(--font-display);
  font-size: clamp(28px, 6vw, 72px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 12px;
}
.menu-sec {
  margin: 22px 0 8px;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.menu-list {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
}
.menu-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.menu-list strong { display: block; }
.menu-list span { color: var(--muted); font-size: 14px; }

.note-band {
  padding-top: 36px;
  padding-bottom: 8px;
}
.note-wrap {
  max-width: 760px;
}
.note-wrap h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 500;
  margin: 8px 0 18px;
}
.note-body {
  font-size: 18px;
  line-height: 1.7;
  color: var(--cream-2);
  margin: 0;
}
.group-tag {
  margin: 4px 0 8px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.hh-band,
.special-band {
  border: 1px solid var(--line);
  background: var(--gold-dim);
  border-radius: 16px;
  padding: 16px 18px 14px;
  margin: 0 0 22px;
}
.special-band {
  background: rgba(196, 92, 38, 0.12);
}
.hh-when {
  font-family: var(--font-display);
  font-size: 22px;
  margin: 4px 0 6px;
}

.map-shell {
  padding: 0 20px 48px;
}
.district-map {
  height: min(72vh, 820px);
  min-height: 480px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.district-map .leaflet-tile-pane,
.door-map .leaflet-tile-pane {
  filter: invert(1) hue-rotate(180deg) brightness(0.9) contrast(0.95);
}
.door-map {
  height: 220px;
  margin-top: 16px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 14px 0 0;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.map-legend .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
}
.dot.randolph { background: #d4a24a; }
.dot.fulton { background: #c45c26; }
.dot.green { background: #7dba83; }
.dot.lake { background: #6ea8d4; }
.dot.ada { background: #c9a0dc; }
.dot.carroll { background: #e8dccb; }
.ne-pin {
  background: none;
  border: none;
}
.ne-pin span {
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid #f6eee4;
  box-shadow: 0 0 0 4px rgba(212,162,74,.25);
}
.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
  background: #171310;
  color: #f6eee4;
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(0,0,0,.5);
}
.ne-pop {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 160px;
  font-family: Outfit, system-ui, sans-serif;
}
.ne-pop strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 500;
}
.ne-pop span { color: #9b8c7c; font-size: 13px; }
.ne-pop a {
  color: #d4a24a;
  margin-top: 6px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
#mapFilters .pill {
  cursor: pointer;
  background: transparent;
  border: 1px solid var(--line);
  color: inherit;
}
.text-row {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 16px;
    align-items: start;
    padding: 16px 18px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--surface);
    color: inherit;
}

.text-logo {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: rgba(12, 10, 8, 0.78);
    border: 1px solid rgba(212, 162, 74, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

    .text-logo img {
        max-width: 78%;
        max-height: 78%;
        object-fit: contain;
    }

.text-row-copy {
    display: grid;
    gap: 4px;
    min-width: 0;
}
.text-row-copy {
    grid-column: 2;
}
.desk-row {
    position: relative;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 22px 24px 16px 56px;
    margin-bottom: 16px;
    background: #14110e;
}

.desk-fold {
    counter-reset: deskitem;
    margin: 8px 0 18px;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 8px 18px 12px;
    background: var(--surface);
}

    .desk-fold .desk-row {
        counter-increment: deskitem;
    }

        .desk-fold .desk-row::before,
        .form > .desk-row::before {
            position: absolute;
            left: 16px;
            top: 26px;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            border: 1px solid rgba(212, 162, 74, 0.55);
            color: var(--gold-2);
            font-size: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .desk-fold .desk-row::before {
            content: counter(deskitem);
        }

.form {
    counter-reset: deskadd;
}

    .form > .desk-row {
        counter-increment: deskadd;
    }

        .form > .desk-row::before {
            content: counter(deskadd);
        }

        .desk-fold .desk-row:nth-of-type(odd),
        .form > .desk-row:nth-of-type(odd) {
            background: #14110e;
        }

        .desk-fold .desk-row:nth-of-type(even),
        .form > .desk-row:nth-of-type(even) {
            background: #2b2318;
            border-color: rgba(212, 162, 74, 0.45);
        }

.text-row:nth-child(odd) {
    background: #14110e;
}

.text-row:nth-child(even) {
    background: #2b2318;
    border-color: rgba(212, 162, 74, 0.45);
}

.desk-fold summary {
    cursor: pointer;
    list-style: none;
    padding: 16px 4px;
    color: var(--gold-2);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 13px;
}

.desk-fold[open] summary {
    border-bottom: 1px solid var(--line);
    margin-bottom: 14px;
}
.kitchen-pick {
    margin-top: 22px;
    max-width: 420px;
}

    .kitchen-pick label {
        display: block;
    }

    .kitchen-pick select {
        width: 100%;
        cursor: pointer;
    }