/* ==========================================================================
   Vantage Properties — Design System
   Display: Fraunces (editorial serif) · Body: Inter Tight
   Palette derived from brand mark: navy #16273F, gold #C9A227
   ========================================================================== */

:root {
  /* Color */
  --navy: #16273F;
  --navy-deep: #0D1826;
  --navy-mid: #24405F;
  --ink: #29303C;
  --ink-soft: #545D6B;
  --gold: #A97F17;        /* text-safe deepened gold, ~4.6:1 on white */
  --gold-bright: #C9A227; /* logo gold — icons, lines, large fills only */
  --gold-pale: #E8DCB8;
  --paper: #FAF6EE;
  --cream: #F1EADA;
  --white: #FFFFFF;
  --line: #E3DBC7;
  --line-on-dark: rgba(255, 255, 255, 0.14);

  /* Type */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter Tight", Arial, "Helvetica Neue", sans-serif;

  /* Scale */
  --fs-h1: clamp(2.5rem, 1.6rem + 3.6vw, 4.25rem);
  --fs-h2: clamp(1.9rem, 1.4rem + 2.2vw, 2.85rem);
  --fs-h3: clamp(1.3rem, 1.1rem + 0.8vw, 1.6rem);
  --fs-lead: clamp(1.05rem, 0.95rem + 0.4vw, 1.25rem);
  --fs-eyebrow: 0.8rem;

  --container: 74rem;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow-card: 0 1px 2px rgba(13, 24, 38, 0.06), 0 8px 24px -12px rgba(13, 24, 38, 0.18);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; margin: 0; padding: 0; }
button { font: inherit; cursor: pointer; }
input, textarea, select { font: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--navy); line-height: 1.12; letter-spacing: -0.01em; margin: 0; }
p { margin: 0; }

:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (min-width: 768px) {
  .container { padding-inline: 2.5rem; }
}

section { position: relative; }
.section-pad { padding-block: clamp(3.5rem, 6vw, 6.5rem); }
.bg-paper { background: var(--paper); }
.bg-cream { background: var(--cream); }
.bg-navy { background: var(--navy); color: rgba(255,255,255,0.92); }
.bg-navy h1, .bg-navy h2, .bg-navy h3 { color: var(--white); }
.bg-navy-deep { background: var(--navy-deep); color: rgba(255,255,255,0.85); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.bg-navy .eyebrow, .bg-navy-deep .eyebrow { color: var(--gold-bright); }
.eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: currentColor;
}

.lead {
  font-size: var(--fs-lead);
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 42em;
}
.bg-navy .lead, .bg-navy-deep .lead { color: rgba(255,255,255,0.75); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
  transition: transform 0.15s var(--ease), background-color 0.15s var(--ease), border-color 0.15s var(--ease), color 0.15s var(--ease);
  border: 1px solid transparent;
  min-height: 44px;
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
}
.btn-primary:hover { background: var(--navy-mid); }
.btn-primary:active { transform: translateY(1px); }
.btn-gold {
  background: var(--gold-bright);
  color: var(--navy-deep);
}
.btn-gold:hover { background: #d9b23c; }
.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.35);
  color: var(--white);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--navy);
}
.btn-ghost:hover { border-color: var(--navy); }
.btn-block { width: 100%; }
.btn svg { width: 16px; height: 16px; flex: none; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(1.1);
  border-bottom: 1px solid var(--line);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 1.5rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.brand img { height: 34px; width: auto; }
.brand-word {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.28rem;
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1;
}
.brand-word span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  color: var(--gold);
  margin-top: 3px;
}

.main-nav {
  display: none;
}
.main-nav ul { display: flex; align-items: center; gap: 2rem; }
.main-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 0.3rem 0;
}
.main-nav a[aria-current="page"] { color: var(--navy); font-weight: 700; }
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 2px;
  background: var(--gold-bright);
  transition: right 0.2s var(--ease);
}
.main-nav a:hover::after { right: 0; }

.nav-actions { display: flex; align-items: center; gap: 0.75rem; }
.nav-cta { display: none; }
.nav-call {
  display: none;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--navy);
}
.nav-call svg { width: 18px; height: 18px; color: var(--gold); }

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--navy);
}
.nav-toggle svg { width: 22px; height: 22px; }

