/* ============================================================
   AMERICAN LAND TRUST — Heritage Design System
   Deep navy · Old-glory crimson · Brass · Cream
   Fraunces (display) + Inter (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,400;1,9..144,500&family=Inter:wght@400;500;600;700&display=swap');

:root {
  /* Palette */
  --navy-950: #0B1024;
  --navy-900: #101731;
  --navy: #151D3B;
  --navy-700: #222C55;
  --navy-line: rgba(255,255,255,0.12);

  --red: #9E1B2F;
  --red-deep: #7F1425;
  --red-bright: #C8102E;

  --gold: #C09A4E;
  --gold-soft: #D8BC82;
  --gold-pale: #F0E6CB;
  --star-gold: #E3A82B;

  --paper: #FDFBF6;
  --cream: #F6F0E3;
  --cream-2: #EFE5D0;

  --ink: #1B2135;
  --body-color: #414A61;
  --muted: #6E7488;
  --line: #E7DECA;

  /* Legacy aliases (interior pages) */
  --dark: #151D3B;
  --white: #ffffff;
  --green: #9E1B2F;

  /* Type */
  --font-heading: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --max-width: 1200px;
  --topbar-height: 38px;
  --header-height: 84px;
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 18px;

  /* Shadow */
  --shadow-sm: 0 1px 3px rgba(16,23,49,0.08);
  --shadow-md: 0 10px 30px -8px rgba(16,23,49,0.16);
  --shadow-lg: 0 24px 60px -16px rgba(16,23,49,0.28);

  --transition-fast: 0.18s cubic-bezier(0.4,0,0.2,1);
  --transition-base: 0.32s cubic-bezier(0.4,0,0.2,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--body-color);
  background: var(--paper);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: calc(var(--header-height) + var(--topbar-height));
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition-fast); }
button { font-family: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--ink);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

.skip-link {
  position: absolute;
  top: -48px; left: 8px;
  background: var(--navy);
  color: #fff;
  padding: 10px 16px;
  z-index: 3000;
  border-radius: var(--radius-sm);
  font-weight: 600;
}
.skip-link:focus { top: 8px; }
.hidden { display: none !important; }

