/* =========================================================
   Coast Homes by Aja \2014  Redesign
   ========================================================= */

:root {
  /* Palette: Ocean (default) */
  --bg:        #f6f4ee;   /* warm paper */
  --bg-alt:    #ecebe3;
  --ink:       #0f1e26;   /* deep ocean ink */
  --ink-soft:  #3a4a53;
  --muted:     #7a8890;
  --rule:      #d9d6cc;
  --accent:    #6fbfa3;   /* logo mint \2014  readable on light bg */
  --accent-2:  #aedbc0;   /* logo mint \2014  exact, for dark bg italics */
  --sand:      #d9cdb4;
  --hi:        #ffffff;
  --shadow:    0 30px 80px -40px rgba(15,30,38,.35);

  /* Type */
  --display: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --sans:    "Inter Tight", "Inter", system-ui, -apple-system, sans-serif;
  --mono:    "JetBrains Mono", ui-monospace, monospace;

  /* Spacing rhythm (airy) */
  --pad-section: clamp(96px, 11vw, 176px);
  --pad-x:       clamp(24px, 6vw, 112px);
  --gap:         clamp(24px, 3vw, 48px);

  /* Motion */
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Palette themes ---------- */
[data-palette="sand"] {
  --bg: #f4efe4;
  --bg-alt: #e9e0cd;
  --ink: #2a1e12;
  --ink-soft: #5a4a38;
  --muted: #8f7f6a;
  --rule: #d8ccb3;
  --accent: #b06a3a;
  --accent-2: #e9d7bb;
  --sand: #d9cdb4;
}
[data-palette="mono"] {
  --bg: #f5f5f3;
  --bg-alt: #e9e9e5;
  --ink: #111111;
  --ink-soft: #3a3a3a;
  --muted: #8a8a86;
  --rule: #d8d6d0;
  --accent: #111111;
  --accent-2: #d6d4cc;
  --sand: #d9d6cc;
}
[data-palette="warm"] {
  --bg: #fbf6ee;
  --bg-alt: #f2e9d7;
  --ink: #2d170d;
  --ink-soft: #5b3a28;
  --muted: #8f6e5a;
  --rule: #e8d9bf;
  --accent: #bf4b2c;
  --accent-2: #f2d7bc;
  --sand: #eadfc5;
}

/* ---------- Display font ---------- */
[data-display="playfair"]    { --display: "Playfair Display", Georgia, serif; }
[data-display="fraunces"]    { --display: "Fraunces", Georgia, serif; }
[data-display="instrument"]  { --display: "Instrument Serif", Georgia, serif; }
[data-display="cormorant"]   { --display: "Cormorant Garamond", Georgia, serif; }

/* ---------- Density ---------- */
[data-density="compact"] {
  --pad-section: clamp(64px, 8vw, 120px);
  --gap: clamp(18px, 2vw, 32px);
}

/* =========================================================
   Base
   ========================================================= */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

.serif { font-family: var(--display); font-weight: 400; letter-spacing: -0.015em; }
.mono  { font-family: var(--mono); font-weight: 400; letter-spacing: .02em; text-transform: uppercase; font-size: 12px; }

.container {
  padding-inline: var(--pad-x);
  max-width: 1680px;
  margin-inline: auto;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: currentColor;
  opacity: .6;
}

.rule { height: 1px; background: var(--rule); border: 0; margin: 0; }

/* =========================================================
   Nav
   ========================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 20px var(--pad-x);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: #fff;
  transition: background .4s var(--ease), color .4s var(--ease), padding .3s var(--ease), border-color .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(246,244,238,.92);
  backdrop-filter: blur(18px) saturate(1.1);
  -webkit-backdrop-filter: blur(18px) saturate(1.1);
  color: var(--ink);
  padding: 14px var(--pad-x);
  border-bottom-color: var(--rule);
}
.nav__brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: -0.01em;
}
.nav__brand img { height: 58px; width: auto; filter: brightness(0) invert(1); transition: filter .3s var(--ease), height .3s var(--ease); }
.nav.is-scrolled .nav__brand img { filter: none; height: 46px; }
.nav__links {
  display: flex;
  gap: clamp(16px, 2.2vw, 28px);
  justify-content: center;
  font-size: 14px;
  letter-spacing: .01em;
  white-space: nowrap;
}
.nav__links a {
  padding: 6px 0;
  position: relative;
  opacity: .85;
  transition: opacity .2s;
  white-space: nowrap;
}
.nav__links a:hover { opacity: 1; }
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 2px;
  height: 1px; background: currentColor;
  transition: right .3s var(--ease);
}
.nav__links a:hover::after { right: 0; }
.nav__cta {
  justify-self: end;
  display: flex;
  gap: 14px;
  align-items: center;
}
.nav__phone { font-size: 13px; opacity: .8; white-space: nowrap; }
.nav__btn {
  font-size: 13px;
  padding: 11px 20px;
  border: 1px solid currentColor;
  border-radius: 999px;
  transition: background .25s, color .25s;
  white-space: nowrap;
}
.nav__btn:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.nav.is-scrolled .nav__btn:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

.nav__menu-btn { display: none; }

@media (max-width: 1080px) {
  .nav__phone { display: none; }
}
@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav__menu-btn {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px; padding: 10px 16px;
    border: 1px solid currentColor; border-radius: 999px;
  }
  .nav { grid-template-columns: 1fr auto; }
  .nav__cta { gap: 8px; }
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  min-height: 88vh;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute; inset: -10% 0 0 0;
  height: 120%;
  z-index: -2;
  background-size: cover;
  background-position: center;
  will-change: transform;
  transform: translate3d(0, var(--pY, 0px), 0) scale(1.08);
}
.hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(15,30,38,.35) 0%, rgba(15,30,38,.1) 35%, rgba(15,30,38,.25) 65%, rgba(15,30,38,.55) 100%);
}
.hero__grain {
  position: absolute; inset: 0;
  z-index: -1;
  pointer-events: none;
  mix-blend-mode: overlay;
  opacity: .18;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 .6 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
.hero__content {
  position: relative;
  min-height: 88vh;
  padding: 120px var(--pad-x) 60px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 32px;
}
.hero__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  opacity: 0;
  animation: fadeUp 1s var(--ease) .3s forwards;
}
.hero__top .eyebrow { color: rgba(255,255,255,.85); }
.hero__top .eyebrow::before { background: rgba(255,255,255,.6); }
.hero__loc {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  opacity: .8;
  text-align: right;
}
.hero__loc small { display: block; opacity: .7; margin-top: 4px; }

.hero__headline {
  align-self: end;
  max-width: min(1100px, 70vw);
  opacity: 0;
  animation: fadeUp 1.2s var(--ease) .5s forwards;
}
.hero__headline h1 { max-width: 14em; }
.hero__headline h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(56px, 9vw, 152px);
  line-height: .95;
  letter-spacing: -0.02em;
  margin: 0;
}
.hero__headline h1 em {
  font-style: italic;
  color: var(--accent-2);
}
.hero__headline p {
  margin-top: 28px;
  max-width: 48ch;
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.55;
  opacity: .9;
}

.hero__bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  opacity: 0;
  animation: fadeUp 1.2s var(--ease) .8s forwards;
}
.hero__quick {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.hero__quick-item {
  border-left: 1px solid rgba(255,255,255,.35);
  padding-left: 16px;
}
.hero__quick-item .n {
  font-family: var(--display);
  font-size: 36px;
  line-height: 1;
  display: block;
}
.hero__quick-item .l {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  opacity: .75;
  margin-top: 6px;
  display: block;
}

.hero__scroll {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  opacity: .8;
}
.hero__scroll .line {
  width: 40px; height: 1px; background: currentColor; position: relative; overflow: hidden;
}
.hero__scroll .line::after {
  content: ""; position: absolute; inset: 0; background: var(--accent-2);
  animation: slide 2.4s var(--ease) infinite;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slide {
  0% { transform: translateX(-100%); }
  55%,100% { transform: translateX(100%); }
}

/* Hero concierge inline CTA bar (primary lead capture) \2014  sits BELOW hero, overlapping upward */
.hero__cta-wrap {
  position: relative;
  z-index: 5;
  margin-top: -56px;
  padding: 0 var(--pad-x);
  display: flex;
  justify-content: center;
}
.hero__cta {
  width: min(920px, 100%);
  background: var(--bg);
  color: var(--ink);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 22px 24px;
  border-radius: 4px;
}
.hero__cta .dot {
  width: 10px; height: 10px; border-radius: 999px; background: var(--accent);
  box-shadow: 0 0 0 6px color-mix(in oklab, var(--accent) 20%, transparent);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 6px color-mix(in oklab, var(--accent) 20%, transparent); }
  50%     { box-shadow: 0 0 0 12px color-mix(in oklab, var(--accent) 0%, transparent); }
}
.hero__cta p {
  margin: 0;
  font-size: 15px;
  color: var(--ink-soft);
}
.hero__cta p strong { color: var(--ink); font-weight: 500; }
.hero__cta .btn { flex-shrink: 0; }

