/* =========================================================
   REST Veterans Housing Solutions — style.css

   Palette sampled directly from the client's flyer.
   Navy #00111B, gold #C6840C. Change these here and the
   whole site follows.

   Sizing note: the root is 18px, not the usual 16px, and
   every size below is in rem. The audience skews older, so
   the whole interface is built one step larger than a
   default web page. The text-size control in the header
   scales this root value further.
   ========================================================= */

:root {
  /* ---- Brand: navy ---- */
  --navy-950: #00111B;
  --navy-900: #041A28;
  --navy-800: #0A2537;
  --navy-700: #0F3049;
  --navy-600: #14405A;

  /* ---- Brand: gold ---- */
  --gold-800: #6F4703;
  --gold-700: #8E5C05;   /* small gold text on cream — AA at body size */
  --gold-600: #C6840C;   /* flyer panel gold */
  --gold-500: #E0911B;
  --gold-400: #F0B23A;   /* accents on navy */

  /* ---- Tier colours ----
     Tiers 1-3 and 6 are sampled straight off the flyer's chips. Tiers 4 and 5
     are new (the flyer only had four) — teal and clay, chosen to sit inside
     the same muted, earthy family rather than stand out as additions. */
  --t1-chip: #355818;  --t1-tint: #A9B58D;   /* green  — flyer */
  --t2-chip: #1B5082;  --t2-tint: #A0B9CF;   /* blue   — flyer */
  --t3-chip: #8C5701;  --t3-tint: #DDBC86;   /* tan    — flyer */
  --t4-chip: #14514F;  --t4-tint: #9EC1BE;   /* teal   — new */
  --t5-chip: #7A3418;  --t5-tint: #D2A992;   /* clay   — new */
  --t6-chip: #51355E;  --t6-tint: #B1A4B8;   /* purple — flyer */

  /* ---- Surfaces & text ---- */
  --cream: #F8F5EE;
  --cream-alt: #EFEADD;
  --white: #FFFFFF;
  --ink: #0E1B24;
  --ink-muted: #33454F;      /* deliberately dark — light grey text fails older eyes */
  --on-navy: #E4EDF2;        /* body text on navy */
  --on-navy-soft: #BCCBD6;
  --line: #D9D1BE;
  --line-dark: rgba(240, 178, 58, 0.24);

  /* ---- Type ---- */
  --display: "Fira Sans Condensed", "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
  --body: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --fs-hero: clamp(2.15rem, 5vw, 3.45rem);
  --fs-h2: clamp(1.55rem, 3.2vw, 2.3rem);
  --fs-h3: clamp(1.06rem, 1.5vw, 1.22rem);
  --fs-lede: clamp(1.06rem, 1.4vw, 1.2rem);
  --fs-body: 1rem;
  --fs-sm: 0.92rem;
  --fs-xs: 0.8rem;

  --lh-body: 1.72;
  --measure: 64ch;

  /* ---- Space ---- */
  --sp-1: 0.4rem;
  --sp-2: 0.75rem;
  --sp-3: 1.2rem;
  --sp-4: 1.85rem;
  --sp-5: 2.6rem;
  --sp-6: 3.9rem;
  --sp-7: clamp(4rem, 8vw, 7rem);

  /* ---- Shape ---- */
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(0, 17, 27, 0.05), 0 8px 20px rgba(0, 17, 27, 0.06);
  --shadow-md: 0 16px 42px rgba(0, 17, 27, 0.13);
  --shadow-lg: 0 30px 76px rgba(0, 17, 27, 0.32);

  /* ---- Controls: sized up for less precise pointing ---- */
  --tap: 3.1rem;         /* ~56px minimum */
  --tap-lg: 3.6rem;      /* ~65px primary actions */
  --field-h: 3.4rem;

  --wrap: 1180px;
  --ease: cubic-bezier(0.22, 0.68, 0.32, 1);
  --ease-soft: cubic-bezier(0.34, 1.3, 0.5, 1);
  --header-h: 120px;
}

/* Text-size control. Scales every rem on the page at once. */
html { font-size: 112.5%; }                    /* 18px */
html.text-lg { font-size: 125%; }              /* 20px */
html.text-xl { font-size: 137.5%; }            /* 22px */

/* =========================================================
   BASE
   ========================================================= */

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; display: block; }
ul, ol { margin: 0; padding: 0; list-style: none; }

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: 0.005em;
  margin: 0;
  text-wrap: balance;
}

h1 { font-size: var(--fs-hero); line-height: 1.12; }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); line-height: 1.35; }
p { margin: 0 0 var(--sp-3); max-width: var(--measure); }
p:last-child { margin-bottom: 0; }

a { color: inherit; }

.wrap {
  width: min(100% - 2.5rem, var(--wrap));
  margin-inline: auto;
}

.i { width: 1.15em; height: 1.15em; flex: none; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* Focus rings are thick and offset — they must be obvious, not subtle. */
:focus-visible {
  outline: 4px solid var(--gold-500);
  outline-offset: 3px;
  border-radius: 4px;
}
.section-navy :focus-visible,
.site-header :focus-visible,
.cta-band :focus-visible,
.site-footer :focus-visible { outline-color: var(--gold-400); }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 200;
  background: var(--gold-600);
  color: var(--navy-950);
  padding: 0.9rem 1.4rem;
  border-radius: var(--r-sm);
  font-weight: 700;
  text-decoration: none;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 1rem; }

