/* ── Loma Alta — editorial property site ── */

:root {
  /* Warm paper neutrals */
  --paper:        #F2E9D8;
  --paper-soft:   #EBE0CB;
  --paper-deep:   #E1D4B9;
  --ink:          #1A1611;
  --ink-soft:     #3B342B;
  --ink-mute:     #6B5F4E;
  --line:         rgba(26, 22, 17, 0.14);
  --line-soft:    rgba(26, 22, 17, 0.07);

  /* Accents pulled from the home */
  --terracotta:   #B25A36;       /* the curtains */
  --terracotta-d: #8E4527;
  --sage:         #6F8466;
  --teal:         #2E4A52;
  --mustard:      #C99840;

  /* Type */
  --serif: "Instrument Serif", "Cormorant Garamond", Georgia, serif;
  --sans:  "Manrope", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  --mono:  "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --radius: 8px;
  --radius-md: 10px;
}

* { box-sizing: border-box; -webkit-text-size-adjust: 100%; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

/* ── Type primitives ────────────────────────── */
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.eyebrow .dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--terracotta);
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: 2px;
}

.display {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-wrap: balance;
}
.display em { font-style: italic; color: var(--terracotta-d); }

.lede {
  font-family: var(--serif);
  font-size: clamp(22px, 3.4vw, 32px);
  line-height: 1.25;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-wrap: pretty;
}
.lede em { color: var(--terracotta-d); }

.prose p { font-size: 17px; line-height: 1.65; color: var(--ink-soft); margin: 0 0 1em; text-wrap: pretty; }
.prose p:last-child { margin-bottom: 0; }
.prose em { font-style: italic; }

/* ── Layout helpers ────────────────────────── */
.wrap {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.wrap-narrow { max-width: 880px; }

section { padding: 88px 0; position: relative; }
@media (max-width: 720px) { section { padding: 64px 0; } }

.rule {
  height: 1px;
  background: var(--line);
  width: 100%;
}

/* ── Nav ────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(242, 233, 216, 0.86);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
  padding: 0 24px;
  max-width: 1440px;
  margin: 0 auto;
  gap: 16px;
}
.nav-brand {
  display: flex; align-items: baseline; gap: 10px;
  font-family: var(--serif);
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.nav-brand .num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--ink-mute);
}
.nav-links {
  display: flex; gap: 28px;
  font-size: 14px;
  color: var(--ink-soft);
}
.nav-links a { transition: color 160ms ease; }
.nav-links a:hover { color: var(--terracotta-d); }
.nav-cta {
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: background 160ms ease, transform 160ms ease;
}
.nav-cta:hover { background: var(--terracotta-d); }
.nav-cta:active { transform: translateY(1px); }

.nav-mobile {
  display: none;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--line);
}
.nav-mobile span,
.nav-mobile span::before,
.nav-mobile span::after {
  display: block;
  width: 16px; height: 1.5px; background: var(--ink);
  position: relative;
  transition: transform 220ms ease, top 220ms ease;
}
.nav-mobile span::before { content: ''; position: absolute; top: -5px; left: 0; }
.nav-mobile span::after  { content: ''; position: absolute; top:  5px; left: 0; }
.nav-mobile.open span { background: transparent; }
.nav-mobile.open span::before { top: 0; transform: rotate(45deg); }
.nav-mobile.open span::after  { top: 0; transform: rotate(-45deg); }

.nav-sheet {
  position: fixed;
  inset: 64px 0 0 0;
  background: var(--paper);
  z-index: 49;
  padding: 32px 28px;
  display: flex; flex-direction: column;
  gap: 0;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
}
.nav-sheet.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.nav-sheet a {
  font-family: var(--serif);
  font-size: 34px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-soft);
}
.nav-sheet .nav-cta {
  align-self: flex-start;
  margin-top: 24px;
  padding: 14px 22px;
  font-size: 14px;
}

@media (max-width: 880px) {
  .nav-links, .nav > .nav-inner > .nav-cta { display: none; }
  .nav-mobile { display: flex; }
}

/* ── Hero ────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  padding: 0;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #1A1611;
}
.hero-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 38%;
  transform: scale(1.03);
}
.hero-img::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg,
      rgba(26,22,17,0.55) 0%,
      rgba(26,22,17,0.18) 22%,
      rgba(26,22,17,0.32) 50%,
      rgba(26,22,17,0.88) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 24px 56px;
  max-width: 1440px;
  margin: 0 auto;
  color: #F8F2E3;
}
.hero-top {
  position: absolute;
  top: 96px; left: 0; right: 0;
  padding: 0 24px;
  max-width: 1440px;
  margin: 0 auto;
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 24px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(248, 242, 227, 0.92);
  padding: 9px 14px;
  border: 1px solid rgba(248, 242, 227, 0.32);
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
.hero-badge .pulse {
  width: 7px; height: 7px;
  background: #E07A2A;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(224, 122, 42, 0.6);
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(224, 122, 42, 0.55); }
  70% { box-shadow: 0 0 0 10px rgba(224, 122, 42, 0); }
  100% { box-shadow: 0 0 0 0 rgba(46, 184, 110, 0); }
}

.hero-meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(248, 242, 227, 0.78);
  text-align: right;
  line-height: 1.7;
}

.hero-headline {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.025em;
  font-size: clamp(54px, 10vw, 144px);
  color: #F8F2E3;
  margin: 0 0 28px;
  text-wrap: balance;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.55), 0 1px 2px rgba(0, 0, 0, 0.35);
}
.hero-headline em {
  font-style: italic;
  color: #E2A981;
}

.hero-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.hero-sub {
  max-width: 480px;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(248, 242, 227, 0.92);
  margin: 0;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease, border-color 160ms ease;
  white-space: nowrap;
}
.btn .arr {
  display: inline-block;
  transition: transform 220ms ease;
}
.btn:hover .arr { transform: translateX(3px); }
.btn-primary { background: #F8F2E3; color: var(--ink); }
.btn-primary:hover { background: var(--terracotta); color: #F8F2E3; }
.btn-ghost {
  background: transparent;
  color: #F8F2E3;
  border: 1px solid rgba(248, 242, 227, 0.42);
}
.btn-ghost:hover { background: rgba(248, 242, 227, 0.08); border-color: rgba(248, 242, 227, 0.7); }
.btn-dark { background: var(--ink); color: var(--paper); }
.btn-dark:hover { background: var(--terracotta-d); }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-outline:hover { border-color: var(--ink); }

.hero-scroll {
  position: absolute;
  bottom: 18px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(248, 242, 227, 0.62);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  pointer-events: none;
}
.hero-scroll .line {
  width: 1px; height: 28px; background: rgba(248, 242, 227, 0.34);
  animation: scrollDown 2.4s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollDown {
  0%, 100% { transform: scaleY(0.4); opacity: 0.4; }
  50%      { transform: scaleY(1);   opacity: 1; }
}

@media (max-width: 720px) {
  .hero-top { top: 80px; }
  .hero-inner { padding-bottom: 80px; }
  .hero-meta { display: none; }
  .hero-scroll { display: none; }
}

/* ── Stats strip ──────────────────────────── */
.stats {
  background: var(--ink);
  color: var(--paper);
  padding: 28px 0;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.stat {
  padding: 12px 16px;
  border-left: 1px solid rgba(248, 242, 227, 0.14);
  display: flex; flex-direction: column; gap: 4px;
}
.stat:first-child { border-left: none; padding-left: 0; }
.stat-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(248, 242, 227, 0.58);
}
.stat-value {
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--paper);
}
.stat-value sup {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  color: rgba(248, 242, 227, 0.6);
  margin-left: 3px;
  top: -10px;
  position: relative;
}