@media (max-width: 720px) {
  .hero__cta { grid-template-columns: 1fr; text-align: center; }
  .hero__bottom { grid-template-columns: 1fr; }
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: .01em;
  transition: transform .25s var(--ease), background .25s, color .25s, box-shadow .25s;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn--primary {
  background: var(--ink);
  color: var(--bg);
}
.btn--primary:hover {
  background: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 12px 30px -10px color-mix(in oklab, var(--accent) 60%, transparent);
}
.btn--ghost {
  border-color: currentColor;
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.btn--light {
  background: #fff;
  color: var(--ink);
}
.btn--light:hover { background: var(--accent); color: #fff; transform: translateY(-1px); }

.btn .arrow {
  display: inline-block;
  transition: transform .3s var(--ease);
}
.btn:hover .arrow { transform: translateX(4px); }

/* =========================================================
   Sections
   ========================================================= */
.section {
  padding: var(--pad-section) 0;
  position: relative;
}
.section--tight { padding: calc(var(--pad-section) * .7) 0; }
.section--dark {
  background: var(--ink);
  color: var(--bg);
}
.section--alt { background: var(--bg-alt); }

.section__head {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: var(--gap);
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 88px);
}
.section__head h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(40px, 5.2vw, 80px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 20px 0 0;
}
.section__head h2 em { font-style: italic; color: var(--accent); }
.section__head p {
  font-size: clamp(16px, 1.1vw, 18px);
  color: var(--ink-soft);
  max-width: 52ch;
  margin: 0;
}
@media (max-width: 860px) {
  .section__head { grid-template-columns: 1fr; }
}

/* =========================================================
   Trust bar
   ========================================================= */
.trust {
  padding: 32px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.trust__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}
.trust__item { display: grid; gap: 6px; }
.trust__item .n {
  font-family: var(--display);
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1;
}
.trust__item .l {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
}
@media (max-width: 720px) {
  .trust__inner { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

/* =========================================================
   Concierge pitch \2014  photo left with overlay card
   ========================================================= */
.concierge {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: stretch;
}
.concierge__media {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  border: 1px solid var(--rule);
}
.concierge__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(.95);
}
.concierge__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,31,41,0) 35%, rgba(13,31,41,.75) 100%);
  pointer-events: none;
}
.concierge__media-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: clamp(24px, 3vw, 40px);
  color: #fff;
  display: flex; flex-direction: column; gap: 20px;
  z-index: 1;
}
.concierge__media-overlay .concierge__feature-mark {
  color: rgba(255,255,255,.75);
}
.concierge__feature-mark {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
}
.concierge__feature-big {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(44px, 5.5vw, 80px);
  line-height: .95;
  letter-spacing: -0.03em;
  margin: 0;
}
.concierge__feature-big em {
  font-style: italic;
  color: var(--accent-soft, #ffd6a5);
}
.concierge__media-overlay .concierge__feature-big em {
  color: #ffd6a5;
}
.concierge__feature-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.25);
}
.concierge__media-overlay .concierge__feature-meta {
  border-top-color: rgba(255,255,255,.25);
}
.concierge__feature-meta div span { display: block; }
.concierge__feature-meta .n {
  font-family: var(--display);
  font-size: 32px;
  line-height: 1;
}
.concierge__feature-meta .l {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-top: 6px;
}

