/* ---------- TOKENS ---------- */
:root {
  --red: #CC3F2B;
  --red-dark: #A8331F;
  --red-tint: #FDF3F1;
  --navy: #1E3A5F;
  --navy-dark: #152843;
  --navy-deep: #0E1D33;
  --cream: #F5F0E8;
  --cream-dark: #E8DFD0;
  --ink: #1A1A1A;
  --ink-soft: #4A4A4A;
  --line: rgba(30, 58, 95, 0.12);
  --shadow-sm: 0 1px 2px rgba(14,29,51,0.06), 0 2px 6px rgba(14,29,51,0.04);
  --shadow-md: 0 4px 12px rgba(14,29,51,0.08), 0 12px 32px rgba(14,29,51,0.06);
  --shadow-lg: 0 12px 32px rgba(14,29,51,0.12), 0 24px 64px rgba(14,29,51,0.08);

  --display: "Bebas Neue", "Barlow Condensed", Impact, sans-serif;
  --condensed: "Barlow Condensed", "Bebas Neue", sans-serif;
  --serif: "Lora", Georgia, serif;
  --sans: "DM Sans", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }

/* ---------- LAYOUT HELPERS ---------- */
.wrap {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 48px;
}
@media (max-width: 1100px) {
  .wrap { padding: 0 32px; }
}
@media (max-width: 720px) {
  .wrap { padding: 0 20px; }
  body { font-size: 16px; }
}

.section { padding: 112px 0; position: relative; }
.section--tight { padding: 88px 0; }
@media (max-width: 720px) {
  .section { padding: 72px 0; }
}