/* ---------- Eyebrow / section headings ---------- */
.eyebrow,
.section-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 18px;
}
.eyebrow::before, .eyebrow::after,
.section-label::before, .section-label::after {
  content: "";
  width: 32px; height: 1px;
  background: var(--gold);
}
.eyebrow.left { justify-content: flex-start; }
.eyebrow.left::after { display: none; }
.eyebrow.on-dark { color: var(--gold-soft); }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head h2 { font-size: clamp(1.9rem, 3.4vw, 2.75rem); margin-bottom: 16px; }
.section-head p { font-size: 1.06rem; color: var(--muted); }
.on-dark .section-head h2, .section-head.on-dark h2 { color: #fff; }
.on-dark .section-head p, .section-head.on-dark p { color: rgba(255,255,255,0.72); }

section { position: relative; }
.section-pad { padding: 104px 0; }

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--topbar-height);
  background: var(--navy-950);
  color: rgba(255,255,255,0.82);
  font-size: 13px;
  z-index: 1001;
  display: flex;
  align-items: center;
}
.topbar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.topbar .flag-note { display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; min-width: 0; }
.topbar .flag-note .star { margin-right: 6px; }
.topbar .flag-note .star { color: var(--gold); font-size: 11px; }
.topbar-right { display: flex; align-items: center; gap: 20px; white-space: nowrap; }
.topbar-right a { color: #fff; font-weight: 600; }
.topbar-right a:hover { color: var(--gold-soft); }
.topbar .hours { color: rgba(255,255,255,0.55); }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: var(--topbar-height); left: 0; right: 0;
  z-index: 1000;
  background: rgba(253,251,246,0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  height: var(--header-height);
  transition: box-shadow var(--transition-base);
}
.header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo img { height: 52px; width: auto; object-fit: contain; }
.logo-icon { width: 44px; height: 44px; flex-shrink: 0; }
.logo-icon svg { width: 100%; height: 100%; }
.logo span {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.nav { display: flex; gap: 30px; align-items: center; }
.nav a {
  color: var(--ink);
  font-weight: 500;
  font-size: 15px;
  padding: 8px 0;
  position: relative;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 2px;
  height: 2px;
  background: var(--red);
  transition: right var(--transition-base);
}
.nav a:hover::after, .nav a.active::after { right: 0; }
.nav a:hover, .nav a.active { color: var(--red); }

.header-actions { display: flex; align-items: center; gap: 18px; flex-shrink: 0; }
.header-phone {
  display: flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 15px; color: var(--ink);
  white-space: nowrap;
}
.header-phone svg { width: 17px; height: 17px; stroke: var(--red); fill: none; stroke-width: 2; }
.header-phone:hover { color: var(--red); }

.header-cta {
  white-space: nowrap;
  flex-shrink: 0;
  background: var(--red);
  color: #fff !important;
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius-sm);
  padding: 12px 24px;
  text-align: center;
  box-shadow: 0 6px 18px -6px rgba(158,27,47,0.55);
  transition: background var(--transition-fast), transform var(--transition-fast);
}
.header-cta:hover { background: var(--red-deep); transform: translateY(-1px); }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  background: none;
  border: none;
}
.menu-toggle span {
  width: 24px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-base);
}
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-overlay {
  position: fixed; inset: 0;
  background: rgba(11,16,36,0.5);
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition-base);
  z-index: 998;
}
.nav-overlay.active { opacity: 1; pointer-events: auto; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  line-height: 1.2;
}
.btn-red {
  background: var(--red);
  color: #fff;
  box-shadow: 0 10px 24px -8px rgba(158,27,47,0.6);
}
.btn-red:hover { background: var(--red-deep); transform: translateY(-2px); color: #fff; }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-700); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--line);
  color: var(--ink);
}
.btn-outline:hover { border-color: var(--red); color: var(--red); }
.btn-outline-light {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.4);
  color: #fff;
}
.btn-outline-light:hover { border-color: var(--gold); color: var(--gold-soft); }
.btn-gold {
  background: var(--gold);
  color: var(--navy-950);
  box-shadow: 0 10px 24px -8px rgba(192,154,78,0.55);
}
.btn-gold:hover { background: var(--gold-soft); transform: translateY(-2px); }
.btn.loading { opacity: 0.65; pointer-events: none; }
.btn.loading::after {
  content: "";
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.icon-svg { display: inline-flex; }
.icon-svg svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; }
.icon-sm svg { width: 15px; height: 15px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height) - var(--topbar-height));
  display: flex;
  align-items: center;
  padding: 72px 0 96px;
  isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(100deg, rgba(11,16,36,0.92) 0%, rgba(11,16,36,0.78) 42%, rgba(11,16,36,0.42) 100%),
    linear-gradient(0deg, rgba(11,16,36,0.5) 0%, rgba(11,16,36,0) 40%);
}

.hero-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 64px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 22px;
}
.hero-eyebrow .star { color: var(--gold); }

.hero-content h1 {
  color: #fff;
  font-size: clamp(2.3rem, 4.6vw, 3.7rem);
  font-weight: 600;
  margin-bottom: 22px;
}
.hero-content h1 em {
  font-style: italic;
  color: var(--gold-soft);
}
.hero-sub {
  color: rgba(255,255,255,0.82);
  font-size: 1.13rem;
  max-width: 540px;
  margin-bottom: 30px;
}

.hero-trust-list { list-style: none; display: flex; flex-direction: column; gap: 13px; margin-bottom: 36px; }
.hero-trust-list li {
  display: flex; align-items: center; gap: 12px;
  color: #fff; font-weight: 500; font-size: 1.02rem;
}
.hero-trust-list svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 2.5; flex-shrink: 0; }

.hero-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,0.75);
  font-size: 14px;
}
.hero-proof .stars { color: var(--star-gold); letter-spacing: 2px; font-size: 15px; }
.hero-proof strong { color: #fff; }

/* --- Hero form card --- */
.hero-form-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 36px 34px 30px;
  border-top: 4px solid var(--red);
  max-width: 460px;
  width: 100%;
  justify-self: end;
}
.hero-form-header { margin-bottom: 22px; }
.hero-form-header h3 { font-size: 1.5rem; margin-bottom: 6px; }
.hero-form-header p { color: var(--muted); font-size: 14.5px; }