@media (max-width: 720px) {
  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 4px 0;
  }
  .stat { border-left: none; border-top: 1px solid rgba(248,242,227,0.12); padding: 14px 8px; }
  .stat:first-child, .stat:nth-child(2) { border-top: none; }
  .stat-value { font-size: 26px; }
}

/* ── Intro ──────────────────────────────── */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.intro-eyebrow-row {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 28px;
}
.intro-eyebrow-row .rule-short { width: 48px; height: 1px; background: var(--line); }

.intro-headline {
  font-size: clamp(40px, 6.2vw, 72px);
  margin: 0 0 32px;
}

.intro-aside {
  position: sticky;
  top: 100px;
  display: flex; flex-direction: column; gap: 12px;
}
.intro-img {
  width: 100%;
  aspect-ratio: 3/4;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
}
.intro-cap {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: flex; justify-content: space-between; gap: 16px;
}

@media (max-width: 880px) {
  .intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .intro-aside { position: static; }
  .intro-img { aspect-ratio: 4/5; }
}

/* ── Features ──────────────────────────── */
.features {
  background: var(--paper-soft);
}
.features-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 32px; margin-bottom: 56px;
}
.features-head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 5.4vw, 60px);
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 16px 0 0;
  max-width: 560px;
  text-wrap: balance;
}
.features-head .right { max-width: 340px; color: var(--ink-soft); }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.feature {
  background: var(--paper-soft);
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 12px;
  min-height: 220px;
}
.feature-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
}
.feature h3 {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.05;
  margin: 0;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.feature p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}
@media (max-width: 880px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .features-head { flex-direction: column; align-items: flex-start; margin-bottom: 40px; }
}
@media (max-width: 520px) {
  .feature-grid { grid-template-columns: 1fr; }
  .feature { min-height: 0; padding: 28px 20px; }
}