/* =========================================================
   SHARED PIECES
   ========================================================= */

/* The flyer rules a gold line under every heading. Reproduced here. */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-700);
  margin: 0 0 var(--sp-3);
  padding-bottom: var(--sp-2);
  border-bottom: 2px solid var(--gold-600);
}
.eyebrow::after {
  content: "\2605";
  font-size: 0.85em;
  letter-spacing: 0;
  color: var(--gold-600);
}
.eyebrow-light { color: var(--gold-400); border-bottom-color: var(--gold-500); }
.eyebrow-light::after { color: var(--gold-500); }

.section { padding-block: var(--sp-7); }
.section-cream { background: var(--cream-alt); }
.section-navy {
  position: relative;
  background: var(--navy-950);
  color: var(--on-navy);
}
.section-navy h2, .section-navy h3 { color: var(--white); }

.section-head { max-width: 48rem; margin-bottom: var(--sp-6); }
.section-lede {
  font-size: var(--fs-lede);
  color: var(--ink-muted);
  margin-top: var(--sp-3);
  max-width: var(--measure);
}
.section-navy .section-lede { color: var(--on-navy); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.8rem 1.7rem;
  min-height: var(--tap);
  border: 2px solid transparent;
  border-radius: var(--r-pill);
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.24s var(--ease), color 0.24s var(--ease),
              border-color 0.24s var(--ease), transform 0.24s var(--ease-soft),
              box-shadow 0.24s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-i { width: 1.15rem; height: 1.15rem; flex: none; transition: transform 0.28s var(--ease); }
.btn:hover .btn-i { transform: translateX(3px); }
.btn:hover .btn-i-static { transform: rotate(-9deg); }

.btn-lg { min-height: var(--tap-lg); padding: 1rem 2.1rem; font-size: 1.06rem; }
.btn-block { width: 100%; }

.btn-gold { background: var(--gold-600); color: var(--navy-950); border-color: var(--gold-600); }
.btn-gold:hover {
  background: var(--gold-500);
  border-color: var(--gold-500);
  box-shadow: 0 10px 26px rgba(198, 132, 12, 0.4);
}

.btn-navy { background: var(--navy-950); color: var(--white); border-color: var(--navy-950); }
.btn-navy:hover {
  background: var(--navy-700);
  border-color: var(--navy-700);
  box-shadow: 0 10px 26px rgba(0, 17, 27, 0.3);
}

.btn-outline { background: transparent; color: var(--white); border-color: var(--gold-500); }
.btn-outline:hover { background: rgba(240, 178, 58, 0.16); color: var(--gold-400); }

.btn-outline-dark { background: var(--white); color: var(--navy-950); border-color: var(--navy-950); }
.btn-outline-dark:hover { background: var(--cream-alt); }

/* =========================================================
   UTILITY BAR — location and phone, always the first thing read
   ========================================================= */

.utility-bar {
  background: var(--gold-600);
  color: var(--navy-950);
  font-size: var(--fs-sm);
  font-weight: 600;
}
.utility-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  min-height: 2.6rem;
  padding-block: 0.4rem;
}
.utility-place { display: inline-flex; align-items: center; gap: 0.5rem; }
.utility-place svg { width: 1.05rem; height: 1.05rem; }
.utility-actions { display: flex; align-items: center; gap: var(--sp-3); }
.utility-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  text-decoration: none;
  padding: 0.35rem 0.6rem;
  border-radius: var(--r-sm);
  transition: background-color 0.2s var(--ease);
}
.utility-phone:hover { background: rgba(0, 17, 27, 0.12); }
.utility-phone svg { width: 1.05rem; height: 1.05rem; }