/* Multi-step form */
.msf-progress {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.msf-progress-bar {
  flex: 1;
  height: 4px;
  background: var(--cream-2);
  border-radius: 4px;
  overflow: hidden;
}
.msf-progress-fill {
  height: 100%;
  width: 50%;
  background: linear-gradient(90deg, var(--gold), var(--red));
  border-radius: 4px;
  transition: width var(--transition-base);
}
.msf-step { display: none; }
.msf-step.active { display: block; animation: msfIn 0.35s ease; }
@keyframes msfIn {
  from { opacity: 0; transform: translateX(12px); }
  to { opacity: 1; transform: translateX(0); }
}
.msf-back {
  background: none; border: none;
  color: var(--muted);
  font-size: 13.5px; font-weight: 600;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px;
  margin-bottom: 14px;
  padding: 4px 0;
}
.msf-back:hover { color: var(--red); }

.form-group { margin-bottom: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

input[type="text"], input[type="tel"], input[type="email"], select, textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 15.5px;
  font-family: var(--font-body);
  color: var(--ink);
  background: #fff;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  appearance: none;
}
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236E7488' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  color: var(--ink);
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(21,29,59,0.1);
}
input.error, select.error, textarea.error { border-color: var(--red-bright); }
.form-error { color: var(--red-bright); font-size: 13px; margin-top: 5px; display: none; }
textarea { resize: vertical; }

.form-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 13px;
  color: var(--muted);
}
.form-secure svg { width: 14px; height: 14px; stroke: var(--gold); fill: none; stroke-width: 2; }

/* ============================================================
   STATS BAND
   ============================================================ */
.stats-band {
  background: var(--navy-950);
  border-top: 1px solid var(--navy-line);
  padding: 56px 0;
}
.stats-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stat { text-align: center; position: relative; }
.stat + .stat::before {
  content: "";
  position: absolute;
  left: -16px; top: 12%;
  height: 76%;
  width: 1px;
  background: var(--navy-line);
}
.stat-value {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.4vw, 2.9rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.1;
}
.stat-value .accent { color: var(--gold); }
.stat-label {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* ============================================================
   CREDIBILITY STRIP
   ============================================================ */
.cred-strip {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  padding: 26px 0;
}
.cred-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.cred-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
}
.cred-item svg { width: 20px; height: 20px; stroke: var(--red); fill: none; stroke-width: 2; flex-shrink: 0; }
.cred-item .stars { color: var(--star-gold); letter-spacing: 1px; }

/* ============================================================
   PROCESS
   ============================================================ */