.concierge__copy {
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 0 clamp(0px, 2vw, 24px);
}

@media (max-width: 860px) {
  .concierge { grid-template-columns: 1fr; }
  .concierge__media { min-height: 520px; }
}
.concierge__copy h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(36px, 4.2vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin: 16px 0 24px;
}
.concierge__copy h2 em { font-style: italic; color: var(--accent); }
.concierge__copy p {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 46ch;
  margin: 0 0 16px;
}
.concierge__copy .actions {
  margin-top: 32px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.concierge__steps {
  margin-top: 40px;
  display: grid;
  gap: 4px;
  border-top: 1px solid var(--rule);
}
.concierge__step {
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  align-items: start;
}
.concierge__step .n {
  font-family: var(--display);
  font-size: 20px;
  color: var(--accent);
}
.concierge__step h4 {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 500;
}
.concierge__step p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

@media (max-width: 860px) {
  .concierge { grid-template-columns: 1fr; }
}

/* =========================================================
   Meet Aja
   ========================================================= */
.meet {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: var(--gap);
  align-items: center;
}
.meet__copy h2 {
  font-family: var(--display);
  font-size: clamp(48px, 6vw, 96px);
  line-height: .98;
  letter-spacing: -0.02em;
  font-weight: 400;
  margin: 12px 0 32px;
}
.meet__copy h2 em { font-style: italic; }
.meet__copy .sig {
  font-family: var(--display);
  font-style: italic;
  font-size: 40px;
  color: var(--accent);
  margin-top: 48px;
}
.meet__copy blockquote {
  font-family: var(--display);
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.35;
  font-style: italic;
  margin: 0 0 24px;
  color: var(--ink);
  border-left: 2px solid var(--accent);
  padding-left: 24px;
}
.meet__copy p {
  font-size: 16px;
  color: var(--ink-soft);
  max-width: 48ch;
}
.meet__media {
  position: relative;
  aspect-ratio: 4 / 5;
  max-height: 680px;
  overflow: hidden;
}
.meet__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; background: var(--bg-alt); }
.meet__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(15,30,38,.15) 0%, transparent 40%);
}
.meet__badge {
  position: absolute;
  top: 20px; left: 20px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(6px);
  padding: 10px 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink);
}

@media (max-width: 860px) { .meet { grid-template-columns: 1fr; } }

/* =========================================================
   Lifestyle / Places
   ========================================================= */