/* ---- Text size control ---- */
.textsize {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.textsize-label {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.textsize-btns { display: inline-flex; gap: 0.25rem; }
.textsize button {
  min-width: 2.3rem;
  min-height: 2.1rem;
  padding: 0 0.4rem;
  background: transparent;
  border: 2px solid rgba(0, 17, 27, 0.35);
  border-radius: var(--r-sm);
  color: var(--navy-950);
  font-family: var(--display);
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.textsize button:nth-child(1) { font-size: 0.85rem; }
.textsize button:nth-child(2) { font-size: 1.02rem; }
.textsize button:nth-child(3) { font-size: 1.2rem; }
.textsize button:hover { background: rgba(0, 17, 27, 0.12); }
.textsize button[aria-pressed="true"] {
  background: var(--navy-950);
  border-color: var(--navy-950);
  color: var(--gold-500);
}

/* =========================================================
   HEADER + NAV
   ========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--navy-950);
  border-bottom: 3px solid transparent;
  transition: border-color 0.28s var(--ease), box-shadow 0.28s var(--ease);
}
.site-header.is-stuck {
  border-bottom-color: var(--gold-600);
  box-shadow: 0 6px 26px rgba(0, 17, 27, 0.4);
}

.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
}

.brand { display: inline-flex; align-items: center; text-decoration: none; }

/* Complete lockup, stacked as supplied, sized up. */
.brand-logo {
  height: 5.6rem;
  width: auto;
  flex: none;
  display: block;
  transition: transform 0.3s var(--ease-soft);
}
.brand:hover .brand-logo { transform: translateY(-2px); }

.nav { display: flex; align-items: center; gap: var(--sp-4); }
.nav-list { display: flex; align-items: center; gap: 0.4rem; }
.nav-list a {
  position: relative;
  display: block;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--on-navy);
  padding: 0.7rem 0.7rem;
  border-radius: var(--r-sm);
  transition: color 0.22s var(--ease), background-color 0.22s var(--ease);
}
.nav-list a::after {
  content: "";
  position: absolute;
  left: 0.7rem;
  right: 0.7rem;
  bottom: 0.35rem;
  height: 2px;
  border-radius: 2px;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s var(--ease);
}
.nav-list a:hover { color: var(--gold-400); background: rgba(240, 178, 58, 0.09); }
.nav-list a:hover::after { transform: scaleX(1); }

.nav-phone, .nav-textsize { display: none; }

.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.55rem;
  background: transparent;
  border: 2px solid var(--gold-600);
  border-radius: var(--r-pill);
  color: var(--gold-500);
  font-family: var(--body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.6rem 1.15rem;
  min-height: var(--tap);
  cursor: pointer;
}
.nav-toggle-bars { display: grid; gap: 5px; width: 1.25rem; }
.nav-toggle-bars span {
  display: block;
  height: 3px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.28s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.nav-scrim {
  position: fixed;
  inset: 0;
  z-index: 55;
  background: rgba(0, 17, 27, 0.66);
  animation: fade 0.24s var(--ease);
}

/* =========================================================
   HERO
   ========================================================= */

.hero {
  background: linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 100%);
  color: var(--on-navy);
  padding-block: clamp(2.6rem, 5vw, 4.5rem) clamp(2.6rem, 5vw, 4.5rem);
}

.hero-copy { margin-bottom: var(--sp-5); }

.tagline {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin: 0 0 var(--sp-3);
  padding-bottom: var(--sp-2);
  border-bottom: 2px solid var(--gold-600);
  max-width: none;
}

.hero-copy h1 {
  margin-bottom: var(--sp-3);
  color: var(--white);
  max-width: 20ch;
}
.hero-copy .lede {
  font-size: var(--fs-lede);
  color: var(--on-navy);
  max-width: 42rem;
  margin-bottom: var(--sp-5);
}
.hero-copy .lede strong { color: var(--gold-400); font-weight: 700; }

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3) var(--sp-4);
}
.hero-cta-row > .phone-block { margin-left: auto; }
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--sp-2); }

/* Signature: the phone number is a panel, not a footnote. */
.phone-block {
  display: inline-flex;
  flex-direction: column;
  gap: 0.2rem;
  text-decoration: none;
  color: var(--white);
  background: rgba(240, 178, 58, 0.07);
  border: 2px solid var(--gold-600);
  border-radius: var(--r-md);
  padding: var(--sp-3) var(--sp-4);
  transition: background-color 0.28s var(--ease), border-color 0.28s var(--ease), transform 0.28s var(--ease);
}
.phone-block:hover {
  background: rgba(240, 178, 58, 0.14);
  border-color: var(--gold-400);
  transform: translateY(-2px);
}
.phone-block-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-500);
}
.phone-ring { display: inline-flex; transition: transform 0.35s var(--ease-soft); }
.phone-block:hover .phone-ring { transform: rotate(-14deg) scale(1.08); }
.phone-block-number {
  font-family: var(--display);
  font-size: clamp(1.9rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.1;
}
/* Secondary line — clearly available, clearly not the headline number. */
/* ---- Highlight photograph: shown whole, never cropped ---- */
.hero-photo {
  margin: 0;
  border: 3px solid var(--gold-600);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  line-height: 0;
}
.hero-photo img {
  width: 100%;
  height: auto;          /* natural 3:2 — the full frame, no object-fit crop */
  display: block;
  animation: fade 0.9s var(--ease) both;
}

/* =========================================================
   BADGE BAND
   ========================================================= */

.badges-band {
  background: var(--gold-600);
  color: var(--navy-950);
  padding-block: var(--sp-5);
}
.honor-line {
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.6vw, 1.7rem);
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  margin: 0 auto var(--sp-4);
  max-width: none;
}
.badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  padding-top: var(--sp-4);
  border-top: 2px solid rgba(0, 17, 27, 0.2);
}
.badges li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  font-size: var(--fs-sm);
  font-weight: 600;
}
.badges li + li { border-left: 2px solid rgba(0, 17, 27, 0.16); }
.badge-icon { flex: none; }
.badge-icon svg { width: 2.1rem; height: 2.1rem; }
.badges strong { display: block; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }

/* =========================================================
   ABOUT + IMPACT
   ========================================================= */

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.2rem, 5vw, 4rem);
  align-items: start;
}
.about-lead { font-size: var(--fs-lede); color: var(--ink-muted); margin-top: var(--sp-3); }
.impact-panel {
  background: var(--navy-950);
  color: var(--on-navy);
  border-radius: var(--r-lg);
  border-top: 5px solid var(--gold-600);
  padding: clamp(1.7rem, 3.5vw, 2.5rem);
  box-shadow: var(--shadow-md);
}
.impact-title {
  color: var(--gold-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding-bottom: var(--sp-2);
  border-bottom: 2px solid var(--gold-600);
  margin-bottom: var(--sp-3);
}
.impact-list { display: grid; gap: var(--sp-3); }
.impact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: var(--fs-body);
  color: var(--on-navy);
}
.tick { width: 1.6rem; height: 1.6rem; flex: none; color: var(--gold-500); margin-top: 0.15rem; }

/* =========================================================
   MISSION
   ========================================================= */

.section-navy .section-head h2 { font-size: clamp(1.4rem, 2.9vw, 2rem); line-height: 1.4; }
.section-navy .section-head em { color: var(--gold-400); font-style: italic; }
.em-dash { color: var(--gold-500); }

.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--sp-4);
}
.pillar {
  padding: var(--sp-4);
  background: var(--navy-800);
  border: 1px solid var(--line-dark);
  border-radius: var(--r-md);
  transition: transform 0.3s var(--ease-soft), border-color 0.3s var(--ease);
}
.pillar:hover { transform: translateY(-3px); border-color: var(--gold-600); }
.pillar-icon {
  display: grid;
  place-items: center;
  width: 3.9rem;
  height: 3.9rem;
  margin-bottom: var(--sp-3);
  border: 2px solid var(--gold-600);
  border-radius: var(--r-pill);
  color: var(--gold-500);
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease);
}
.pillar:hover .pillar-icon { background: var(--gold-600); color: var(--navy-950); }
.pillar-icon svg { width: 1.9rem; height: 1.9rem; }
.pillar h3 { color: var(--gold-400); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: var(--sp-2); }
.pillar p { color: var(--on-navy); font-size: var(--fs-sm); }

.serve-note {
  margin-top: var(--sp-6);
  padding: var(--sp-5);
  border: 2px solid var(--gold-600);
  border-radius: var(--r-md);
  background: var(--navy-800);
  max-width: 46rem;
}
.serve-note h3 { color: var(--gold-500); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: var(--sp-2); }
.serve-note p { color: var(--on-navy); font-size: var(--fs-lede); }

/* =========================================================
   FLYER PANEL — the gold-bordered navy box the flyer uses
   for its Services and Price Tiers blocks
   ========================================================= */

.panel {
  background: var(--navy-950);
  border: 3px solid var(--gold-600);
  border-radius: var(--r-lg);
  padding: clamp(1.6rem, 4vw, 3rem);
  box-shadow: var(--shadow-md);
}

.panel-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-align: center;
  color: var(--gold-500) !important;
  margin: 0 auto var(--sp-4);
  padding-bottom: var(--sp-3);
  border-bottom: 2px solid var(--gold-600);
  max-width: none;
}

.panel-lede {
  text-align: center;
  color: var(--on-navy);
  font-size: var(--fs-lede);
  margin: 0 auto var(--sp-5);
  max-width: 44rem;
}

.panel-foot {
  margin: var(--sp-5) auto 0;
  padding-top: var(--sp-4);
  border-top: 2px solid var(--line-dark);
  text-align: center;
  color: var(--on-navy);
  font-size: var(--fs-lede);
  max-width: 40rem;
}
.panel-foot .stars {
  display: block;
  margin-bottom: var(--sp-2);
  font-size: 1.1rem;
}
.panel-foot em { display: block; margin-top: 0.3rem; color: var(--gold-400); font-style: italic; }

/* on navy, the service cards invert */
.panel .card {
  background: var(--navy-800);
  border-color: var(--line-dark);
}
.panel .card h3 { color: var(--white); }
.panel .card .card-icon { background: transparent; border: 2px solid var(--gold-600); }
.panel .card:hover { border-color: var(--gold-600); }

/* =========================================================
   SERVICE CARDS
   ========================================================= */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--sp-3);
}
.card {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: var(--sp-4);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.3s var(--ease-soft), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--gold-600);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.card:hover { transform: translateY(-4px); border-color: var(--gold-600); box-shadow: var(--shadow-md); }
.card:hover::before { transform: scaleX(1); }

.card-icon {
  display: grid;
  place-items: center;
  width: 3.6rem;
  height: 3.6rem;
  flex: none;
  border-radius: var(--r-pill);
  background: var(--navy-950);
  color: var(--gold-500);
  transition: transform 0.35s var(--ease-soft);
}
.card:hover .card-icon { transform: translateY(-2px) rotate(-4deg); }
.card-icon svg { width: 1.8rem; height: 1.8rem; }
.card h3 { color: var(--navy-950); font-size: 1.02rem; }

/* =========================================================
   HOUSING TIERS
   ========================================================= */

.tier-group-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: var(--fs-xs);
  font-family: var(--body);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: var(--sp-3);
  padding-bottom: var(--sp-2);
  border-bottom: 2px solid var(--line-dark);
}
.tier-group-title:not(:first-of-type) { margin-top: var(--sp-5); }
.tier-group-mark { display: inline-flex; }
.tier-group-mark svg { width: 1.5rem; height: 1.5rem; }

.tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--sp-3);
}

/* Each tier carries its own colour, exactly as the flyer does: a solid
   chip on the left, a soft tint of the same hue behind the description. */
.tier {
  display: flex;
  align-items: stretch;
  background: var(--tint);
  border: 2px solid var(--chip);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease-soft), box-shadow 0.3s var(--ease);
}
.tier:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.tier-1 { --chip: var(--t1-chip); --tint: var(--t1-tint); }
.tier-2 { --chip: var(--t2-chip); --tint: var(--t2-tint); }
.tier-3 { --chip: var(--t3-chip); --tint: var(--t3-tint); }
.tier-4 { --chip: var(--t4-chip); --tint: var(--t4-tint); }
.tier-5 { --chip: var(--t5-chip); --tint: var(--t5-tint); }
.tier-6 { --chip: var(--t6-chip); --tint: var(--t6-tint); }

.tier-num {
  display: grid;
  place-items: center;
  flex: none;
  width: 6.4rem;
  padding: var(--sp-3) 0.4rem;
  background: var(--chip);
  color: #FFFFFF;
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-align: center;
}
.tier-desc {
  margin: 0;
  padding: var(--sp-3) var(--sp-4);
  font-size: var(--fs-body);
  font-weight: 500;
  color: #10202C;
  align-self: center;
  max-width: none;
}
.tier-desc strong { color: #0A1620; font-weight: 700; }

.section-tiers .panel { margin-bottom: var(--sp-4); }

.tier-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  margin-top: var(--sp-4);
  padding: var(--sp-5);
  background: var(--white);
  border: 2px solid var(--gold-600);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
}
.tier-cta p { margin: 0; font-size: var(--fs-lede); max-width: 34rem; }
/* =========================================================
   HOW YOU CAN HELP
   ========================================================= */

.help-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--sp-3);
}
.help-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: var(--sp-5);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease-soft), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.help-card:hover { transform: translateY(-4px); border-color: var(--gold-600); box-shadow: var(--shadow-md); }
.help-icon {
  display: grid;
  place-items: center;
  width: 4.1rem;
  height: 4.1rem;
  margin-bottom: var(--sp-3);
  border: 2px solid var(--gold-600);
  border-radius: var(--r-pill);
  color: var(--gold-700);
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease), transform 0.35s var(--ease-soft);
}
.help-card:hover .help-icon { background: var(--gold-600); color: var(--navy-950); transform: translateY(-2px); }
.help-icon svg { width: 2rem; height: 2rem; }
.help-card h3 { color: var(--navy-950); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: var(--sp-2); }
.help-card p { font-size: var(--fs-sm); color: var(--ink-muted); }

.help-photo {
  margin: var(--sp-5) 0 0;
  border: 3px solid var(--gold-600);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.help-photo img { width: 100%; height: auto; display: block; }

.help-note {
  margin-top: var(--sp-5);
  padding: var(--sp-4);
  background: var(--white);
  border-left: 5px solid var(--gold-600);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-size: var(--fs-body);
  color: var(--ink-muted);
  max-width: none;
  box-shadow: var(--shadow-sm);
}
.help-note a { color: var(--gold-800); font-weight: 700; }

/* =========================================================
   SKYLINE DIVIDER
   ========================================================= */

.skyline {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: clamp(40px, 5vw, 64px);
  color: var(--navy-950);
  transform: translateY(-99%);
  pointer-events: none;
}
.section-navy { margin-top: clamp(40px, 5vw, 64px); }
.site-footer { position: relative; }

/* =========================================================
   CTA BAND
   ========================================================= */

.cta-band {
  background: var(--navy-950);
  color: var(--on-navy);
  padding-block: var(--sp-6);
  border-top: 4px solid var(--gold-600);
}
.cta-band-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
}
.stars { color: var(--gold-500); letter-spacing: 0.45em; margin: 0 0 var(--sp-2); max-width: none; }
.cta-band h2 { color: var(--white); margin-bottom: var(--sp-2); }
.cta-band p { color: var(--on-navy); max-width: 36rem; font-size: var(--fs-lede); }
.cta-band-actions { display: flex; flex-wrap: wrap; gap: var(--sp-2); }

/* =========================================================
   CONTACT
   ========================================================= */

.contact-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(2.2rem, 5vw, 4rem);
  align-items: start;
}

.contact-list { display: grid; gap: var(--sp-3); margin-block: var(--sp-4); }
.contact-list li {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: border-color 0.28s var(--ease), transform 0.28s var(--ease-soft);
}
.contact-list li:hover { border-color: var(--gold-600); transform: translateX(3px); }
.contact-icon {
  display: grid;
  place-items: center;
  width: 3.4rem;
  height: 3.4rem;
  flex: none;
  border-radius: var(--r-pill);
  background: var(--navy-950);
  color: var(--gold-500);
}
.contact-icon svg { width: 1.65rem; height: 1.65rem; }
.contact-label {
  display: block;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-700);
}
.contact-value {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy-950);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  word-break: break-word;
  transition: border-color 0.24s var(--ease);
}
.contact-value:hover { border-bottom-color: var(--gold-600); }
.contact-value-sm { font-size: clamp(1rem, 2.4vw, 1.1rem); }
.contact-value-plain { border-bottom: none; }