.process-section { background: var(--paper); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.process-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.process-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.process-num {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 3.4rem;
  line-height: 1;
  color: var(--gold-pale);
  -webkit-text-stroke: 1px var(--gold);
  display: block;
  margin-bottom: 18px;
}
.process-day {
  display: inline-block;
  background: var(--cream);
  border: 1px solid var(--line);
  color: var(--red);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 40px;
  margin-bottom: 16px;
}
.process-card h3 { font-size: 1.35rem; margin-bottom: 12px; }
.process-card p { font-size: 15.5px; }
.process-cta { text-align: center; margin-top: 52px; }
.process-cta .note { display: block; margin-top: 12px; font-size: 13.5px; color: var(--muted); }

/* ============================================================
   OFFER FACTORS (How we calculate)
   ============================================================ */
.factors-section {
  background:
    radial-gradient(1200px 500px at 85% -10%, rgba(192,154,78,0.12), transparent 60%),
    var(--navy);
  color: #fff;
}
.factors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.factor-card {
  background: rgba(255,255,255,0.045);
  border: 1px solid var(--navy-line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: background var(--transition-base), border-color var(--transition-base);
}
.factor-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(192,154,78,0.5); }
.factor-icon {
  width: 46px; height: 46px;
  border-radius: 10px;
  background: rgba(192,154,78,0.14);
  border: 1px solid rgba(192,154,78,0.4);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.factor-icon svg { width: 22px; height: 22px; stroke: var(--gold-soft); fill: none; stroke-width: 2; }
.factor-card h3 { color: #fff; font-size: 1.12rem; margin-bottom: 10px; }
.factor-card p { color: rgba(255,255,255,0.68); font-size: 14.5px; line-height: 1.65; }
.factors-note {
  margin-top: 44px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--gold-soft);
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.18rem;
}
.factors-note svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 2; flex-shrink: 0; }

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.compare-section { background: var(--cream); }
.compare-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  -webkit-overflow-scrolling: touch;
}
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  min-width: 680px;
  font-size: 15px;
}
.compare-table th, .compare-table td {
  padding: 18px 22px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.compare-table thead th {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--ink);
  background: var(--paper);
  border-bottom: 2px solid var(--line);
}
.compare-table thead th.col-alt {
  background: var(--navy);
  color: #fff;
}
.compare-table thead th.col-alt .star { color: var(--gold); margin-right: 6px; }
.compare-table td.col-alt {
  background: rgba(21,29,59,0.035);
  font-weight: 600;
  color: var(--ink);
}
.compare-table td.col-alt svg { width: 17px; height: 17px; stroke: var(--red); stroke-width: 2.5; fill: none; vertical-align: -3px; margin-right: 7px; }
.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody th {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--ink);
  font-size: 14.5px;
  white-space: nowrap;
}
.compare-table td { color: var(--muted); }
.compare-note { text-align: center; margin-top: 22px; font-size: 13.5px; color: var(--muted); }

/* ============================================================
   TRACK RECORD (Recently purchased parcels)
   ============================================================ */
.parcels-section { background: var(--paper); }
.parcels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.parcel-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.parcel-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.parcel-img { position: relative; aspect-ratio: 4 / 2.7; overflow: hidden; }
.parcel-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.parcel-card:hover .parcel-img img { transform: scale(1.05); }
.parcel-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(11,16,36,0.85);
  backdrop-filter: blur(4px);
  color: var(--gold-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 40px;
}
.parcel-status {
  position: absolute;
  bottom: 14px; right: 14px;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 40px;
}
.parcel-body { padding: 22px 22px 24px; }
.parcel-body h3 { font-size: 1.12rem; margin-bottom: 4px; }
.parcel-body .parcel-loc { font-size: 13.5px; color: var(--muted); margin-bottom: 16px; }
.parcel-stats {
  display: flex;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.parcel-stat { flex: 1; text-align: center; }
.parcel-stat + .parcel-stat { border-left: 1px solid var(--line); }
.parcel-stat .val {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--navy);
}
.parcel-stat .lbl {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-section { background: var(--cream); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.review-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.review-quote { color: var(--gold); margin-bottom: 4px; }
.review-quote svg { width: 30px; height: 30px; fill: currentColor; stroke: none; }
.review-stars { color: var(--star-gold); letter-spacing: 3px; font-size: 16px; margin-bottom: 14px; }
.review-text { font-size: 15.5px; color: var(--body-color); flex: 1; margin-bottom: 22px; line-height: 1.75; }
.review-footer { display: flex; align-items: center; gap: 14px; border-top: 1px solid var(--line); padding-top: 18px; }
.review-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-soft);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--gold);
  flex-shrink: 0;
  overflow: hidden;
}
.review-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.review-name { font-weight: 700; color: var(--ink); font-size: 15px; line-height: 1.3; }
.review-deal { font-size: 13px; color: var(--muted); }
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--muted);
  margin-left: auto;
}
.reviews-aggregate {
  margin-top: 40px;
  text-align: center;
  font-size: 15px;
  color: var(--muted);
}
.reviews-aggregate .stars { color: var(--star-gold); letter-spacing: 2px; }
.reviews-aggregate strong { color: var(--ink); }

/* ============================================================
   FAMILY / ABOUT INLINE
   ============================================================ */