.places {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr;
  gap: 16px;
}
.place { aspect-ratio: 4 / 5; grid-column: span 1; }
.place {
  position: relative;
  overflow: hidden;
  color: #fff;
  cursor: pointer;
  display: block;
  text-decoration: none;
}
.place img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s var(--ease);
}
.place:hover img { transform: scale(1.06); }
.place::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(15,30,38,.75) 100%);
}
.place__go {
  position: absolute;
  top: 20px; right: 20px;
  z-index: 3;
  padding: 7px 12px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  border-radius: 2px;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.place:hover .place__go, .place:focus-visible .place__go {
  opacity: 1;
  transform: translateY(0);
}
.place__label {
  position: absolute;
  bottom: 20px; left: 20px; right: 20px;
  z-index: 2;
  display: flex; justify-content: space-between; align-items: end;
  gap: 16px;
}
.place__label h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(20px, 1.8vw, 28px);
  margin: 0;
}
.place__label .meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  opacity: .85;
}

/* kept class names for backward compat, all equal now */
.place--lg, .place--md, .place--sm, .place--tall { grid-column: span 1; aspect-ratio: 4 / 5; }

@media (max-width: 860px) {
  .places { grid-template-columns: repeat(2, 1fr); }
}

/* =========================================================
   Wizard (primary conversion)
   ========================================================= */
.wizard {
  background: var(--ink);
  color: var(--bg);
  overflow: hidden;
  position: relative;
}
.wizard__bg {
  position: absolute; inset: 0;
  background: radial-gradient(1000px 600px at 80% 0%, color-mix(in oklab, var(--accent) 40%, transparent) 0%, transparent 70%);
  opacity: .5;
  pointer-events: none;
}
.wizard__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 120px);
  align-items: stretch;
}
.wizard__copy h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 80px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 20px 0 24px;
}
.wizard__copy h2 em { font-style: italic; color: var(--accent-2); }
.wizard__copy p {
  color: color-mix(in oklab, var(--bg) 75%, transparent);
  max-width: 44ch;
  font-size: 16px;
}
.wizard__bullets {
  margin-top: 40px;
  list-style: none;
  padding: 0;
  display: grid;
  gap: 12px;
}
.wizard__bullets li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 14px;
  align-items: start;
  font-size: 15px;
  color: color-mix(in oklab, var(--bg) 85%, transparent);
}
.wizard__bullets li svg { margin-top: 4px; color: var(--accent-2); }

.wizard__form {
  background: color-mix(in oklab, var(--bg) 6%, transparent);
  border: 1px solid color-mix(in oklab, var(--bg) 14%, transparent);
  padding: 36px;
  backdrop-filter: blur(20px);
  align-self: start;
  position: relative;
  min-height: 520px;
  display: flex;
  flex-direction: column;
}
.wizard__progress {
  display: flex;
  gap: 6px;
  margin-bottom: 32px;
}
.wizard__progress span {
  flex: 1; height: 2px;
  background: color-mix(in oklab, var(--bg) 15%, transparent);
  overflow: hidden;
  position: relative;
}
.wizard__progress span::after {
  content: "";
  position: absolute; inset: 0;
  background: var(--accent-2);
  transform: scaleX(0); transform-origin: 0 50%;
  transition: transform .5s var(--ease);
}
.wizard__progress span.done::after { transform: scaleX(1); }
.wizard__progress span.active::after { transform: scaleX(.5); }

.wizard__step-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: color-mix(in oklab, var(--bg) 60%, transparent);
  margin-bottom: 8px;
}
.wizard__q {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.15;
  margin: 0 0 28px;
  max-width: 22ch;
}

.wizard__options {
  display: grid;
  gap: 10px;
}
.wizard__opt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid color-mix(in oklab, var(--bg) 16%, transparent);
  background: transparent;
  color: inherit;
  text-align: left;
  font-size: 15px;
  cursor: pointer;
  transition: all .25s var(--ease);
  border-radius: 2px;
}
.wizard__opt:hover {
  border-color: var(--accent-2);
  background: color-mix(in oklab, var(--accent) 15%, transparent);
  transform: translateX(4px);
}
.wizard__opt.selected {
  border-color: var(--accent-2);
  background: color-mix(in oklab, var(--accent) 25%, transparent);
}
.wizard__opt .k {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .22em;
  opacity: .6;
}