.social-line {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: var(--fs-sm);
  color: var(--ink-muted);
  margin-bottom: var(--sp-3);
  max-width: none;
}
.social-icon {
  display: grid;
  place-items: center;
  width: 2.3rem;
  height: 2.3rem;
  flex: none;
  border-radius: var(--r-pill);
  background: var(--navy-950);
  color: var(--gold-500);
}
.social-icon svg { width: 1.4rem; height: 1.4rem; }
.social-line strong { color: var(--ink); }

.privacy-note {
  font-size: var(--fs-sm);
  color: var(--ink-muted);
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 5px solid var(--gold-600);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: var(--sp-3) var(--sp-4);
  max-width: none;
}

/* ---- Form ---- */
.form-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 5px solid var(--gold-600);
  border-radius: var(--r-lg);
  padding: clamp(1.6rem, 3.5vw, 2.6rem);
  box-shadow: var(--shadow-md);
}
.form-title {
  margin-bottom: var(--sp-4);
  color: var(--navy-950);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding-bottom: var(--sp-2);
  border-bottom: 2px solid var(--gold-600);
}

.field { margin-bottom: var(--sp-4); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-3); }

.field label {
  display: block;
  font-size: var(--fs-body);
  font-weight: 700;
  margin-bottom: 0.45rem;
  color: var(--ink);
}
.req { color: var(--gold-800); }
.opt { font-weight: 400; color: var(--ink-muted); }

.field input,
.field textarea,
.field select {
  width: 100%;
  font-family: var(--body);
  font-size: 1.02rem;
  color: var(--ink);
  background: var(--cream);
  border: 2px solid var(--line);
  border-radius: var(--r-sm);
  padding: 0.85rem 1rem;
  min-height: var(--field-h);
  transition: border-color 0.22s var(--ease), box-shadow 0.22s var(--ease), background-color 0.22s var(--ease);
}
.field textarea { resize: vertical; min-height: 8rem; line-height: 1.6; }

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  background: var(--white);
  border-color: var(--navy-950);
  box-shadow: 0 0 0 4px rgba(198, 132, 12, 0.28);
}
.field input:focus-visible,
.field textarea:focus-visible,
.field select:focus-visible { outline: 3px solid var(--gold-500); outline-offset: 1px; }

.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] { border-color: #9B2A1C; background: #FDF4F2; }

.select-wrap { position: relative; }
.select-wrap::after {
  content: "";
  position: absolute;
  right: 1.2rem;
  top: 50%;
  width: 0.6rem;
  height: 0.6rem;
  border-right: 3px solid var(--ink-muted);
  border-bottom: 3px solid var(--ink-muted);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}
.select-wrap select { appearance: none; padding-right: 2.8rem; }

/* Errors read as words plus an icon, never colour alone. */
.field-err {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  margin: 0.5rem 0 0;
  font-size: var(--fs-sm);
  font-weight: 700;
  color: #9B2A1C;
  max-width: none;
  animation: nudge 0.3s var(--ease);
}
.field-err::before {
  content: "!";
  display: grid;
  place-items: center;
  width: 1.25rem;
  height: 1.25rem;
  flex: none;
  border-radius: var(--r-pill);
  background: #9B2A1C;
  color: #fff;
  font-size: 0.85rem;
  line-height: 1;
}

.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-status {
  margin: var(--sp-3) 0 0;
  padding: var(--sp-4);
  border-radius: var(--r-sm);
  font-size: var(--fs-body);
  font-weight: 600;
  max-width: none;
  animation: settle 0.4s var(--ease-soft);
}
.form-status-ok { background: #E7F2E6; border: 2px solid #7FA879; color: #17390F; }
.form-status-err { background: #FDF4F2; border: 2px solid #D79E94; color: #6E1E13; }

.btn[aria-busy="true"] { opacity: 0.75; pointer-events: none; }

@keyframes nudge {
  0% { transform: translateX(0); }
  30% { transform: translateX(-3px); }
  60% { transform: translateX(2px); }
  100% { transform: translateX(0); }
}

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
  background: var(--navy-950);
  color: var(--on-navy-soft);
  margin-top: clamp(40px, 5vw, 64px);
  padding-top: var(--sp-6);
  font-size: var(--fs-sm);
}
.skyline-footer { color: var(--navy-950); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1.1fr;
  gap: var(--sp-5);
  padding-bottom: var(--sp-5);
}
.footer-logo { width: min(100%, 230px); height: auto; margin-bottom: var(--sp-3); }
.footer-desc { max-width: 26rem; }
.footer-contact a {
  color: var(--gold-400);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  word-break: break-word;
  transition: border-color 0.22s var(--ease);
}
.footer-contact a:hover { border-bottom-color: var(--gold-400); }
.footer-heading {
  font-family: var(--body);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin: 0 0 var(--sp-3);
  padding-bottom: var(--sp-2);
  border-bottom: 2px solid var(--line-dark);
}
.footer-nav ul { display: grid; gap: 0.15rem; }
.footer-nav a {
  display: block;
  padding: 0.45rem 0;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.22s var(--ease);
}
.footer-nav a:hover { color: var(--gold-400); }
.footer-disclaimer { font-size: var(--fs-xs); line-height: 1.7; color: var(--on-navy-soft); max-width: none; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--sp-2);
  padding-block: var(--sp-4);
  border-top: 1px solid var(--line-dark);
  font-size: var(--fs-xs);
  color: var(--on-navy-soft);
}
.footer-bottom p { margin: 0; max-width: none; }

/* =========================================================
   MOBILE CTA BAR
   ========================================================= */

.mobile-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  display: none;
  gap: 0.6rem;
  padding: 0.7rem 1rem calc(0.7rem + env(safe-area-inset-bottom));
  background: var(--navy-950);
  border-top: 3px solid var(--gold-600);
  box-shadow: 0 -8px 26px rgba(0, 17, 27, 0.5);
  transform: translateY(120%);
  transition: transform 0.36s var(--ease);
}
.mobile-bar.is-up { transform: translateY(0); }
.mobile-bar.is-hidden { transform: translateY(120%); }
.mobile-bar-call { flex: 1 1 auto; }
.mobile-bar-msg { flex: 0 0 auto; }