/* ── Gallery ──────────────────────────── */
.gallery-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 32px; margin-bottom: 40px;
}
.gallery-head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 5.4vw, 60px);
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 16px 0 0;
}
.gallery-toggle {
  display: flex; gap: 4px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.gallery-toggle button {
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--ink-mute);
  border: 1px solid transparent;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}
.gallery-toggle button.active { color: var(--ink); border-color: var(--ink); }
.gallery-toggle button:hover:not(.active) { color: var(--ink); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.g-tile {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--paper-deep);
  border-radius: 10px;
  aspect-ratio: 4 / 3;
}
.g-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 800ms cubic-bezier(.2,.7,.2,1);
}
.g-tile:hover img { transform: scale(1.04); }
.g-tile::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,22,17,0) 60%, rgba(26,22,17,0.5));
  opacity: 0;
  transition: opacity 240ms ease;
}
.g-tile:hover::after { opacity: 1; }
.g-tile-cap {
  position: absolute; left: 18px; bottom: 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #F8F2E3;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 240ms ease, transform 240ms ease;
  z-index: 2;
}
.g-tile:hover .g-tile-cap { opacity: 1; transform: translateY(0); }

@media (max-width: 880px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .gallery-head { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 520px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* lightbox */
.lb {
  position: fixed; inset: 0;
  background: rgba(15, 12, 9, 0.94);
  backdrop-filter: blur(8px);
  z-index: 100;
  display: flex; flex-direction: column;
  opacity: 0; pointer-events: none;
  transition: opacity 240ms ease;
}
.lb.open { opacity: 1; pointer-events: auto; }
.lb-top {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px;
  color: rgba(248, 242, 227, 0.78);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.lb-close {
  width: 44px; height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(248, 242, 227, 0.3);
  color: #F8F2E3;
  display: flex; align-items: center; justify-content: center;
  transition: background 160ms ease, transform 160ms ease;
}
.lb-close:hover { background: rgba(248, 242, 227, 0.1); }
.lb-stage {
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  padding: 0 24px;
  position: relative;
}
.lb-stage img {
  max-width: 100%;
  max-height: calc(100vh - 200px);
  object-fit: contain;
}
.lb-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(248, 242, 227, 0.3);
  color: #F8F2E3;
  display: flex; align-items: center; justify-content: center;
  transition: background 160ms ease;
  background: rgba(15, 12, 9, 0.4);
}
.lb-nav:hover { background: rgba(248, 242, 227, 0.12); }
.lb-prev { left: 24px; }
.lb-next { right: 24px; }
.lb-cap {
  padding: 20px 24px 28px;
  text-align: center;
  color: rgba(248, 242, 227, 0.84);
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
}

@media (max-width: 720px) {
  .lb-nav { width: 44px; height: 44px; }
  .lb-prev { left: 12px; }
  .lb-next { right: 12px; }
  .lb-stage img { max-height: calc(100vh - 220px); }
}

/* ── Upgrade story ─────────────────────── */
.story {
  background: var(--ink);
  color: var(--paper);
}
.story .wrap { max-width: 1100px; }
.story-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: end;
  margin-bottom: 64px;
}
.story-head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 6.4vw, 80px);
  letter-spacing: -0.02em;
  line-height: 0.98;
  margin: 24px 0 0;
  color: var(--paper);
}
.story-head h2 em { font-style: italic; color: #E2A981; }
.story-head .right { color: rgba(248, 242, 227, 0.72); font-size: 17px; line-height: 1.6; }
.story-head .eyebrow { color: rgba(248, 242, 227, 0.62); }

.timeline {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0;
}
.tl-row {
  display: contents;
}
.tl-year {
  font-family: var(--serif);
  font-size: 30px;
  letter-spacing: -0.01em;
  color: #E2A981;
  padding: 28px 0;
  border-top: 1px solid rgba(248, 242, 227, 0.14);
  position: relative;
}
.tl-body {
  padding: 28px 0 28px 40px;
  border-top: 1px solid rgba(248, 242, 227, 0.14);
  position: relative;
}
.tl-row:first-child .tl-year,
.tl-row:first-child .tl-body { border-top: none; }
.tl-body::before {
  content: '';
  position: absolute;
  left: 0; top: 36px;
  width: 16px; height: 1px;
  background: rgba(248, 242, 227, 0.34);
}
.tl-body h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  margin: 0 0 8px;
  color: var(--paper);
  letter-spacing: -0.005em;
}
.tl-body p { font-size: 15px; line-height: 1.6; color: rgba(248, 242, 227, 0.72); margin: 0; }