.eyebrow {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 32px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 2px;
  background: currentColor;
}
.eyebrow--light { color: #E8A89C; }
.eyebrow--center {
  display: inline-flex;
  margin-left: auto;
  margin-right: auto;
}

.h-display {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0.005em;
  line-height: 0.95;
  margin: 0;
}
.h1 { font-size: clamp(48px, 7vw, 96px); }
.h2 { font-size: clamp(40px, 5.2vw, 68px); margin-top: 0; margin-bottom: 24px; }
.h3 { font-size: clamp(28px, 3vw, 40px); }

.lead {
  font-family: var(--serif);
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 60ch;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  border-radius: 4px;
  transition: transform .15s ease, background .15s ease, color .15s ease, box-shadow .15s ease;
  white-space: nowrap;
  text-transform: uppercase;
}
.btn--red {
  background: var(--red);
  color: #fff;
  box-shadow: 0 2px 0 var(--red-dark);
}
.btn--red:hover { background: var(--red-dark); transform: translateY(-1px); }
.btn--outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.9);
}
.btn--outline-white:hover { background: #fff; color: var(--navy); }
.btn--navy {
  background: var(--navy);
  color: #fff;
}
.btn--navy:hover { background: var(--navy-dark); }
.btn--ghost-navy {
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn--ghost-navy:hover { background: var(--navy); color: #fff; }
.btn--sm { padding: 10px 18px; font-size: 13px; }
.btn--lg { padding: 20px 36px; font-size: 16px; }

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background .25s ease, box-shadow .25s ease, padding .25s ease;
  padding: 18px 0;
}
.nav--scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(140%) blur(10px);
  box-shadow: 0 1px 0 var(--line);
  padding: 10px 0;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav__logo { height: 120px; width: auto; transition: height .25s ease, filter .25s ease; filter: drop-shadow(0 4px 16px rgba(0,0,0,0.35)); }
.nav--scrolled .nav__logo { height: 52px; filter: none; }
@media (max-width: 720px) {
  .nav__logo { height: 72px; }
  .nav--scrolled .nav__logo { height: 48px; }
}
.nav__wordmark {
  display: none;
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--navy);
  line-height: 1;
}
.nav--scrolled .nav__wordmark { color: var(--navy); }
.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__link {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.01em;
  color: rgba(255,255,255,0.95);
  padding: 12px 18px;
  border-radius: 4px;
  transition: color .15s ease, background .15s ease, font-size .25s ease, padding .25s ease;
  text-shadow: 0 1px 8px rgba(0,0,0,0.25);
}
.nav--scrolled .nav__link {
  color: var(--navy);
  font-size: 14px;
  padding: 10px 14px;
  text-shadow: none;
}
.nav__link:hover { color: #fff; background: rgba(255,255,255,0.08); }
.nav--scrolled .nav__link:hover { color: var(--red); background: transparent; }

.nav__cta { margin-left: 16px; font-size: 15px; padding: 14px 22px; transition: font-size .25s ease, padding .25s ease; }
.nav--scrolled .nav__cta { font-size: 13px; padding: 10px 18px; }

.nav__burger {
  display: none;
  width: 44px; height: 44px;
  border-radius: 4px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  position: relative;
}
.nav--scrolled .nav__burger { color: var(--navy); background: var(--cream); }
.nav__burger span {
  position: absolute;
  left: 12px; right: 12px;
  height: 2px;
  background: currentColor;
  transition: transform .25s, top .25s, opacity .2s;
}
.nav__burger span:nth-child(1) { top: 14px; }
.nav__burger span:nth-child(2) { top: 21px; }
.nav__burger span:nth-child(3) { top: 28px; }
.nav__burger--open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav__burger--open span:nth-child(2) { opacity: 0; }
.nav__burger--open span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

.nav__mobile {
  position: fixed;
  inset: 64px 0 0 0;
  background: #fff;
  display: none;
  flex-direction: column;
  padding: 24px;
  gap: 4px;
  z-index: 49;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  padding: 14px 8px;
  font-size: 18px;
  color: var(--navy);
  border-bottom: 1px solid var(--line);
  font-weight: 500;
}

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: inline-flex; align-items: center; justify-content: center; }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(10,18,33,0.86) 0%, rgba(10,18,33,0.66) 40%, rgba(10,18,33,0.46) 70%, rgba(10,18,33,0.56) 100%),
    url("assets/hero-billboard-flip.png") center 46% / cover no-repeat,
    linear-gradient(160deg, #0E1D33 0%, #1E3A5F 38%, #3a2418 75%, #1a0e08 100%);
  z-index: -2;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,18,33,0.42) 0%, rgba(10,18,33,0.18) 38%, rgba(10,18,33,0.60) 100%);
  z-index: -1;
}
/* Subtle horizon line + billboard silhouette via SVG layer */
.hero__horizon {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 45%;
  z-index: -1;
  opacity: 0.65;
}
.hero__billboard {
  position: absolute;
  right: 4%;
  bottom: 18%;
  width: clamp(220px, 30vw, 420px);
  aspect-ratio: 16/9;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%);
  border: 3px solid #c8c8c8;
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(16px, 2vw, 32px);
  letter-spacing: 0.04em;
  box-shadow: 0 0 40px rgba(255, 200, 100, 0.4), inset 0 0 60px rgba(255,255,255,0.05);
  text-align: center;
  padding: 0 12px;
  z-index: -1;
  animation: billboardGlow 4s ease-in-out infinite;
}
.hero__billboard::before, .hero__billboard::after {
  content: "";
  position: absolute;
  top: -22px;
  width: 4px; height: 22px;
  background: #888;
}
.hero__billboard::before { left: 20%; }
.hero__billboard::after { right: 20%; }
.hero__billboard-pole {
  position: absolute;
  right: calc(4% + clamp(220px, 30vw, 420px) / 2 - 6px);
  bottom: 0;
  width: 12px;
  height: 18%;
  background: linear-gradient(180deg, #555 0%, #2a2a2a 100%);
  z-index: -1;
}
@keyframes billboardGlow {
  0%, 100% { box-shadow: 0 0 40px rgba(255, 200, 100, 0.35), inset 0 0 60px rgba(255,255,255,0.05); }
  50% { box-shadow: 0 0 70px rgba(255, 200, 100, 0.55), inset 0 0 60px rgba(255,255,255,0.08); }
}

.hero__content {
  padding: 180px 0 80px;
  max-width: 1200px;
  position: relative;
}
@media (max-width: 720px) {
  .hero__content { padding: 140px 0 60px; }
}
.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #F5C9C0;
  margin-bottom: 28px;
  padding: 8px 16px;
  background: rgba(204, 63, 43, 0.18);
  border: 1px solid rgba(204, 63, 43, 0.35);
  border-radius: 999px;
}
.hero__kicker::before {
  content: "🍁";
  font-size: 14px;
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(48px, 7.4vw, 132px);
  line-height: 0.92;
  letter-spacing: 0.005em;
  margin: 0 0 24px;
  font-weight: 400;
  text-shadow: 0 2px 24px rgba(0,0,0,0.3);
  max-width: none;
}
.hero h1 .line {
  display: block;
  white-space: nowrap;
}
@media (max-width: 720px) {
  .hero h1 .line { white-space: normal; }
}
.hero h1 .accent { color: #F5C9C0; }
.hero__sub {
  font-family: var(--serif);
  font-size: clamp(18px, 1.5vw, 23px);
  line-height: 1.5;
  color: var(--cream);
  max-width: 64ch;
  margin: 0 0 40px;
}
.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 760px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero__stat-icon {
  font-size: 24px;
  margin-bottom: 8px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}
.hero__stat-num {
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1;
  margin-bottom: 6px;
}
.hero__stat-label {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
}
@media (max-width: 720px) {
  .hero__stats { grid-template-columns: 1fr; gap: 20px; }
  .hero__billboard, .hero__billboard-pole { display: none; }
}

/* ---------- WHY SECTION ---------- */
.why {
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.why::before {
  /* maple watermark pattern */
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 24 24' fill='%23CC3F2B'><path d='M12 2l1.5 4.5L18 5l-2 4 4 1.5-4 1.5 2 4-4.5-1.5L12 19l-1.5-4.5L6 16l2-4-4-1.5 4-1.5-2-4 4.5 1.5z'/></svg>");
  opacity: 0.04;
  pointer-events: none;
}
.why__head {
  text-align: center;
  margin: 0 auto 64px;
  max-width: 1180px;
}
.why__head h2 { color: #fff; max-width: 18ch; margin: 0 auto; }
.why__head .lead { color: rgba(255,255,255,0.75); margin: 0 auto; max-width: 64ch; }
.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}
@media (max-width: 980px) { .why__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .why__grid { grid-template-columns: 1fr; } }
.why__card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 32px 28px;
  border-radius: 8px;
  transition: transform .25s, background .25s, border-color .25s;
}
.why__card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.07);
  border-color: rgba(204, 63, 43, 0.5);
}
.why__icon {
  width: 56px; height: 56px;
  border-radius: 4px;
  background: rgba(204, 63, 43, 0.15);
  border: 1px solid rgba(204, 63, 43, 0.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}
.why__card h3 {
  font-family: var(--condensed);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 22px;
  margin: 0 0 12px;
  color: #fff;
}
.why__card p {
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  margin: 0;
}

/* ---------- LOCATIONS ---------- */
.locations { padding-bottom: 64px; }
.locations { background: var(--cream); }
.locations__head {
  text-align: center;
  margin: 0 auto 48px;
  max-width: 1180px;
}
.locations__head h2 { color: var(--navy); max-width: 20ch; margin-left: auto; margin-right: auto; }
.locations__head .lead { margin: 0 auto; max-width: 68ch; }

.locations__layout {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 32px;
  max-width: 1180px;
  margin: 0 auto;
}
@media (max-width: 980px) {
  .locations__layout { grid-template-columns: 1fr; }
}

.map-wrap {
  position: relative;
  height: 620px;
  border-radius: 8px;
  overflow: hidden;
  background: #d8dee6;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
#map { position: absolute; inset: 0; }

.locations__sidebar {
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 620px;
}
.loc-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 18px 14px 18px;
  cursor: pointer;
  transition: border-color .15s, transform .15s, box-shadow .15s;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: stretch;
  column-gap: 16px;
  position: relative;
  flex: 1;
  min-height: 0;
  text-align: left;
}
.loc-card:hover {
  border-color: var(--navy);
  transform: translateX(3px);
  box-shadow: var(--shadow-sm);
}
.loc-card--active {
  border-color: var(--red);
  border-width: 2px;
  background: #fff;
  padding: 13px 17px;
  box-shadow: var(--shadow-md);
}
.loc-card__num {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  font-family: var(--condensed);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink-soft);
  background: var(--cloud, #EEF1F5);
  border: 1px solid var(--line);
}
.loc-card--live-card .loc-card__num {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(204,63,43,0.15);
}
.loc-card__body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
  justify-content: center;
}
.loc-card__name {
  font-family: var(--condensed);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.01em;
  color: var(--navy);
  text-transform: uppercase;
  line-height: 1.05;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.loc-card__addr {
  font-size: 12.5px;
  color: var(--ink-soft);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.loc-card__boards {
  font-size: 13px;
  color: var(--ink);
  margin-top: 2px;
  white-space: nowrap;
  flex-shrink: 0;
}
.loc-card__boards strong { color: var(--navy); font-weight: 700; }
.loc-card__dotsep { color: var(--line); margin: 0 7px; }
.loc-card__status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
  padding: 4px 9px;
  border-radius: 999px;
  position: absolute;
  top: 14px;
  right: 18px;
}
.loc-card__status--live {
  color: #2D9A5C;
  background: rgba(45,154,92,0.10);
}
.loc-card__status--soon {
  color: #6B7280;
  background: rgba(107,114,128,0.10);
}
@media (max-width: 980px) {
  .locations__sidebar { height: auto; }
  .loc-card { flex: none; }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}
.dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.dot--grey { background: #9AA3AF; }
.dot--green { background: #2D9A5C; }
.dot--yellow { background: #E0A030; }

/* Leaflet custom pin */
.tn-pin {
  background: none !important;
  border: none !important;
}
.tn-pin__shape {
  width: 20px; height: 36px;
  position: relative;
}
/* circular head — centered on the shared vertical axis */
.tn-pin__shape::before {
  content: "";
  position: absolute;
  left: 50%; top: 0;
  transform: translateX(-50%);
  width: 20px; height: 20px;
  box-sizing: border-box;
  border-radius: 50%;
  background: var(--red);
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(204, 63, 43, 0.45);
  z-index: 1;
}
/* pointer tail — same axis, longer */
.tn-pin__shape::after {
  content: "";
  position: absolute;
  left: 50%; top: 15px;
  transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 21px solid var(--red);
  z-index: 0;
}
/* number — same 20×20 box as the head, so it shares the head's center */
.tn-pin__num {
  position: absolute;
  left: 50%; top: 0;
  transform: translateX(-50%);
  width: 20px; height: 20px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 11px;
  color: #fff;
  line-height: 1;
  text-shadow: 0 1px 1px rgba(0,0,0,0.3);
}

/* Leaflet popup */
.leaflet-popup-content-wrapper {
  border-radius: 6px;
  padding: 0;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}
.leaflet-popup-content { margin: 0; min-width: 260px; }
.leaflet-popup-close-button { color: var(--navy) !important; padding: 8px !important; }
.pop {
  padding: 18px 18px 16px;
  font-family: var(--sans);
}
.pop__name {
  font-family: var(--condensed);
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--navy);
  margin: 0 0 8px;
  line-height: 1.1;
}
.pop__row {
  display: flex; gap: 8px;
  font-size: 13px;
  color: var(--ink-soft);
  margin: 4px 0;
  line-height: 1.4;
}
.pop__row span:first-child { flex-shrink: 0; }
.pop__photo {
  margin-top: 12px;
  height: 110px;
  background:
    repeating-linear-gradient(45deg, var(--cream) 0 10px, var(--cream-dark) 10px 20px);
  border-radius: 4px;
  border: 1px dashed var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pop__photo--img {
  background: none;
  border: none;
  overflow: hidden;
  height: 140px;
}
.pop__photo--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% 32%;
  transform: scale(1.12);
  transform-origin: 48% 32%;
  display: block;
}
  color: var(--navy);
}
.pop__status {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px;
  font-weight: 600;
  margin-top: 8px;
}
.pop__cta {
  width: 100%;
  margin-top: 14px;
}

/* ---------- SPEC SHEET MODAL ---------- */
.spec-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: fadeIn 0.18s ease;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.spec-modal__box {
  background: #f4f4f2;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 760px;
  height: 90vh;
  box-shadow: 0 24px 64px rgba(0,0,0,0.35);
  animation: modalSlideUp 0.22s ease;
}
@keyframes modalSlideUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.spec-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
  background: #fff;
}
.spec-modal__header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.spec-modal__title {
  font-family: var(--condensed);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
}
.spec-modal__close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink-soft);
  padding: 4px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.15s, background 0.15s;
}
.spec-modal__close:hover {
  color: var(--red);
  background: var(--red-tint);
}
.spec-modal__scroll {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.spec-modal__pages {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.spec-modal__loading {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--ink-soft);
  font-size: 14px;
  min-height: 200px;
}
.spec-modal__spinner {
  width: 32px;
  height: 32px;
  border: 3px solid var(--line);
  border-top-color: var(--red);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ---------- LOCATION DETAIL PANEL ---------- */
.loc-detail {
  max-width: 1180px;
  margin: 16px auto 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  display: grid;
  grid-template-columns: 200px 1fr auto;
  align-items: stretch;
  animation: detailSlideIn 0.22s ease;
}
@keyframes detailSlideIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.loc-detail__media {
  position: relative;
  overflow: hidden;
  min-height: 120px;
}
.loc-detail__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% 32%;
  display: block;
}
.loc-detail__media-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 16px;
}
.loc-detail__media-num {
  font-family: var(--display);
  font-size: 52px;
  color: rgba(255,255,255,0.18);
  line-height: 1;
}
.loc-detail__media-city {
  font-family: var(--condensed);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.loc-detail__body {
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}
.loc-detail__top {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.loc-detail__name {
  font-family: var(--condensed);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0;
  line-height: 1;
}
.loc-detail__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px 32px;
}
.loc-detail__stat {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13.5px;
  color: var(--ink-soft);
  min-width: 0;
}
.loc-detail__stat-icon { flex-shrink: 0; font-size: 13px; display: flex; align-items: center; margin-top: -1px; }
.loc-detail__stat-val {
  color: var(--ink);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.loc-detail__stat-val strong { color: var(--navy); font-weight: 700; }
.loc-detail__cta {
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  border-left: 1px solid var(--line);
  flex-shrink: 0;
  justify-content: center;
}
.loc-card__boards-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
  margin-top: 4px;
  padding-top: 2px;
}
.loc-card__boards-row .loc-card__boards {
  flex: 0 0 auto;
  min-width: unset;
  margin-top: 0;
}
.loc-card__spec-btn {
  font-size: 11px !important;
  padding: 5px 12px !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  flex-shrink: 0;
}
@media (max-width: 980px) {
  .loc-detail { grid-template-columns: 1fr; }
  .loc-detail__media { min-height: 140px; }
  .loc-detail__cta { border-left: none; border-top: 1px solid var(--line); align-items: center; }
}

/* ---------- PACKAGES ---------- */
.pkg {
  background: #fff;
}
.pkg__head { text-align: center; margin: 0 auto 56px; max-width: 1080px; }
.pkg__head h2 { color: var(--navy); max-width: 22ch; margin-left: auto; margin-right: auto; }
.pkg__head .lead { max-width: 64ch; margin-left: auto; margin-right: auto; }
.pkg__grid {
  display: block;
  max-width: 1080px;
  margin: 0 auto;
}
.pkg__card--solo {
  display: flex;
  flex-direction: column;
  padding: 0;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  border-radius: 10px;
}
.pkg__solo-top {
  padding: 56px 56px 40px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.pkg__solo-headline {
  font-family: var(--display);
  font-size: clamp(36px, 4.4vw, 58px);
  letter-spacing: 0.01em;
  color: var(--navy);
  line-height: 0.95;
  margin: 0 0 16px;
}
.pkg__solo-tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--ink-soft);
  margin: 0 auto;
  max-width: 56ch;
  line-height: 1.5;
}
.pkg__solo-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0;
  background: #fafafa;
  border-bottom: 1px solid var(--line);
}
.pkg__feature {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.pkg__feature:last-child { border-right: 0; }
.pkg__feature-icon {
  font-size: 22px;
  margin-bottom: 4px;
}
.pkg__feature-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.pkg__feature-value {
  font-family: var(--condensed);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.01em;
  color: var(--navy);
  line-height: 1.2;
  text-transform: uppercase;
}
.pkg__solo-pitch {
  padding: 48px 56px 52px;
  background: var(--navy);
  color: #fff;
  display: grid;
  grid-template-columns: 1.1fr auto;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.pkg__solo-pitch::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(204, 63, 43, 0.28), transparent 55%);
  pointer-events: none;
}
.pkg__solo-pitch > * { position: relative; }
.pkg__solo-pitch-text h4 {
  font-family: var(--display);
  font-size: clamp(28px, 2.8vw, 38px);
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: #fff;
  margin: 0 0 12px;
}
.pkg__solo-pitch-text p {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255,255,255,0.82);
  margin: 0 0 14px;
  max-width: 56ch;
}
.pkg__solo-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.pkg__solo-bullets li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.88);
  font-weight: 500;
}
.pkg__solo-bullets li::before {
  content: "✓";
  color: #F5C9C0;
  font-weight: 700;
  font-size: 16px;
}
.pkg__solo-pitch-cta {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  min-width: 240px;
}
.pkg__solo-pitch-cta small {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  text-align: center;
}
@media (max-width: 900px) {
  .pkg__solo-features { grid-template-columns: repeat(2, 1fr); }
  .pkg__feature:nth-child(2) { border-right: 0; }
  .pkg__feature:nth-child(1), .pkg__feature:nth-child(2) { border-bottom: 1px solid var(--line); }
  .pkg__solo-pitch { grid-template-columns: 1fr; gap: 24px; padding: 40px 32px; }
  .pkg__solo-top { padding: 40px 28px 32px; }
}