.family-section { background: var(--paper); overflow: hidden; }
.family-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 72px;
  align-items: center;
}
.family-photo { position: relative; }
.family-photo img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}
.family-photo::before {
  content: "";
  position: absolute;
  inset: 24px -24px -24px 24px;
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  opacity: 0.55;
}
.family-badge {
  position: absolute;
  z-index: 2;
  bottom: -18px; left: -18px;
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
  padding: 16px 22px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.35;
}
.family-badge svg { width: 26px; height: 26px; stroke: var(--gold); fill: none; stroke-width: 2; flex-shrink: 0; }
.family-badge .sub { display: block; color: rgba(255,255,255,0.6); font-weight: 500; font-size: 12px; }

.family-content h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); margin-bottom: 22px; }
.family-content p { margin-bottom: 18px; font-size: 1.03rem; }
.family-content blockquote {
  border-left: 3px solid var(--gold);
  padding: 4px 0 4px 22px;
  margin: 26px 0;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.22rem;
  color: var(--ink);
  line-height: 1.5;
}
.family-sign {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 28px 0 32px;
}
.family-sign .sig-name {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--navy);
}
.family-sign .sig-role { font-size: 13.5px; color: var(--muted); }

/* ============================================================
   SERVICE AREA / STATES
   ============================================================ */
.states-section {
  background:
    radial-gradient(900px 400px at 12% 110%, rgba(158,27,47,0.14), transparent 55%),
    var(--navy-950);
  color: #fff;
}
.states-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 880px;
  margin: 0 auto;
}
.state-chip {
  border: 1px solid var(--navy-line);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.85);
  border-radius: 40px;
  padding: 9px 20px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}
.state-chip:hover { border-color: var(--gold); background: rgba(192,154,78,0.12); }
.state-chip.hot {
  border-color: rgba(192,154,78,0.65);
  background: rgba(192,154,78,0.14);
  color: var(--gold-soft);
}
.states-cta {
  margin-top: 44px;
  text-align: center;
  color: rgba(255,255,255,0.7);
  font-size: 15px;
}
.states-cta a { color: var(--gold-soft); font-weight: 700; border-bottom: 1px solid rgba(216,188,130,0.5); }
.states-cta a:hover { color: #fff; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { background: var(--paper); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
  transition: box-shadow var(--transition-base);
}
.faq-item.open { box-shadow: var(--shadow-md); border-color: var(--gold-soft); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 22px 26px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
}
.faq-question:hover { color: var(--red); }
.faq-icon {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--transition-base), background var(--transition-base);
}
.faq-icon svg { width: 16px; height: 16px; stroke: var(--red); stroke-width: 2.5; fill: none; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--gold-pale); }
.faq-answer { display: none; }
.faq-answer-inner {
  padding: 0 26px 24px;
  color: var(--body-color);
  font-size: 15.5px;
  line-height: 1.75;
}

/* ============================================================
   FINAL CTA BAND
   ============================================================ */
.cta-band {
  position: relative;
  padding: 120px 0;
  isolation: isolate;
  text-align: center;
  color: #fff;
}
.cta-band-bg { position: absolute; inset: 0; z-index: -2; }
.cta-band-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band-overlay {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(11,16,36,0.88), rgba(11,16,36,0.82));
}
.cta-band h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 760px;
  margin: 0 auto 18px;
}
.cta-band h2 em { font-style: italic; color: var(--gold-soft); }
.cta-band p { color: rgba(255,255,255,0.78); font-size: 1.1rem; max-width: 560px; margin: 0 auto 38px; }
.cta-band-actions { display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap; }
.cta-band .micro { margin-top: 22px; font-size: 13.5px; color: rgba(255,255,255,0.55); }

/* ============================================================
   ARTICLES
   ============================================================ */
