:root {
  --ink: #10283f;
  --ink-strong: #071b2e;
  --muted: #587087;
  --navy: #0b2b4f;
  --navy-2: #123f6c;
  --blue: #176b9b;
  --blue-soft: #eaf3f8;
  --blue-pale: #f3f8fb;
  --orange: #c45100;
  --orange-hover: #9f3f00;
  --orange-soft: #fff1e8;
  --yellow: #f6c945;
  --yellow-soft: #fff8dc;
  --paper: #ffffff;
  --off-white: #f8fafc;
  --line: #dbe5ed;
  --line-dark: rgba(255, 255, 255, .16);
  --success: #15734a;
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 32px;
  --shadow-sm: 0 10px 30px rgba(11, 43, 79, .08);
  --shadow: 0 22px 65px rgba(11, 43, 79, .13);
  --shell: 1240px;
  --header-height: 88px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 118px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

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

a { color: inherit; text-decoration-thickness: .08em; text-underline-offset: .18em; }

button, input, select, textarea { font: inherit; }

button, a { -webkit-tap-highlight-color: transparent; }

:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 2px;
  box-shadow: 0 0 0 5px var(--navy);
}

::selection { color: var(--ink-strong); background: var(--yellow); }

h1, h2, h3, p { margin-top: 0; }

h1, h2, h3 {
  color: var(--ink-strong);
  font-weight: 800;
  letter-spacing: -.035em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.65rem, 6vw, 5.5rem); line-height: .98; }
h2 { font-size: clamp(2rem, 4vw, 3.75rem); line-height: 1.04; }
h3 { font-size: clamp(1.2rem, 2vw, 1.55rem); line-height: 1.2; }

.shell { width: min(var(--shell), calc(100% - 40px)); margin-inline: auto; }
.shell--narrow { width: min(850px, calc(100% - 40px)); margin-inline: auto; }
.shell--wide { width: min(1440px, calc(100% - 40px)); margin-inline: auto; }

