:root {
  --ink: #101820;
  --navy: #082d4f;
  --navy-deep: #061d33;
  --red: #c92724;
  --gold: #f4b41a;
  --paper: #f5f4f0;
  --line: #d9dde1;
  --muted: #63707c;
  --white: #ffffff;
  --shadow: 0 16px 36px rgba(8, 45, 79, 0.1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, .button { cursor: pointer; }

.skip-link {
  position: fixed; left: 1rem; top: -5rem; z-index: 100;
  background: var(--gold); color: var(--ink); padding: .65rem 1rem; font-weight: 800;
}
.skip-link:focus { top: 1rem; }

.utility-bar {
  min-height: 34px; padding: .35rem 5vw; display: flex; justify-content: space-between; gap: 1rem;
  background: var(--navy-deep); color: #e6edf3; font-size: .78rem;
}
.utility-bar span { display: inline-flex; align-items: center; gap: .45rem; }
.utility-links { display: flex; gap: 1rem; }
.utility-contact { display: inline-flex; align-items: center; gap: .4rem; }
.utility-links a:hover { color: var(--gold); }

.site-header {
  position: sticky; top: 0; z-index: 50; background: rgba(255, 255, 255, .97);
  border-bottom: 1px solid var(--line);
}
.nav-shell { max-width: 1240px; min-height: 82px; margin: auto; padding: .8rem 5vw; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: inline-flex; align-items: center; gap: .75rem; min-width: 190px; }
.brand img { width: 52px; height: 52px; object-fit: contain; }
.brand-copy { display: grid; line-height: 1; }
.brand-name { color: var(--navy); font-size: 1.12rem; font-weight: 900; letter-spacing: .11em; }
.brand-tag { margin-top: .35rem; color: var(--muted); font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 1.45rem; color: #334452; font-size: .88rem; font-weight: 750; }
.nav-links a { position: relative; padding: .9rem 0; }
.nav-links a::after { content: ""; position: absolute; left: 0; right: 0; bottom: .45rem; height: 2px; background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform .2s ease; }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-links a[aria-current="page"] { color: var(--navy); }
.nav-cta { padding: .75rem 1rem !important; color: var(--white) !important; background: var(--red); }
.nav-cta::after { display: none; }
.nav-cta:hover { background: #a91f1d; }
.menu-toggle { display: none; border: 1px solid var(--line); background: var(--white); color: var(--navy); width: 42px; height: 42px; }

.container { width: min(1120px, 90vw); margin: auto; }
.narrow { max-width: 780px; }
.section { padding: 5.5rem 0; }
.section-sm { padding: 3.25rem 0; }
.section-dark { background: var(--navy); color: var(--white); }
.section-ink { background: var(--ink); color: var(--white); }
.section-paper { background: var(--paper); }
.technical-callout { background: var(--white); color: var(--ink); border-top: 4px solid var(--red); border-bottom: 1px solid var(--line); }
.technical-callout .eyebrow { color: var(--red); }
.technical-callout .copy h2 { color: var(--navy); }
.technical-callout .copy p { color: #334452; }
.range-section { background: var(--white); }
.review-section { background: #e8eef1; border-top: 1px solid #d3dce2; border-bottom: 1px solid #d3dce2; }
.faq-section { background: var(--white); }
.network-section { background: var(--navy-deep); }
.eyebrow { margin: 0 0 .75rem; color: var(--red); font-size: .75rem; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.section-dark .eyebrow, .section-ink .eyebrow { color: var(--gold); }
.section-title { max-width: 760px; margin: 0; color: var(--navy); font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.05; letter-spacing: -.03em; }
.section-dark .section-title, .section-ink .section-title { color: var(--white); }
.section-intro { max-width: 690px; margin: 1rem 0 0; color: var(--muted); font-size: 1.05rem; }
.section-dark .section-intro, .section-ink .section-intro { color: #c6d4df; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: 2.5rem; }
.section-head .section-intro { margin-top: .75rem; }
.text-link { color: var(--navy); font-weight: 800; border-bottom: 1px solid var(--gold); padding-bottom: .15rem; white-space: nowrap; }
.text-link:hover { color: var(--red); }

.button { display: inline-flex; justify-content: center; align-items: center; gap: .6rem; border: 1px solid transparent; padding: .82rem 1.15rem; font-weight: 800; font-size: .9rem; transition: transform .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--red); color: var(--white); }
.button-primary:hover { background: #a91f1d; }
.button-dark { background: var(--navy); color: var(--white); }
.button-dark:hover { background: var(--navy-deep); }
.button-light { background: var(--white); color: var(--navy); }
.button-outline { border-color: var(--navy); color: var(--navy); background: transparent; }
.button-outline:hover { background: var(--navy); color: var(--white); }
.button-small { padding: .62rem .85rem; font-size: .78rem; }

.hero { position: relative; min-height: 620px; display: flex; align-items: end; overflow: hidden; background: var(--navy-deep); color: var(--white); }
.hero-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: .85; }
.hero-scrim { position: absolute; inset: 0; background: rgba(6, 29, 51, .66); }
.hero-content { position: relative; z-index: 1; width: min(1120px, 90vw); margin: 0 auto; padding: 8rem 0 5rem; }
.hero h1 { max-width: 720px; margin: 0; font-size: clamp(3rem, 7vw, 6.8rem); line-height: .92; letter-spacing: -.055em; }
.hero h1 span { color: var(--gold); }
.hero-copy { max-width: 575px; margin: 1.3rem 0 0; color: #e6edf3; font-size: 1.1rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }
.hero-note { display: flex; flex-wrap: wrap; gap: 1.2rem; margin-top: 3.5rem; color: #e6edf3; font-size: .84rem; font-weight: 700; }
.hero-note span { display: inline-flex; align-items: center; gap: .45rem; }
.hero-note i { color: var(--gold); }

.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 4rem; align-items: center; }
.split.reverse > :first-child { order: 2; }
.split.reverse > :last-child { order: 1; }
.image-frame { position: relative; overflow: hidden; background: var(--navy); min-height: 430px; }
.image-frame img { width: 100%; height: 100%; min-height: 430px; object-fit: cover; }
.image-frame.portrait img { object-position: center 35%; }
.image-caption { position: absolute; left: 1rem; bottom: 1rem; max-width: 260px; padding: .8rem 1rem; background: var(--white); color: var(--navy); font-size: .8rem; font-weight: 800; }
.copy h2 { margin: 0; color: var(--navy); font-size: clamp(2rem, 3vw, 3.2rem); line-height: 1.05; letter-spacing: -.04em; }
.section-dark .copy h2, .section-ink .copy h2 { color: var(--white); }
.copy p { color: var(--muted); font-size: 1.02rem; }
.section-dark .copy p, .section-ink .copy p { color: #c6d4df; }
.technical-callout .copy h2 { color: var(--navy); }
.technical-callout .copy p { color: var(--muted); }
.section-ink .copy-point strong { color: var(--white); }
.section-ink .copy-point span { color: #c6d4df; }
.section-dark .copy-point strong { color: var(--white); }
.section-dark .copy-point span { color: #c6d4df; }
.copy-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.7rem; }
.copy-points { display: grid; gap: .8rem; margin-top: 1.45rem; }
.copy-point { display: grid; grid-template-columns: 28px 1fr; gap: .7rem; align-items: start; padding-bottom: .75rem; border-bottom: 1px solid var(--line); }
.copy-point:last-child { border-bottom: 0; padding-bottom: 0; }
.copy-point i { padding-top: .25rem; color: var(--red); }
.copy-point strong { display: block; color: var(--navy); font-size: .88rem; }
.copy-point span { display: block; margin-top: .1rem; color: var(--muted); font-size: .82rem; line-height: 1.45; }
.range-image img { object-position: right center; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 2rem; background: var(--line); border: 1px solid var(--line); }
.stat { padding: 1.2rem; background: var(--white); }
.stat strong { display: block; color: var(--red); font-size: 1.8rem; line-height: 1; }
.stat span { display: block; margin-top: .45rem; color: var(--muted); font-size: .8rem; font-weight: 700; }

.ticker { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid #315370; border-bottom: 1px solid #315370; }
.ticker-item { padding: 1.2rem; color: #dbe8f0; border-right: 1px solid #315370; font-size: .85rem; font-weight: 800; }
.ticker-item:last-child { border: 0; }
.ticker-item i { margin-right: .5rem; color: var(--gold); }

.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.product-card { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line); box-shadow: 0 8px 22px rgba(8, 45, 79, .06); }
.product-card-media { position: relative; height: 285px; padding: 1.2rem; display: grid; place-items: center; background: #e9eef1; border-bottom: 1px solid var(--line); overflow: hidden; }
.product-card-media { cursor: zoom-in; }
.product-card-media::before { content: "KAAPSTROL"; position: absolute; top: .85rem; left: 1rem; color: rgba(8, 45, 79, .16); font-size: .64rem; font-weight: 900; letter-spacing: .22em; }
.product-card-media::after { content: ""; position: absolute; left: 15%; right: 15%; bottom: 1rem; height: 12px; border-radius: 50%; background: rgba(8, 45, 79, .16); filter: blur(8px); }
.product-card-media img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: contain; object-position: center; mix-blend-mode: normal; filter: drop-shadow(0 13px 9px rgba(8, 45, 79, .2)); transition: transform .25s ease, filter .25s ease; }
.product-card:hover .product-card-media img { transform: scale(1.045); filter: drop-shadow(0 17px 11px rgba(8, 45, 79, .26)); }
.product-card-body { display: flex; flex-direction: column; flex: 1; padding: 1.25rem; }
.product-card h3 { margin: 0; color: var(--navy); font-size: 1.25rem; line-height: 1.15; }
.product-card p { flex: 1; margin: .7rem 0 1.1rem; color: var(--muted); font-size: .9rem; }
.product-meta { display: flex; flex-wrap: wrap; gap: .45rem; margin: .8rem 0 1rem; }
.tag { display: inline-flex; padding: .25rem .45rem; background: #edf1f3; color: var(--navy); font-size: .7rem; font-weight: 800; }
.product-info { display: flex; align-items: flex-start; gap: .5rem; margin: auto 0 0; padding-top: .85rem; border-top: 1px solid var(--line); color: var(--navy); font-size: .76rem; font-weight: 750; line-height: 1.45; }
.product-info i { flex: 0 0 auto; padding-top: .15rem; color: var(--red); }

.banner-strip { display: grid; grid-template-columns: 1.4fr .8fr .8fr; gap: 1rem; }
.banner-tile { position: relative; min-height: 290px; overflow: hidden; background: var(--navy); }
.banner-tile img { width: 100%; height: 100%; object-fit: cover; }
.banner-tile::after { content: ""; position: absolute; inset: 0; background: rgba(6, 29, 51, .2); }
.banner-label { position: absolute; z-index: 1; left: 1rem; right: 1rem; bottom: 1rem; color: var(--white); font-size: .82rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }

.campaign-list { display: grid; gap: 1rem; }
.campaign-row { display: grid; grid-template-columns: 1fr 1fr; min-height: 360px; background: var(--white); border: 1px solid var(--line); }
.campaign-row:nth-child(even) .campaign-body { order: 2; }
.campaign-row:nth-child(even) .campaign-media { order: 1; }
.campaign-media { min-height: 360px; padding: .6rem; display: grid; place-items: center; background: #101820; overflow: hidden; }
.campaign-media img { width: 100%; height: 100%; object-fit: contain; }
.campaign-body { display: flex; flex-direction: column; justify-content: center; padding: clamp(1.25rem, 3vw, 2.4rem); border-top: 4px solid var(--gold); }
.campaign-body .eyebrow { max-width: none; margin: 0 0 .85rem; color: var(--red); font-size: .75rem; }
.campaign-body h3 { max-width: 440px; margin: 0; color: var(--navy); font-size: clamp(1.5rem, 2.5vw, 2.35rem); line-height: 1.05; }
.campaign-body > p:not(.eyebrow) { max-width: 440px; margin: .7rem 0 0; color: var(--muted); font-size: 1rem; line-height: 1.65; }
.campaign-details { display: grid; gap: .65rem; width: min(100%, 440px); margin-top: 1.35rem; padding-top: 1.1rem; border-top: 1px solid var(--line); }
.campaign-detail { display: grid; grid-template-columns: 105px 1fr; gap: .75rem; padding-bottom: .65rem; border-bottom: 1px solid var(--line); }
.campaign-detail:last-child { padding-bottom: 0; border-bottom: 0; }
.campaign-detail strong { color: var(--navy); font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; }
.campaign-detail span { color: var(--muted); font-size: .82rem; line-height: 1.45; }

.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.feature { min-height: 165px; padding: 1.35rem; border-top: 3px solid var(--gold); background: var(--white); }
.feature i { color: var(--red); font-size: 1.25rem; }
.feature h3 { margin: .8rem 0 .35rem; color: var(--navy); font-size: 1rem; }
.feature p { margin: 0; color: var(--muted); font-size: .85rem; }

.logo-panel { display: flex; align-items: center; gap: 1.4rem; padding: 1.5rem; background: var(--white); border: 1px solid var(--line); }
.logo-panel img { width: 115px; height: 115px; object-fit: contain; }
.logo-panel p { margin: 0; color: var(--muted); }
.logo-panel strong { display: block; color: var(--navy); font-size: 1.3rem; }

.page-hero { position: relative; min-height: 330px; display: flex; align-items: end; overflow: hidden; background: var(--navy); color: var(--white); }
.page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 45%; opacity: .65; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: rgba(6, 29, 51, .58); }
.page-hero-content { position: relative; z-index: 1; width: min(1120px, 90vw); margin: 0 auto; padding: 6rem 0 3.5rem; }
.page-hero h1 { margin: 0; font-size: clamp(2.7rem, 6vw, 5.4rem); line-height: .95; letter-spacing: -.05em; }
.page-hero p { max-width: 600px; margin: 1rem 0 0; color: #e6edf3; }

.timeline { display: grid; gap: 1rem; }
.timeline-row { display: grid; grid-template-columns: 110px 1fr; gap: 2rem; padding: 1.2rem 0; border-bottom: 1px solid var(--line); }
.timeline-year { color: var(--red); font-weight: 900; }
.timeline-row h3 { margin: 0; color: var(--navy); }
.timeline-row p { margin: .3rem 0 0; color: var(--muted); }
.number-list { display: grid; gap: .8rem; }
.number-item { display: grid; grid-template-columns: 40px 1fr; gap: 1rem; align-items: start; padding: 1.1rem; background: #102a40; border: 1px solid #315370; }
.number { display: grid; place-items: center; width: 32px; height: 32px; background: var(--gold); color: var(--ink); font-weight: 900; }
.number-item p { margin: .15rem 0 0; color: #dbe8f0; }

.spec-list { display: grid; gap: 1rem; }
.spec-card { position: relative; display: block; min-height: 300px; padding: 0; background: var(--white); border: 1px solid var(--line); overflow: hidden; }
.spec-body { position: relative; z-index: 2; display: flex; flex-direction: column; width: 70%; min-height: 300px; padding: 1.5rem; background: rgba(255, 255, 255, .92); }
.spec-card h3 { margin: 0; color: var(--navy); }
.spec-card p { color: var(--muted); }
.spec-card ul { margin: .8rem 0 0; padding-left: 1.2rem; color: var(--muted); }
.spec-card .button { align-self: start; margin-top: 1.2rem; }
.spec-media { position: absolute; inset: 0; z-index: 0; overflow: hidden; background: #e9eef1; }
.spec-media::after { content: ""; position: absolute; inset: 0; z-index: 1; background: rgba(255, 255, 255, .48); pointer-events: none; }
.spec-media img { position: absolute; right: 0; bottom: 0; width: 58%; height: 86%; object-fit: contain; object-position: center bottom; opacity: .25; mix-blend-mode: multiply; }
.spec-media-label { position: absolute; z-index: 2; right: 1rem; bottom: 1rem; color: var(--navy); background: rgba(255, 255, 255, .78); padding: .35rem .55rem; font-size: .7rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }

.filter-bar { display: flex; flex-wrap: wrap; align-items: center; gap: .6rem; margin-bottom: 1.5rem; }
.filter-button { border: 1px solid var(--line); background: var(--white); color: var(--muted); padding: .6rem .8rem; font-size: .8rem; font-weight: 800; }
.filter-button.active, .filter-button:hover { background: var(--navy); border-color: var(--navy); color: var(--white); }
.product-card[hidden] { display: none; }

.product-modal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 1rem; }
.product-modal[hidden] { display: none; }
.product-modal-backdrop { position: absolute; inset: 0; background: rgba(6, 29, 51, .78); }
.product-modal-panel { position: relative; z-index: 1; width: min(900px, 94vw); max-height: calc(100vh - 2rem); overflow: auto; background: var(--white); box-shadow: 0 24px 70px rgba(0, 0, 0, .32); }
.product-modal-close { position: absolute; top: .8rem; right: .8rem; z-index: 2; display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid rgba(255, 255, 255, .5); background: rgba(6, 29, 51, .78); color: var(--white); }
.product-modal-close:hover { background: var(--red); }
.product-modal-content { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .9fr); }
.product-modal-image { min-height: 560px; padding: 1rem; display: grid; place-items: center; background: #101820; }
.product-modal-image img { width: 100%; height: 100%; max-height: 660px; object-fit: contain; }
.product-modal-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(1.5rem, 4vw, 3rem); }
.product-modal-copy h2 { margin: 0; color: var(--navy); font-size: clamp(1.7rem, 3vw, 2.6rem); line-height: 1.05; }
.product-modal-description { margin: 1rem 0 0; color: var(--muted); font-size: .98rem; line-height: 1.6; }
.product-modal-info { margin: 1.25rem 0 0; padding-top: 1rem; border-top: 1px solid var(--line); color: var(--navy); font-size: .85rem; font-weight: 750; line-height: 1.5; }
.product-modal-meta { margin-top: 1.1rem; }
body.modal-open { overflow: hidden; }

.dealer-toolbar { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 2rem; }
.dealer-toolbar input, .dealer-toolbar select { min-height: 44px; padding: .65rem .8rem; border: 1px solid var(--line); background: var(--white); color: var(--ink); }
.dealer-toolbar input { flex: 1 1 240px; }
.dealer-toolbar select { flex: 0 1 190px; }
.dealer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.dealer-card { background: var(--white); border: 1px solid var(--line); }
.dealer-card img { width: 100%; height: 190px; object-fit: cover; }
.dealer-body { padding: 1.1rem; }
.dealer-body h3 { margin: 0; color: var(--navy); font-size: 1.05rem; }
.dealer-body p { margin: .3rem 0 0; color: var(--muted); font-size: .85rem; }
.dealer-body .button { margin-top: 1rem; }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 3rem; align-items: start; }
.contact-list { display: grid; gap: .8rem; margin-top: 1.8rem; }
.contact-item { display: flex; gap: .85rem; align-items: start; }
.contact-item i { width: 22px; padding-top: .25rem; color: var(--red); }
.contact-item strong { display: block; color: var(--navy); }
.contact-item span { display: block; color: var(--muted); }
.form-panel { padding: 1.6rem; background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: grid; gap: .4rem; }
.field.full { grid-column: 1 / -1; }
.field label { color: var(--navy); font-size: .78rem; font-weight: 800; }
.field input, .field select, .field textarea { width: 100%; padding: .8rem; border: 1px solid var(--line); background: #fbfcfc; color: var(--ink); }
.field textarea { min-height: 140px; resize: vertical; }
.form-status { min-height: 1.4em; margin: .85rem 0 0; color: var(--red); font-size: .85rem; font-weight: 700; }
.contact-note { margin-top: 1rem; color: var(--muted); font-size: .78rem; }

.faq-list { display: grid; gap: .75rem; }
.faq-item { border: 1px solid var(--line); background: var(--white); }
.faq-question { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 1.1rem 1.2rem; border: 0; background: transparent; color: var(--navy); text-align: left; font-weight: 850; }
.faq-question i { color: var(--red); transition: transform .2s ease; }
.faq-answer { display: none; padding: 0 1.2rem 1.1rem; color: var(--muted); }
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-question i { transform: rotate(45deg); }

.video-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.video-card { background: #102a40; border: 1px solid #315370; padding: .8rem; }
.video-card video { width: 100%; height: 450px; object-fit: contain; background: #000; }
.video-card figcaption { padding: .8rem .2rem .1rem; color: #dbe8f0; font-size: .85rem; }

.review-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.review-card { padding: 1.5rem; background: var(--white); border: 1px solid var(--line); }
.review-rating { color: var(--gold); letter-spacing: .12em; font-size: .85rem; }
.review-card blockquote { margin: 1rem 0 1.25rem; color: var(--navy); font-size: 1.08rem; line-height: 1.45; }
.review-card cite { color: var(--muted); font-size: .82rem; font-style: normal; font-weight: 800; }

.cta-band { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: 2.2rem 0; background: var(--gold); color: var(--ink); }
.cta-band h2 { margin: 0; max-width: 650px; font-size: clamp(1.7rem, 3vw, 2.5rem); line-height: 1; }
.cta-band .button { background: var(--navy); color: var(--white); }

.site-footer { background: var(--navy-deep); color: #c6d4df; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr .9fr; gap: 3rem; padding: 4rem 0; }
.footer-brand .brand-name { color: var(--white); }
.footer-brand .brand-tag { color: #aebdca; }
.footer-brand p { max-width: 340px; font-size: .9rem; }
.footer-title { margin: 0 0 .8rem; color: var(--white); font-size: .9rem; text-transform: uppercase; letter-spacing: .1em; }
.footer-links { display: grid; gap: .45rem; font-size: .86rem; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; padding: 1rem 0; border-top: 1px solid #315370; color: #9fb0bf; font-size: .75rem; }

.reveal { opacity: 0; transform: translateY(14px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .nav-shell { min-height: 72px; }
  .menu-toggle { display: block; }
  .nav-links { display: none; position: absolute; left: 0; right: 0; top: 72px; padding: .8rem 5vw 1.2rem; background: var(--white); border-bottom: 1px solid var(--line); box-shadow: var(--shadow); flex-direction: column; align-items: stretch; gap: .15rem; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: .7rem 0; }
  .nav-links a::after { bottom: .25rem; right: 70%; }
  .nav-cta { text-align: center; }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .split.reverse > :first-child, .split.reverse > :last-child { order: initial; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .dealer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .utility-bar { flex-direction: column; gap: .3rem; padding: .5rem 5vw; }
  .utility-links { display: none; }
  .brand { min-width: auto; }
  .brand img { width: 44px; height: 44px; }
  .brand-name { font-size: .95rem; }
  .brand-tag { font-size: .5rem; }
  .section { padding: 4rem 0; }
  .section-head, .cta-band { align-items: start; flex-direction: column; }
  .hero { min-height: 650px; }
  .hero-media { object-position: 58% center; }
  .hero-content { padding: 7rem 0 3rem; }
  .hero h1 { font-size: clamp(2.9rem, 15vw, 5rem); }
  .hero-copy { font-size: .98rem; }
  .hero-note { margin-top: 2rem; display: grid; gap: .55rem; }
  .ticker { grid-template-columns: 1fr 1fr; }
  .ticker-item:nth-child(2) { border-right: 0; }
  .ticker-item:nth-child(-n+2) { border-bottom: 1px solid #315370; }
  .product-grid, .feature-grid, .dealer-grid, .video-grid, .review-grid { grid-template-columns: 1fr; }
  .campaign-row { grid-template-columns: 1fr; min-height: 0; }
  .campaign-row:nth-child(even) .campaign-body, .campaign-row:nth-child(even) .campaign-media { order: initial; }
  .campaign-body { min-height: 0; }
  .campaign-media { min-height: 300px; }
  .product-modal-content { grid-template-columns: 1fr; }
  .product-modal-image { min-height: 330px; }
  .product-modal-image img { max-height: 45vh; }
  .campaign-detail { grid-template-columns: 90px 1fr; }
  .banner-strip { grid-template-columns: 1fr 1fr; }
  .banner-tile:first-child { grid-column: 1 / -1; }
  .image-frame, .image-frame img { min-height: 330px; }
  .stats { grid-template-columns: 1fr; }
  .spec-body { width: 100%; min-height: 320px; background: rgba(255, 255, 255, .88); }
  .spec-media img { width: 100%; height: 82%; opacity: .14; }
  .timeline-row { grid-template-columns: 1fr; gap: .2rem; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .video-card video { height: 390px; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}
