:root {
  --ink: #f6f9ff;
  --muted: #a9b7ca;
  --night: #050a12;
  --navy: #07111f;
  --panel: #0b1727;
  --line: rgba(255, 255, 255, 0.12);
  --blue: #1976ff;
  --blue-bright: #4b9cff;
  --max: 1240px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--night); }
body { margin: 0; min-width: 320px; color: var(--ink); background: var(--night); font-family: var(--sans); font-size: 16px; line-height: 1.6; overflow-x: hidden; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.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; }
.skip-link { position: fixed; left: 1rem; top: -6rem; z-index: 100; padding: .75rem 1rem; background: white; color: #06101e; border-radius: .35rem; text-decoration: none; }
.skip-link:focus { top: 1rem; }

.site-header { position: absolute; inset: 0 0 auto; z-index: 20; width: min(calc(100% - 3rem), var(--max)); margin: auto; padding: 1.3rem 0; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,.16); }
.brand { display: inline-flex; align-items: center; gap: .85rem; text-decoration: none; }
.brand-mark { position: relative; isolation: isolate; display: grid; place-items: center; width: 2.65rem; height: 2.65rem; color: white; font-size: .8rem; font-weight: 800; letter-spacing: .1em; text-indent: .08em; }
.brand-mark::before { content: ""; position: absolute; inset: .28rem; z-index: -1; border: 1px solid rgba(255,255,255,.45); background: rgba(5,10,18,.5); transform: rotate(45deg); }
.brand-copy { display: grid; line-height: 1.15; }
.brand-copy strong { font-size: .98rem; letter-spacing: .02em; }
.brand-copy small { color: var(--muted); margin-top: .3rem; font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: 1.25rem; }
.site-nav a { color: #d9e4f2; text-decoration: none; font-size: .82rem; font-weight: 650; letter-spacing: .035em; white-space: nowrap; }
.site-nav a:hover, .site-nav a:focus-visible { color: white; }
.site-nav .nav-cta { padding: .72rem 1rem; border: 1px solid rgba(255,255,255,.5); }
.menu-toggle { display: none; }

.hero { position: relative; min-height: 880px; min-height: max(880px, 100svh); padding: 10rem 0 7rem; display: flex; align-items: center; isolation: isolate; overflow: hidden; }
.hero-image { position: absolute; inset: 0; z-index: -3; background: url("assets/scott-abbott-hero.png") center center / cover no-repeat; transform: scale(1.012); animation: heroReveal 1.5s ease-out both; }
.hero-shade { position: absolute; inset: 0; z-index: -2; background: linear-gradient(90deg, rgba(3,8,15,.98) 0%, rgba(3,8,15,.9) 40%, rgba(3,8,15,.5) 100%), linear-gradient(0deg, rgba(3,8,15,.75) 0%, transparent 65%); }
.hero-content { width: min(calc(100% - 3rem), var(--max)); margin: 0 auto; display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, .8fr); gap: clamp(2.5rem, 5vw, 5rem); align-items: center; }
.hero-copy { min-width: 0; }
.eyebrow, .section-kicker { margin: 0 0 1.15rem; color: var(--blue-bright); font-size: .74rem; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.eyebrow { display: flex; align-items: center; gap: .75rem; color: #c7d7ea; }
.eyebrow span { width: 2.25rem; height: 2px; background: var(--blue-bright); box-shadow: 0 0 20px rgba(75,156,255,.8); }
.hero h1 { max-width: 800px; margin: 0; font-size: clamp(3.2rem, 5.2vw, 5.7rem); line-height: 1.04; letter-spacing: -.055em; font-weight: 730; }
.hero h1 em, .statement h2 em { color: #aecdff; font-family: var(--serif); font-weight: 400; }
.hero-lede { max-width: 620px; margin: 1.75rem 0 0; color: #c0ccdc; font-size: clamp(1rem, 1.25vw, 1.1rem); line-height: 1.7; }
.hero-portrait { width: 100%; max-width: 26rem; margin: 0 0 0 auto; }
.hero-portrait img { display: block; width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; object-position: center 35%; border: 1px solid rgba(255,255,255,.2); box-shadow: 0 24px 80px rgba(0,0,0,.3); }
.hero-portrait figcaption { display: grid; gap: .2rem; padding: 1.35rem 0 0; }
.portrait-name { font-family: var(--serif); font-size: 1.9rem; line-height: 1.15; letter-spacing: -.025em; }
.portrait-role { color: #b4c2d3; font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2.25rem; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: .8rem; min-height: 3.4rem; padding: .75rem 1.25rem; border: 1px solid transparent; color: white; font-size: .88rem; font-weight: 750; letter-spacing: .02em; text-decoration: none; transition: transform .25s ease, background-color .25s ease, border-color .25s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--blue); box-shadow: 0 14px 45px rgba(25,118,255,.24); }
.button-primary:hover { background: #3285ff; }
.button-ghost { border-color: rgba(255,255,255,.3); background: rgba(7,17,31,.42); backdrop-filter: blur(10px); }
.button-outline { border-color: rgba(255,255,255,.25); }
.button-light { background: white; color: #07111f; }
.trust-strip { display: flex; gap: 0; margin-top: 2.75rem; }
.trust-strip div { min-width: 145px; padding: 0 1.5rem; border-left: 1px solid rgba(255,255,255,.2); display: grid; }
.trust-strip div:first-child { padding-left: 0; border-left: 0; }
.trust-strip strong { font-size: 1.35rem; line-height: 1; }
.trust-strip span { margin-top: .55rem; color: #9eb0c7; font-size: .75rem; letter-spacing: .06em; text-transform: uppercase; }
.scroll-cue { position: absolute; left: calc((100% - min(calc(100% - 3rem), var(--max))) / 2); bottom: 2rem; display: flex; align-items: center; gap: .8rem; color: #9eb0c7; text-decoration: none; font-size: .72rem; letter-spacing: .13em; text-transform: uppercase; }
.scroll-cue span { display: inline-block; width: 3.4rem; height: 1px; background: #6d8099; }

.statement, .process, .reviews, .inventory { width: min(calc(100% - 3rem), var(--max)); margin: auto; padding: 8rem 0; }
.statement-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr); gap: clamp(3rem, 7vw, 7rem); align-items: start; }
.statement h2 { margin: 0; max-width: 800px; font-size: clamp(2.45rem, 3.8vw, 4rem); line-height: 1.12; letter-spacing: -.045em; }
.statement-copy { max-width: 38rem; padding-top: .6rem; color: var(--muted); font-size: 1.03rem; }
.statement-copy p:first-child { margin-top: 0; color: #d6e1ef; }
.text-link { display: inline-flex; gap: .8rem; margin-top: 1.1rem; color: white; font-size: .88rem; font-weight: 750; text-decoration: none; border-bottom: 1px solid var(--blue); padding-bottom: .3rem; }

.why-royal { width: min(calc(100% - 3rem), var(--max)); margin: auto; padding: 0 0 8rem; scroll-margin-top: 2rem; }
.why-royal-heading h2 { max-width: 850px; margin: 0; font-size: clamp(2.35rem, 4vw, 4.4rem); line-height: 1.1; letter-spacing: -.045em; }
.why-royal-grid { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: 1rem; margin-top: 3rem; }
.royal-benefit { padding: clamp(1.5rem, 3vw, 2.75rem); border: 1px solid var(--line); background: #091320; }
.royal-benefit-number { color: var(--blue-bright); font-family: var(--serif); font-size: 1rem; }
.royal-benefit h3 { max-width: 420px; margin: 1.6rem 0 1rem; font-size: clamp(1.6rem, 2.2vw, 2rem); line-height: 1.2; letter-spacing: -.025em; }
.royal-benefit p { max-width: 470px; margin: 0; color: #b4c2d3; font-size: 1rem; line-height: 1.7; }
.royal-warranty { grid-column: 2; grid-row: 1 / span 2; padding: clamp(1.5rem, 3.5vw, 3rem); background: linear-gradient(150deg, #11305a, #0a182a 80%); border: 1px solid rgba(110,167,247,.3); }
.royal-warranty .warranty-program { display: flex; align-items: center; gap: 1rem; margin: 0 0 1.8rem; color: #bdcff0; font-size: .875rem; letter-spacing: .1em; text-transform: uppercase; }
.warranty-program span { color: #8fb9f6; font-family: var(--serif); font-size: 1rem; }
.royal-warranty h3 { margin: 0; font-size: clamp(2.35rem, 3.7vw, 3.65rem); line-height: 1.08; letter-spacing: -.04em; }
.royal-warranty h3 em { color: #c5dbff; font-family: var(--serif); font-weight: 400; }
.royal-warranty > p { color: #c4d1e3; font-size: 1rem; line-height: 1.7; }
.royal-warranty > .warranty-included { margin: 1.5rem 0 .6rem; color: #f6f9ff; font-weight: 750; }
.royal-warranty > .coverage-label { margin: 1.75rem 0 .35rem; color: #e2ebf8; font-size: .875rem; font-weight: 650; }
.warranty-components { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 1.25rem; margin: 0; padding: 0; list-style: none; }
.warranty-components li { padding: .65rem 0; border-bottom: 1px solid rgba(255,255,255,.16); color: #f1f5fc; font-size: 1rem; }
.royal-warranty > .warranty-note { margin: 1.5rem 0 0; color: #afc0d6; font-size: .875rem; }
.royal-warranty .text-link { align-items: baseline; line-height: 1.5; }

.process { width: 100%; max-width: none; padding: 8rem max(1.5rem, calc((100% - var(--max)) / 2)); background: var(--navy); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-heading { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr); gap: 5rem; align-items: end; }
.section-heading h2, .review-lead h2, .inventory-heading h2, .cta-panel h2 { margin: 0; font-size: clamp(2.35rem, 4vw, 4.4rem); line-height: 1.03; letter-spacing: -.045em; }
.section-heading > p { margin: 0 0 .5rem; color: var(--muted); }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 4rem; border-top: 1px solid var(--line); }
.process-grid article { position: relative; min-height: 310px; padding: 2rem 2rem 2rem 0; border-right: 1px solid var(--line); }
.process-grid article + article { padding-left: 2rem; }
.process-grid article:last-child { border-right: 0; }
.step-number { color: var(--blue-bright); font-family: var(--serif); font-size: 1rem; }
.process-grid h3 { margin: 5.5rem 0 .75rem; font-size: 1.5rem; }
.process-grid p { max-width: 340px; margin: 0; color: var(--muted); }

.reviews { display: grid; grid-template-columns: .77fr 1.23fr; gap: 6rem; align-items: start; }
.rating-block { display: grid; grid-template-columns: auto auto; justify-content: start; column-gap: .8rem; margin: 2.25rem 0 1.5rem; }
.rating-block .stars { grid-column: 1 / -1; color: var(--blue-bright); letter-spacing: .15em; font-size: .9rem; }
.rating-block strong { font-size: 1.45rem; }
.rating-block span { align-self: center; color: var(--muted); font-size: .82rem; }
.review-actions { display: flex; flex-wrap: wrap; gap: .75rem; }
.quote-stack { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.quote-card { min-height: 260px; margin: 0; padding: 2rem; background: #0a1422; border: 1px solid var(--line); display: flex; flex-direction: column; justify-content: space-between; }
.quote-card-primary { grid-row: span 2; min-height: 540px; background: linear-gradient(145deg, #102f59, #0a1728 70%); }
.quote-card-compact { min-height: 240px; }
.quote-card blockquote { margin: 0; color: #e7eef8; font-family: var(--serif); font-size: clamp(1.25rem, 2.2vw, 2rem); line-height: 1.35; }
.quote-card-primary blockquote { margin-top: auto; margin-bottom: auto; font-size: clamp(1.65rem, 3vw, 3rem); line-height: 1.18; }
.quote-card figcaption { color: #8fa2ba; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.quote-card figcaption a { color: inherit; text-decoration: none; }
.quote-card figcaption a:hover { color: white; }

.video-stories { padding: 7.5rem 0 8rem; background: linear-gradient(180deg, #081525 0%, #06101d 100%); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; }
.video-stories-inner { width: min(calc(100% - 3rem), var(--max)); margin: auto; }
.video-heading { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr); gap: 5rem; align-items: end; }
.video-heading h2 { margin: 0; font-size: clamp(2.35rem, 4vw, 4.4rem); line-height: 1.03; letter-spacing: -.045em; }
.video-heading-side > p { margin: 0; color: var(--muted); }
.video-nav { display: flex; gap: .65rem; margin-top: 1.5rem; }
.video-nav-button { display: grid; place-items: center; width: 3rem; height: 3rem; padding: 0; color: white; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.22); font-size: 1.2rem; cursor: pointer; transition: background-color .2s ease, border-color .2s ease, transform .2s ease; }
.video-nav-button:hover { background: var(--blue); border-color: var(--blue); transform: translateY(-2px); }
.video-rail { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(245px, 292px); gap: 1rem; margin-top: 3.5rem; padding: 0 0 1.25rem; overflow-x: auto; overscroll-behavior-inline: contain; scroll-snap-type: inline mandatory; scrollbar-color: rgba(75,156,255,.65) rgba(255,255,255,.08); scrollbar-width: thin; }
.video-rail::-webkit-scrollbar { height: 5px; }
.video-rail::-webkit-scrollbar-track { background: rgba(255,255,255,.08); }
.video-rail::-webkit-scrollbar-thumb { background: rgba(75,156,255,.7); }
.video-card { margin: 0; scroll-snap-align: start; }
.video-frame { position: relative; aspect-ratio: 9 / 16; overflow: hidden; background: #02060b; border: 1px solid rgba(255,255,255,.14); box-shadow: 0 24px 60px rgba(0,0,0,.22); }
.video-frame::after { content: ""; position: absolute; inset: 0; pointer-events: none; box-shadow: inset 0 0 0 1px rgba(255,255,255,.04); }
.video-frame video { display: block; width: 100%; height: 100%; object-fit: cover; background: #02060b; }
.video-card figcaption { display: grid; gap: .2rem; padding: 1rem .1rem 0; }
.video-card figcaption strong { color: #f1f6ff; font-size: .96rem; line-height: 1.35; }
.video-card figcaption span { color: #8296af; font-size: .72rem; letter-spacing: .07em; text-transform: uppercase; }

.inventory { padding-top: 5rem; }
.inventory-heading { margin-bottom: 3.25rem; }
.inventory-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.inventory-card { position: relative; min-height: 300px; padding: 1.7rem; background: linear-gradient(145deg, #0c2039, #08111d); border: 1px solid var(--line); text-decoration: none; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; transition: transform .25s ease, border-color .25s ease; }
.inventory-card::before { content: ""; position: absolute; inset: -45% -20% auto 40%; height: 85%; background: radial-gradient(circle, rgba(25,118,255,.36), transparent 65%); transform: rotate(-15deg); }
.inventory-card:hover { transform: translateY(-5px); border-color: rgba(75,156,255,.65); }
.inventory-card .vehicle-line { position: absolute; left: 1.7rem; top: 1.6rem; color: var(--blue-bright); font-size: .7rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.inventory-card strong { position: relative; font-size: 1.5rem; }
.inventory-card > span:not(.vehicle-line) { position: relative; color: var(--muted); font-size: .84rem; }
.inventory-card i { position: absolute; right: 1.7rem; top: 1.5rem; font-style: normal; font-size: 1.2rem; }
.card-cadillac { background: linear-gradient(145deg, #1c202a, #090c12); }
.card-royal { background: linear-gradient(145deg, #0c2740, #07111f); }
.inventory-note { max-width: 720px; margin: 1.25rem 0 0; color: #71849d; font-size: .75rem; }

.cta-panel { width: min(calc(100% - 3rem), var(--max)); margin: 0 auto 4rem; padding: 4rem; background: var(--blue); display: grid; grid-template-columns: 1.4fr .6fr; gap: 3rem; align-items: center; }
.cta-panel .section-kicker { color: white; opacity: .8; }
.cta-panel h2 { font-size: clamp(2.2rem, 3.5vw, 3.8rem); }
.cta-actions { display: grid; justify-items: start; }
.cta-actions .button { min-width: 210px; }
.call-link { margin-top: 1.1rem; font-weight: 800; text-decoration: none; }
.cta-actions > span { font-size: .75rem; opacity: .75; }

.site-footer { width: min(calc(100% - 3rem), var(--max)); margin: auto; padding: 2.5rem 0 3rem; display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center; border-top: 1px solid var(--line); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { color: #c0ccdc; font-size: .82rem; text-decoration: none; }
.site-footer > p { grid-column: 1 / -1; margin: 0; color: #60738b; font-size: .72rem; }

a:focus-visible, button:focus-visible { outline: 3px solid #91bdff; outline-offset: 4px; }
@keyframes heroReveal { from { opacity: 0; transform: scale(1.06); } to { opacity: 1; transform: scale(1.012); } }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; } }

@media (max-width: 900px) {
  .site-header { width: calc(100% - 2rem); padding-top: max(1.3rem, env(safe-area-inset-top)); }
  .menu-toggle { display: grid; gap: 4px; width: 2.8rem; height: 2.8rem; place-content: center; background: rgba(5,10,18,.5); border: 1px solid rgba(255,255,255,.25); }
  .menu-toggle span:not(.sr-only) { display: block; width: 19px; height: 1px; background: white; }
  .site-nav { position: absolute; top: calc(100% + .7rem); right: 0; width: min(320px, calc(100vw - 2rem)); padding: 1rem; background: rgba(5,10,18,.97); border: 1px solid var(--line); display: none; align-items: stretch; flex-direction: column; gap: 0; box-shadow: 0 20px 40px rgba(0,0,0,.35); }
  .site-nav.open { display: flex; }
  .site-nav a { padding: .8rem; }
  .site-nav .nav-cta { margin-top: .3rem; text-align: center; }
  .hero { height: auto; min-height: 0; align-items: stretch; padding: 8.75rem 0 4.5rem; }
  .hero-content { margin: 0 auto; }
  .hero-content { grid-template-columns: 1fr; gap: 2.25rem; }
  .hero-portrait { order: -1; display: flex; align-items: center; gap: 1.2rem; max-width: none; margin: 0; }
  .hero-portrait img { flex: 0 0 6rem; width: 6rem; height: 7.5rem; }
  .hero-portrait figcaption { padding: 0; }
  .portrait-name { font-size: 1.65rem; }
  .hero-content, .statement, .why-royal, .reviews, .inventory, .cta-panel, .video-stories-inner { width: calc(100% - 2rem); }
  .hero-image { background-position: 64% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(3,8,15,.98) 0%, rgba(3,8,15,.85) 55%, rgba(3,8,15,.3) 100%), linear-gradient(0deg, rgba(3,8,15,.8), transparent 55%); }
  .statement, .process, .reviews, .inventory { padding-top: 6rem; padding-bottom: 6rem; }
  .statement-grid, .section-heading, .reviews, .cta-panel, .video-heading { grid-template-columns: 1fr; gap: 2.5rem; }
  .statement-copy { max-width: 670px; }
  .why-royal { padding-bottom: 6rem; }
  .why-royal-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .royal-warranty { grid-column: 1 / -1; grid-row: auto; }
  .royal-warranty h3 { font-size: clamp(2.35rem, 6vw, 3.65rem); }
  .process { padding-left: 1rem; padding-right: 1rem; }
  .inventory-grid { grid-template-columns: 1fr; }
  .inventory-card { min-height: 230px; }
  .cta-panel { padding: 3rem; }
  .video-stories { padding: 6rem 0; }
}

@media (max-width: 640px) {
  .brand-copy small { display: none; }
  .hero { padding-top: 8rem; padding-bottom: 3.5rem; }
  .eyebrow { max-width: 260px; margin-bottom: .85rem; font-size: .68rem; line-height: 1.45; }
  .eyebrow span { flex: 0 0 1.6rem; }
  .hero h1 { font-size: clamp(2.9rem, 13vw, 4rem); line-height: 1.04; }
  .hero-content { gap: 2rem; }
  .hero-portrait { gap: 1rem; }
  .hero-portrait img { flex-basis: 5rem; width: 5rem; height: 6.25rem; }
  .portrait-name { font-size: 1.5rem; }
  .portrait-role { max-width: 12rem; font-size: .75rem; line-height: 1.6; }
  .hero-lede { margin-top: 1.5rem; line-height: 1.55; }
  .hero-actions { margin-top: 1.7rem; }
  .hero-actions .button { width: 100%; }
  .trust-strip { margin-top: 2.15rem; justify-content: space-between; }
  .trust-strip div { min-width: 0; flex: 1; padding: 0 .7rem; }
  .trust-strip span { font-size: .62rem; line-height: 1.25; }
  .scroll-cue { display: none; }
  .statement h2, .section-heading h2, .review-lead h2, .inventory-heading h2, .cta-panel h2 { letter-spacing: -.04em; }
  .why-royal-grid { grid-template-columns: 1fr; margin-top: 2rem; }
  .royal-benefit h3 { margin-top: 1.25rem; }
  .royal-warranty { padding: 1.5rem; }
  .warranty-components { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid article, .process-grid article + article { min-height: 0; padding: 2rem 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .process-grid article:last-child { border-bottom: 0; }
  .process-grid h3 { margin: 2.5rem 0 .6rem; }
  .quote-stack { grid-template-columns: 1fr; }
  .review-actions .button { width: 100%; }
  .quote-card-primary { grid-row: auto; min-height: 380px; }
  .quote-card, .quote-card-compact { min-height: 230px; }
  .video-stories-inner { width: 100%; }
  .video-heading { padding: 0 1rem; }
  .video-nav { display: none; }
  .video-rail { grid-auto-columns: minmax(250px, 78vw); margin-top: 2.5rem; padding: 0 1rem 1.25rem; scroll-padding-inline: 1rem; }
  .video-card:last-child { margin-right: 1rem; }
  .cta-panel { padding: 2.25rem 1.5rem; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-links { flex-wrap: wrap; }
}

@media (max-width: 390px) {
  .site-header { width: calc(100% - 1.5rem); }
  .brand { gap: .55rem; }
  .brand-mark { width: 2.35rem; height: 2.35rem; }
  .brand-copy strong { font-size: .9rem; }
  .hero { padding-top: 7.6rem; }
  .hero-content { width: calc(100% - 1.5rem); }
  .hero h1 { font-size: clamp(2.65rem, 13.2vw, 3.4rem); }
  .hero-lede { font-size: .96rem; }
  .trust-strip div { padding: 0 .5rem; }
}