.wizard__field {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
}
.wizard__field label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: color-mix(in oklab, var(--bg) 60%, transparent);
}
.wizard__field input, .wizard__field textarea {
  padding: 14px 16px;
  background: transparent;
  border: 1px solid color-mix(in oklab, var(--bg) 16%, transparent);
  color: inherit;
  font: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color .2s;
  border-radius: 2px;
}
.wizard__field input:focus, .wizard__field textarea:focus { border-color: var(--accent-2); }
.wizard__field textarea { min-height: 100px; resize: vertical; }
.wizard__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.wizard__nav {
  margin-top: auto;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.wizard__back {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  opacity: .7;
  padding: 12px 0;
}
.wizard__back:hover { opacity: 1; }
.wizard__next {
  background: var(--bg);
  color: var(--ink);
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform .2s, background .2s;
}
.wizard__next:hover:not(:disabled) { transform: translateY(-1px); background: var(--accent-2); }
.wizard__next:disabled { opacity: .35; cursor: not-allowed; }

.wizard__done {
  display: grid;
  place-items: center;
  text-align: center;
  padding: 40px 0;
  gap: 18px;
}
.wizard__done .check {
  width: 60px; height: 60px;
  border-radius: 999px;
  background: var(--accent-2);
  color: var(--ink);
  display: grid; place-items: center;
}
.wizard__done h3 {
  font-family: var(--display);
  font-size: 34px;
  font-weight: 400;
  margin: 0;
}
.wizard__done p { margin: 0; max-width: 36ch; color: color-mix(in oklab, var(--bg) 75%, transparent); }
.wizard__done .echo {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-top: 16px;
  padding: 10px 16px;
  border: 1px solid color-mix(in oklab, var(--bg) 16%, transparent);
  border-radius: 999px;
}

@media (max-width: 860px) {
  .wizard__inner { grid-template-columns: 1fr; }
  .wizard__row { grid-template-columns: 1fr; }
}

/* =========================================================
   Guides (lead magnets)
   ========================================================= */
.guides {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.guide {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  color: #fff;
  cursor: pointer;
}
.guide img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.guide:hover img { transform: scale(1.05); }
.guide::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,30,38,.15) 10%, rgba(15,30,38,.8) 100%);
}
.guide__body {
  position: absolute; inset: auto 0 0 0;
  padding: 32px;
  display: grid;
  gap: 12px;
  z-index: 2;
}
.guide__body .kicker {
  font-family: var(--mono);
  font-size: 10px; letter-spacing: .22em; text-transform: uppercase; opacity: .85;
}
.guide__body h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(28px, 2.4vw, 40px);
  line-height: 1.05;
  margin: 0;
  max-width: 20ch;
}
.guide__body p { margin: 0; max-width: 42ch; font-size: 14px; opacity: .9; }
.guide__body .cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono);
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  margin-top: 8px;
}
.guide__body .cta::after {
  content: "\2192 ";
  transition: transform .3s var(--ease);
}
.guide:hover .cta::after { transform: translateX(6px); }

@media (max-width: 720px) { .guides { grid-template-columns: 1fr; } }

.concierge__readmore {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--ink-soft);
}
.concierge__readmore a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
}
.blog-emailcap {
  margin: 60px auto 0;
  max-width: 640px;
  padding: 40px 32px;
  background: var(--bg-alt);
  border: 1px solid var(--rule);
  border-radius: 4px;
  text-align: center;
}
.blog-emailcap h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(24px, 2.4vw, 32px);
  margin: 0 0 8px;
  line-height: 1.15;
}
.blog-emailcap h3 em { font-style: italic; color: var(--accent); }
.blog-emailcap p {
  margin: 0 0 24px;
  color: var(--ink-soft);
  font-size: 15px;
}
.blog-emailcap form {
  display: flex;
  gap: 8px;
  max-width: 440px;
  margin: 0 auto;
}
.blog-emailcap input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--rule);
  background: var(--bg);
  font-family: inherit;
  font-size: 15px;
  border-radius: 2px;
}
.blog-emailcap input:focus { outline: none; border-color: var(--accent); }
.blog-emailcap button {
  padding: 12px 22px;
  background: var(--ink);
  color: var(--bg);
  border: none;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
}
.blog-emailcap button:hover { background: var(--accent); }
.blog-emailcap .ok {
  margin: 0;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: .04em;
}
@media (max-width: 520px) {
  .blog-emailcap form { flex-direction: column; }
}

/* =========================================================
   Testimonials
   ========================================================= */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--rule);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.tst {
  background: var(--bg);
  padding: clamp(28px, 3vw, 48px);
  display: flex; flex-direction: column; gap: 20px;
  transition: background .3s;
}
.tst:hover { background: var(--bg-alt); }
.tst__quote {
  font-family: var(--display);
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.4;
  font-style: italic;
  color: var(--ink);
  margin: 0;
}
.tst__who {
  margin-top: auto;
  display: grid;
  gap: 2px;
}
.tst__who .name { font-weight: 500; font-size: 14px; }
.tst__who .where { font-family: var(--mono); font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); }
.tst__stars { display: flex; gap: 2px; color: var(--accent); font-size: 12px; }

@media (max-width: 860px) { .testimonials { grid-template-columns: 1fr; } }

/* =========================================================
   FAQ
   ========================================================= */