.mobile-nav {
  display: none;
  flex-direction: column;
  border-top: 1px solid var(--line);
  background: var(--white);
  padding: 0.5rem 1.5rem 1.5rem;
}
.mobile-nav.is-open { display: flex; }
.mobile-nav a {
  padding: 0.85rem 0;
  font-size: 1.02rem;
  font-weight: 500;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}
.mobile-nav a[aria-current="page"] { color: var(--navy); font-weight: 700; }
.mobile-nav a.btn { margin-top: 1rem; border-bottom: none; color: var(--white); }

@media (min-width: 1024px) {
  .main-nav { display: block; }
  .nav-call { display: inline-flex; }
  .nav-cta { display: inline-flex; }
  .nav-toggle { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  padding-block: clamp(2.5rem, 5vw, 4.5rem) clamp(3rem, 6vw, 5rem);
  background: var(--paper);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: 2rem; }
}
.hero h1 { margin-block: 1.1rem 1.25rem; }
.hero-visual { position: relative; }
.hero-visual svg { width: 100%; height: auto; }

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.8rem;
  margin-top: 1.75rem;
}
.trust-row li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
}
.trust-row svg { width: 16px; height: 16px; color: var(--gold); flex: none; }

/* ---------- Lead form card ---------- */
.offer-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: clamp(1.5rem, 2.5vw, 2.25rem);
}
.offer-card h2, .offer-card h3 { font-size: 1.3rem; }
.offer-card p.lead { font-size: 0.95rem; margin-top: 0.35rem; }
.form-row {
  display: grid;
  gap: 1rem;
  margin-top: 1.4rem;
}
@media (min-width: 560px) {
  .form-row.cols-2 { grid-template-columns: 1fr 1fr; }
}
.field label {
  display: block;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.4rem;
}
.field input, .field textarea, .field select {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  font-size: 1rem;
  color: var(--ink);
  min-height: 48px;
}
.field textarea { min-height: 110px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #9CA3AF; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: 2px solid var(--gold-bright);
  outline-offset: 1px;
  background: var(--white);
}
.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23545D6B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='m6 9 6 6 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  background-size: 16px;
  padding-right: 2.6rem;
  color: var(--ink);
}
.field select:invalid { color: #9CA3AF; }
.field select option { color: var(--ink); }
.form-fieldset {
  border: none;
  padding: 0;
  margin: 1.4rem 0 0;
}
.form-fieldset legend {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  padding: 0 0 0.75rem;
  border-bottom: 1px solid var(--line);
  width: 100%;
}
.form-note {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-top: 0.9rem;
}
.form-note svg { width: 14px; height: 14px; flex: none; margin-top: 2px; color: var(--gold); }
.form-success {
  display: none;
  align-items: flex-start;
  gap: 0.7rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem 1.1rem;
  margin-top: 1rem;
  font-size: 0.92rem;
}
.form-success.is-visible { display: flex; }
.form-success svg { width: 20px; height: 20px; color: var(--gold); flex: none; }

/* ---------- Section headers ---------- */
.section-head {
  max-width: 40rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.section-head h2 { margin-top: 0.85rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  max-width: none;
}

/* ---------- Steps ---------- */
.steps {
  display: grid;
  gap: 1.75rem;
  margin-top: 0;
}
@media (min-width: 860px) {
  .steps { grid-template-columns: repeat(3, 1fr); }
}
.step {
  position: relative;
  padding-top: 1.25rem;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 1.1rem;
  position: relative;
}
.step-num::after {
  content: "";
  position: absolute;
  right: -4px; top: -4px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--gold-bright);
}
.step h3 { margin-bottom: 0.55rem; }
.step p { color: var(--ink-soft); }

/* connecting sightline between step numbers on desktop */
.steps.with-line { position: relative; }
.steps.with-line::before {
  content: "";
  position: absolute;
  top: 26px;
  left: calc(100% / 6);
  right: calc(100% / 6);
  height: 1px;
  background: repeating-linear-gradient(to right, var(--line) 0 6px, transparent 6px 12px);
  display: none;
}
@media (min-width: 860px) {
  .steps.with-line::before { display: block; }
}

/* ---------- Feature / difference grid ---------- */
.feature-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .feature-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
}
.feature-card .icon {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: var(--paper);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  margin-bottom: 1rem;
}
.feature-card .icon svg { width: 20px; height: 20px; }
.feature-card h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.feature-card p { color: var(--ink-soft); font-size: 0.95rem; }

