:root {
  --navy: #071e2d;
  --navy-2: #102f42;
  --navy-3: #183e53;
  --cream: #f4f0e7;
  --paper: #fcfbf8;
  --white: #ffffff;
  --ink: #071e2d;
  --muted: #526471;
  --blue: #2f6f8c;
  --blue-light: #aad5e8;
  --line-dark: rgba(255,255,255,.17);
  --line-light: rgba(7,30,45,.15);
  --display: Georgia, "Times New Roman", serif;
  --body: Arial, Helvetica, sans-serif;
  --max: 1440px;
  --gutter: clamp(22px, 5vw, 76px);
  --section: clamp(72px, 8vw, 126px);
  --shadow: 0 20px 55px rgba(7,30,45,.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }

.skip-link {
  position: fixed; left: 12px; top: -80px; z-index: 1000;
  padding: 12px 18px; background: white; color: var(--navy);
}
.skip-link:focus { top: 12px; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  height: 96px; background: var(--navy); color: white;
  border-bottom: 1px solid var(--line-dark);
}
.header-inner {
  max-width: var(--max); height: 100%; margin: 0 auto;
  padding: 0 var(--gutter); display: flex; align-items: center; gap: 34px;
}
.brand { flex: 0 0 176px; line-height: 0; }
.brand img { width: 176px; height: auto; filter: brightness(0) invert(1); }
.desktop-nav { flex: 1; display: flex; align-items: center; justify-content: flex-end; gap: clamp(17px, 1.45vw, 31px); }
.nav-link, .nav-trigger {
  border: 0; background: none; padding: 11px 0; color: white;
  font-family: var(--body); font-size: 13px; line-height: 1.15; font-weight: 700;
  text-transform: uppercase; letter-spacing: .09em; text-decoration: none; white-space: nowrap;
}
.nav-link:hover, .nav-trigger:hover, .nav-link:focus-visible, .nav-trigger:focus-visible { color: var(--blue-light); }
.nav-group { position: relative; }
.nav-trigger { cursor: pointer; display: flex; align-items: center; gap: 7px; }
.nav-trigger::after { content: ""; width: 7px; height: 7px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translateY(-2px); }
.dropdown {
  position: absolute; top: calc(100% + 16px); left: -24px; width: 290px;
  padding: 14px; border-radius: 6px; background: white; color: var(--navy);
  box-shadow: var(--shadow); border: 1px solid var(--line-light); opacity: 0; visibility: hidden;
  transform: translateY(-6px); transition: .18s ease;
}
.dropdown::before { content: ""; position: absolute; top: -18px; left: 0; right: 0; height: 18px; }
.nav-group:hover .dropdown, .nav-group:focus-within .dropdown, .nav-group.open .dropdown { opacity: 1; visibility: visible; transform: none; }
.dropdown a { display: block; padding: 11px 12px; border-radius: 4px; color: var(--navy); text-decoration: none; font-size: 15px; line-height: 1.3; font-weight: 700; }
.dropdown a:hover, .dropdown a:focus-visible { background: var(--cream); color: #194b65; }
.header-cta { padding: 12px 17px; border: 1px solid rgba(255,255,255,.7); border-radius: 0 16px 0 16px; }
.menu-toggle { display: none; margin-left: auto; border: 1px solid var(--line-dark); border-radius: 3px; color: white; background: transparent; padding: 10px 12px; }
.mobile-nav { display: none; }

.wrap { max-width: var(--max); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.section { padding-top: var(--section); padding-bottom: var(--section); }
.section + .section { border-top: 1px solid var(--line-light); }
.section-dark { background: var(--navy); color: white; }
.section-blue { background: var(--navy-2); color: white; }
.section-cream { background: var(--cream); }
.section-white { background: white; }
.section-dark + .section-dark, .section-blue + .section-blue { border-top-color: var(--line-dark); }

.eyebrow { margin: 0 0 20px; color: var(--blue); font-size: 14px; line-height: 1.2; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.section-dark .eyebrow, .section-blue .eyebrow { color: var(--blue-light); }
h1, h2, h3, p { margin-top: 0; }
h1, .display { font-family: var(--display); font-weight: 400; letter-spacing: -.035em; }
h1 { margin-bottom: 24px; font-size: clamp(53px, 7.4vw, 112px); line-height: .94; max-width: 1000px; }
h2 { margin-bottom: 24px; font-family: var(--display); font-size: clamp(38px, 4.4vw, 68px); line-height: 1.02; font-weight: 400; letter-spacing: -.025em; }
h3 { margin-bottom: 13px; font-size: clamp(22px, 2vw, 29px); line-height: 1.18; }
.lede { max-width: 790px; font-size: clamp(20px, 2vw, 28px); line-height: 1.45; color: var(--muted); }
.section-dark .lede, .section-blue .lede { color: #d7e4eb; }
.body-copy { max-width: 720px; }
.body-copy p:last-child, .card p:last-child { margin-bottom: 0; }
.small { font-size: 14px; line-height: 1.55; }

.button-row { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }
.button {
  display: inline-flex; align-items: center; justify-content: center; min-height: 52px;
  padding: 13px 24px; border: 1px solid var(--navy); border-radius: 0 22px 0 22px;
  background: var(--navy); color: white; text-decoration: none; font-size: 15px; line-height: 1.2;
  font-weight: 800; letter-spacing: .03em; transition: transform .18s ease, background .18s ease, color .18s ease;
}
.button:hover { transform: translateY(-2px); background: var(--navy-2); }
.button.secondary { background: transparent; color: var(--navy); }
.section-dark .button, .section-blue .button { background: white; border-color: white; color: var(--navy); }
.section-dark .button.secondary, .section-blue .button.secondary { background: transparent; color: white; border-color: rgba(255,255,255,.7); }

.home-hero { background: var(--navy); color: white; min-height: calc(100vh - 96px); display: grid; align-items: center; }
.home-hero-grid { display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(380px, .76fr); gap: clamp(44px, 6vw, 90px); align-items: center; padding-top: 64px; padding-bottom: 64px; }
.home-hero h1 { color: white; }
.home-hero .lede { color: #d7e4eb; }
.hero-collage { position: relative; min-height: 570px; }
.hero-collage img { position: absolute; display: block; object-fit: cover; }
.hero-collage img:first-child { inset: 0 0 104px 54px; width: calc(100% - 54px); height: calc(100% - 104px); object-position: 50% 46%; }
.hero-collage img:nth-child(2) { left: 0; bottom: 0; width: 48%; height: 230px; border: 12px solid var(--navy); border-left: 0; border-bottom: 0; border-radius: 0 84px 0 0; }
.hero-seal { position: absolute; right: 2px; bottom: 0; width: 176px; aspect-ratio: 1; border-radius: 50%; background: var(--cream); color: var(--navy); display: grid; place-content: center; justify-items: center; text-align: center; box-shadow: 0 18px 45px rgba(0,0,0,.2); }
.seal-mark { width: 48px; height: 16px; margin-bottom: 16px; border: 4px solid var(--blue); border-radius: 50%; }
.hero-seal strong { font-size: 21px; line-height: 1; font-weight: 400; letter-spacing: .24em; text-transform: uppercase; }
.hero-seal small { margin-top: 13px; color: var(--blue); font-size: 10px; line-height: 1.2; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }

.page-hero { background: var(--cream); padding: clamp(72px, 8vw, 122px) 0; }
.page-hero-grid { display: grid; grid-template-columns: minmax(0, .95fr) minmax(380px, 1.05fr); gap: clamp(45px, 7vw, 110px); align-items: center; }
.page-hero-image { height: clamp(420px, 52vw, 690px); width: 100%; object-fit: cover; object-position: center; border-radius: 160px 0 0 0; }
.page-hero.no-image .page-hero-grid { grid-template-columns: minmax(0, 980px); }
.page-hero.no-image { padding-bottom: 88px; }
.hero-price { display: inline-flex; flex-wrap: wrap; gap: 9px 25px; margin: 20px 0 0; padding: 16px 0; border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); font-weight: 800; }
.hero-price span { white-space: nowrap; }

.proof-strip { background: white; border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.proof-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.proof { padding: 30px 24px; border-left: 1px solid var(--line-light); }
.proof:first-child { border-left: 0; padding-left: 0; }
.proof strong { display: block; font-family: var(--display); font-size: 31px; line-height: 1; font-weight: 400; }
.proof span { display: block; margin-top: 8px; color: var(--muted); font-size: 13px; text-transform: uppercase; letter-spacing: .12em; }

.section-intro { display: grid; grid-template-columns: minmax(0,.9fr) minmax(340px,.65fr); gap: clamp(38px, 7vw, 110px); align-items: start; margin-bottom: clamp(38px, 5vw, 72px); }
.section-intro > :last-child { padding-top: 8px; }
.range-grid, .card-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.range-card, .card { background: white; border: 1px solid var(--line-light); overflow: hidden; }
.range-card { position: relative; min-height: 620px; border: 0; border-radius: 0 82px 0 82px; background: var(--navy); color: white; }
.section-dark .card, .section-blue .card { background: var(--navy-2); color: white; border-color: var(--line-dark); }
.section-dark .card p, .section-blue .card p { color: #d7e4eb; }
.range-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.range-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(5,25,39,.98) 4%, rgba(5,25,39,.84) 38%, rgba(5,25,39,.08) 76%); }
.range-card-content { position: absolute; z-index: 1; inset: auto 0 0; padding: 38px 34px 42px; }
.card { padding: 29px; }
.range-card .meta { margin-bottom: 15px; color: var(--blue-light); font-weight: 800; letter-spacing: .1em; text-transform: uppercase; font-size: 13px; }
.range-card h3 { margin-bottom: 18px; color: white; font-family: var(--body); font-size: clamp(34px,3vw,48px); line-height: 1; font-weight: 400; letter-spacing: -.02em; text-transform: uppercase; }
.range-card-content > p:not(.meta) { color: white; font-size: 19px; line-height: 1.5; }
.range-card .text-link { color: white; font-family: var(--display); font-size: 20px; font-weight: 700; text-decoration: none; }
.text-link { display: inline-block; margin-top: 15px; color: #245f7b; font-weight: 800; text-decoration-thickness: 1px; text-underline-offset: 5px; }
.section-dark .text-link, .section-blue .text-link { color: var(--blue-light); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 7vw, 110px); align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media img { width: 100%; height: clamp(400px, 48vw, 650px); object-fit: cover; }
.split-media.rounded img { border-radius: 0 140px 0 0; }
.feature-list { list-style: none; padding: 0; margin: 28px 0 0; border-top: 1px solid currentColor; border-color: var(--line-light); }
.section-dark .feature-list { border-color: var(--line-dark); }
.feature-list li { display: grid; grid-template-columns: 30px 1fr; gap: 13px; padding: 16px 0; border-bottom: 1px solid var(--line-light); }
.section-dark .feature-list li { border-color: var(--line-dark); }
.feature-list li::before { content: "✓"; color: var(--blue); font-weight: 900; }
.section-dark .feature-list li::before { color: var(--blue-light); }

.compare-table { width: 100%; border-collapse: collapse; background: white; }
.compare-table th, .compare-table td { padding: 20px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line-light); }
.compare-table th { background: var(--navy); color: white; font-size: 14px; letter-spacing: .08em; text-transform: uppercase; }
.compare-table td:first-child { font-weight: 800; }
.compare-table a { color: #245f7b; font-weight: 800; }

.stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.stat { padding: 30px; background: var(--navy-2); color: white; border: 1px solid var(--line-dark); }
.stat strong { display: block; font-family: var(--display); font-size: 44px; font-weight: 400; line-height: 1; }
.stat span { display: block; margin-top: 12px; color: #d7e4eb; }

.steps { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid var(--line-light); background: white; }
.step { padding: 30px; border-left: 1px solid var(--line-light); }
.step:first-child { border-left: 0; }
.step b { display: block; margin-bottom: 28px; color: var(--blue); font-size: 14px; letter-spacing: .12em; }
.section-dark .steps, .section-blue .steps { background: transparent; border-color: var(--line-dark); }
.section-dark .step, .section-blue .step { border-color: var(--line-dark); color: white; }
.section-dark .step p, .section-blue .step p { color: #d7e4eb; }
.section-dark .step b, .section-blue .step b { color: var(--blue-light); }

.gallery { display: grid; grid-template-columns: repeat(12,1fr); gap: 16px; }
.gallery figure { margin: 0; grid-column: span 4; }
.gallery figure.wide { grid-column: span 8; }
.gallery figure.tall { grid-row: span 2; }
.gallery img { width: 100%; height: 330px; object-fit: cover; }
.gallery figure.tall img { height: 676px; }
.gallery figcaption { padding-top: 9px; color: var(--muted); font-size: 14px; }

.archive-toolbar { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 34px; }
.filter-button { padding: 9px 15px; border-radius: 0 14px 0 14px; background: transparent; border: 1px solid var(--line-light); color: var(--navy); cursor: pointer; }
.filter-button.active, .filter-button:hover { background: var(--navy); color: white; }
.build-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.build-card { display: grid; grid-template-columns: minmax(0,1.35fr) minmax(230px,.65fr); min-height: 340px; background: var(--navy); color: white; overflow: hidden; }
.build-card img { width: 100%; height: 100%; min-height: 340px; object-fit: cover; object-position: center 45%; }
.build-card.susurra img { object-position: center 18%; }
.build-card-copy { padding: 32px; display: flex; flex-direction: column; justify-content: center; }
.build-card-copy .number { color: var(--blue-light); font-family: var(--display); font-size: 40px; }
.build-card-copy h3 { font-family: var(--display); font-size: 38px; font-weight: 400; }
.build-card-copy p { color: #d7e4eb; font-size: 15px; }
.build-card-copy a { color: white; font-weight: 800; text-underline-offset: 5px; }

.range-plan-section { overflow: hidden; }
.floorplan-frame { padding: clamp(22px,4vw,54px); background: white; border: 1px solid var(--line-light); border-radius: 0 72px 0 72px; box-shadow: var(--shadow); }
.floorplan-frame img { width: 100%; height: auto; }
.plan-note { max-width: 850px; margin: 22px 0 0; color: var(--muted); font-size: 14px; }
.range-detail-gallery { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: repeat(2, minmax(250px, 360px)); gap: 18px; }
.range-detail-gallery figure { margin: 0; overflow: hidden; background: var(--cream); }
.range-detail-gallery figure:first-child { grid-row: 1 / 3; border-radius: 0 0 0 86px; }
.range-detail-gallery figure:nth-child(2) { border-radius: 0 70px 0 0; }
.range-detail-gallery img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

.motor-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.motor-card { display: grid; grid-template-rows: 320px 1fr; overflow: hidden; background: white; border: 1px solid var(--line-light); border-radius: 0 64px 0 64px; }
.motor-visual { min-height: 0; padding: 28px; background: #e8eef1; }
.motor-visual img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.motor-visual.dual { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.motor-copy { padding: clamp(28px,4vw,48px); }
.motor-copy h3 { font-family: var(--display); font-size: clamp(36px,4vw,56px); font-weight: 400; }
.motor-copy .feature-list { margin-top: 24px; }
.technical-note { max-width: 980px; margin: 26px 0 0; padding: 17px 20px; border-left: 4px solid var(--blue); background: #e8f1f5; color: #243f50; }
.statement-grid { display: grid; grid-template-columns: minmax(0,.9fr) minmax(340px,.65fr); gap: clamp(38px,7vw,110px); align-items: start; }
.statement-grid .body-copy p { color: #d7e4eb; }

.system-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.system-card { min-height: 280px; padding: 30px; background: var(--navy); color: white; border-radius: 0 42px 0 42px; }
.system-card b { display: block; margin-bottom: 42px; color: var(--blue-light); font-size: 14px; letter-spacing: .14em; }
.system-card h3 { font-family: var(--display); font-size: 29px; font-weight: 400; }
.system-card p { margin-bottom: 0; color: #d7e4eb; }

.electric-mosaic { display: grid; grid-template-columns: 1.7fr .85fr .85fr; grid-template-rows: 520px; gap: 12px; padding: 12px; background: var(--navy); }
.electric-mosaic img { width: 100%; height: 100%; object-fit: cover; }
.electric-mosaic img:first-child { border-radius: 0 0 0 80px; }
.electric-mosaic img:last-child { border-radius: 0 80px 0 0; }

.charge-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.charge-card { min-height: 310px; padding: 34px; border: 1px solid var(--line-dark); background: var(--navy-2); border-radius: 0 44px 0 44px; }
.charge-card b { display: block; margin-bottom: 56px; color: var(--blue-light); font-size: 15px; letter-spacing: .14em; }
.charge-card h3 { font-family: var(--display); font-size: 34px; font-weight: 400; }
.charge-card p { color: #d7e4eb; }

.number-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.number-card { padding: 34px; background: var(--cream); border: 1px solid var(--line-light); border-radius: 0 44px 0 44px; }
.number-card span { display: block; margin-bottom: 40px; color: var(--blue); font-family: var(--display); font-size: 62px; line-height: 1; }
.number-card h3 { font-family: var(--display); font-size: 32px; font-weight: 400; }
.number-card p { color: var(--muted); }

.monitor-grid { display: grid; grid-template-columns: repeat(4,1fr); padding: 20px; gap: 16px; background: var(--navy); border-radius: 0 58px 0 58px; }
.monitor-grid article { min-height: 190px; padding: 28px; background: var(--navy-2); color: white; border: 1px solid var(--line-dark); }
.monitor-grid h3 { margin-top: 28px; color: white; }
.monitor-grid p { margin-bottom: 0; color: #d7e4eb; }
.monitor-grid-five { grid-template-columns: repeat(5,1fr); }

/* Detailed electric education components. These retain the depth of the
   original page while using the shared Oakums type, colour and corner system. */
.education-flow { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 18px; align-items: stretch; }
.education-flow-card { min-height: 190px; padding: 30px; display: grid; align-content: center; text-align: center; background: white; border: 1px solid var(--line-light); border-radius: 0 42px 0 42px; }
.education-flow-card > span { color: var(--blue); font-size: 31px; line-height: 1; }
.education-flow-card h3 { margin: 13px 0 6px; font-family: var(--display); font-size: 31px; font-weight: 400; }
.education-flow-card p { margin: 0; color: var(--muted); }
.education-arrow { display: grid; place-items: center; color: var(--blue); font-size: 34px; }
.education-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 20px; }
.education-two { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.education-card { padding: 30px; background: white; border: 1px solid var(--line-light); border-radius: 0 42px 0 42px; }
.education-card h3 { font-family: var(--display); font-size: clamp(28px,2.5vw,38px); font-weight: 400; }
.education-card p:last-child { margin-bottom: 0; }
.education-card-large { padding: clamp(30px,4vw,48px); }
.education-number { color: var(--blue); font-size: 14px; font-weight: 800; letter-spacing: .16em; }
.technical-feature { margin-top: 24px; padding: clamp(28px,4vw,48px); background: var(--navy); color: white; border-radius: 0 58px 0 58px; }
.technical-feature h3 { color: white; font-family: var(--display); font-size: clamp(32px,4vw,52px); font-weight: 400; }
.technical-feature p { color: #d7e4eb; }
.technical-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin: 28px 0; }
.technical-stats div { padding: 22px; background: var(--navy-2); border: 1px solid var(--line-dark); }
.technical-stats strong { display: block; color: white; font-family: var(--display); font-size: clamp(32px,3vw,46px); font-weight: 400; line-height: 1; }
.technical-stats span { display: block; margin-top: 8px; color: var(--blue-light); font-size: 13px; text-transform: uppercase; letter-spacing: .1em; }
.thrust-sequence { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 18px; align-items: center; margin-top: 24px; padding: 22px; background: var(--cream); border-radius: 0 48px 0 48px; }
.thrust-sequence article { min-height: 120px; padding: 24px; display: grid; place-content: center; text-align: center; background: white; border: 1px solid var(--line-light); }
.thrust-sequence strong { display: block; font-family: var(--display); font-size: 28px; font-weight: 400; }
.technical-feature .thrust-sequence { color: var(--navy); }
.technical-feature .thrust-sequence p { color: var(--muted); }
.technical-feature .thrust-sequence .eyebrow { color: var(--blue); }
.propeller-terms { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 20px; }
.education-panel { margin-top: 24px; padding: clamp(26px,4vw,46px); background: var(--cream); border-radius: 0 54px 0 54px; }
.education-panel h3 { font-family: var(--display); font-size: clamp(30px,3vw,44px); font-weight: 400; }
.table-scroll { overflow-x: auto; }
.education-table { width: 100%; min-width: 690px; border-collapse: collapse; background: white; }
.education-table th, .education-table td { padding: 18px 20px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line-light); }
.education-table th { color: white; background: var(--navy); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
.education-table td:first-child { font-weight: 800; }
.glossary-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.glossary-grid article { padding: 22px; background: white; border: 1px solid var(--line-light); border-radius: 0 28px 0 28px; }
.glossary-grid h3 { margin-bottom: 5px; font-family: var(--body); font-size: 18px; }
.glossary-grid p { margin: 0; color: var(--muted); font-size: 15px; }
.comparison-caveat { margin: 18px 0 0; color: var(--muted); font-size: 14px; }
.technical-note-dark { max-width: 980px; margin: 28px 0 0; padding: 20px 24px; color: #d7e4eb; background: var(--navy-2); border-left: 4px solid var(--blue-light); }

.decision-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.decision-card { padding: 32px; border: 1px solid var(--line-light); background: white; border-radius: 0 44px 0 44px; }
.section-dark .decision-card, .section-blue .decision-card { border-color: var(--line-dark); background: var(--navy-2); color: white; }
.section-dark .decision-card p:not(.eyebrow), .section-blue .decision-card p:not(.eyebrow) { color: #d7e4eb; }
.electric-price-band { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(40px,7vw,100px); align-items: center; }
.electric-prices { display: grid; }
.electric-prices a { display: flex; justify-content: space-between; gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--line-dark); color: white; text-decoration: none; }
.electric-prices a:first-child { border-top: 1px solid var(--line-dark); }
.electric-prices a:hover strong { color: var(--blue-light); }
.electric-prices span { color: #d7e4eb; }
.electric-prices strong { white-space: nowrap; }

.article-layout { display: grid; grid-template-columns: minmax(0,1fr) 320px; gap: clamp(50px, 8vw, 110px); align-items: start; }
.article-content { max-width: 780px; }
.article-content h2 { margin-top: 62px; font-size: clamp(34px,4vw,52px); }
.article-content h3 { margin-top: 38px; }
.article-content p, .article-content li { color: #334b5a; }
.article-content li + li { margin-top: 8px; }
.restored-content > :first-child { margin-top: 0; }
.restored-content ul, .restored-content ol { padding-left: 1.35em; margin: 0 0 28px; }
.restored-content table { width: 100%; margin: 28px 0 38px; border-collapse: collapse; background: white; }
.restored-content th, .restored-content td { padding: 16px 14px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line-light); }
.restored-content th { color: white; background: var(--navy); }
.restored-content blockquote { margin: 32px 0; padding: 25px 30px; background: var(--cream); border-left: 4px solid var(--blue); }
.restored-content a { color: #245f7b; font-weight: 800; text-underline-offset: 4px; }
.restored-content hr { margin: 42px 0; border: 0; border-top: 1px solid var(--line-light); }
.sidebar { position: sticky; top: 126px; padding: 28px; background: var(--cream); border-top: 4px solid var(--blue); }
.sidebar h3 { font-family: var(--display); font-size: 30px; font-weight: 400; }
.sidebar .price-mini { padding: 10px 0; border-top: 1px solid var(--line-light); }

.faq-list { max-width: 980px; }
.faq-list details { border-top: 1px solid var(--line-light); }
.faq-list details:last-child { border-bottom: 1px solid var(--line-light); }
.faq-list summary { cursor: pointer; list-style: none; padding: 22px 46px 22px 0; font-weight: 800; position: relative; }
.faq-list summary::after { content: "+"; position: absolute; right: 0; font-size: 27px; font-weight: 400; line-height: 1; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 790px; padding: 0 0 24px; color: var(--muted); }

.enquiry { background: var(--navy); color: white; }
.enquiry-grid { display: grid; grid-template-columns: minmax(0,.8fr) minmax(420px,1.2fr); gap: clamp(45px,8vw,120px); align-items: start; }
.enquiry h2 { color: white; }
.enquiry .lede { color: #d7e4eb; }
.contact-links { margin-top: 32px; display: grid; gap: 8px; }
.contact-links a { color: white; font-size: 20px; font-weight: 800; }
.enquiry-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid rgba(255,255,255,.34); background: white; color: var(--navy); padding: 14px; border-radius: 0; }
.field textarea { min-height: 128px; resize: vertical; }
.form-note { grid-column: 1/-1; margin: 0; color: #c2d3dc; font-size: 13px; }

.site-footer { background: #04141f; color: white; }
.footer-grid { display: grid; grid-template-columns: 1.2fr repeat(3,.7fr); gap: 48px; padding-top: 68px; padding-bottom: 54px; }
.footer-brand img { width: 180px; height: auto; filter: brightness(0) invert(1); margin-bottom: 18px; }
.footer-grid h3 { font-family: var(--body); font-size: 13px; letter-spacing: .14em; text-transform: uppercase; }
.footer-grid a { display: block; color: #d7e4eb; text-decoration: none; margin: 7px 0; font-size: 15px; }
.footer-grid a:hover { color: white; text-decoration: underline; }
.footer-bottom { padding: 22px var(--gutter); border-top: 1px solid var(--line-dark); color: #a7bcc7; font-size: 12px; }

.notice { padding: 16px 20px; background: #e8f1f5; border-left: 4px solid var(--blue); color: var(--navy); }
.availability { display: inline-flex; align-items: center; gap: 9px; font-weight: 800; }
.availability::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: #4e9970; }
.hide { display: none !important; }

@media (max-width: 1180px) {
  .desktop-nav { gap: 15px; }
  .nav-link, .nav-trigger { font-size: 11.5px; }
  .brand, .brand img { width: 150px; flex-basis: 150px; }
  .header-cta { display: none; }
}

@media (max-width: 980px) {
  .site-header { height: 82px; }
  .desktop-nav { display: none; }
  .menu-toggle { display: inline-flex; }
  .mobile-nav { position: fixed; inset: 82px 0 auto; max-height: calc(100vh - 82px); overflow: auto; padding: 22px var(--gutter) 34px; background: var(--navy); border-top: 1px solid var(--line-dark); }
  .mobile-nav.open { display: block; }
  .mobile-nav a { display: block; padding: 13px 0; color: white; text-decoration: none; font-weight: 800; border-bottom: 1px solid var(--line-dark); }
  .mobile-nav .sub { padding-left: 18px; color: var(--blue-light); font-size: 15px; }
  .home-hero { min-height: auto; }
  .home-hero-grid, .page-hero-grid, .section-intro, .split, .article-layout, .enquiry-grid { grid-template-columns: 1fr; }
  .home-hero-grid { padding-top: 70px; padding-bottom: 70px; }
  .hero-collage { min-height: 620px; }
  .page-hero-image { height: 560px; }
  .range-grid, .card-grid { grid-template-columns: 1fr 1fr; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .proof:nth-child(3) { border-left: 0; border-top: 1px solid var(--line-light); padding-left: 0; }
  .proof:nth-child(4) { border-top: 1px solid var(--line-light); }
  .steps { grid-template-columns: 1fr 1fr; }
  .step:nth-child(3) { border-left: 0; border-top: 1px solid var(--line-light); }
  .step:nth-child(4) { border-top: 1px solid var(--line-light); }
  .build-grid { grid-template-columns: 1fr; }
  .motor-grid, .statement-grid, .electric-price-band { grid-template-columns: 1fr; }
  .system-grid, .monitor-grid { grid-template-columns: 1fr 1fr; }
  .monitor-grid-five { grid-template-columns: 1fr 1fr; }
  .education-flow, .thrust-sequence { grid-template-columns: 1fr; }
  .education-arrow { transform: rotate(90deg); min-height: 24px; }
  .education-grid, .propeller-terms, .glossary-grid { grid-template-columns: 1fr 1fr; }
  .education-two { grid-template-columns: 1fr; }
  .electric-mosaic { grid-template-columns: 1.5fr 1fr; grid-template-rows: 350px 290px; }
  .electric-mosaic img:first-child { grid-row: 1 / 3; }
  .electric-mosaic img:last-child { border-radius: 0; }
  .charge-grid, .number-grid, .decision-grid { grid-template-columns: 1fr 1fr; }
  .sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  body { font-size: 16px; }
  h1 { font-size: clamp(48px, 17vw, 76px); }
  h2 { font-size: clamp(38px, 12vw, 54px); }
  .home-hero-grid { gap: 48px; }
  .hero-collage { min-height: 535px; }
  .hero-collage img:first-child { inset: 0 0 92px 24px; width: calc(100% - 24px); height: calc(100% - 92px); }
  .hero-collage img:nth-child(2) { width: 51%; height: 190px; border-width: 8px; border-left: 0; border-bottom: 0; border-radius: 0 58px 0 0; }
  .hero-seal { width: 142px; }
  .hero-seal strong { font-size: 17px; }
  .hero-seal small { font-size: 9px; }
  .page-hero { padding-top: 68px; padding-bottom: 68px; }
  .page-hero-image { height: 430px; border-radius: 100px 0 0 0; }
  .range-grid, .card-grid, .stats { grid-template-columns: 1fr; }
  .range-card { min-height: 590px; border-radius: 0 64px 0 64px; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof, .proof:nth-child(3) { border-left: 0; border-top: 1px solid var(--line-light); padding-left: 0; }
  .proof:first-child { border-top: 0; }
  .split.reverse .split-media { order: 0; }
  .steps { grid-template-columns: 1fr; }
  .step, .step:nth-child(3) { border-left: 0; border-top: 1px solid var(--line-light); }
  .step:first-child { border-top: 0; }
  .gallery { grid-template-columns: 1fr; }
  .gallery figure, .gallery figure.wide { grid-column: auto; }
  .gallery img, .gallery figure.tall img { height: 310px; }
  .build-card { grid-template-columns: 1fr; }
  .build-card img { min-height: 270px; height: 270px; }
  .range-detail-gallery { grid-template-columns: 1fr; grid-template-rows: repeat(3, 320px); }
  .range-detail-gallery figure:first-child { grid-row: auto; border-radius: 0 52px 0 0; }
  .range-detail-gallery figure:nth-child(2) { border-radius: 0; }
  .floorplan-frame { padding: 16px; border-radius: 0 42px 0 42px; }
  .motor-card { grid-template-rows: 260px 1fr; border-radius: 0 48px 0 48px; }
  .motor-visual.dual { grid-template-columns: 1fr 1fr; padding: 18px; }
  .system-grid, .monitor-grid, .charge-grid, .number-grid, .decision-grid { grid-template-columns: 1fr; }
  .monitor-grid-five, .education-grid, .propeller-terms, .glossary-grid, .technical-stats { grid-template-columns: 1fr; }
  .system-card, .charge-card { min-height: auto; }
  .system-card b, .charge-card b, .number-card span { margin-bottom: 24px; }
  .electric-mosaic { grid-template-columns: 1fr; grid-template-rows: repeat(3, 310px); padding: 8px; gap: 8px; }
  .electric-mosaic img:first-child { grid-row: auto; border-radius: 0 48px 0 0; }
  .electric-prices a { align-items: start; flex-direction: column; gap: 2px; }
  .compare-scroll { overflow-x: auto; margin-right: calc(var(--gutter) * -1); padding-right: var(--gutter); }
  .compare-table { min-width: 720px; }
  .enquiry-form { grid-template-columns: 1fr; }
  .field, .field.full { grid-column: 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

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