.section { padding: clamp(76px, 9vw, 132px) 0; }
.section--tight { padding: clamp(54px, 7vw, 92px) 0; }
.section--soft { background: var(--off-white); }
.section--blue { background: var(--blue-soft); }
.section--navy { color: #fff; background: var(--navy); }
.section--navy h2, .section--navy h3 { color: #fff; }
.section.section--navy p { color: #dce8f2; }
.section.section--navy li { color: #fff; }

.section-head { max-width: 780px; margin-bottom: clamp(34px, 5vw, 58px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head h2 { margin-bottom: 18px; }
.section-head p { max-width: 68ch; margin-bottom: 0; color: var(--muted); font-size: clamp(1rem, 1.5vw, 1.16rem); }
.section--navy .section-head p { color: #cbd9e7; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before { width: 24px; height: 3px; border-radius: 9px; background: var(--orange); content: ""; }
.section--navy .eyebrow { color: var(--yellow); }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 7px 13px;
  border-radius: 999px;
  color: var(--ink-strong);
  background: var(--yellow-soft);
  border: 1px solid rgba(246, 201, 69, .65);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .03em;
}

.pill--blue { color: var(--navy); background: var(--blue-soft); border-color: #c9dfe9; }
.pill--orange { color: #7a2e00; background: var(--orange-soft); border-color: #f4c5a6; }

.lead { color: var(--muted); font-size: clamp(1.08rem, 1.7vw, 1.3rem); line-height: 1.6; }
.microcopy { color: var(--muted); font-size: .9rem; }
.text-link { color: var(--navy-2); font-weight: 800; text-decoration-color: rgba(23, 107, 155, .35); }
.text-link:hover { color: var(--orange-hover); text-decoration-color: currentColor; }

.button-row { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 13px;
  color: #fff;
  background: var(--navy);
  box-shadow: 0 8px 18px rgba(11, 43, 79, .15);
  font-size: .96rem;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), background-color .22s ease, border-color .22s ease;
}

.button:hover { transform: translateY(-2px); background: var(--navy-2); box-shadow: 0 14px 28px rgba(11, 43, 79, .22); }
.button:active { transform: translateY(0); }
.button--orange { background: var(--orange); box-shadow: 0 8px 20px rgba(217, 93, 8, .24); }
.button--orange:hover { background: var(--orange-hover); box-shadow: 0 14px 30px rgba(217, 93, 8, .32); }
.button--light { color: var(--navy); background: #fff; }
.button--light:hover { color: var(--navy); background: var(--blue-soft); }
.button--ghost { color: var(--navy); background: transparent; border-color: #bfd0de; box-shadow: none; }
.button--ghost:hover { background: var(--blue-soft); border-color: #8fb0c7; box-shadow: none; }
.section--navy .button--ghost,
.final-cta .button--ghost,
.photo-hero .button--ghost,
.brand-statement .button--ghost { color: #fff; border-color: rgba(255,255,255,.48); }
.section--navy .button--ghost:hover,
.final-cta .button--ghost:hover,
.photo-hero .button--ghost:hover,
.brand-statement .button--ghost:hover { color: #fff; background: rgba(255,255,255,.12); border-color: #fff; }
.button--small { min-height: 44px; padding: 10px 15px; border-radius: 11px; font-size: .86rem; }
.button--full { width: 100%; }
.button__arrow { transition: transform .2s ease; }
.button:hover .button__arrow { transform: translateX(3px); }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: #fff;
  background: var(--navy);
  border-radius: 8px;
  transform: translateY(-160%);
}
.skip-link:focus { transform: none; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* Header */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 255, 255, .95);
  border-bottom: 1px solid rgba(219, 229, 237, .9);
  backdrop-filter: blur(18px);
  transition: box-shadow .25s ease;
}
.site-header.is-scrolled { box-shadow: 0 10px 34px rgba(11, 43, 79, .1); }
.site-ribbon { color: #dce9f4; background: var(--navy); font-size: .76rem; }
.site-ribbon__inner { min-height: 31px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.site-ribbon p { margin: 0; }
.site-ribbon a { color: #fff; font-weight: 750; text-decoration: none; }
.site-ribbon a:hover { color: var(--yellow); }
.header-main { min-height: var(--header-height); display: flex; align-items: center; gap: 30px; }
.site-brand { flex: 0 0 auto; width: clamp(255px, 24vw, 370px); text-decoration: none; }
.primary-nav { min-width: 0; flex: 1; display: flex; align-items: center; justify-content: flex-end; gap: clamp(12px, 1.8vw, 26px); }
.nav-list { display: flex; align-items: center; gap: 2px; padding: 0; margin: 0; list-style: none; }
.nav-item { position: relative; }
.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 10px;
  border-radius: 10px;
  color: #29465f;
  font-size: .86rem;
  font-weight: 750;
  text-decoration: none;
  transition: color .2s ease, background-color .2s ease, transform .2s var(--ease);
}
.nav-link::after {
  position: absolute;
  right: 12px;
  bottom: 7px;
  left: 12px;
  height: 2px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--orange), var(--yellow));
  content: "";
  opacity: 0;
  transform: scaleX(.35);
  transform-origin: left;
  transition: opacity .2s ease, transform .25s var(--ease);
}
.nav-link:hover, .nav-link[aria-current="page"] { color: var(--navy); background: var(--blue-pale); }
.nav-link:hover::after, .nav-link[aria-current="page"]::after { opacity: 1; transform: scaleX(1); }
.nav-model-row { display: flex; align-items: center; }
.submenu-toggle {
  width: 30px;
  height: 34px;
  margin-left: -8px;
  padding: 0;
  color: var(--navy);
  background: transparent;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
  transition: background-color .2s ease, transform .2s ease;
}
.submenu-toggle:hover { background: var(--blue-soft); }
.submenu-toggle[aria-expanded="true"] { transform: rotate(180deg); }
.models-submenu {
  position: absolute;
  top: calc(100% + 10px);
  left: -12px;
  width: 250px;
  padding: 10px;
  margin: 0;
  list-style: none;
  visibility: hidden;
  opacity: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  transform: translateY(-8px);
  transition: opacity .18s ease, transform .22s var(--ease), visibility .18s;
}
.models-submenu::before { position: absolute; top: -12px; left: 0; width: 100%; height: 12px; content: ""; }
.models-submenu a {
  display: block;
  padding: 12px 13px;
  border-radius: 10px;
  color: var(--ink);
  font-size: .96rem;
  font-weight: 800;
  text-decoration: none;
  transition: color .18s ease, background-color .18s ease, padding-left .18s ease;
}
.models-submenu a:hover, .models-submenu a:focus-visible { color: var(--orange-hover); background: var(--orange-soft); padding-left: 17px; }
.nav-item--models:hover .models-submenu,
.nav-item--models:focus-within .models-submenu,
.nav-item--models.is-open .models-submenu { visibility: visible; opacity: 1; transform: none; }
.nav-actions { display: flex; align-items: center; gap: 8px; }
.menu-toggle { display: none; }

/* Heroes */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #f6fafc 0%, #edf5f9 54%, #fff 100%);
}
.hero::before {
  position: absolute;
  top: -180px;
  left: -220px;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(23,107,155,.12), transparent 68%);
  content: "";
  pointer-events: none;
}
.hero__grid { min-height: min(720px, calc(100vh - 119px)); display: grid; grid-template-columns: minmax(0, 1.03fr) minmax(410px, .97fr); align-items: center; gap: clamp(34px, 6vw, 94px); padding-block: clamp(54px, 6vw, 86px); }
.hero__copy { position: relative; z-index: 2; min-width: 0; max-width: 720px; }
.hero__copy h1 { max-width: 15ch; margin: 20px 0 24px; font-size: clamp(3rem, 5vw, 4.35rem); }
.hero__copy .lead { max-width: 57ch; margin-bottom: 28px; }
.hero__proof { display: flex; flex-wrap: wrap; gap: 12px 22px; padding: 0; margin: 28px 0 0; list-style: none; color: #3d5970; font-size: .91rem; font-weight: 700; }
.hero__proof li { display: flex; align-items: center; gap: 8px; }
.hero__proof li::before { width: 9px; height: 9px; flex: 0 0 auto; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 0 4px rgba(246,201,69,.2); content: ""; }
.hero__media { position: relative; z-index: 1; min-width: 0; }
.hero__media::before { position: absolute; inset: 12% -8% -8% 14%; border-radius: 44px; background: var(--navy); content: ""; transform: rotate(3deg); }
.hero__media img { position: relative; width: 100%; aspect-ratio: 1.08 / 1; object-fit: cover; border-radius: 36px; box-shadow: var(--shadow); }
.hero-float {
  position: absolute;
  right: -18px;
  bottom: 28px;
  z-index: 2;
  max-width: 235px;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 16px;
  color: var(--navy);
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow-sm);
  font-size: .86rem;
  font-weight: 800;
  backdrop-filter: blur(8px);
}
.hero-float strong { display: block; margin-bottom: 3px; color: var(--orange-hover); font-size: 1rem; }

.product-hero { background: linear-gradient(155deg, #f8fbfd, var(--blue-soft)); }
.product-hero__grid { min-height: 610px; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(30px, 6vw, 90px); padding: clamp(54px, 8vw, 100px) 0; }
.product-hero h1 { max-width: 13ch; margin: 16px 0 22px; font-size: clamp(2.55rem, 5.2vw, 4.9rem); }
.product-hero .lead { max-width: 58ch; }
.product-stage {
  position: relative;
  min-height: 470px;
  display: grid;
  place-items: center;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 42px;
  background: radial-gradient(circle at 50% 38%, #fff 0, #f4f9fc 55%, #dcebf3 100%);
  box-shadow: var(--shadow);
}
.product-stage::after { position: absolute; right: 10%; bottom: 9%; left: 10%; height: 24px; border-radius: 50%; background: rgba(11,43,79,.14); filter: blur(13px); content: ""; }
.product-stage img { position: relative; z-index: 1; width: min(100%, 670px); max-height: 430px; object-fit: contain; }
.stage-badge { position: absolute; top: 18px; left: 18px; z-index: 2; }

.breadcrumb { padding: 18px 0 0; color: var(--muted); font-size: .82rem; }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 7px; padding: 0; margin: 0; list-style: none; }
.breadcrumb li:not(:last-child)::after { margin-left: 7px; color: #9bb0c1; content: "/"; }
.breadcrumb a { color: var(--navy-2); font-weight: 750; }

/* Trust and brand */
.brand-statement { padding: clamp(38px, 5vw, 62px) 0; color: #fff; background: var(--navy); }
.brand-statement__inner { display: grid; grid-template-columns: minmax(250px, 390px) 1fr; align-items: center; gap: clamp(30px, 7vw, 100px); }
.brand-statement__wordmark img { width: 100%; }
.brand-statement__copy { margin: 0; color: #d6e4ef; font-size: clamp(1.12rem, 2.2vw, 1.52rem); line-height: 1.45; }
.brand-statement__copy strong { color: #fff; }

.trust-row { display: grid; grid-template-columns: repeat(4, 1fr); border-block: 1px solid var(--line); background: #fff; }
.trust-item { position: relative; min-height: 104px; display: flex; align-items: center; gap: 14px; padding: 22px clamp(16px, 3vw, 34px); }
.trust-item + .trust-item { border-left: 1px solid var(--line); }
.trust-icon { width: 42px; height: 42px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 13px; color: var(--navy); background: var(--yellow-soft); font-size: 1.12rem; font-weight: 900; line-height: 1; text-align: center; }
.trust-icon--metric { font-size: .84rem; letter-spacing: -.035em; }
.trust-item > div { min-width: 0; }
.trust-item strong { display: block; color: var(--ink-strong); font-size: .94rem; }
.trust-item > div > span { display: block; color: var(--muted); font-size: .78rem; line-height: 1.4; }

/* Model selection */
.models-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.model-card {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s ease;
}
.model-card:hover { transform: translateY(-6px); border-color: #b4cad9; box-shadow: var(--shadow); }
.model-card__top { min-height: 255px; display: grid; place-items: center; padding: 28px 20px 12px; background: linear-gradient(145deg, #fff, var(--blue-pale)); }
.model-card__top img { width: 100%; height: 225px; object-fit: contain; transition: transform .4s var(--ease); }
.model-card:hover .model-card__top img { transform: scale(1.025); }
.model-card__body { flex: 1; display: flex; flex-direction: column; padding: 26px; }
.model-card__kicker { margin-bottom: 10px; color: var(--blue); font-size: .76rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.model-card h3 { margin-bottom: 10px; font-size: clamp(1.45rem, 2.5vw, 2rem); }
.model-card__position { min-height: 52px; margin-bottom: 18px; color: var(--muted); }
.model-card__facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; padding: 0; margin: 0 0 24px; overflow: hidden; border: 1px solid var(--line); border-radius: 12px; background: var(--line); list-style: none; }
.model-card__facts li { padding: 11px 7px; text-align: center; background: #fff; }
.model-card__facts strong { display: block; color: var(--ink-strong); font-size: .88rem; line-height: 1.2; }
.model-card__facts span { display: block; margin-top: 3px; color: var(--muted); font-size: .68rem; line-height: 1.25; }
.model-card__actions { display: grid; gap: 9px; margin-top: auto; }

.choice-line { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: #fff; box-shadow: var(--shadow-sm); }
.choice-line__item { padding: clamp(24px, 4vw, 42px); }
.choice-line__item + .choice-line__item { border-left: 1px solid var(--line); }
.choice-line__number { display: inline-grid; width: 34px; height: 34px; place-items: center; margin-bottom: 18px; border-radius: 50%; color: var(--navy); background: var(--yellow); font-weight: 900; }
.choice-line h3 { margin-bottom: 8px; }
.choice-line p { margin: 0; color: var(--muted); }

/* Content layouts */
.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(34px, 7vw, 98px); }
.split--reverse .split__media { order: 2; }
.split__copy h2 { margin-bottom: 20px; }
.split__copy > p { color: var(--muted); }
.split__media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow); object-fit: cover; }
.split__media--technical img { aspect-ratio: 16 / 8; background: #e6e6e6; }
.check-list { display: grid; gap: 12px; padding: 0; margin: 24px 0; list-style: none; }
.check-list li { position: relative; padding-left: 30px; color: #29465f; }
.check-list li::before { position: absolute; top: .42em; left: 0; width: 17px; height: 17px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--success); content: "✓"; font-size: .68rem; font-weight: 900; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature { padding: 30px 0; border-top: 3px solid var(--line); }
.feature--orange { border-color: var(--orange); }
.feature--yellow { border-color: var(--yellow); }
.feature--blue { border-color: var(--blue); }
.feature h3 { margin-bottom: 10px; }
.feature p { margin-bottom: 0; color: var(--muted); }
.feature__metric { display: block; margin-bottom: 14px; color: var(--navy); font-size: 2rem; font-weight: 900; letter-spacing: -.04em; }
.technical-source { margin: 22px 0 0; font-size: .88rem; }

.spec-band { color: #fff; background: linear-gradient(110deg, var(--navy), #154d7e); }
.spec-band__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.spec-metric { min-height: 168px; display: flex; flex-direction: column; justify-content: center; padding: 28px clamp(18px, 3vw, 36px); }
.spec-metric + .spec-metric { border-left: 1px solid rgba(255,255,255,.16); }
.spec-metric strong { color: #fff; font-size: clamp(1.65rem, 3vw, 2.5rem); line-height: 1.1; letter-spacing: -.04em; }
.spec-metric span { margin-top: 8px; color: #bed1e2; font-size: .82rem; font-weight: 700; line-height: 1.4; }

.size-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.size-grid--five { grid-template-columns: repeat(5, 1fr); }
.size-card { padding: 25px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.size-card strong { display: block; color: var(--ink-strong); font-size: 1.6rem; letter-spacing: -.03em; }
.size-card span { display: block; margin: 4px 0 18px; color: var(--muted); font-size: .84rem; }
.size-card a { color: var(--navy-2); font-size: .88rem; font-weight: 800; }

.application-grid { display: grid; grid-template-columns: 1.25fr .75fr .75fr; grid-template-rows: repeat(2, minmax(170px, 1fr)); gap: 16px; }
.application { position: relative; min-height: 220px; display: flex; align-items: flex-end; padding: 25px; overflow: hidden; border-radius: 22px; color: #fff; background: var(--navy); }
.application:first-child { grid-row: 1 / 3; min-height: 456px; }
.application::before { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 12%, rgba(5,25,42,.86) 100%); content: ""; }
.application img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .86; transition: transform .5s var(--ease); }
.application:hover img { transform: scale(1.035); }
.application__copy { position: relative; z-index: 1; }
.application h3 { margin-bottom: 5px; color: #fff; }
.application p { margin: 0; color: #dce8f2; font-size: .86rem; }

.multiunit-callout {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid #c9dfe9;
  border-radius: var(--radius-lg);
  background: linear-gradient(125deg, #fff 0%, var(--blue-soft) 100%);
  box-shadow: var(--shadow-sm);
}
.multiunit-callout h2 { max-width: 17ch; margin-bottom: 12px; font-size: clamp(1.8rem, 3.4vw, 3rem); }
.multiunit-callout p { max-width: 70ch; margin: 0; color: var(--muted); }
.multiunit-callout__number { color: var(--navy); font-size: clamp(3rem, 8vw, 6.5rem); font-weight: 900; letter-spacing: -.08em; line-height: .8; white-space: nowrap; }
.multiunit-callout__number span { color: var(--orange); }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); counter-reset: steps; }
.step { position: relative; padding: 26px 30px 0 0; border-top: 1px solid #9fb8cc; counter-increment: steps; }
.step:not(:last-child)::after { position: absolute; top: -5px; right: 12px; width: 9px; height: 9px; border-radius: 50%; background: var(--orange); content: ""; }
.step::before { display: block; margin-bottom: 16px; color: var(--orange-hover); content: "0" counter(steps); font-size: .78rem; font-weight: 900; letter-spacing: .12em; }
.step h3 { margin-bottom: 8px; font-size: 1.15rem; }
.step p { margin: 0; color: var(--muted); font-size: .9rem; }

/* Comparison */
.comparison-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: var(--shadow-sm); }
.comparison-table { width: 100%; min-width: 760px; border-collapse: collapse; }
.comparison-table th, .comparison-table td { padding: 18px 20px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
.comparison-table thead th { color: #fff; background: var(--navy); }
.comparison-table thead th:first-child { width: 20%; }
.comparison-table tbody th { color: var(--ink-strong); background: var(--off-white); font-size: .86rem; }
.comparison-table tbody td { color: #3d5970; }
.comparison-table tr:last-child th, .comparison-table tr:last-child td { border-bottom: 0; }
.comparison-table strong { color: var(--ink-strong); }
.comparison-note { margin-top: 16px; color: var(--muted); font-size: .82rem; }
.scroll-cue { display: none; }

.decision-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.decision-item { padding: 28px; border-radius: 20px; background: var(--off-white); }
.decision-item h3 { margin-bottom: 8px; }
.decision-item p { color: var(--muted); }
.decision-item a { color: var(--orange-hover); font-weight: 800; }

/* FAQ */
.faq-list { display: grid; gap: 12px; }
.faq-item { overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.faq-item summary { position: relative; padding: 22px 58px 22px 22px; color: var(--ink-strong); cursor: pointer; font-weight: 800; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { position: absolute; top: 50%; right: 22px; width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; color: var(--navy); background: var(--blue-soft); content: "+"; transform: translateY(-50%); transition: transform .2s ease, background-color .2s ease; }
.faq-item[open] summary::after { color: #fff; background: var(--navy); content: "−"; transform: translateY(-50%) rotate(180deg); }
.faq-item__answer { padding: 0 22px 23px; color: var(--muted); }
.faq-item__answer p:last-child { margin-bottom: 0; }

.final-cta { position: relative; overflow: hidden; padding: clamp(52px, 8vw, 94px); border-radius: 34px; color: #fff; background: var(--navy); }
.final-cta::after { position: absolute; right: -80px; bottom: -180px; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle, rgba(246,201,69,.3), transparent 68%); content: ""; }
.final-cta__copy { position: relative; z-index: 1; max-width: 800px; }
.final-cta h2 { max-width: 17ch; margin-bottom: 16px; color: #fff; }
.final-cta p { max-width: 62ch; color: #c9d8e5; }

/* Personalisation */
.photo-hero { position: relative; min-height: 650px; display: flex; align-items: flex-end; overflow: hidden; color: #fff; background: var(--navy); }
.photo-hero__image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.photo-hero::after { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,25,43,.94) 0%, rgba(5,25,43,.72) 48%, rgba(5,25,43,.12) 100%), linear-gradient(0deg, rgba(5,25,43,.58), transparent 50%); content: ""; }
.photo-hero__copy { position: relative; z-index: 1; max-width: 730px; padding: clamp(74px, 10vw, 132px) 0; }
.photo-hero h1 { max-width: 12ch; margin: 18px 0 22px; color: #fff; }
.photo-hero .lead { color: #dce8f2; }
.personalisation-types { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.personalisation-type { overflow: hidden; border-radius: 24px; background: var(--off-white); }
.personalisation-type img { width: 100%; height: 290px; object-fit: cover; }
.personalisation-type__copy { padding: 28px; }
.personalisation-type p { color: var(--muted); }
.artwork-note { padding: clamp(30px, 5vw, 52px); border-left: 6px solid var(--orange); border-radius: 0 24px 24px 0; background: var(--orange-soft); }
.artwork-note h2 { font-size: clamp(1.65rem, 3vw, 2.6rem); }
.artwork-note p:last-child { margin-bottom: 0; }

/* Post-sale and legal */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-grid--four { grid-template-columns: repeat(4, 1fr); }
.service-item { padding: 30px; border: 1px solid var(--line); border-radius: 20px; background: #fff; }
.service-item__number { display: block; margin-bottom: 24px; color: var(--orange); font-size: .8rem; font-weight: 900; letter-spacing: .12em; }
.service-item p { color: var(--muted); }
.prose { color: #3d5970; }
.prose h1 { max-width: 15ch; margin-bottom: 26px; }
.prose h2 { margin-top: 48px; font-size: clamp(1.55rem, 3vw, 2.3rem); }
.prose h3 { margin-top: 30px; }
.prose a { color: var(--navy-2); font-weight: 700; }
.prose ul { padding-left: 22px; }

/* Contact form shell; technical markup and JS remain unchanged */
.budget-layout { display: grid; grid-template-columns: .72fr 1.28fr; align-items: start; gap: clamp(30px, 6vw, 80px); }
.budget-intro { position: sticky; top: 145px; }
.budget-intro h1 { font-size: clamp(2.6rem, 5vw, 4.8rem); }
.budget-intro .lead { margin-bottom: 24px; }
.budget-points { display: grid; gap: 12px; padding: 0; list-style: none; }
.budget-points li { display: flex; gap: 12px; color: #3d5970; }
.budget-points li::before { color: var(--success); content: "✓"; font-weight: 900; }
.cp-card { overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: #fff; box-shadow: var(--shadow); }
.cp-form__head { padding: 24px 26px; color: #fff; background: var(--navy); }
.cp-form__head h2, .cp-form__head h3 { margin: 0 0 4px; color: #fff; }
.cp-form__head p { margin: 0; color: #cfdeea; font-size: .86rem; }
.cp-form { padding: 26px; }
.cp-form--twocol { display: grid; grid-template-columns: 1fr; gap: 26px; }
.cp-blocktitle { margin: 0 0 12px; color: var(--navy); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; }
.cp-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 14px; }
.cp-grid .span-4 { grid-column: span 6; }
.cp-field { display: flex; flex-direction: column; margin-bottom: 14px; }
.cp-label { margin-bottom: 6px; color: #29465f; font-size: .82rem; font-weight: 750; }
.cp-input, .cp-select, .cp-textarea, .cp-file {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  border: 1px solid #cddae4;
  border-radius: 10px;
  color: var(--ink);
  background: #fff;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.cp-input:focus, .cp-select:focus, .cp-textarea:focus, .cp-file:focus { outline: 0; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(23,107,155,.14); }
.cp-textarea { min-height: 120px; resize: vertical; }
.cp-sizegroup { display: flex; flex-wrap: wrap; gap: 8px; }
.cp-size { position: relative; }
.cp-size input { position: absolute; opacity: 0; }
.cp-size span { display: inline-flex; min-width: 92px; min-height: 44px; align-items: center; justify-content: center; padding: 8px 13px; border: 1px solid #cddae4; border-radius: 10px; cursor: pointer; background: #fff; font-size: .85rem; font-weight: 800; }
.cp-size input:focus-visible + span { outline: 3px solid #fff; outline-offset: 2px; box-shadow: 0 0 0 5px var(--navy); }
.cp-size input:checked + span { color: #fff; border-color: var(--navy); background: var(--navy); }
.cp-swatches { display: flex; flex-wrap: wrap; gap: 11px; }
.cp-swatch { width: 34px; height: 34px; padding: 0; border: 3px solid #fff; border-radius: 50%; cursor: pointer; background: var(--c); box-shadow: 0 0 0 1px #9fb1c0; }
.cp-swatch.is-active { box-shadow: 0 0 0 3px var(--orange); }
.cp-help { margin-top: 7px; color: var(--muted); font-size: .75rem; }
.cp-consent { margin: 10px 0 16px; }
.cp-consent__box { display: flex; align-items: flex-start; gap: 10px; padding: 14px; border: 1px solid #f0ce7a; border-radius: 12px; background: var(--yellow-soft); }
.cp-consent__box input { width: 19px; height: 19px; flex: 0 0 auto; margin-top: 3px; accent-color: var(--success); }
.cp-consent__content { color: #3d5970; font-size: .82rem; }
.cp-consent__badge { display: inline-block; padding: 2px 6px; margin-right: 4px; border-radius: 999px; color: #6e4b00; background: #ffe69c; font-size: .67rem; font-weight: 900; }
.cp-legal { color: var(--navy-2); font-weight: 800; }
.cp-btn { width: 100%; min-height: 54px; padding: 13px 18px; border: 0; border-radius: 12px; color: #fff; cursor: pointer; background: var(--orange); box-shadow: 0 10px 24px rgba(217,93,8,.24); font-weight: 850; transition: background-color .2s ease, transform .2s ease; }
.cp-btn:hover { background: var(--orange-hover); transform: translateY(-1px); }
.cp-btn:disabled { cursor: wait; opacity: .65; }
.cp-footnote { margin: 9px 0 0; color: var(--muted); text-align: center; font-size: .76rem; }
.msg { margin-top: 14px; padding: 12px; border-radius: 10px; background: var(--off-white); text-align: center; font-weight: 800; }
.msg:empty { display: none; }

/* Footer */
.site-footer { padding-top: clamp(58px, 8vw, 92px); color: #c8d7e4; background: #071e34; }
.footer-grid { display: grid; grid-template-columns: 1.65fr repeat(3, 1fr); gap: clamp(30px, 5vw, 68px); }
.footer-brand > a { display: block; width: min(100%, 380px); }
.footer-brand p { max-width: 42ch; margin: 20px 0; color: #b5c8d8; }
.footer-signatures { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; }
.footer-signatures a { display: inline-flex; }
.footer-signatures img { max-height: 31px; width: auto; opacity: .9; }
.footer-title { margin: 7px 0 18px; color: #fff; font-size: .86rem; letter-spacing: .1em; text-transform: uppercase; }
.footer-links { display: grid; gap: 10px; padding: 0; margin: 0; list-style: none; }
.footer-links a, .footer-cookie-link { color: #c8d7e4; font-size: .88rem; text-decoration: none; }
.footer-cookie-link { padding: 0; border: 0; cursor: pointer; background: none; font-family: inherit; text-align: left; }
.footer-links a:hover, .footer-cookie-link:hover { color: var(--yellow); }
.footer-bottom { min-height: 78px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px; margin-top: 58px; border-top: 1px solid var(--line-dark); color: #8fa8bb; font-size: .76rem; }
.footer-bottom p { margin: 0; }
.footer-bottom p:last-child { text-align: right; }
.footer-sombralia { display: inline-flex; justify-self: center; }
.footer-sombralia img { display: block; width: auto; max-height: 39px; opacity: .9; }

.mobile-buybar { display: none; }

/* Floating return-to-top control */
.scroll-top {
  position: fixed;
  z-index: 120;
  right: clamp(16px, 2.2vw, 30px);
  bottom: clamp(16px, 2.2vw, 30px);
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(247, 144, 61, .72);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  background: rgba(11, 43, 79, .96);
  box-shadow: 0 14px 36px rgba(7, 30, 52, .28);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(14px) scale(.92);
  transition: opacity .22s ease, visibility .22s ease, transform .22s var(--ease), background-color .18s ease, border-color .18s ease;
}
.scroll-top.is-visible { opacity: 1; visibility: visible; pointer-events: auto; transform: none; }
.scroll-top:hover { color: #fff; background: var(--orange); border-color: var(--orange); }
.scroll-top:active { transform: scale(.94); }
.scroll-top svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }

/* Local cookie consent, based on the Parasoles.com implementation */
.cookie-banner {
  position: fixed;
  z-index: 250;
  bottom: 20px;
  left: 50%;
  width: min(1120px, calc(100% - 40px));
  border: 2px solid rgba(247, 144, 61, .78);
  border-radius: 20px;
  color: #fff;
  background: rgba(7, 30, 52, .985);
  box-shadow: 0 24px 80px rgba(7, 30, 52, .42);
  opacity: 0;
  transform: translate(-50%, 20px);
  transition: opacity .26s ease, transform .26s ease;
}
.cookie-banner[hidden] { display: none; }
.cookie-banner.is-visible { opacity: 1; transform: translate(-50%, 0); }
.cookie-inner { min-width: 0; display: grid; grid-template-columns: minmax(0, 1fr) minmax(210px, 235px); align-items: end; gap: clamp(24px, 5vw, 64px); padding: clamp(22px, 3vw, 34px); }
.cookie-copy { min-width: 0; max-width: 690px; overflow-wrap: anywhere; }
.cookie-kicker { margin: 0 0 8px; color: var(--orange); font-size: .7rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.cookie-copy h2 { margin: 0 0 10px; color: #fff; font-size: clamp(1.35rem, 2.2vw, 1.95rem); line-height: 1.05; }
.cookie-copy > p:not(.cookie-kicker) { margin: 0; color: #c8d7e4; font-size: .84rem; line-height: 1.6; }
.cookie-more { display: inline-block; margin-top: 10px; padding: 0; border: 0; color: #fff; cursor: pointer; background: none; font-size: .76rem; font-weight: 750; text-decoration: underline; text-decoration-color: var(--orange); text-underline-offset: 3px; }
.cookie-actions { min-width: 0; display: grid; gap: 8px; }
.cookie-button { min-height: 45px; margin: 0; padding: 10px 17px; border: 1px solid rgba(255, 255, 255, .34); border-radius: 999px; color: #fff; cursor: pointer; background: transparent; font-size: .78rem; font-weight: 800; line-height: 1.2; transition: border-color .18s ease, background-color .18s ease, color .18s ease; }
.cookie-button:hover { border-color: #fff; background: rgba(255, 255, 255, .1); }
.cookie-accept { border-color: var(--orange); background: var(--orange); }
.cookie-accept:hover { border-color: var(--orange-hover); background: var(--orange-hover); }
.cookie-necessary { border-color: #69b2d7; background: #2d85b6; }
.cookie-necessary:hover { border-color: #8ac9e7; background: #3896c5; }
.cookie-reject { color: #e7eff6; border-color: rgba(255, 255, 255, .42); }
.cookie-reject:hover { border-color: var(--orange); background: rgba(247, 144, 61, .12); }
.cookie-button:focus-visible, .cookie-more:focus-visible { outline-color: var(--orange); }

.privacy-dialog { width: min(640px, calc(100% - 30px)); max-height: calc(100svh - 30px); margin: auto; padding: 0; overflow: visible; border: 1px solid var(--line); border-radius: 22px; color: var(--ink); background: #fff; box-shadow: 0 28px 90px rgba(7, 30, 52, .34); }
.privacy-dialog::backdrop { background: rgba(7, 30, 52, .72); backdrop-filter: blur(4px); }
.privacy-dialog__panel { position: relative; padding: clamp(28px, 5vw, 46px); }
.privacy-dialog__kicker { margin: 0 0 10px; color: var(--orange); font-size: .72rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.privacy-dialog h2 { margin: 0 42px 18px 0; color: var(--ink-strong); font-size: clamp(1.7rem, 4vw, 2.7rem); }
.privacy-dialog p:not(.privacy-dialog__kicker) { color: var(--muted); }
.privacy-dialog__close { position: absolute; top: 18px; right: 18px; width: 40px; height: 40px; display: grid; place-items: center; padding: 0 0 3px; border: 1px solid var(--line); border-radius: 50%; color: var(--navy); cursor: pointer; background: var(--off-white); font-size: 1.7rem; line-height: 1; }
.privacy-dialog__close:hover { color: #fff; border-color: var(--orange); background: var(--orange); }

.reveal { opacity: 1; transform: none; transition: opacity .65s var(--ease), transform .65s var(--ease); }
.reveal.is-pending { opacity: 0; transform: translateY(18px); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1240px) {
  :root { --header-height: 76px; }
  .site-header { backdrop-filter: none; }
  .site-ribbon { display: none; }
  .header-main { min-height: var(--header-height); }
  .site-brand { width: min(300px, 60vw); }
  .menu-toggle {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-left: auto;
    padding: 9px 11px;
    border: 1px solid var(--line);
    border-radius: 10px;
    color: var(--navy);
    cursor: pointer;
    background: #fff;
    font-size: .8rem;
    font-weight: 800;
  }
  .menu-toggle__lines { width: 20px; display: grid; gap: 4px; }
  .menu-toggle__lines i { height: 2px; border-radius: 4px; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
  .menu-toggle[aria-expanded="true"] .menu-toggle__lines i:first-child { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] .menu-toggle__lines i:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] .menu-toggle__lines i:last-child { transform: translateY(-6px) rotate(-45deg); }
  .primary-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    height: calc(100dvh - var(--header-height));
    padding: 18px 20px 34px;
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    background: #fff;
    transform: translateY(-10px);
    transition: opacity .2s ease, transform .25s var(--ease), visibility .2s;
  }
  .primary-nav.is-open { visibility: visible; opacity: 1; transform: none; }
  .nav-list { display: block; }
  .nav-item { border-bottom: 1px solid var(--line); }
  .nav-link { width: 100%; min-height: 55px; padding: 0 4px; border-radius: 0; font-size: 1rem; }
  .nav-link::after { right: auto; bottom: 8px; left: 4px; width: 42px; }
  .nav-model-row .nav-link { flex: 1; }
  .submenu-toggle { width: 48px; height: 48px; margin: 0; background: var(--blue-pale); }
  .models-submenu {
    position: static;
    width: 100%;
    max-height: 0;
    padding: 0 0 0 14px;
    overflow: hidden;
    visibility: hidden;
    opacity: 1;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    transform: none;
    transition: max-height .3s var(--ease), padding .3s ease;
  }
  .nav-item--models:hover .models-submenu, .nav-item--models:focus-within .models-submenu { max-height: 0; padding-block: 0; visibility: hidden; }
  .nav-item--models.is-open .models-submenu { max-height: 230px; padding-block: 6px 12px; visibility: visible; }
  .models-submenu a { padding: 12px 11px; font-size: 1rem; }
  .nav-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 22px; }
  .nav-actions .button { min-height: 50px; }
}

@media (max-width: 980px) {
  .hero__grid, .product-hero__grid { min-height: 0; grid-template-columns: 1fr; }
  .hero__grid { padding-block: 64px 84px; }
  .hero__copy h1, .product-hero h1 { max-width: 15ch; }
  .hero__media { width: min(100%, 680px); margin-inline: auto; }
  .hero-float { right: 18px; }
  .product-stage { min-height: 400px; }
  .brand-statement__inner { grid-template-columns: 1fr; gap: 25px; }
  .brand-statement__wordmark { max-width: 390px; }
  .trust-row { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .trust-item:nth-child(4) { border-top: 1px solid var(--line); }
  .models-grid { grid-template-columns: 1fr; }
  .model-card { display: grid; grid-template-columns: .85fr 1.15fr; }
  .model-card__top { min-height: 100%; }
  .model-card__top img { height: 280px; }
  .choice-line { grid-template-columns: 1fr; }
  .choice-line__item + .choice-line__item { border-top: 1px solid var(--line); border-left: 0; }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .feature-grid, .decision-grid, .service-grid { grid-template-columns: 1fr 1fr; }
  .spec-band__grid { grid-template-columns: 1fr 1fr; }
  .spec-metric:nth-child(3) { border-left: 0; border-top: 1px solid rgba(255,255,255,.16); }
  .spec-metric:nth-child(4) { border-top: 1px solid rgba(255,255,255,.16); }
  .size-grid--five { grid-template-columns: repeat(3, 1fr); }
  .application-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .application:first-child { grid-row: auto; grid-column: 1 / -1; min-height: 370px; }
  .multiunit-callout { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; gap: 35px 20px; }
  .personalisation-types { grid-template-columns: 1fr; }
  .budget-layout { grid-template-columns: 1fr; }
  .budget-intro { position: static; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  body { font-size: 16px; }
  .shell, .shell--narrow, .shell--wide { width: min(100% - 28px, var(--shell)); }
  .section { padding-block: 60px; }
  .site-brand { width: 245px; }
  .menu-toggle__label { display: none; }
  .menu-toggle { width: 44px; height: 42px; justify-content: center; padding: 0; }
  .primary-nav { padding-inline: 14px; }
  .nav-actions { grid-template-columns: 1fr; }
  .hero__grid { padding-top: 48px; }
  .hero__copy h1 { font-size: clamp(2.55rem, 13vw, 4rem); }
  .button-row { align-items: stretch; }
  .button-row .button { width: 100%; }
  .hero__proof { display: grid; gap: 10px; }
  .hero__media::before { inset: 10% -3% -5% 10%; border-radius: 25px; }
  .hero__media img { border-radius: 24px; }
  .hero-float { position: relative; right: auto; bottom: auto; max-width: none; margin: -26px 12px 0; }
  .product-stage { min-height: 300px; padding: 16px; border-radius: 25px; }
  .product-stage img { max-height: 280px; }
  .brand-statement__wordmark { max-width: 300px; }
  .trust-row { grid-template-columns: 1fr; }
  .trust-item + .trust-item { border-top: 1px solid var(--line); border-left: 0; }
  .model-card { display: flex; }
  .model-card__top { min-height: 230px; }
  .model-card__top img { height: 210px; }
  .model-card__body { padding: 23px 20px; }
  .model-card__position { min-height: 0; }
  .feature-grid, .decision-grid, .service-grid { grid-template-columns: 1fr; }
  .spec-band__grid { grid-template-columns: 1fr 1fr; }
  .spec-metric { min-height: 135px; padding: 22px 16px; }
  .size-grid, .size-grid--five { grid-template-columns: 1fr 1fr; }
  .application-grid { grid-template-columns: 1fr; }
  .application:first-child { grid-column: auto; min-height: 310px; }
  .application { min-height: 220px; }
  .scroll-cue { display: flex; align-items: center; justify-content: flex-end; gap: 9px; margin: -18px 0 10px; color: var(--navy-2); font-size: .82rem; font-weight: 850; }
  .scroll-cue span { color: var(--orange-hover); font-size: 1.15rem; }
  .comparison-table thead th:first-child, .comparison-table tbody th { position: sticky; left: 0; z-index: 2; box-shadow: 8px 0 16px rgba(11,43,79,.06); }
  .comparison-table thead th:first-child { z-index: 3; }
  .multiunit-callout__number { font-size: 4rem; }
  .steps { grid-template-columns: 1fr; gap: 30px; }
  .step { padding-right: 0; }
  .photo-hero { min-height: 610px; }
  .photo-hero::after { background: linear-gradient(0deg, rgba(5,25,43,.96) 0%, rgba(5,25,43,.72) 62%, rgba(5,25,43,.18) 100%); }
  .photo-hero__copy { padding-top: 220px; }
  .personalisation-type img { height: 230px; }
  .cp-form { padding: 18px 15px; }
  .cp-form__head { padding: 20px 17px; }
  .cp-grid .span-4 { grid-column: span 12; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { min-height: 100px; grid-template-columns: 1fr; justify-items: start; gap: 8px; }
  .footer-bottom p:last-child { text-align: left; }
  .footer-sombralia { justify-self: start; }
  .mobile-buybar {
    position: fixed;
    z-index: 80;
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 9px 9px 9px 15px;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 15px;
    color: #fff;
    background: rgba(7,30,52,.96);
    box-shadow: 0 12px 40px rgba(0,0,0,.28);
    backdrop-filter: blur(12px);
  }
  .mobile-buybar span { font-size: .77rem; font-weight: 800; }
  .mobile-buybar .button { min-height: 42px; padding: 9px 13px; font-size: .78rem; }
  body.has-buybar .site-footer { padding-bottom: 90px; }
  .scroll-top { width: 50px; height: 50px; right: 14px; bottom: 14px; }
  body.has-buybar .scroll-top { bottom: 80px; }
  .cookie-banner { bottom: 10px; width: calc(100% - 20px); max-height: calc(100svh - 20px); overflow-y: auto; border-radius: 17px; }
  .cookie-inner { grid-template-columns: 1fr; gap: 17px; padding: 20px 17px; }
  .cookie-copy > p:not(.cookie-kicker) { font-size: .8rem; }
}

@media (max-width: 430px) {
  .model-card__facts { grid-template-columns: 1fr; }
  .model-card__facts li { display: flex; align-items: center; justify-content: space-between; text-align: left; }
  .size-grid, .size-grid--five { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .site-footer, .mobile-buybar, .button-row, .scroll-top, .cookie-banner, .privacy-dialog { display: none !important; }
  body { color: #000; background: #fff; }
  .section { padding: 24px 0; }
}