.pkg__card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform .2s, box-shadow .2s;
  position: relative;
}
.pkg__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pkg__card--featured {
  border: 2px solid var(--navy);
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
  box-shadow: var(--shadow-md);
}
.pkg__badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: #fff;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 3px;
}
.pkg__name {
  font-family: var(--display);
  font-size: 36px;
  letter-spacing: 0.02em;
  color: var(--navy);
  margin: 0;
  line-height: 1;
}
.pkg__tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--ink-soft);
  margin: -10px 0 0;
}
.pkg__rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.pkg__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-size: 14px;
}
.pkg__row-k { color: var(--ink-soft); font-weight: 500; }
.pkg__row-v {
  color: var(--navy);
  font-weight: 600;
  text-align: right;
}
.pkg__price {
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: 0.01em;
  color: var(--red);
}
.pkg__price-note {
  font-family: var(--sans);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  margin-top: -6px;
}
.pkg__cta { margin-top: auto; }
.pkg__footnote {
  display: none;
  text-align: center;
  margin-top: 32px;
  font-size: 14px;
  color: var(--ink-soft);
}
.pkg__footnote a { color: var(--navy); font-weight: 600; border-bottom: 1px solid var(--navy); }

/* ---------- ROI ---------- */
.roi {
  background: var(--red-tint);
  position: relative;
  overflow: hidden;
}
.roi::before {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(204, 63, 43, 0.06), transparent 70%);
  pointer-events: none;
}
.roi__head { text-align: center; margin: 0 auto 56px; max-width: 1080px; }
.roi__head h2 { color: var(--navy); max-width: none; margin-left: auto; margin-right: auto; white-space: nowrap; }
.roi__head .lead { max-width: 64ch; margin-left: auto; margin-right: auto; }
.roi__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
}
@media (max-width: 900px) { .roi__grid { grid-template-columns: 1fr; gap: 32px; } }
.sliders {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.slider {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.slider__label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--sans);
}
.slider__title {
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.slider__val {
  font-family: var(--display);
  font-size: 28px;
  color: var(--red);
  letter-spacing: 0.02em;
  line-height: 1;
}
.slider__input {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: rgba(30, 58, 95, 0.15);
  border-radius: 3px;
  outline: none;
}
.slider__input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px; height: 24px;
  background: var(--red);
  border: 3px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(204, 63, 43, 0.4);
  transition: transform .15s;
}
.slider__input::-webkit-slider-thumb:hover { transform: scale(1.1); }
.slider__input::-moz-range-thumb {
  width: 24px; height: 24px;
  background: var(--red);
  border: 3px solid #fff;
  border-radius: 50%;
  cursor: pointer;
}
.slider__ticks {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: 0.06em;
}
.slider__ticks--anchored {
  display: block;
  position: relative;
  height: 1.2em;
}
.slider__ticks--anchored span {
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  white-space: nowrap;
}