.articles-section { background: var(--cream); }
.articles-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}
.articles-header h3, .articles-header h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
.articles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.article-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.article-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.article-img { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.article-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.article-card:hover .article-img img { transform: scale(1.05); }
.article-category {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(11,16,36,0.85);
  color: var(--gold-soft);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 5px 11px;
  border-radius: 40px;
}
.article-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.article-body h4 { font-size: 1.05rem; line-height: 1.4; margin-bottom: 16px; flex: 1; }
.article-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-weight: 600;
  font-size: 14px;
  transition: gap var(--transition-fast), color var(--transition-fast);
}
.article-link:hover { color: var(--red-deep); gap: 12px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy-950);
  color: rgba(255,255,255,0.72);
  border-top: 3px solid var(--gold);
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 72px 32px 56px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 56px;
}
.footer-brand .logo span { color: #fff; }
.footer-brand p { font-size: 14.5px; line-height: 1.75; margin: 18px 0 22px; max-width: 340px; }
.footer-mil {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--navy-line);
  border-radius: 40px;
  padding: 8px 16px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--gold-soft);
}
.footer-mil svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 2; }
.footer-col h3 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col a:hover { color: var(--gold-soft); }
.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
  font-size: 14.5px;
  line-height: 1.6;
}
.footer-contact-item svg { flex-shrink: 0; margin-top: 4px; stroke: var(--gold); }
.footer-contact-item a:hover { color: var(--gold-soft); }
.footer-copyright {
  border-top: 1px solid var(--navy-line);
  padding: 24px 32px;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}
.footer-copyright .legal {
  display: block;
  max-width: 820px;
  margin: 10px auto 0;
  font-size: 12px;
  line-height: 1.6;
}
.footer-copyright a { color: rgba(255,255,255,0.6); }
.footer-copyright a:hover { color: var(--gold-soft); }

/* ============================================================
   FLOATING MOBILE BAR
   ============================================================ */
.floating-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  display: none;
  grid-template-columns: 1fr 1.4fr;
  gap: 10px;
  padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
  background: rgba(253,251,246,0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 30px rgba(16,23,49,0.14);
  transform: translateY(110%);
  transition: transform var(--transition-base);
}
.floating-bar.visible { transform: translateY(0); }
.floating-bar .btn { padding: 13px 10px; font-size: 14.5px; width: 100%; }

/* ============================================================
   PAGE HERO (interior pages: about, contact, blog)
   ============================================================ */
.page-hero, .contact-hero, .blog-hero {
  background:
    radial-gradient(1000px 420px at 80% -20%, rgba(192,154,78,0.16), transparent 60%),
    var(--navy-950);
  color: #fff;
  text-align: center;
  padding: 88px 24px 76px;
}
.page-hero h1, .contact-hero h1, .blog-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 820px;
  margin: 0 auto 14px;
}
.page-hero p, .contact-hero p, .blog-hero p {
  color: rgba(255,255,255,0.72);
  font-size: 1.08rem;
  max-width: 620px;
  margin: 0 auto;
}
.page-hero .eyebrow, .contact-hero .eyebrow, .blog-hero .eyebrow { color: var(--gold-soft); }

/* ============================================================
   TEAM + VALUES (about page)
   ============================================================ */