.faq { max-width: 920px; margin-inline: auto; }
.faq__item {
  border-top: 1px solid var(--rule);
  padding: 28px 0;
  cursor: pointer;
}
.faq__item:last-child { border-bottom: 1px solid var(--rule); }
.faq__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--display);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 400;
  letter-spacing: -0.01em;
}
.faq__plus {
  width: 28px; height: 28px;
  position: relative;
  flex-shrink: 0;
  transition: transform .3s var(--ease);
}
.faq__plus::before, .faq__plus::after {
  content: ""; position: absolute;
  background: currentColor;
}
.faq__plus::before { left: 0; right: 0; top: 50%; height: 1px; }
.faq__plus::after  { top: 0; bottom: 0; left: 50%; width: 1px; transition: transform .3s var(--ease); }
.faq__item.open .faq__plus::after { transform: scaleY(0); }
.faq__a {
  max-height: 0; overflow: hidden;
  transition: max-height .4s var(--ease), margin .4s var(--ease);
  color: var(--ink-soft);
  max-width: 70ch;
  font-size: 16px;
}
.faq__item.open .faq__a {
  max-height: 300px;
  margin-top: 16px;
}

/* =========================================================
   Final CTA
   ========================================================= */
.finalcta {
  position: relative;
  min-height: 70vh;
  color: #fff;
  display: grid; place-items: center;
  text-align: center;
  padding: var(--pad-section) var(--pad-x);
  overflow: hidden;
  isolation: isolate;
}
.finalcta__bg {
  position: absolute; inset: -10% 0;
  z-index: -2;
  background-size: cover; background-position: center;
  transform: translate3d(0, var(--pY, 0), 0) scale(1.1);
}
.finalcta::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(15,30,38,.55), rgba(15,30,38,.75));
}
.finalcta h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(52px, 7vw, 120px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  max-width: 16ch;
}
.finalcta h2 em { font-style: italic; color: var(--accent-2); }
.finalcta p { max-width: 52ch; margin: 0 auto 36px; opacity: .9; font-size: 17px; }

/* =========================================================
   Footer
   ========================================================= */
.foot {
  background: var(--bg-alt);
  padding: 80px var(--pad-x) 32px;
}
.foot__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--gap);
  padding-bottom: 64px;
  border-bottom: 1px solid var(--rule);
}
.foot__brand { display: grid; gap: 16px; max-width: 36ch; }
.foot__brand img { height: 80px; width: auto; }
.foot__brand p { color: var(--ink-soft); font-size: 14px; margin: 0; }
.foot__col h4 {
  font-family: var(--mono);
  font-size: 10px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 16px;
}
.foot__col a {
  display: block;
  font-size: 15px;
  padding: 6px 0;
  transition: color .2s;
}
.foot__col a:hover { color: var(--accent); }

.foot__sub {
  padding-top: 32px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  font-family: var(--mono);
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted);
}

@media (max-width: 860px) {
  .foot__grid { grid-template-columns: 1fr 1fr; }
}

/* =========================================================
   Sticky CTA rail
   ========================================================= */
.stickycta {
  position: fixed;
  right: 24px; bottom: 24px;
  z-index: 40;
  background: var(--ink);
  color: var(--bg);
  padding: 14px 18px;
  border-radius: 999px;
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px;
  box-shadow: 0 20px 60px -20px rgba(0,0,0,.4);
  opacity: 0;
  transform: translateY(20px);
  transition: all .4s var(--ease), background .25s, color .25s;
}
.stickycta.visible { opacity: 1; transform: translateY(0); }
.stickycta:hover { background: var(--accent); }
.stickycta .dot {
  width: 8px; height: 8px; border-radius: 999px; background: var(--accent-2);
  animation: pulse 2.4s ease-in-out infinite;
}

/* =========================================================
   Tweaks panel
   ========================================================= */
.tweaks {
  position: fixed;
  right: 20px; top: 20px;
  z-index: 100;
  width: 300px;
  background: var(--bg);
  border: 1px solid var(--rule);
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.25);
  padding: 20px;
  display: none;
  font-family: var(--sans);
}
.tweaks.open { display: block; }
.tweaks h5 {
  font-family: var(--mono);
  font-size: 10px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 18px;
  display: flex; justify-content: space-between; align-items: center;
}
.tweaks h5 span:last-child { color: var(--accent); }
.tweaks__group { margin-bottom: 18px; }
.tweaks__group label {
  display: block;
  font-family: var(--mono);
  font-size: 10px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.tweaks__options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}