.roi__output {
  background: var(--navy);
  color: #fff;
  border-radius: 8px;
  padding: 40px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.roi__output::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 0%, rgba(204, 63, 43, 0.25), transparent 60%);
}
.roi__output > * { position: relative; }
.roi__output-label {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #F5C9C0;
  margin: 0 0 16px;
}
.roi__output-num {
  font-family: var(--display);
  font-size: clamp(56px, 8vw, 96px);
  line-height: 1;
  letter-spacing: 0.02em;
  margin: 0 0 8px;
  transition: color .3s;
}
.roi__output-unit {
  font-family: var(--condensed);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 24px;
}
.roi__output-note {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
}

/* ---------- CASE STUDY ---------- */
.case {
  background: var(--navy-dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.case::before {
  content: "";
  position: absolute;
  top: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(204, 63, 43, 0.12), transparent 65%);
  pointer-events: none;
}
.case__head { text-align: center; margin: 0 auto 56px; max-width: 920px; }
.case__head h2 { color: #fff; max-width: 18ch; margin-left: auto; margin-right: auto; }
.case__head .lead { color: rgba(255,255,255,0.72); margin: 0 auto; max-width: 60ch; }

.case__card {
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 0;
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  overflow: hidden;
}
@media (max-width: 800px) { .case__card { grid-template-columns: 1fr; } }
.case__photo {
  background:
    repeating-linear-gradient(135deg, rgba(245, 240, 232, 0.08) 0 14px, rgba(245, 240, 232, 0.12) 14px 28px);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.case__photo-emoji { font-size: 40px; margin-bottom: 12px; }
.case__photo-label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.case__photo-biz {
  font-family: var(--condensed);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
  margin: 8px 0 4px;
}
.case__body {
  padding: 40px 40px 36px;
}
.case__quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.4;
  margin: 0 0 18px;
  position: relative;
  padding-left: 20px;
  border-left: 3px solid var(--red);
  color: #fff;
}
.case__attribution {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
}
.case__desc {
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
  margin: 0 0 20px;
}
.case__stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.case__stat-num {
  font-family: var(--display);
  font-size: 32px;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.02em;
}
.case__stat-label {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 6px;
}
.case__disclaimer {
  font-family: var(--serif);
  font-style: italic;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  margin-top: 16px;
}
.case__after {
  text-align: center;
  margin-top: 80px;
  padding: 40px 24px;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: 0.02em;
  line-height: 1.15;
  color: #fff;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.case__after a {
  color: var(--red);
  border-bottom: 2px solid var(--red);
  padding-bottom: 4px;
  white-space: nowrap;
  transition: color .15s, border-color .15s;
}
.case__after a:hover {
  color: #fff;
  border-color: #fff;
}

/* ---------- ABOUT ---------- */
.about { background: var(--cream); position: relative; overflow: hidden; }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) { .about__grid { grid-template-columns: 1fr; gap: 40px; } }
.about__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: #fff;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 3px;
  margin-bottom: 24px;
}
.about__text h2 { color: var(--navy); max-width: 16ch; }
.about__text p {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  margin: 20px 0 0;
  max-width: 56ch;
}
.about__promise {
  background: var(--navy);
  color: #fff;
  border-radius: 10px;
  padding: 44px 44px 40px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.about__promise::after {
  content: "";
  position: absolute;
  right: -40px; bottom: -40px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(204,63,43,0.35), transparent 70%);
  pointer-events: none;
}
.about__promise-mark { font-size: 30px; display: block; margin-bottom: 16px; }
.about__promise-title {
  font-family: var(--condensed);
  font-weight: 700;
  font-size: 27px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 28px;
  line-height: 1.05;
}
.about__promise-list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.about__promise-list li {
  position: relative;
  padding-left: 20px;
  display: grid;
  gap: 5px;
}
.about__promise-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red);
}
.about__promise-list li > span {
  font-family: var(--condensed);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
}
.about__promise-list li > p {
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255,255,255,0.78);
  margin: 0;
}
.about__promise-sign {
  margin: 30px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  position: relative;
  z-index: 1;
}