.team-section { background: var(--cream); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.team-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.team-photo { aspect-ratio: 1 / 1.02; overflow: hidden; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.team-body { padding: 26px 26px 30px; }
.team-body h3 { font-size: 1.3rem; margin-bottom: 4px; }
.team-role {
  color: var(--red);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.team-body p { font-size: 14.5px; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.value-card {
  text-align: center;
  padding: 38px 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.value-icon {
  width: 56px; height: 56px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--gold-soft);
  display: flex; align-items: center; justify-content: center;
}
.value-icon svg { width: 26px; height: 26px; stroke: var(--red); fill: none; stroke-width: 2; }
.value-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.value-card p { font-size: 14.5px; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-main { padding: 96px 0; background: var(--paper); }
.contact-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 20px; }
.contact-info > p { margin-bottom: 18px; }
.contact-trust-list { margin: 28px 0; display: flex; flex-direction: column; gap: 14px; }
.contact-trust-item { display: flex; align-items: center; gap: 12px; font-size: 15.5px; color: var(--ink); }
.trust-check {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--gold-soft);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.trust-check svg { width: 13px; height: 13px; stroke: var(--red); stroke-width: 3; fill: none; }
.contact-details { margin-top: 36px; display: flex; flex-direction: column; gap: 24px; }
.contact-detail { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon {
  width: 46px; height: 46px;
  border-radius: var(--radius-sm);
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 21px; height: 21px; stroke: var(--gold-soft); fill: none; stroke-width: 2; }
.contact-detail h4 { font-size: 1.05rem; margin-bottom: 3px; }
.contact-detail p, .contact-detail a { font-size: 15px; color: var(--body-color); }
.contact-detail a:hover { color: var(--red); }

.contact-form-wrapper {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 4px solid var(--red);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
}
.contact-form-wrapper h3 { font-size: 1.5rem; margin-bottom: 8px; }
.contact-form-wrapper .form-sub { color: var(--muted); font-size: 14.5px; margin-bottom: 24px; }
.form-footer-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 13px;
  color: var(--muted);
}
.form-footer-trust svg { stroke: var(--gold); fill: none; stroke-width: 2; }
.trust-badges { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 40px;
  padding: 7px 14px;
}
.trust-badge svg { stroke: var(--red); fill: none; stroke-width: 2; }

/* ============================================================
   THANK YOU PAGE
   ============================================================ */
.thanks-section { padding: 110px 0 120px; background: var(--paper); text-align: center; }
.thanks-check {
  width: 84px; height: 84px;
  margin: 0 auto 30px;
  border-radius: 50%;
  background: var(--navy);
  border: 3px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
}
.thanks-check svg { width: 38px; height: 38px; stroke: var(--gold-soft); stroke-width: 2.5; fill: none; }
.thanks-section h1 { font-size: clamp(2rem, 4vw, 2.9rem); margin-bottom: 16px; }
.thanks-section .lead { font-size: 1.12rem; color: var(--muted); max-width: 560px; margin: 0 auto 56px; }
.thanks-steps {
  max-width: 680px;
  margin: 0 auto 56px;
  text-align: left;
  display: flex;
  flex-direction: column;
}
.thanks-step { display: flex; gap: 22px; position: relative; padding-bottom: 34px; }
.thanks-step:last-child { padding-bottom: 0; }
.thanks-step::before {
  content: "";
  position: absolute;
  left: 21px; top: 44px; bottom: 0;
  width: 1.5px;
  background: var(--line);
}
.thanks-step:last-child::before { display: none; }
.thanks-step-num {
  width: 44px; height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--cream);
  border: 1.5px solid var(--gold);
  color: var(--red);
  font-family: var(--font-heading);
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  z-index: 1;
}
.thanks-step h3 { font-size: 1.15rem; margin-bottom: 4px; }
.thanks-step p { font-size: 15px; color: var(--muted); }

/* ============================================================
   BLOG (index + articles)
   ============================================================ */
.blog-article {
  max-width: 760px;
  margin: 0 auto;
  padding: 72px 24px 80px;
}
.blog-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 32px;
}
.blog-back:hover { color: var(--red); }
.blog-category {
  display: inline-block;
  background: var(--cream);
  border: 1px solid var(--gold-soft);
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 40px;
  margin-bottom: 20px;
}
.blog-article h1 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); margin-bottom: 24px; }
.blog-meta, .blog-byline {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 36px;
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-soft);
  font-family: var(--font-heading);
  font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.blog-hero-img { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 40px; box-shadow: var(--shadow-md); }