/* =========================================================
   NEWSLETTER MODAL
   ========================================================= */

.modal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 1.25rem; }
.modal[hidden] { display: none; }

.modal-scrim { position: absolute; inset: 0; background: rgba(0, 17, 27, 0.7); animation: fade 0.28s var(--ease); }

.modal-card {
  position: relative;
  width: min(100%, 470px);
  max-height: calc(100dvh - 2.5rem);
  overflow-y: auto;
  background: var(--white);
  border-top: 6px solid var(--gold-600);
  border-radius: var(--r-lg);
  padding: clamp(1.7rem, 4vw, 2.4rem);
  box-shadow: var(--shadow-lg);
  animation: pop 0.34s var(--ease-soft);
}
.modal-mark { width: 3.6rem; height: auto; margin-bottom: var(--sp-3); }
.modal-card h2 { font-size: 1.6rem; margin-bottom: var(--sp-2); color: var(--navy-950); }
.modal-card > p { font-size: var(--fs-sm); color: var(--ink-muted); margin-bottom: var(--sp-4); max-width: none; }

.modal-close {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  width: var(--tap);
  height: var(--tap);
  display: grid;
  place-items: center;
  background: transparent;
  border: none;
  border-radius: var(--r-pill);
  color: var(--ink-muted);
  cursor: pointer;
  transition: background-color 0.22s var(--ease), color 0.22s var(--ease);
}
.modal-close:hover { background: var(--cream-alt); color: var(--ink); }
.modal-close svg { width: 1.35rem; height: 1.35rem; }

/* ---- Waiting-list announcement ---- */

.modal-card-announce { text-align: center; }
.modal-card-announce .modal-mark { margin-inline: auto; }

.modal-badge {
  display: inline-block;
  margin: 0 0 var(--sp-2);
  padding: 0.3rem 0.9rem;
  border-radius: var(--r-pill);
  background: var(--gold-600);
  color: var(--navy-950);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  max-width: none;
}

.modal-card-announce h2 { font-size: clamp(1.6rem, 5vw, 2rem); }
.modal-card-announce > p { margin-inline: auto; }
.modal-call { margin-top: var(--sp-2); }

/* ---- Waiting-list checkbox on the contact form ---- */

.field-check {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: var(--sp-3);
  background: var(--cream);
  border: 2px solid var(--line);
  border-radius: var(--r-sm);
}
.field-check input {
  width: 1.5rem;
  height: 1.5rem;
  min-height: 0;
  flex: none;
  margin: 0;
  accent-color: var(--gold-600);
  cursor: pointer;
}
.field-check label { margin: 0; cursor: pointer; }
.field-check:focus-within { border-color: var(--navy-950); }

.modal-dismiss {
  display: block;
  width: 100%;
  margin-top: var(--sp-2);
  padding: 0.7rem;
  min-height: var(--tap);
  background: none;
  border: none;
  font-family: var(--body);
  font-size: var(--fs-body);
  font-weight: 600;
  color: var(--ink-muted);
  text-decoration: underline;
  cursor: pointer;
}
.modal-dismiss:hover { color: var(--ink); }

body.modal-open { overflow: hidden; }

@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes pop { from { opacity: 0; transform: translateY(16px) scale(0.97); } to { opacity: 1; transform: none; } }

/* =========================================================
   SCROLL REVEAL
   ========================================================= */

.reveal { opacity: 1; }
.js-reveal .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease) var(--d, 0s), transform 0.6s var(--ease) var(--d, 0s);
}
.js-reveal .reveal.is-in { opacity: 1; transform: none; }

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1140px) {
  .nav-list { gap: 0.1rem; }
  .nav-list a { font-size: 0.9rem; padding-inline: 0.55rem; }
  .nav { gap: var(--sp-3); }
}