/* ---------- CONTACT ---------- */
.contact { background: #fff; }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 900px) { .contact__grid { grid-template-columns: 1fr; } }
.contact__info { display: block; }
.contact__info h2 { color: var(--navy); }
.contact__info p.lead { margin: 20px 0 32px; }
.contact__details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 16px;
}
.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
}
.contact__icon {
  width: 40px; height: 40px;
  border-radius: 4px;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact__detail-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 2px;
}
.contact__detail-val {
  font-weight: 500;
  color: var(--navy);
}
.contact__socials {
  display: flex;
  gap: 10px;
  margin-bottom: 32px;
}
.contact__social {
  width: 44px; height: 44px;
  border-radius: 4px;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  transition: background .15s, color .15s, border-color .15s;
}
.contact__social:hover { background: var(--red); color: #fff; border-color: var(--red); }
.contact__social svg { width: 18px; height: 18px; }
.contact__tag {
  display: inline-flex;
  align-items: center;
  margin-top: 14px;
  gap: 8px;
  padding: 10px 16px;
  background: var(--cream);
  border-radius: 3px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
}

.form {
  background: var(--cream);
  border-radius: 8px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border: 1px solid var(--cream-dark);
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 600px) { .form__row { grid-template-columns: 1fr; } }
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
}
.field input, .field select, .field textarea {
  font-family: var(--sans);
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  color: var(--ink);
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.1);
}
.field textarea { min-height: 110px; resize: vertical; }