.blog-hero-img img { width: 100%; }
.blog-article h2 { font-size: 1.65rem; margin: 44px 0 16px; }
.blog-article h3 { font-size: 1.3rem; margin: 34px 0 14px; }
.blog-article p { margin-bottom: 20px; font-size: 1.05rem; line-height: 1.85; }
.blog-article ul, .blog-article ol { margin: 0 0 20px 24px; font-size: 1.05rem; }
.blog-article li { margin-bottom: 10px; line-height: 1.7; }
.blog-article blockquote {
  border-left: 3px solid var(--gold);
  background: var(--cream);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 22px 28px;
  margin: 30px 0;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink);
}
.blog-cta {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  text-align: center;
  margin: 52px 0;
  color: #fff;
}
.blog-cta h3 { color: #fff; font-size: 1.5rem; margin: 0 0 10px; }
.blog-cta p { color: rgba(255,255,255,0.72); margin-bottom: 24px; font-size: 1rem; }
.social-share { display: flex; align-items: center; gap: 12px; margin: 40px 0; flex-wrap: wrap; }
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 40px;
  border: 1px solid var(--line);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  background: #fff;
  transition: all var(--transition-fast);
}
.share-btn:hover { border-color: var(--navy); background: var(--cream); }
.related-articles { background: var(--cream); padding: 80px 0; }
.related-articles h2, .related-articles h3 { text-align: center; margin-bottom: 40px; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.related-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.related-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.related-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.related-card-img { aspect-ratio: 16/9; overflow: hidden; }
.related-card-img img { width: 100%; height: 100%; object-fit: cover; }
.related-card-body { padding: 20px 22px; }
.related-cat {
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.related-card-body h4 { font-size: 1.02rem; margin-top: 8px; line-height: 1.45; }

/* ============================================================
   LEGACY SUPPORT (privacy + misc interior)
   ============================================================ */
.about-page-heading { background: var(--navy-950); padding: 80px 32px; text-align: center; }
.about-page-heading h1 { color: #fff; }
.social-proof-banner { background: var(--cream); border-bottom: 1px solid var(--line); padding: 20px 24px; }
.proof-content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.proof-item { display: flex; align-items: center; gap: 8px; }
.proof-item svg { stroke: var(--red); fill: none; stroke-width: 2; }
.privacy-content { max-width: 800px; margin: 0 auto; padding: 72px 24px; }
.privacy-content h1 { margin-bottom: 24px; }
.privacy-content h2 { font-size: 1.4rem; margin: 36px 0 12px; }
.privacy-content p, .privacy-content li { font-size: 15.5px; margin-bottom: 14px; }
.privacy-content ul { margin-left: 22px; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-in, .fade-in-left, .fade-in-right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in { transform: translateY(26px); }
.fade-in-left { transform: translateX(-32px); }
.fade-in-right { transform: translateX(32px); }
.fade-in.visible, .fade-in-left.visible, .fade-in-right.visible {
  opacity: 1;
  transform: translate(0, 0);
}
@media (prefers-reduced-motion: reduce) {
  .fade-in, .fade-in-left, .fade-in-right { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .hero-container { grid-template-columns: 1fr; gap: 48px; }
  .hero-form-card { justify-self: stretch; max-width: 560px; margin: 0 auto; }
  .factors-grid { grid-template-columns: repeat(2, 1fr); }
  .parcels-grid { grid-template-columns: repeat(2, 1fr); }
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
  .stat + .stat::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 44px; }
}

@media (max-width: 900px) {
  .nav {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(340px, 86vw);
    background: var(--navy-950);
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 110px 36px 36px;
    transform: translateX(100%);
    transition: transform var(--transition-base);
    z-index: 999;
  }
  .nav.open { transform: translateX(0); }
  .nav a { color: #fff; font-size: 1.15rem; font-family: var(--font-heading); padding: 12px 0; width: 100%; }
  .nav a::after { display: none; }
  .nav a:hover, .nav a.active { color: var(--gold-soft); }
  .menu-toggle { display: flex; z-index: 1002; }
  .header-cta { display: none; }
  .header-phone span { display: none; }
  .topbar .hours { display: none; }

  .process-grid { grid-template-columns: 1fr; gap: 20px; }
  .reviews-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .family-grid { grid-template-columns: 1fr; gap: 56px; }
  .family-photo { max-width: 480px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .team-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; gap: 24px; }
  .values-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; gap: 20px; }
  .related-grid { grid-template-columns: 1fr; max-width: 480px; }
  .section-pad { padding: 76px 0; }
}

@media (max-width: 640px) {
  .container, .header-inner, .topbar-inner, .stats-grid, .cred-inner, .contact-grid, .related-grid { padding-left: 20px; padding-right: 20px; }
  .topbar .flag-note { font-size: 12px; }
  .hero { padding: 52px 0 72px; }
  .hero-form-card { padding: 28px 22px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .factors-grid { grid-template-columns: 1fr; }
  .parcels-grid { grid-template-columns: 1fr; }
  .articles-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-value { font-size: 1.7rem; }
  .cred-inner { justify-content: center; gap: 16px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .floating-bar { display: grid; }
  .cta-band { padding: 88px 0; }
  .compare-table { font-size: 14px; }
  .logo img { height: 44px; }
}
