:root {
  --nse-top-bar: #070707;
  --nse-dark-band: #070707;
  --nse-cta-bg: #d8c9a3;
  --nse-primary: #d8c9a3;
  --ink: #111;
  --cream: #f4efe6;
  --champagne: #d8c9a3;
  --muted: #8a8478;
  --line: rgba(216, 201, 163, 0.28);
  --panel: #111111;
  --max: 1180px;
  --font: "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
  --display: Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  overflow-x: clip;
}
body {
  margin: 0;
  color: #e8e4dc;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  background: #070707;
  overflow-x: clip;
}
html.nav-open,
body.nav-open {
  overflow: hidden;
  overscroll-behavior: none;
}
body.nav-open {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
}
img { max-width: 100%; height: auto; display: block; }
iframe { max-width: 100%; }
a { color: var(--champagne); }
a:hover { color: #fff; }
.wrap { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; }
.skip { position: absolute; left: -999px; }
.skip:focus { left: 12px; top: 12px; z-index: 30; background: #fff; color: #000; padding: 8px; }

.eyebrow {
  color: var(--champagne);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  margin: 0 0 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
}
.brand-mark { width: 44px; height: 44px; flex: 0 0 44px; }
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.brand-text small {
  font-family: var(--font);
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--champagne);
  font-weight: 700;
}
.brand-text b { font-size: 18px; font-weight: 600; }

.header-top-bar { display: none; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 7, 7, 0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.site-header.is-stuck,
.site-header:hover,
.site-header:focus-within {
  background: rgba(7, 7, 7, 0.96);
  border-bottom-color: var(--line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  min-height: 76px;
  position: relative;
  z-index: 70;
}
.site-header .brand { align-self: center; position: relative; z-index: 80; }
.site-header nav {
  display: flex;
  align-items: center;
  align-self: stretch;
}
.nav-main {
  display: flex;
  align-items: stretch;
  align-self: stretch;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-main > li { position: relative; display: flex; align-items: center; z-index: 80; }
.nav-main > li.has-mega { position: static; z-index: auto; }
.nav-main a, .has-mega > button {
  display: flex;
  align-items: center;
  padding: 10px 12px;
  color: #fff;
  text-decoration: none;
  background: none;
  border: 0;
  font: inherit;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
}
.nav-main a:hover, .nav-main a[aria-current="page"], .has-mega > button:hover {
  color: var(--champagne);
}
.has-mega > button i { margin-left: 6px; font-size: 10px; transition: transform 0.2s ease; }
.has-mega.is-open > button i,
.has-mega:focus-within > button i { transform: rotate(180deg); }
.nav-cta {
  border: 1px solid var(--champagne) !important;
  border-radius: 999px;
  color: var(--champagne) !important;
  margin-left: 8px;
  text-transform: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--champagne) !important; color: #111 !important; }
.nav-cta i { margin-right: 8px; }

.mega {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  width: 100%;
  z-index: 40;
  background: #0b0b0b;
  border-top: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  padding: 36px 0 40px;
  pointer-events: auto;
}
.mega::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 0;
  pointer-events: none;
}
.has-mega.is-open .mega,
.has-mega:focus-within .mega { display: block; }
.mega-inner {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  align-items: start;
}
.mega-intro h2 {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 500;
  color: #fff;
  margin: 0 0 10px;
}
.mega-intro p { color: #9a9488; font-size: 15px; margin: 0 0 18px; }
.mega-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px 16px;
}
.mega-col h3 {
  margin: 0 0 12px;
  color: var(--champagne);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.mega-col ul { list-style: none; margin: 0; padding: 0; }
.mega-col a {
  display: block;
  padding: 5px 0;
  text-transform: none;
  letter-spacing: 0;
  font-size: 14px;
  font-weight: 600;
  color: #e8e4dc;
}
.mega-col a:hover { color: var(--champagne); }

.section-has-bg {
  position: relative;
  overflow: hidden;
}
.section-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 120%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.section-has-bg.parallax-js .section-bg,
.cta-band.parallax-js .section-bg {
  will-change: transform;
}
.section-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(105deg, rgba(7,7,7,0.88) 0%, rgba(7,7,7,0.45) 58%, rgba(7,7,7,0.7) 100%);
}
.hero .section-bg,
.cta-band .section-bg { filter: brightness(0.42); }

.hero { min-height: 92vh; display: flex; align-items: flex-end; color: #fff; }
.hero-inner { position: relative; z-index: 2; padding: 160px 0 120px; max-width: 760px; }
.hero h1 {
  font-family: var(--display);
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1.05;
  font-weight: 500;
  margin: 0 0 20px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.45);
}
.hero-lead { font-size: 18px; color: #d8d2c6; max-width: 540px; margin: 0 0 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
}
.btn-primary { background: var(--champagne); color: #111; }
.btn-primary:hover { background: #fff; color: #111; }
.btn-ghost { background: transparent; color: #fff; border: 1px solid #fff; }
.btn-ghost:hover { background: #fff; color: #111; }

.stat-bar { margin-top: -48px; position: relative; z-index: 3; }
.stat-bar .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #0d0d0d;
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
}
.stat { padding: 28px 22px; text-align: center; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat i { color: var(--champagne); display: block; margin-bottom: 10px; }
.stat strong {
  display: block;
  font-family: var(--display);
  font-size: 32px;
  color: #fff;
  font-weight: 500;
}
.stat span { color: var(--muted); font-size: 13px; letter-spacing: 0.04em; }

.section { padding: 96px 0; }
.section-cream { background: var(--cream); color: var(--ink); }
.section-cream a { color: #5a4a2a; }
.section-cream h2, .section-cream h3 { color: #111; }
.section-cream .lede { color: #5c564c; }
.section-dark { background: #070707; }
.section h2 {
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 500;
  line-height: 1.12;
  margin: 0 0 16px;
}
.lede { font-size: 18px; color: #b7b1a6; margin: 0 0 28px; max-width: 640px; }
.prose p { margin: 0 0 16px; }
.prose ul { margin: 0 0 16px; padding-left: 20px; }

.feature {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.feature-grid a, .feature-grid figure {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  min-height: 180px;
  margin: 0;
}
.feature-grid img { width: 100%; height: 100%; object-fit: cover; min-height: 180px; }
.feature-grid .wide { grid-column: 1 / -1; min-height: 240px; }
.feature-cap {
  position: absolute;
  left: 14px; bottom: 12px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-shadow: 0 1px 8px #000;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.svc-grid--4 { grid-template-columns: repeat(4, 1fr); }
.svc { text-align: center; padding: 8px 6px; }
.svc i { color: var(--champagne); font-size: 22px; margin-bottom: 14px; display: block; }
.svc h3 { font-size: 16px; margin: 0 0 8px; font-weight: 600; }
.svc p { margin: 0; color: #9a9488; font-size: 14px; }
.section-cream .svc p { color: #5c564c; }
.section-cream .svc i { color: #5a4a2a; }

.svc-grid--cards { gap: 16px; }
.svc-grid--cards .svc {
  text-align: left;
  padding: 24px 18px;
  background: #111;
  border: 1px solid var(--line);
  border-radius: 12px;
}
.svc-grid--cards .svc:hover { border-color: var(--champagne); }

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.step-num {
  font-family: var(--display);
  color: var(--champagne);
  font-size: 28px;
  margin-bottom: 10px;
}
.step h3 { font-size: 18px; margin: 0 0 8px; }
.step p { margin: 0; color: #5c564c; font-size: 15px; }

.panel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 24px; }
.panel {
  background: #111;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px;
}
.panel:hover { border-color: var(--champagne); }
.panel i { color: var(--champagne); font-size: 20px; margin-bottom: 12px; display: block; }
.panel h3 { margin: 0 0 8px; font-size: 18px; }
.panel p { margin: 0; font-size: 15px; color: #9a9488; }

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}
.faq summary { cursor: pointer; font-weight: 700; color: #fff; }
.faq p { margin: 10px 0 0; color: #9a9488; }

.resources { display: grid; gap: 10px; }
.resources a {
  display: flex;
  gap: 10px;
  align-items: center;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
}

.city-hub {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.city-hub a,
.city-hub .city-soon {
  display: block;
  min-height: 160px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  color: #fff;
  background: #111;
  border: 1px solid var(--line);
}
.city-hub .city-soon { color: #9a9488; cursor: default; }
.city-hub img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 160px;
  filter: brightness(0.55);
}
.city-hub span {
  position: absolute;
  left: 16px;
  bottom: 14px;
  font-family: var(--display);
  font-size: 24px;
  color: #fff;
}
.city-hub small {
  display: block;
  font-family: var(--font);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--champagne);
}
.section-cream .city-hub .city-soon {
  background: #fff;
  border-color: #e5ddd0;
  color: #5c564c;
}
.section-cream .city-hub .city-soon span { color: #111; }

.feat-states {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 0 0 28px;
}
.feat-state {
  position: relative;
  min-height: 240px;
  border-radius: 12px;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
}
.feat-state img { width: 100%; height: 100%; object-fit: cover; min-height: 240px; filter: brightness(0.55); }
.feat-state span {
  position: absolute;
  left: 20px;
  bottom: 18px;
  font-family: var(--display);
  font-size: 32px;
  color: #fff;
}
.feat-state small {
  display: block;
  font-family: var(--font);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--champagne);
}

.insight-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 16px;
}
.insight {
  background: #111;
  border-radius: 8px;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
}
.insight img { width: 100%; height: 220px; object-fit: cover; }
.insight div { padding: 18px; }
.insight h3 { margin: 0 0 8px; color: #fff; font-size: 20px; font-family: var(--display); font-weight: 500; }
.insight p { margin: 0; color: #9a9488; font-size: 14px; }

.state-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
}
.state-grid a {
  display: block;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}
.state-grid a:hover { border-color: var(--champagne); color: var(--champagne); }

.cta-band {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 0;
  min-height: 420px;
  color: #fff;
  background: #070707;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: #d8d2c6; }
.cta-band .wrap {
  position: relative;
  z-index: 2;
}

.site-footer {
  background: #050505;
  border-top: 1px solid var(--line);
  padding: 48px 0 24px;
  font-size: 14px;
  color: #9a9488;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; }
.site-footer a { color: #fff; text-decoration: none; }
.site-footer h2 { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--champagne); margin: 0 0 12px; }
.legal { margin-top: 28px; padding-top: 16px; border-top: 1px solid #222; font-size: 12px; }

.guide-mag {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 48px;
  border-top: 1px solid var(--line);
}
.guide-mag-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  color: inherit;
  padding: 40px 0 44px;
  min-height: 280px;
  border-bottom: 1px solid var(--line);
}
.guide-mag-item:nth-child(odd) {
  padding-right: 56px;
  border-right: 1px solid var(--line);
}
.guide-mag-item:nth-child(even) {
  padding-left: 56px;
}
.guide-mag-num {
  display: block;
  font-family: var(--display);
  color: var(--champagne);
  font-size: 13px;
  letter-spacing: 0.22em;
  margin-bottom: 18px;
}
.guide-mag-item h3 {
  font-family: var(--display);
  font-size: clamp(28px, 3.2vw, 38px);
  font-weight: 500;
  line-height: 1.12;
  color: #fff;
  margin: 0 0 14px;
}
.guide-mag-item p {
  margin: 0 0 auto;
  padding-bottom: 28px;
  color: #b7b1a6;
  font-size: 16px;
  line-height: 1.55;
  max-width: 400px;
}
.guide-mag-more {
  color: var(--champagne);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}
.guide-mag-more::after {
  content: " →";
}
.guide-mag-item:hover h3 { color: var(--champagne); }
.guide-mag-item:hover .guide-mag-more { color: #fff; }
.section-cream .guide-mag { border-top-color: #e5ddd0; }
.section-cream .guide-mag-item { border-bottom-color: #e5ddd0; }
.section-cream .guide-mag-item:nth-child(odd) { border-right-color: #e5ddd0; }
.section-cream .guide-mag-item h3 { color: #111; }
.section-cream .guide-mag-item p { color: #5c564c; }
.section-cream .guide-mag-num,
.section-cream .guide-mag-more { color: #5a4a2a; }
.section-cream .guide-mag-item:hover h3 { color: #5a4a2a; }
.section-cream .guide-mag-item:hover .guide-mag-more { color: #111; }

.guide-rail {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}
.guide-rail a {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 22px 28px 22px 0;
  border-bottom: 1px solid var(--line);
}
.guide-rail li:nth-child(odd) a {
  padding-right: 28px;
  border-right: 1px solid rgba(216, 201, 163, 0.18);
}
.guide-rail li:nth-child(even) a { padding-left: 28px; }
.guide-rail strong {
  display: block;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  color: #111;
  margin-bottom: 6px;
}
.guide-rail span { color: #5c564c; font-size: 15px; }
.section-dark .guide-rail { border-top-color: var(--line); }
.section-dark .guide-rail a { border-bottom-color: var(--line); }
.section-dark .guide-rail strong { color: #fff; }
.section-dark .guide-rail span { color: #9a9488; }
.section-cream .guide-rail { border-top-color: #e5ddd0; }
.section-cream .guide-rail a { border-bottom-color: #e5ddd0; }
.section-cream .guide-rail li:nth-child(odd) a { border-right-color: #e5ddd0; }

.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  font-size: 13px;
  color: #9a9488;
}
.crumbs a { color: var(--champagne); text-decoration: none; }
.section-cream .crumbs a { color: #5a4a2a; }

.local-nap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  margin-top: 28px;
}
.map-embed iframe {
  width: 100%;
  height: 360px;
  border: 0;
  border-radius: 12px;
}
.section-area-city-map iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}
.footer-map {
  margin-top: 18px;
}
.footer-map iframe {
  width: 100%;
  height: 260px;
  border: 0;
  border-radius: 12px;
}
.rule-list { margin: 0; padding-left: 20px; }
.rule-list li { margin-bottom: 10px; }

.page-jumps { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0; }
.page-jumps a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}
.section-cream .page-jumps a { color: #111; border-color: #e5ddd0; }

.form-band { display: none; }
.nav-mobile { display: none; }

.loc-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.loc-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #111;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px 22px;
}
.loc-card a { color: var(--champagne); }
.loc-card:hover { border-color: var(--champagne); }
.loc-card h3 {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 8px;
  color: #fff;
}
.loc-card p { margin: 0 0 6px; color: #9a9488; font-size: 15px; }
.loc-card .loc-more {
  display: inline-block;
  margin-top: 10px;
  color: var(--champagne);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}
.section-cream .loc-card { background: #fff; border-color: #e5ddd0; }
.section-cream .loc-card h3 { color: #111; }
.section-cream .loc-card p { color: #5c564c; }
.section-cream .loc-card .loc-more { color: #5a4a2a; }

.contact-form {
  display: grid;
  gap: 14px;
  margin-top: 24px;
  max-width: 560px;
}
.contact-form label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #e5ddd0;
  border-radius: 8px;
  background: #fff;
  color: #111;
  font: inherit;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form .form-note { font-size: 14px; color: #5c564c; margin: 0; letter-spacing: 0; text-transform: none; font-weight: 400; }
.contact-form .btn { border: 0; cursor: pointer; justify-content: center; }

.blog-shell { max-width: 760px; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.blog-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #111;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.blog-card:hover { border-color: var(--champagne); }
.blog-card img { width: 100%; height: 200px; object-fit: cover; }
.blog-card div { padding: 20px 22px 24px; }
.blog-card h3 {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 8px;
  color: #fff;
}
.blog-card p { margin: 0; color: #9a9488; font-size: 15px; }
.section-cream .blog-card { background: #fff; border-color: #e5ddd0; }
.section-cream .blog-card h3 { color: #111; }
.section-cream .blog-card p { color: #5c564c; }

.blog-eeat {
  margin: 0 0 28px;
  padding: 22px 24px;
  background: #111;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 15px;
  line-height: 1.55;
}
.section-cream .blog-eeat { background: #fff; border-color: #e5ddd0; }
.blog-eeat-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: baseline;
  margin-bottom: 8px;
}
.blog-eeat-meta strong { color: #fff; }
.section-cream .blog-eeat-meta strong { color: #111; }
.blog-eeat-creds,
.blog-eeat-review {
  color: #9a9488;
  font-size: 14px;
  margin: 0 0 8px;
}
.section-cream .blog-eeat-creds,
.section-cream .blog-eeat-review { color: #5c564c; }
.blog-eeat p { margin: 0 0 8px; }
.blog-eeat-takeaway {
  margin: 0 0 28px;
  padding: 18px 20px;
  border-left: 4px solid var(--champagne);
  background: #111;
}
.section-cream .blog-eeat-takeaway { background: #fff; border-left-color: #5a4a2a; }
.blog-eeat-takeaway strong {
  display: block;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 8px;
}
.section-cream .blog-eeat-takeaway strong { color: #5a4a2a; }
.blog-eeat-takeaway p { margin: 0; }
.blog-post-body h2 {
  font-size: clamp(26px, 3vw, 36px);
  margin: 36px 0 14px;
}
.blog-post-body p { margin: 0 0 16px; }
.blog-post-body ul { margin: 0 0 16px; padding-left: 20px; }
.blog-hero-img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 12px;
  margin: 0 0 28px;
}

@media (max-width: 1100px) {
  .mega-inner { grid-template-columns: 1fr; }
  .mega-cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 980px) {
  .wrap { width: min(var(--max), calc(100% - 24px)); }
  main .wrap {
    width: 100%;
    padding-left: 5% !important;
    padding-right: 5% !important;
  }
  .feature, .stat-bar .wrap, .svc-grid, .steps, .insight-grid, .state-grid, .footer-grid,
  .panel-grid, .feat-states, .guide-rail, .guide-mag, .local-nap, .city-hub,
  .loc-cards, .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero { min-height: auto; }
  .hero-inner { padding: 108px 0 72px; }
  .hero--page { min-height: auto; }
  .hero--page .hero-inner { padding: 96px 0 56px; }
  .section { padding: 64px 0; }
  .cta-band { padding: 72px 0; min-height: 0; }
  .map-embed iframe,
  .section-area-city-map iframe { height: 240px; }
  .footer-map iframe { height: 200px; }

  .site-header {
    background: rgba(7, 7, 7, 0.96);
    border-bottom-color: var(--line);
    overflow-anchor: none;
  }
  .site-header.is-nav-open,
  .site-header:has(.nav-mobile[open]) {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100dvh;
    max-height: 100dvh;
    background: #070707;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    overflow: hidden;
  }
  .site-header .wrap {
    flex-wrap: nowrap;
    align-items: center;
    gap: 8px;
    min-height: 64px;
    padding: 8px 0;
  }
  .site-header.is-nav-open .wrap,
  .site-header:has(.nav-mobile[open]) .wrap {
    flex-wrap: wrap;
    align-content: flex-start;
    align-items: center;
    height: 100%;
    max-height: 100dvh;
  }
  .site-header .brand {
    flex: 0 1 auto;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-width: 0;
    max-width: calc(100% - 168px);
    gap: 2px;
  }
  nav { margin-left: auto; }
  .site-header .brand-mark { width: 28px; height: 28px; flex: 0 0 28px; }
  .site-header .brand-text small { display: none; }
  .site-header .brand-text b {
    font-size: 11px;
    letter-spacing: 0.06em;
    white-space: nowrap;
  }

  .nav-mobile {
    display: block;
    order: 3;
    position: relative;
    z-index: 70;
    color: #fff;
    overflow-anchor: none;
  }
  .nav-mobile > :not(summary) { display: none !important; }
  .nav-mobile summary {
    list-style: none;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0;
    line-height: 0;
    color: transparent;
    user-select: none;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: transparent;
    position: relative;
  }
  .nav-mobile summary::-webkit-details-marker { display: none; }
  .nav-mobile summary::marker { content: ""; }
  .nav-mobile summary::before,
  .nav-mobile summary::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    height: 2px;
    background: #fff;
    transition: transform 0.2s ease, top 0.2s ease, opacity 0.2s ease;
  }
  .nav-mobile summary::before { top: 16px; box-shadow: 0 5px 0 #fff; }
  .nav-mobile summary::after { top: 26px; }
  .nav-mobile[open] summary::before,
  .nav-mobile.is-open summary::before,
  .site-header.is-nav-open .nav-mobile summary::before {
    top: 21px;
    box-shadow: none;
    transform: rotate(45deg);
  }
  .nav-mobile[open] summary::after,
  .nav-mobile.is-open summary::after,
  .site-header.is-nav-open .nav-mobile summary::after {
    top: 21px;
    transform: rotate(-45deg);
  }

  nav { order: 2; flex: 0 0 auto; }
  .nav-main {
    display: flex;
    align-items: center;
    gap: 0;
  }
  .nav-main > li { display: none; }
  .nav-main > li:last-child { display: flex; }
  .nav-cta {
    margin-left: 0;
    min-height: 44px;
    padding: 10px 10px;
    font-size: 12px;
  }

  .site-header.is-nav-open nav,
  .site-header:has(.nav-mobile[open]) nav {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    z-index: 60;
    flex: 1 1 100%;
    width: 100%;
    order: 5;
    margin: 0;
    max-height: calc(100dvh - 72px);
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 8px 0 24px;
    background: #070707;
  }
  .site-header.is-nav-open .nav-main,
  .site-header:has(.nav-mobile[open]) .nav-main {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .site-header.is-nav-open .nav-main > li,
  .site-header:has(.nav-mobile[open]) .nav-main > li {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .site-header.is-nav-open .nav-main a,
  .site-header.is-nav-open .has-mega > button,
  .site-header:has(.nav-mobile[open]) .nav-main a,
  .site-header:has(.nav-mobile[open]) .has-mega > button {
    min-height: 44px;
    padding: 12px 4px;
    font-size: 15px;
    letter-spacing: 0.06em;
  }
  .site-header.is-nav-open .nav-cta,
  .site-header:has(.nav-mobile[open]) .nav-cta {
    margin: 12px 0 0;
    justify-content: center;
  }

  .has-mega { position: relative; width: 100%; }
  .has-mega:focus-within .mega { display: none; }
  .has-mega.is-open .mega {
    display: block;
    position: static;
    width: 100%;
    box-shadow: none;
    padding: 4px 0 12px;
    border-top: 0;
    background: transparent;
  }
  .has-mega.is-open .mega::before { display: none; }
  .mega-inner,
  .mega-inner.wrap {
    width: 100%;
    margin: 0;
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .mega-intro h2 { font-size: 22px; }
  .mega-intro p { margin-bottom: 12px; }
  .mega-cols { grid-template-columns: 1fr 1fr; gap: 8px 16px; }
  .mega-col a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 10px 0;
  }
}
@media (max-width: 640px) {
  .feature, .stat-bar .wrap, .svc-grid, .steps, .insight-grid, .state-grid, .footer-grid, .feature-grid,
  .panel-grid, .feat-states, .guide-rail, .guide-mag, .local-nap, .city-hub,
  .loc-cards, .blog-grid {
    grid-template-columns: 1fr;
  }
  .guide-mag-item,
  .guide-mag-item:nth-child(odd),
  .guide-mag-item:nth-child(even) {
    padding-left: 0;
    padding-right: 0;
    border-right: 0;
    min-height: 0;
  }
  .guide-rail li:nth-child(odd) a,
  .guide-rail li:nth-child(even) a {
    padding-left: 0;
    padding-right: 0;
    border-right: 0;
  }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .hero h1 { font-size: clamp(32px, 10vw, 48px); }
  .btn { min-height: 44px; }
  .page-jumps a,
  .state-grid a { min-height: 44px; }
}
@media (max-width: 430px) {
  .mega-cols { grid-template-columns: 1fr; }
  .nav-cta { font-size: 12px; padding: 10px 10px; }
}

/* Contact + blog — luxury chrome, same tokens as home */
.hero--page { min-height: 68vh; }
.hero--page .hero-inner { padding: 140px 0 88px; }
.loc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.loc-card {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 22px 20px;
  background: #111;
  border: 1px solid var(--line);
  border-radius: 12px;
}
.loc-card:hover { border-color: var(--champagne); color: inherit; }
.loc-card strong {
  display: block;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 8px;
}
.loc-card span, .loc-card p { margin: 0; color: #9a9488; font-size: 15px; }
.loc-card .loc-phone { color: var(--champagne); font-weight: 600; margin-top: 10px; }
.section-cream .loc-card {
  background: #fff;
  border-color: #e5ddd0;
}
.section-cream .loc-card strong { color: #111; }
.section-cream .loc-card span,
.section-cream .loc-card p { color: #5c564c; }
.section-cream .loc-card .loc-phone { color: #5a4a2a; }
.loc-card.loc-card--plain { cursor: default; }
.city-phone-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.city-phone-grid a { color: inherit; text-decoration: none; }
.city-phone-grid a:hover { color: var(--champagne); }
.section-cream .city-phone-grid a:hover { color: #111; }
.city-phone-grid strong { display: block; font-size: 16px; }
.city-phone-grid span { color: #9a9488; font-size: 14px; }
.section-cream .city-phone-grid span { color: #5c564c; }

.contact-form {
  display: grid;
  gap: 14px;
  max-width: 560px;
}
.contact-form label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  font: inherit;
  padding: 12px 14px;
  border: 1px solid #e5ddd0;
  border-radius: 8px;
  background: #fff;
  color: #111;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.form-note { font-size: 14px; color: #5c564c; margin: 0 0 8px; }
.section-dark .form-note { color: #9a9488; }
.section-dark .form-note a { color: var(--champagne); }

.blog-index {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 28px;
}
.blog-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #111;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.blog-card:hover { border-color: var(--champagne); color: inherit; }
.blog-card img { width: 100%; height: 220px; object-fit: cover; }
.blog-card-body { padding: 20px 20px 22px; }
.blog-card-body small {
  color: var(--champagne);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
}
.blog-card-body h3 {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 500;
  color: #fff;
  margin: 8px 0 10px;
}
.blog-card-body p { margin: 0; color: #9a9488; font-size: 15px; }
.section-cream .blog-card { background: #fff; border-color: #e5ddd0; }
.section-cream .blog-card-body h3 { color: #111; }
.section-cream .blog-card-body p { color: #5c564c; }
.section-cream .blog-card-body small { color: #5a4a2a; }

.blog-shell .prose { max-width: 720px; }
.blog-eeat {
  margin: 0 0 28px;
  padding: 20px 22px;
  background: #fff;
  border: 1px solid #e5ddd0;
  border-radius: 12px;
  font-size: 15px;
  line-height: 1.55;
}
.blog-eeat-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  align-items: baseline;
  margin-bottom: 8px;
}
.blog-eeat-meta small { color: #5c564c; }
.blog-eeat-cred { color: #5c564c; font-size: 14px; margin-bottom: 8px; }
.blog-eeat p { margin: 0 0 8px; }
.blog-eeat-reviewer { font-size: 14px; color: #5c564c; }
.blog-eeat-takeaway {
  margin: 0 0 28px;
  padding: 16px 18px;
  border-left: 4px solid var(--champagne);
  background: #fff;
  border-radius: 0 12px 12px 0;
}
.blog-eeat-takeaway strong {
  display: block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #5a4a2a;
  margin-bottom: 8px;
}
.blog-eeat-takeaway p { margin: 0; }
.blog-figure { margin: 0 0 28px; }
.blog-figure img { width: 100%; border-radius: 8px; max-height: 420px; object-fit: cover; }
.blog-figure figcaption { font-size: 13px; color: #5c564c; margin-top: 8px; }
.related-posts { margin-top: 12px; }

@media (max-width: 980px) {
  .loc-grid, .blog-index, .city-phone-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .loc-grid, .blog-index, .city-phone-grid { grid-template-columns: 1fr; }
}
@media (max-width: 380px) {
  .nav-cta {
    font-size: 0;
    letter-spacing: 0;
    width: 44px;
    min-width: 44px;
    padding: 10px;
    justify-content: center;
  }
  .nav-cta i { font-size: 16px; margin-right: 0; }
}

h1, h2, h3, p, li { overflow-wrap: break-word; }
table { display: block; max-width: 100%; overflow-x: auto; }