.form__success {
  background: rgba(45, 154, 92, 0.1);
  border: 1px solid #2D9A5C;
  color: #1c6e3e;
  padding: 18px;
  border-radius: 4px;
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--navy-deep);
  color: #fff;
  padding: 72px 0 40px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 24 24' fill='%23CC3F2B'><path d='M12 2l1.5 4.5L18 5l-2 4 4 1.5-4 1.5 2 4-4.5-1.5L12 19l-1.5-4.5L6 16l2-4-4-1.5 4-1.5-2-4 4.5 1.5z'/></svg>");
  opacity: 0.03;
  pointer-events: none;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 32px;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 18px;
}
.footer__logo {
  height: 96px;
  width: auto;
  filter: brightness(1.05);
}
.footer__brand-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer__brand-name {
  font-family: var(--display);
  font-size: 36px;
  letter-spacing: 0.04em;
  line-height: 1;
}
.footer__brand-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: rgba(255,255,255,0.65);
}
.footer__links {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.footer__links a {
  font-size: 17px;
  font-weight: 600;
  padding: 10px 16px;
  color: rgba(255,255,255,0.85);
  border-radius: 4px;
  letter-spacing: 0.01em;
  transition: color .15s, background .15s;
}
.footer__links a:hover { color: #fff; background: rgba(255,255,255,0.08); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- SCROLL REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal--in {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__billboard { animation: none; }
  .tn-pin--live .tn-pin__shape::before { animation: none; }
}


/* ============================================================
   PROPERTY OWNERS SECTION
============================================================ */
.po { background: var(--navy); }

.po__top {
  background: var(--navy);
  padding: 96px 0 0;
}
.po__head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 28px;
}
.po__head .eyebrow { color: #E8A89C; }
.po__sub {
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.68;
  color: rgba(255,255,255,.65);
}
.po__stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.06);
  border-radius: 12px;
  overflow: hidden;
  max-width: 860px;
  margin: 0 auto;
  align-items: stretch;
}
.po__stat {
  background: rgba(255,255,255,.04);
  padding: 32px 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  border-right: 1px solid rgba(255,255,255,.08);
  text-align: center;
}
.po__stat:last-child { border-right: none; }
.po__stat--green {
  background: oklch(28% 0.12 240);
  border-right: 1px solid oklch(38% 0.14 240);
}
.po__stat-val {
  font-family: var(--condensed);
  font-size: 4.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.po__stat-val span { font-size: 2.2rem; opacity: 1; color: #fff; }
.po__stat-lbl {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}
.po__stat-cta {
  text-align: center;
  padding: 28px 0 0;
}

/* perks band */
.po__perks {
  background: rgba(255,255,255,.04);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 72px 0;
}
.po__perks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.po__perk {
  background: transparent;
  padding: 24px 32px;
  border-right: 1px solid rgba(255,255,255,.08);
  transition: background .2s;
}
.po__perk:last-child { border-right: none; }
.po__perk:hover { background: rgba(255,255,255,.06); }
.po__perk-icon { font-size: 1.5rem; margin-bottom: 10px; }
.po__perk-title {
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.po__perk-body {
  font-family: var(--sans);
  font-size: .98rem;
  line-height: 1.65;
  color: rgba(255,255,255,.5);
}

/* contact form: property owner checkbox + fields */
.field--check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: .92rem;
  color: var(--navy);
  cursor: pointer;
  margin: 4px 0 4px;
  white-space: nowrap;
  line-height: 1;
}
.field--check input {
  accent-color: var(--navy);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.form__row--owner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
  margin-bottom: 12px;
}

@media (max-width: 900px) {
  .po__top-inner { grid-template-columns: 1fr; gap: 40px; }
  .po__perks-grid { grid-template-columns: 1fr 1fr; }
  .form__row--owner { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .po__stat-grid { grid-template-columns: 1fr 1fr; }
  .po__perks-grid { grid-template-columns: 1fr; }
  .po__perk { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
}