.tweaks__options button {
  padding: 8px 6px;
  font-size: 11px;
  border: 1px solid var(--rule);
  background: var(--bg);
  border-radius: 2px;
  text-transform: capitalize;
  transition: all .2s;
}
.tweaks__options button:hover { border-color: var(--ink); }
.tweaks__options button.active { background: var(--ink); color: var(--bg); border-color: var(--ink); }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* marquee */
.marquee {
  overflow: hidden;
  padding: 20px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
  display: flex;
  gap: 60px;
  animation: marquee 40s linear infinite;
  width: max-content;
  font-family: var(--display);
  font-size: clamp(24px, 2.4vw, 40px);
  font-style: italic;
  color: var(--ink);
  align-items: center;
}
.marquee__track span { display: inline-flex; align-items: center; gap: 60px; }
.marquee__track > span > span::after {
  content: "\274b ";
  font-family: var(--mono);
  color: var(--accent);
  font-size: 16px;
  font-style: normal;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =========================================================
   Blog
   ========================================================= */
.section__head .head-link {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-left: 12px;
  white-space: nowrap;
}
.section__head .head-link:hover { color: var(--ink); }

.blog-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(24px, 3vw, 48px);
  align-items: stretch;
}
.blog-feat {
  display: grid;
  grid-template-rows: auto 1fr;
  background: var(--bg-alt);
  border: 1px solid var(--rule);
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  color: inherit;
}
.blog-feat:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.blog-feat__media { aspect-ratio: 16 / 10; overflow: hidden; }
.blog-feat__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.blog-feat:hover .blog-feat__media img { transform: scale(1.04); }
.blog-feat__body {
  padding: clamp(24px, 2.4vw, 40px);
  display: grid;
  gap: 14px;
  align-content: start;
}
.blog-feat__body .kicker {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
}
.blog-feat__body h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(28px, 2.8vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
  max-width: 22ch;
}
.blog-feat__body p {
  margin: 0;
  font-size: 16px;
  color: var(--ink-soft);
  max-width: 52ch;
}
.blog-feat__body .cta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 6px;
  display: inline-flex;
  gap: 8px;
}
.blog-feat__body .cta .arr { transition: transform .3s var(--ease); }
.blog-feat:hover .blog-feat__body .cta .arr { transform: translateX(6px); }

.blog-list { display: grid; gap: 18px; align-content: start; }
.blog-card {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--rule);
  color: inherit;
  transition: transform .3s var(--ease);
}
.blog-card:last-child { border-bottom: 0; padding-bottom: 0; }
.blog-card:hover { transform: translateX(4px); }
.blog-card__media {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.blog-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.blog-card:hover .blog-card__media img { transform: scale(1.06); }
.blog-card__body { display: grid; gap: 8px; align-content: center; }
.blog-card__body .kicker {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
}
.blog-card__body h4 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(17px, 1.3vw, 21px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0;
}
.blog-card__body .meta {
  font-size: 12px;
  color: var(--muted);
}

.blog-allcta { text-align: center; margin-top: clamp(40px, 5vw, 72px); }

@media (max-width: 960px) {
  .blog-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .blog-card { grid-template-columns: 90px 1fr; gap: 14px; }
}

/* =========================================================
   Blog index page
   ========================================================= */
.blog-index {
  padding: clamp(140px, 14vw, 200px) var(--pad-x) clamp(80px, 9vw, 140px);
  max-width: 1280px;
  margin-inline: auto;
}
.blog-index__head {
  display: grid;
  gap: 18px;
  margin-bottom: clamp(48px, 6vw, 88px);
  max-width: 24ch;
}
.blog-index__head h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(54px, 7vw, 96px);
  line-height: 1;
  letter-spacing: -0.025em;
  margin: 0;
}
.blog-index__head h1 em { color: var(--accent); }
.blog-index__head p {
  font-size: clamp(16px, 1.1vw, 18px);
  color: var(--ink-soft);
  margin: 0;
  max-width: 52ch;
}
.blog-index__filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: clamp(32px, 4vw, 56px);
}
.blog-index__filter button {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 8px 16px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  color: var(--ink-soft);
  transition: all .25s var(--ease);
}
.blog-index__filter button.active {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.blog-index__filter button:hover:not(.active) {
  border-color: var(--ink);
  color: var(--ink);
}
.blog-index__list {
  display: grid;
  gap: clamp(28px, 3vw, 44px);
}
.blog-row {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(24px, 3vw, 48px);
  padding: clamp(20px, 2.4vw, 36px) 0;
  border-top: 1px solid var(--rule);
  color: inherit;
  align-items: center;
}
.blog-row:hover h2 { color: var(--accent); }
.blog-row__media { aspect-ratio: 4 / 3; overflow: hidden; }
.blog-row__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.blog-row:hover .blog-row__media img { transform: scale(1.05); }
.blog-row__body { display: grid; gap: 12px; }
.blog-row__body .kicker {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
}
.blog-row__body h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(26px, 2.6vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
  transition: color .25s var(--ease);
}
.blog-row__body p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  max-width: 60ch;
}
.blog-row__body .meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}
@media (max-width: 720px) {
  .blog-row { grid-template-columns: 1fr; }
  .blog-row__media { aspect-ratio: 16 / 9; }
}

/* =========================================================
   Single post page
   ========================================================= */