/* ---------- Situations grid ---------- */
.situation-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .situation-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .situation-grid { grid-template-columns: repeat(4, 1fr); } }
.situation-item {
  background: var(--white);
  padding: 1.4rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.situation-item .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold-bright);
}
.situation-item h4 { font-family: var(--font-body); font-weight: 700; font-size: 0.98rem; color: var(--navy); }
.situation-item p { font-size: 0.86rem; color: var(--ink-soft); }

/* ---------- Comparison table ---------- */
.compare-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
table.compare {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  font-size: 0.94rem;
}
table.compare th, table.compare td {
  padding: 0.95rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
table.compare thead th {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 700;
  background: var(--paper);
}
table.compare thead th.highlight { color: var(--navy); }
table.compare tbody th {
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
}
table.compare td.highlight { color: var(--navy); font-weight: 600; background: rgba(201,162,39,0.07); }
table.compare tbody tr:last-child th, table.compare tbody tr:last-child td { border-bottom: none; }

/* ---------- What to expect (first call) ---------- */
.expect-grid {
  display: grid;
  gap: 2.75rem;
}
@media (min-width: 960px) {
  .expect-grid { grid-template-columns: 1fr 1.1fr; gap: 4rem; align-items: center; }
}
.no-prep-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1.6rem;
}
.no-prep-list li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.no-prep-list svg {
  width: 17px;
  height: 17px;
  flex: none;
  margin-top: 3px;
  color: var(--gold);
}
.no-prep-list strong { color: var(--navy); }

.call-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 3vw, 2.5rem);
}
.call-card-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 1.5rem;
  margin-bottom: 1.75rem;
  border-bottom: 1px solid var(--line-on-dark);
}
.call-card-head .icon {
  width: 42px;
  height: 42px;
  flex: none;
  border-radius: 50%;
  background: rgba(201, 162, 39, 0.16);
  color: var(--gold-bright);
  display: flex;
  align-items: center;
  justify-content: center;
}
.call-card-head .icon svg { width: 20px; height: 20px; }
.call-card-head .line1 { color: var(--white); font-weight: 700; font-size: 1rem; }
.call-card-head .line2 { color: rgba(255,255,255,0.55); font-size: 0.82rem; }

.call-step {
  position: relative;
  margin-left: 5px;
  padding-left: 1.6rem;
  padding-bottom: 1.5rem;
  border-left: 1px solid var(--line-on-dark);
}
.call-step:last-child { padding-bottom: 0; border-left-color: transparent; }
.call-step::before {
  content: "";
  position: absolute;
  left: -5.5px;
  top: 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold-bright);
}
.call-step .when {
  font-size: 0.7rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold-bright);
  font-weight: 700;
}
.call-step h3 {
  color: var(--white);
  font-size: 1.08rem;
  margin: 0.3rem 0 0.35rem;
}
.call-step p { color: rgba(255,255,255,0.65); font-size: 0.92rem; }

/* ---------- Testimonials ---------- */
.testimonial-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) { .testimonial-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.testimonial blockquote {
  font-family: var(--font-display);
  font-size: 1.08rem;
  color: var(--navy);
  line-height: 1.5;
  font-style: italic;
}
.testimonial cite {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--ink-soft);
  font-weight: 600;
}
.testimonial-note {
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--line);
}

/* ---------- FAQ category navigation ---------- */
.faq-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.faq-nav a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--paper);
  transition: border-color 0.15s var(--ease), background-color 0.15s var(--ease);
}
.faq-nav a svg { width: 15px; height: 15px; color: var(--gold); flex: none; }
.faq-nav a:hover { border-color: var(--gold-bright); background: var(--white); }

.faq-category { scroll-margin-top: 96px; }
.faq-category + .faq-category { margin-top: clamp(2.75rem, 5vw, 4rem); }
.faq-category-head {
  display: flex;
  align-items: baseline;
  gap: 0.85rem;
  margin-bottom: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 2px solid var(--gold-bright);
}
.faq-category-head h2 { font-size: 1.4rem; }
.faq-category-head span {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}