@media (max-width: 720px) {
  .story-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 40px; }
  .timeline { grid-template-columns: 1fr; }
  .tl-year { padding: 22px 0 0; font-size: 24px; }
  .tl-body { padding: 8px 0 28px 0; border-top: none; }
  .tl-body::before { display: none; }
  .tl-row:first-child .tl-year { border-top: 1px solid rgba(248, 242, 227, 0.14); }
}

/* ── Neighborhood ──────────────────────── */
.hood-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
}
.hood-img {
  width: 100%;
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
}
.hood-text h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 5.6vw, 64px);
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 16px 0 28px;
}
.hood-text h2 em { font-style: italic; color: var(--terracotta-d); }

.places {
  display: flex; flex-direction: column;
  gap: 0;
  margin-top: 36px;
  border-top: 1px solid var(--line);
}
.place {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 20px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.place-name { font-family: var(--serif); font-size: 22px; letter-spacing: -0.005em; }
.place-kind {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.place-dist {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  white-space: nowrap;
}

@media (max-width: 880px) {
  .hood-grid { grid-template-columns: 1fr; gap: 40px; }
  .hood-img { aspect-ratio: 5/4; }
}

/* ── Contact ──────────────────────────── */
.cta {
  background: var(--terracotta);
  color: #F8F2E3;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: start;
}
.cta-grid h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(44px, 7vw, 84px);
  letter-spacing: -0.02em;
  line-height: 0.98;
  margin: 24px 0 32px;
}
.cta-grid h2 em { font-style: italic; }
.cta-eyebrow { color: rgba(248, 242, 227, 0.78); }

.cta-info { color: rgba(248, 242, 227, 0.86); font-size: 17px; line-height: 1.6; }
.cta-info p { margin: 0 0 1em; }

.agent-card {
  margin-top: 32px;
  padding: 24px;
  background: rgba(248, 242, 227, 0.08);
  border: 1px solid rgba(248, 242, 227, 0.22);
  border-radius: var(--radius-md);
  display: flex; gap: 20px; align-items: center;
}
.agent-avatar {
  width: 56px; height: 56px;
  border-radius: 999px;
  object-fit: cover;
  flex-shrink: 0;
}
.agent-name { font-family: var(--serif); font-size: 22px; line-height: 1; margin-bottom: 4px; }
.agent-role { font-size: 13px; opacity: 0.78; margin-bottom: 8px; }
.agent-contact { font-family: var(--mono); font-size: 12px; letter-spacing: 0.04em; }
.agent-contact a { display: block; transition: opacity 160ms ease; }
.agent-contact a:hover { opacity: 0.72; }

.form {
  background: #F8F2E3;
  color: var(--ink);
  padding: 32px;
  border-radius: var(--radius-md);
  display: flex; flex-direction: column;
  gap: 18px;
}
.form-title {
  font-family: var(--serif);
  font-size: 26px;
  margin: 0 0 4px;
  line-height: 1.1;
}
.form-sub { font-size: 14px; color: var(--ink-mute); margin: 0; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.field input, .field textarea, .field select {
  font: inherit;
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 8px 0 10px;
  width: 100%;
  transition: border-color 160ms ease;
  resize: vertical;
  font-size: 16px;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-bottom-color: var(--terracotta);
}
.field.error input, .field.error textarea, .field.error select {
  border-bottom-color: #B6311C;
}
.field-error {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #B6311C;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form button[type="submit"] {
  margin-top: 6px;
  padding: 16px 22px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-weight: 500;
  font-size: 14px;
  transition: background 160ms ease;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
}
.form button[type="submit"]:hover { background: var(--terracotta-d); }
.form button[type="submit"]:disabled { opacity: 0.6; cursor: not-allowed; }

.form-success {
  padding: 56px 24px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.form-success .check {
  width: 56px; height: 56px;
  border-radius: 999px;
  background: var(--terracotta);
  color: #F8F2E3;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
}
.form-success h3 {
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1.1;
  margin: 0;
  font-weight: 400;
}
.form-success p { font-size: 15px; color: var(--ink-soft); margin: 0; max-width: 340px; }

@media (max-width: 880px) {
  .cta-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 520px) {
  .field-row { grid-template-columns: 1fr; }
  .form { padding: 24px 20px; }
}

/* ── Footer ──────────────────────────── */
.footer {
  background: var(--paper);
  padding: 48px 0 36px;
  border-top: 1px solid var(--line);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
}
.footer-brand {
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1;
}
.footer-brand .num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--ink-mute);
  display: block;
  margin-top: 8px;
}
.footer-meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  text-align: right;
  line-height: 1.8;
}
.footer-disclaim {
  margin-top: 36px;
  font-size: 12px;
  color: var(--ink-mute);
  line-height: 1.55;
  max-width: 760px;
}

@media (max-width: 720px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-meta { text-align: left; }
}

/* ── Small util ──────────────────────── */
.no-scroll { overflow: hidden; }