.post {
  padding: clamp(120px, 12vw, 180px) var(--pad-x) clamp(60px, 7vw, 100px);
  max-width: 760px;
  margin-inline: auto;
}
.post__back {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 32px;
  display: inline-block;
}
.post__back:hover { color: var(--accent); }
.post__kicker {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.post h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(38px, 5.4vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 24px;
}
.post__meta {
  display: flex;
  gap: 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 40px;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 20px;
}
.post__hero {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin: 0 0 48px;
}
.post__hero img { width: 100%; height: 100%; object-fit: cover; }
.post__body {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink);
}
.post__body .lede {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(22px, 2vw, 26px);
  line-height: 1.4;
  color: var(--ink);
  margin: 0 0 40px;
}
.post__body h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(26px, 2.4vw, 34px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin: 56px 0 16px;
}
.post__body p { margin: 0 0 24px; color: var(--ink-soft); }
.post__body ol, .post__body ul { margin: 0 0 24px; padding-left: 22px; color: var(--ink-soft); }
.post__body li { margin-bottom: 10px; }
.post__body strong { color: var(--ink); }
.post__body a { color: var(--accent); border-bottom: 1px solid currentColor; }
.post__body a:hover { color: var(--ink); }

.post__cta {
  margin-top: 64px;
  padding: 40px;
  background: var(--bg-alt);
  border: 1px solid var(--rule);
  display: grid;
  gap: 14px;
}
.post__cta h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin: 0;
}
.post__cta h3 em { color: var(--accent); }
.post__cta p { margin: 0; color: var(--ink-soft); }
.post__cta .actions { margin-top: 8px; }

.post__more {
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid var(--rule);
}
.post__more h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 24px;
}
.post__more-grid { display: grid; gap: 24px; grid-template-columns: 1fr 1fr; }
.post__more-card {
  color: inherit;
  display: grid;
  gap: 8px;
}
.post__more-card .kicker {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
}
.post__more-card h5 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin: 0;
  transition: color .25s var(--ease);
}
.post__more-card:hover h5 { color: var(--accent); }
@media (max-width: 640px) {
  .post__more-grid { grid-template-columns: 1fr; }
}

.post__missing {
  text-align: center;
  padding: 60px 0;
}
.post__missing h1 { font-size: 42px; margin-bottom: 16px; }
.post__missing p { color: var(--ink-soft); margin-bottom: 32px; }

/* =========================================================
   Neighborhood pages
   ========================================================= */
.hood {
  max-width: 1100px;
  margin: 80px auto 120px;
  padding: 0 5%;
  font-family: var(--body);
  color: var(--ink);
}
.hood .post__back {
  display: inline-block;
  margin-bottom: 48px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
}
.hood .post__back:hover { color: var(--accent); }

.hood__head {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 56px;
}
.hood__head .eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
}
.hood__head h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(56px, 7vw, 110px);
  line-height: 1;
  margin: 16px 0 28px;
  letter-spacing: -0.02em;
}
.hood__head .lede {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(20px, 1.6vw, 26px);
  line-height: 1.4;
  color: var(--ink-soft);
  margin: 0;
}
.hood__head-media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 2px;
}
.hood__head-media img {
  width: 100%; height: 100%; object-fit: cover;
}

.hood__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 56px 0;
  padding: 32px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.hood__stats > div {
  padding: 0 24px;
  border-right: 1px solid var(--rule);
}
.hood__stats > div:last-child { border-right: none; }
.hood__stats .eyebrow {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.hood__stats strong {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: -0.01em;
}

.hood__section {
  margin: 64px 0;
}
.hood__section h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.1;
  margin: 0 0 24px;
  letter-spacing: -0.01em;
}
.hood__section h2 em { font-style: italic; color: var(--accent); }
.hood__section p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  max-width: 65ch;
}

.hood__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 32px;
}
.hood__list li {
  position: relative;
  padding-left: 24px;
  font-size: 16px;
  line-height: 1.5;
}
.hood__list li::before {
  content: "\2192 ";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-family: var(--mono);
}

.hood__streets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.hood__street {
  padding: 28px 24px;
  background: var(--bg-alt);
  border: 1px solid var(--rule);
  border-radius: 2px;
}
.hood__street h4 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 22px;
  margin: 0 0 12px;
}
.hood__street p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}

.hood__related {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.hood__related-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--rule);
  background: var(--bg);
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.hood__related-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
}
.hood__related-img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.hood__related-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease);
}
.hood__related-card:hover .hood__related-img img { transform: scale(1.05); }
.hood__related-card > div:last-child { padding: 18px 20px 22px; }
.hood__related-card .kicker {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.hood__related-card h4 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.25;
  margin: 0;
}

@media (max-width: 860px) {
  .hood__head { grid-template-columns: 1fr; gap: 32px; }
  .hood__head-media { aspect-ratio: 16 / 11; }
  .hood__stats { grid-template-columns: 1fr; gap: 16px; padding: 24px 0; }
  .hood__stats > div { border-right: none; border-bottom: 1px solid var(--rule); padding: 16px 0; }
  .hood__stats > div:last-child { border-bottom: none; }
  .hood__list { grid-template-columns: 1fr; }
  .hood__streets, .hood__related { grid-template-columns: 1fr; }
}