@media (max-width: 1000px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-note-col { grid-column: 1 / -1; }
  .badges { grid-template-columns: 1fr; gap: var(--sp-3); }
  .badges li + li { border-left: none; border-top: 2px solid rgba(0, 17, 27, 0.16); padding-top: var(--sp-3); }
  .badges li { justify-content: flex-start; }
}

@media (max-width: 940px) {
  .utility-bar { display: none; }
  .nav-toggle { display: inline-flex; }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    z-index: 58;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--navy-950);
    border-bottom: 4px solid var(--gold-600);
    border-radius: 0 0 var(--r-lg) var(--r-lg);
    box-shadow: var(--shadow-lg);
    padding: var(--sp-3) 1.25rem calc(var(--sp-4) + env(safe-area-inset-bottom));
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s var(--ease), opacity 0.24s var(--ease), visibility 0.24s;
  }
  .nav.is-open { transform: none; opacity: 1; visibility: visible; }

  .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-list a {
    padding: 1.05rem 0.5rem;
    font-size: 1.12rem;
    border-radius: 0;
    border-bottom: 1px solid rgba(240, 178, 58, 0.18);
  }
  .nav-list a::after { display: none; }

  .nav-cta { margin-top: var(--sp-3); width: 100%; }
  .nav-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.7rem;
    padding: 1rem;
    min-height: var(--tap);
    text-align: center;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gold-500);
    text-decoration: none;
    border: 2px solid var(--gold-600);
    border-radius: var(--r-pill);
  }
  .nav-textsize {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-3);
    margin-top: var(--sp-3);
    padding-top: var(--sp-3);
    border-top: 1px solid rgba(240, 178, 58, 0.18);
  }
  .nav-textsize .textsize-label { color: var(--on-navy); }
  .nav-textsize .textsize button {
    min-width: 2.9rem;
    min-height: 2.7rem;
    border-color: var(--gold-600);
    color: var(--gold-500);
  }
  .nav-textsize .textsize button:hover { background: rgba(240, 178, 58, 0.14); }
  .nav-textsize .textsize button[aria-pressed="true"] { background: var(--gold-600); color: var(--navy-950); border-color: var(--gold-600); }

  .mobile-bar { display: flex; }
  body { padding-bottom: 5.5rem; }

  .cta-band-actions { width: 100%; }
  .cta-band-actions .btn { flex: 1 1 220px; }
  .tier-cta { flex-direction: column; align-items: stretch; }
  .tier-cta .btn { width: 100%; }
}

@media (max-width: 600px) {
  :root { --header-h: 88px; }
  .wrap { width: min(100% - 2rem, var(--wrap)); }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .hero-actions { width: 100%; }
  .hero-actions .btn { flex: 1 1 100%; }
  .phone-block { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .brand-logo { height: 4rem; }
  .contact-value { font-size: 1.25rem; }
  .tier-num { width: 5rem; font-size: 1rem; }
  .card { flex-direction: column; align-items: flex-start; }
  .phone-block { width: 100%; }
}

/* =========================================================
   MOTION / PRINT
   ========================================================= */

@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;
    transition-delay: 0ms !important;
    scroll-behavior: auto !important;
  }
  .js-reveal .reveal { opacity: 1 !important; transform: none !important; }
  .btn:hover, .card:hover, .tier:hover, .help-card:hover, .pillar:hover,
  .phone-block:hover, .contact-list li:hover { transform: none; }
  .mobile-bar { transform: translateY(0); }
}

@media (prefers-contrast: more) {
  :root { --ink-muted: #1B2A33; --on-navy: #FFFFFF; --on-navy-soft: #E4EDF2; --line: #9A917C; }
  .card, .tier, .help-card, .contact-list li { border-width: 2px; }
}

@media print {
  .site-header, .utility-bar, .mobile-bar, .modal, .nav-scrim, .cta-band-actions, .skyline { display: none !important; }
  body { background: #fff; color: #000; padding-bottom: 0; }
}


/* =========================================================
   THANK-YOU PAGE (no-JavaScript form fallback)
   ========================================================= */

.page-thanks { background: var(--navy-950); padding-bottom: 0; }

.thanks {
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding-block: var(--sp-6);
  color: var(--on-navy);
}
.thanks-inner { text-align: center; max-width: 34rem; }
.thanks-logo { width: min(100%, 250px); height: auto; margin: 0 auto var(--sp-5); }

.thanks-tick {
  display: grid;
  place-items: center;
  width: 4.4rem;
  height: 4.4rem;
  margin: 0 auto var(--sp-3);
  border: 3px solid var(--gold-600);
  border-radius: var(--r-pill);
  color: var(--gold-500);
}
.thanks-tick svg { width: 2.3rem; height: 2.3rem; }

.thanks h1 { color: var(--white); font-size: clamp(1.9rem, 5vw, 2.7rem); margin-bottom: var(--sp-3); }
.thanks-lede { font-size: var(--fs-lede); color: var(--on-navy); margin: 0 auto var(--sp-3); }
.thanks-note { color: var(--on-navy-soft); margin: 0 auto var(--sp-5); }
.thanks-note a { color: var(--gold-400); font-weight: 700; }