/* ---------- Accordion (FAQ) ---------- */
.accordion { border-top: 1px solid var(--line); }
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 0.25rem;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--navy);
  font-weight: 600;
}
.accordion-trigger .plus {
  flex: none;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  position: relative;
}
.accordion-trigger .plus::before, .accordion-trigger .plus::after {
  content: "";
  position: absolute;
  background: var(--navy);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.accordion-trigger .plus::before { width: 12px; height: 1.5px; }
.accordion-trigger .plus::after { width: 1.5px; height: 12px; transition: transform 0.2s var(--ease); }
.accordion-item.is-open .accordion-trigger .plus::after { transform: translate(-50%, -50%) rotate(90deg); }
.accordion-item.is-open .accordion-trigger .plus { border-color: var(--gold-bright); }
.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s var(--ease);
}
.accordion-panel-inner {
  padding: 0 0.25rem 1.4rem;
  color: var(--ink-soft);
  max-width: 46rem;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.25rem);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
  justify-content: space-between;
}
@media (min-width: 860px) {
  .cta-band { flex-direction: row; align-items: center; }
}
.cta-band h2 { color: var(--white); font-size: var(--fs-h3); max-width: 26rem; }
.cta-band p { color: rgba(255,255,255,0.7); margin-top: 0.5rem; max-width: 30rem; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  padding-block: clamp(2.75rem, 6vw, 5rem);
}
.page-hero h1 { color: var(--white); margin-block: 0.9rem 1rem; }
.page-hero .lead { color: rgba(255,255,255,0.72); }

/* ---------- Cities ---------- */
.city-columns {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 860px) {
  .city-columns { grid-template-columns: 1fr 1fr; }
}
.city-col h3 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy);
  padding-bottom: 0.9rem;
  border-bottom: 2px solid var(--gold-bright);
  margin-bottom: 1.2rem;
}
.city-col p { color: var(--ink-soft); line-height: 1.9; }

@media (min-width: 640px) {
  .two-col-detail { grid-template-columns: 1fr 1fr !important; }
}
@media (min-width: 960px) {
  .contact-grid { grid-template-columns: 1.4fr 1fr !important; align-items: start; }
}

/* ---------- Info cards (contact) ---------- */
.info-cards { display: grid; gap: 1rem; }
.info-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line-on-dark);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.info-card .icon {
  width: 40px; height: 40px; flex: none;
  border-radius: 8px;
  background: rgba(201,162,39,0.14);
  color: var(--gold-bright);
  display: flex; align-items: center; justify-content: center;
}
.info-card .icon svg { width: 20px; height: 20px; }
.info-card .label { font-size: 0.76rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-bright); font-weight: 700; }
.info-card .value { color: var(--white); font-weight: 700; font-size: 1.05rem; margin-block: 0.2rem 0.15rem; }
.info-card .hint { font-size: 0.85rem; color: rgba(255,255,255,0.55); }

/* ---------- Divider sightline ---------- */
.sightline-divider {
  display: flex;
  align-items: center;
  gap: 0;
  padding-block: 2.5rem;
}
.sightline-divider svg { width: 100%; height: 24px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,0.6); }
.footer-top {
  padding-block: clamp(2.5rem, 5vw, 4rem);
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 860px) {
  .footer-top { grid-template-columns: 1.2fr 1fr 1fr; }
}
.footer-brand img { height: 44px; width: auto; margin-bottom: 1rem; }
.footer-brand p { max-width: 26rem; font-size: 0.92rem; line-height: 1.7; }
.footer-col h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 1.1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col a, .footer-col span { font-size: 0.92rem; }
.footer-col a:hover { color: var(--white); }
.footer-legal {
  border-top: 1px solid var(--line-on-dark);
  padding-block: 1.75rem;
  font-size: 0.8rem;
  line-height: 1.7;
}
.footer-legal p + p { margin-top: 0.85rem; }
.footer-legal a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-legal a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--line-on-dark);
  padding-block: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
}
.footer-bottom a { text-decoration: underline; text-underline-offset: 2px; }

/* ---------- Prose (legal / long-form pages) ---------- */
.prose h2 {
  font-size: 1.35rem;
  margin-top: 2.75rem;
  padding-top: 1.9rem;
  border-top: 1px solid var(--line);
  position: relative;
}
.prose h2::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 44px;
  height: 2px;
  background: var(--gold-bright);
}
.prose h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.prose h2:first-child::before { display: none; }
.prose p {
  margin-top: 1rem;
  color: var(--ink-soft);
  line-height: 1.75;
}
.prose a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--gold-bright);
  text-underline-offset: 3px;
}
.prose a:hover { text-decoration-thickness: 2px; }

/* ---------- Utilities ---------- */
.mt-0 { margin-top: 0 !important; }
.text-center { text-align: center; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  z-index: 200;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }
