/* ============================================================
   Radiant Construction LLC brand system
   Navy #11253D | Radiant Gold #D6B06A | Highlight Gold #E7C98A
   Secondary Gray #767C84 | White #FFFFFF
   Type: Montserrat (600 display, 400 body)
   ============================================================ */

:root {
  --navy: #11253D;
  --navy-deep: #0C1B2E;
  --navy-soft: #1E3A5C;
  --gold: #D6B06A;
  --gold-hi: #E7C98A;
  --gray: #767C84;
  --white: #FFFFFF;
  --mist: #F3F5F8;
  --line: #E2E7ED;
  --body: #37424E;
  --radius: 4px;
  --shadow: 0 10px 30px rgba(17, 37, 61, 0.10);
  --header-h: 72px;
  --track-wide: 0.28em;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Montserrat", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  margin: 0 0 0.75rem;
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2rem, 4.5vw, 3.1rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: 1.2rem; }

p { margin: 0 0 1.15rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--navy); text-decoration-color: var(--gold); text-underline-offset: 3px; }
a:hover { color: var(--navy-soft); text-decoration-color: var(--gold-hi); }

ul, ol { padding-left: 1.3rem; margin: 0 0 1.15rem; }
li { margin-bottom: 0.45rem; }

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold);
  color: var(--navy);
  padding: 0.6rem 1rem;
  z-index: 200;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

.container {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

.container-narrow {
  width: min(780px, 100% - 2.5rem);
  margin-inline: auto;
}

/* ---------- Eyebrow labels (wordmark tracking) ---------- */

.eyebrow {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--track-wide);
  color: var(--gold);
  margin-bottom: 0.9rem;
}

.on-light .eyebrow, .section-light .eyebrow, .section-mist .eyebrow { color: #A8823E; }

/* ---------- Signature: radiant divider (line, burst, line) ---------- */

.radiant-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 auto 2.5rem;
  max-width: 420px;
  color: var(--gold);
}
.radiant-divider::before,
.radiant-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.radiant-divider svg { flex-shrink: 0; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  padding: 0.95rem 2rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
}
.btn-gold:hover { background: var(--gold-hi); color: var(--navy); }

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}
.btn-outline-light:hover { border-color: var(--gold-hi); color: var(--gold-hi); }

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover { border-color: var(--gold); color: var(--navy-soft); }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid rgba(214, 176, 106, 0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  min-height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  margin-right: auto;
}
.brand svg { flex-shrink: 0; }

.brand-text { display: flex; flex-direction: column; line-height: 1.25; }

.brand-radiant {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
}

.brand-construction {
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
}

.site-nav > ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin: 0;
  padding: 0;
}
.site-nav li { margin: 0; }

.site-nav a,
.site-nav .nav-drop-btn {
  font-size: 0.87rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  background: none;
  border: 0;
  padding: 0.4rem 0;
  font-family: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.site-nav a:hover, .site-nav .nav-drop-btn:hover { color: var(--gold-hi); }

.site-nav a[aria-current="page"] {
  color: var(--gold);
}

.nav-drop-btn svg { transition: transform 0.15s ease; }
.nav-drop-btn[aria-expanded="true"] svg { transform: rotate(180deg); }

.has-dropdown { position: relative; }

.dropdown {
  list-style: none;
  position: absolute;
  top: calc(100% + 0.9rem);
  left: -1rem;
  min-width: 270px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow);
  padding: 0.5rem 0;
  margin: 0;
  display: none;
}
.dropdown.open { display: block; }
.dropdown li { margin: 0; }
.dropdown a {
  display: block;
  padding: 0.55rem 1.25rem;
  color: var(--navy);
  font-weight: 500;
}
.dropdown a:hover { background: var(--mist); color: var(--navy); }

.call-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.18s ease;
}
.call-chip:hover { background: var(--gold-hi); color: var(--navy); }
.call-chip .call-short { display: none; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 0.5rem;
  cursor: pointer;
  color: var(--white);
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
  padding: clamp(4rem, 9vw, 7rem) 0 clamp(3.5rem, 7vw, 5.5rem);
}

/* light-from-center: single subtle radial glow behind the headline */
.hero::before {
  content: "";
  position: absolute;
  top: -30%;
  left: 8%;
  width: 60rem;
  height: 60rem;
  background: radial-gradient(closest-side, rgba(214, 176, 106, 0.16), rgba(214, 176, 106, 0.05) 55%, transparent 75%);
  pointer-events: none;
}

.hero > .container, .hero > .container-narrow { position: relative; }

.hero h1 {
  color: var(--white);
  max-width: 21ch;
}

.hero .lede {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 56ch;
  margin-bottom: 2rem;
}

.hero .eyebrow { color: var(--gold); }

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-quiet-link {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
  text-decoration: underline;
  text-decoration-color: rgba(214, 176, 106, 0.6);
}
.hero-quiet-link:hover { color: var(--gold-hi); }

/* Interior page hero (shorter) */
.hero-interior { padding: clamp(3rem, 6vw, 4.5rem) 0; }

/* ---------- Trust bar ---------- */

.trust-bar {
  background: var(--navy-deep);
  border-top: 1px solid rgba(214, 176, 106, 0.35);
  padding: 1rem 0;
}

.trust-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 2.25rem;
  flex-wrap: wrap;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.trust-item svg { color: var(--gold); flex-shrink: 0; }
.trust-item a { color: var(--gold); }
.trust-item a:hover { color: var(--gold-hi); }

/* ---------- Sections ---------- */

.section { padding: clamp(3.5rem, 7vw, 5.5rem) 0; }
.section-mist { background: var(--mist); }
.section-navy { background: var(--navy); color: rgba(255, 255, 255, 0.85); }
.section-navy h2, .section-navy h3 { color: var(--white); }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section-head p { color: var(--gray); }
.section-navy .section-head p { color: rgba(255, 255, 255, 0.75); }

/* ---------- Cards ---------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  position: relative;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  height: 3px;
  background: transparent;
  border-radius: var(--radius) var(--radius) 0 0;
  transition: background-color 0.2s ease;
}
.card:hover { box-shadow: var(--shadow); border-color: #D5DCE4; }
.card:hover::before { background: var(--gold); }

.card svg { color: var(--gold); margin-bottom: 1.1rem; }
.card h3 { margin-bottom: 0.5rem; }
.card p { font-size: 0.95rem; color: var(--gray); margin-bottom: 1rem; }

.card-link {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--navy);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
}
.card-link:hover { color: var(--navy-soft); border-color: var(--gold-hi); }

/* Stretch whole card into a link target */
.card-link::after { content: ""; position: absolute; inset: 0; }

/* ---------- Pillars (why choose us) ---------- */

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.25rem 2rem;
}

.pillar { text-align: center; }
.pillar svg { color: var(--gold); margin: 0 auto 1rem; }
.pillar h3 { font-size: 1.05rem; letter-spacing: 0.04em; text-transform: uppercase; }
.pillar p { font-size: 0.94rem; }
.section-navy .pillar p { color: rgba(255, 255, 255, 0.75); }

/* ---------- Split layout (text + image) ---------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.split-media {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
}
.split-media img { margin: 0 auto; max-width: 380px; width: 100%; }

/* ---------- CTA band ---------- */

.cta-band {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50rem;
  height: 50rem;
  background: radial-gradient(closest-side, rgba(214, 176, 106, 0.12), transparent 70%);
  pointer-events: none;
}
.cta-band .container-narrow { position: relative; }
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(255, 255, 255, 0.8); max-width: 52ch; margin-inline: auto; }
.cta-band .btn { margin-top: 1.25rem; }

/* ---------- Checklist ---------- */

.checklist { list-style: none; padding: 0; }
.checklist li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.7rem;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.32em;
  width: 1.05em;
  height: 1.05em;
  background-color: var(--gold);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg>') no-repeat center / contain;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg>') no-repeat center / contain;
}

/* ---------- Numbered steps (guides) ---------- */

.steps { list-style: none; padding: 0; counter-reset: step; }
.steps > li {
  position: relative;
  counter-increment: step;
  padding: 0 0 1.75rem 3.4rem;
  border-left: 1px solid var(--line);
  margin-left: 1.1rem;
  margin-bottom: 0;
}
.steps > li:last-child { border-left-color: transparent; padding-bottom: 0; }
.steps > li::before {
  content: counter(step);
  position: absolute;
  left: -1.15rem;
  top: -0.2rem;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  border: 2px solid var(--gold);
}
.steps h3 { margin-bottom: 0.4rem; }

/* URL-as-text links must break rather than force horizontal scroll */
.steps a, .prose a, .callout a, .faq-list a { overflow-wrap: anywhere; }

/* ---------- Registry record (ROC worked example) ---------- */

.registry-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
  margin: 2rem 0;
}

.registry-card-head {
  background: var(--navy);
  color: var(--white);
  padding: 0.9rem 1.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.status-pill {
  background: var(--gold);
  color: var(--navy);
  border-radius: 999px;
  padding: 0.2rem 0.9rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
}

.registry-rows { padding: 0.5rem 0; }

.registry-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1rem;
  padding: 0.65rem 1.5rem;
  font-size: 0.95rem;
}
.registry-row:nth-child(even) { background: var(--mist); }
.registry-row dt { color: var(--gray); font-weight: 500; margin: 0; }
.registry-row dd { color: var(--navy); font-weight: 500; margin: 0; }

/* ---------- FAQ ---------- */

.faq-list { max-width: 780px; margin: 0 auto; }
.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 0.4rem 0;
}
.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
  padding: 0.8rem 2rem 0.8rem 0;
  position: relative;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
}
.faq-list details[open] summary::after { content: "\2212"; }
.faq-list details > div { padding: 0 0 1.1rem; }

/* ---------- Forms ---------- */

.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem 1.25rem;
}

.form-field { display: flex; flex-direction: column; gap: 0.35rem; }
.form-field.form-full { grid-column: 1 / -1; }

.form-field label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
}

.form-field input,
.form-field select,
.form-field textarea {
  font-family: inherit;
  font-size: 1rem;
  color: var(--body);
  padding: 0.75rem 0.9rem;
  border: 1px solid #C9D1DA;
  border-radius: var(--radius);
  background: var(--white);
  width: 100%;
}
.form-field textarea { resize: vertical; min-height: 140px; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(214, 176, 106, 0.25);
}

.form-note { font-size: 0.85rem; color: var(--gray); margin-top: 0.9rem; }

.form-status {
  margin-top: 1rem;
  font-weight: 500;
  display: none;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
}
.form-status.ok { display: block; background: #EDF5EE; color: #22543D; border: 1px solid #BFDCC5; }
.form-status.err { display: block; background: #FBF0F0; color: #7B2A2A; border: 1px solid #E5C4C4; }

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

/* ---------- Contact trio ---------- */

.contact-trio {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.trio-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-width: 44px;
  min-height: 44px;
  padding: 0.6rem 1.1rem;
  border: 1px solid rgba(214, 176, 106, 0.6);
  border-radius: var(--radius);
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.18s ease, color 0.18s ease;
}
.trio-btn:hover { background: var(--gold); color: var(--navy); }

.on-light .trio-btn { color: var(--navy); border-color: var(--gold); }
.on-light .trio-btn:hover { background: var(--gold); color: var(--navy); }

/* ---------- Breadcrumbs ---------- */

.breadcrumbs {
  background: var(--mist);
  border-bottom: 1px solid var(--line);
  padding: 0.7rem 0;
  font-size: 0.85rem;
}
.breadcrumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
}
.breadcrumbs li { margin: 0; display: flex; align-items: center; gap: 0.5rem; }
.breadcrumbs li + li::before { content: "/"; color: var(--gray); }
.breadcrumbs a { color: var(--gray); text-decoration: none; }
.breadcrumbs a:hover { color: var(--navy); text-decoration: underline; }
.breadcrumbs [aria-current="page"] { color: var(--navy); font-weight: 500; }

/* ---------- Prose (long-form guide content) ---------- */

.prose h2 { margin-top: 2.75rem; }
.prose h3 { margin-top: 1.9rem; }
.prose > :first-child { margin-top: 0; }

.callout {
  border-left: 3px solid var(--gold);
  background: var(--mist);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem;
  margin: 1.75rem 0;
}
.callout p { margin-bottom: 0.5rem; }
.callout p:last-child { margin-bottom: 0; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.75);
  padding: 3.5rem 0 0;
  font-size: 0.92rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}

.footer-brand .brand-text { margin-bottom: 1rem; }
.footer-brand p { font-size: 0.9rem; }

.footer-roc {
  display: inline-block;
  margin-top: 0.75rem;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer h3 {
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}

.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 0.55rem; }
.site-footer a { color: rgba(255, 255, 255, 0.75); text-decoration: none; }
.site-footer a:hover { color: var(--gold-hi); text-decoration: underline; }

.footer-contact p { margin-bottom: 0.9rem; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.25rem 0;
  font-size: 0.8rem;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom a { color: rgba(255, 255, 255, 0.75); }
.footer-bottom a:hover { color: var(--gold-hi); }

/* ---------- Sticky mobile CTA ---------- */

.sticky-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  padding: 0.65rem 1rem calc(0.65rem + env(safe-area-inset-bottom));
  background: rgba(12, 27, 46, 0.97);
  border-top: 1px solid rgba(214, 176, 106, 0.4);
  transform: translateY(110%);
  transition: transform 0.25s ease;
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta .btn { display: block; text-align: center; width: 100%; }

/* ---------- Responsive ---------- */

@media (max-width: 920px) {
  .nav-toggle { display: inline-flex; }

  .call-chip .call-full { display: none; }
  .call-chip .call-short { display: inline; }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy-deep);
    border-bottom: 1px solid rgba(214, 176, 106, 0.3);
    box-shadow: var(--shadow);
    max-height: calc(100vh - var(--header-h));
    max-height: calc(100svh - var(--header-h));
    overflow-y: auto;
  }
  .site-nav.open { display: block; }

  .site-nav > ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 0 1.25rem;
  }
  .site-nav > ul > li { border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
  .site-nav > ul > li:last-child { border-bottom: 0; }
  .site-nav a, .site-nav .nav-drop-btn {
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 0.85rem 1.25rem;
    font-size: 0.95rem;
  }

  .dropdown {
    position: static;
    display: block;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0 0 0.5rem;
    min-width: 0;
  }
  .dropdown a {
    color: rgba(255, 255, 255, 0.7);
    padding: 0.65rem 1.25rem 0.65rem 2.25rem;
    font-size: 0.88rem;
  }
  .dropdown a:hover { background: rgba(255, 255, 255, 0.06); color: var(--gold-hi); }
  .nav-drop-btn svg { display: none; }

  .split { grid-template-columns: 1fr; }
  .split-media { order: -1; }

  .footer-grid { grid-template-columns: 1fr 1fr; }

  .sticky-cta { display: block; }
  body:has(.sticky-cta) { padding-bottom: 92px; }

  .nav-toggle {
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
  }
  .call-chip { min-height: 44px; }

  .hero-quiet-link { display: inline-block; padding: 8px 0; }
  .breadcrumbs a { display: inline-block; padding: 6px 0; }
  .site-footer li a, .footer-bottom a { display: inline-block; padding: 7px 0; }
  .footer-roc { padding: 7px 0; }
  .site-footer li { margin-bottom: 0.2rem; }
}

@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .registry-row { grid-template-columns: 1fr; gap: 0.1rem; padding: 0.75rem 1.25rem; }
  .form-grid { grid-template-columns: 1fr; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 1rem; }
  .trust-bar .container { flex-direction: column; gap: 0.55rem; }
  .trust-item { font-size: 0.76rem; }
  .trust-item a { display: inline-block; padding: 6px 0; }
  h1 { font-size: 1.75rem; }
}

@media (max-width: 400px) {
  .hero-interior h1 { font-size: 1.6rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
