/* Marex Australia editorial design system */
:root {
  --deep: #0e1224;
  --deep-soft: #151b31;
  --sea: #9c855d;
  --sea-bright: #bda67b;
  --snow: #ffffff;
  --cloud: #f3f3f1;
  --warm: #ebeae6;
  --ink: #161c2b;
  --mist: #5f6674;
  --line: rgba(14, 18, 36, .14);
  --line-light: rgba(255, 255, 255, .2);
  --focus: #d9c69e;
  --display: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", sans-serif;
  --content-max: 1380px;
  --reading-max: 760px;
  --page-x: clamp(22px, 4.8vw, 72px);
  --section-y: 96px;
  --header-height: 88px;
  --card-radius: 20px;
  --small-radius: 8px;
  --ease: cubic-bezier(.22, .68, .22, 1);
}

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

html { overflow-x: clip; scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--snow);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.is-locked { overflow: hidden; }

[hidden] { display: none !important; }

img,
video,
iframe { display: block; max-width: 100%; }

img { height: auto; }

a { color: inherit; }

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

button { touch-action: manipulation; }

h1,
h2,
h3,
h4,
p,
figure,
blockquote { margin: 0; }

h1,
h2,
h3,
h4 {
  color: var(--deep);
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1.08;
}

h1 { font-size: clamp(3.4rem, 5.3vw, 5rem); }
h2 { font-size: clamp(2.35rem, 3.3vw, 3rem); }
h3 { font-size: clamp(1.35rem, 1.8vw, 1.75rem); }

p { max-width: 66ch; color: var(--mist); }

address { font-style: normal; }

main,
section[id] { scroll-margin-top: calc(var(--header-height) + 66px); }

.shell {
  width: min(var(--content-max), calc(100% - (var(--page-x) * 2)));
  margin-inline: auto;
}

.narrow-centre {
  width: min(var(--reading-max), 100%);
  margin-inline: auto;
  text-align: center;
}

.narrow-centre > * { margin-inline: auto; }

.visually-hidden,
.hp-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

:where(a, button, input, textarea, select, summary, [tabindex]):focus-visible {
  outline: 3px solid var(--sea-bright);
  outline-offset: 4px;
}

.image-hero :focus-visible,
.enquiry-band :focus-visible,
.site-footer :focus-visible,
.video-section :focus-visible,
.gallery-modal :focus-visible,
.mobile-nav :focus-visible { outline-color: var(--focus); }

.skip-link {
  position: fixed;
  z-index: 300;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  border-radius: 4px;
  background: var(--snow);
  color: var(--deep);
  font-size: .75rem;
  font-weight: 600;
  transform: translateY(-180%);
  transition: transform .2s ease;
}

.skip-link:focus { transform: translateY(0); }

.section { padding-block: var(--section-y); }
.section-cloud { background: var(--cloud); }
.dark-section { background: var(--deep); color: var(--snow); }
.dark-section h2,
.dark-section h3 { color: var(--snow); }
.dark-section p { color: rgba(255, 255, 255, .7); }

.section-head {
  display: grid;
  gap: 22px;
  max-width: 850px;
  margin-bottom: clamp(46px, 6vw, 84px);
}

.section-head h2 { max-width: 15ch; }
.section-head p { max-width: 62ch; font-size: clamp(1rem, 1.4vw, 1.18rem); }
.section-head-light h2 { color: var(--snow); }
.section-head-light p { color: rgba(255, 255, 255, .7); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  color: var(--sea);
  font-family: var(--display);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .21em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 1px;
  background: currentColor;
  content: "";
}

.eyebrow-light { color: #bdd7fa; }

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .72s var(--ease), transform .72s var(--ease);
}

[data-reveal].is-visible { opacity: 1; transform: none; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 25px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-family: var(--display);
  font-size: .69rem;
  font-weight: 600;
  letter-spacing: .16em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--deep); border-color: var(--deep); color: var(--snow); }
.button-primary:hover { background: var(--sea); border-color: var(--sea); }
.button-secondary { border-color: rgba(14, 18, 36, .4); color: var(--deep); }
.button-secondary:hover { background: var(--deep); border-color: var(--deep); color: var(--snow); }
.button-outline-dark { border-color: var(--line-light); color: var(--snow); }
.button-outline-dark:hover { background: var(--snow); color: var(--deep); }
.image-hero .button-primary,
.enquiry-band .button-primary { background: var(--snow); border-color: var(--snow); color: var(--deep); }
.image-hero .button-primary:hover,
.enquiry-band .button-primary:hover { background: var(--sea-bright); border-color: var(--sea-bright); color: var(--snow); }
.image-hero .button-secondary,
.enquiry-band .button-secondary { border-color: rgba(255, 255, 255, .55); color: var(--snow); }
.image-hero .button-secondary:hover,
.enquiry-band .button-secondary:hover { background: var(--snow); color: var(--deep); }

.inline-actions,
.hero-actions,
.form-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--deep);
  font-family: var(--display);
  font-size: .71rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link::after { content: "→"; transition: transform .2s ease; }
.text-link:hover::after { transform: translateX(5px); }
.text-link-muted { color: rgba(255, 255, 255, .72); }

/* Header and navigation */
.site-header {
  position: fixed;
  z-index: 120;
  inset: 0 0 auto;
  height: var(--header-height);
  color: var(--snow);
  background: linear-gradient(to bottom, rgba(5, 8, 18, .66), rgba(5, 8, 18, 0));
  border-bottom: 1px solid transparent;
  transition: color .3s ease, background .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.site-header.is-solid,
.plain-header .site-header {
  background: rgba(255, 255, 255, .97);
  border-color: var(--line);
  box-shadow: 0 10px 35px rgba(14, 18, 36, .05);
  color: var(--deep);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  width: min(1480px, calc(100% - (var(--page-x) * 2)));
  height: 100%;
  margin-inline: auto;
}

.desktop-nav { display: flex; align-items: center; gap: clamp(20px, 2.3vw, 38px); }
.desktop-nav-left { justify-content: flex-start; }
.desktop-nav-right { justify-content: flex-end; }
.desktop-nav a {
  position: relative;
  color: inherit;
  font-family: var(--display);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .17em;
  text-decoration: none;
  text-transform: uppercase;
}

.desktop-nav a:not(.header-enquire)::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after { transform: scaleX(1); }

.site-logo { display: inline-flex; align-items: center; justify-content: center; width: 152px; }
.site-logo img { width: 100%; max-height: 40px; object-fit: contain; filter: brightness(0) invert(1); }
.site-header.is-solid .site-logo img,
.plain-header .site-logo img { filter: brightness(0); }

.header-enquire {
  min-height: 42px;
  padding: 13px 18px;
  border: 1px solid currentColor;
}

.header-enquire:hover { background: var(--snow); border-color: var(--snow); color: var(--deep); }
.site-header.is-solid .header-enquire,
.plain-header .header-enquire { background: var(--deep); border-color: var(--deep); color: var(--snow); }

.menu-button,
.mobile-contact { display: none; }

.mobile-nav {
  position: fixed;
  z-index: 110;
  inset: var(--header-height) 0 0;
  display: grid;
  align-content: center;
  gap: 0;
  padding: 36px var(--page-x) 64px;
  overflow-y: auto;
  background: var(--deep);
  color: var(--snow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-14px);
  visibility: hidden;
  transition: opacity .28s ease, transform .28s ease, visibility 0s linear .28s;
}

.mobile-nav.is-open { opacity: 1; pointer-events: auto; transform: none; visibility: visible; transition-delay: 0s; }
.mobile-nav a {
  padding: 17px 0;
  border-bottom: 1px solid var(--line-light);
  font-family: var(--display);
  font-size: clamp(1.7rem, 7vw, 2.7rem);
  font-weight: 400;
  letter-spacing: -.025em;
  line-height: 1.1;
  text-decoration: none;
}

/* Cinematic heroes */
.image-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 86svh;
  overflow: hidden;
  background: var(--deep);
  color: var(--snow);
  isolation: isolate;
}

.home-hero { min-height: 100svh; }
.about-page .page-hero > video { transform: scale(1.28); }
.image-hero > img,
.image-hero > video {
  position: absolute;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 10, 22, .74) 0%, rgba(6, 10, 22, .24) 58%, rgba(6, 10, 22, .05) 100%),
    linear-gradient(0deg, rgba(6, 10, 22, .65) 0%, transparent 58%);
}

.hero-copy {
  display: grid;
  gap: clamp(18px, 2.2vw, 28px);
  padding-bottom: clamp(68px, 10vh, 116px);
}

.hero-copy h1 { max-width: 11ch; color: var(--snow); }
.hero-copy p { max-width: 54ch; color: rgba(255, 255, 255, .82); font-size: clamp(1.05rem, 1.5vw, 1.3rem); }
.hero-actions { padding-top: 8px; }
.video-toggle {
  position: absolute;
  right: var(--page-x);
  bottom: 42px;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, .58);
  border-radius: 50%;
  background: rgba(6, 10, 22, .18);
  color: var(--snow);
  cursor: pointer;
}

.page-hero { min-height: 78svh; }
.model-hero { min-height: 88svh; }
.awards-hero { min-height: 74svh; }

/* Homepage */
.model-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 30px);
}

.model-card {
  position: relative;
  grid-column: span 4;
  display: flex;
  align-items: flex-end;
  min-height: 470px;
  overflow: hidden;
  border-radius: var(--card-radius);
  background: var(--deep);
  color: var(--snow);
  isolation: isolate;
  text-decoration: none;
}

.model-card-wide { grid-column: span 6; min-height: 620px; }
.model-card > img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}
.model-card::after {
  position: absolute;
  z-index: -1;
  inset: 34% 0 0;
  background: linear-gradient(to top, rgba(6, 10, 22, .88), transparent);
  content: "";
}
.model-card:hover > img { transform: scale(1.04); }
.model-card-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 18px;
  width: 100%;
  padding: clamp(24px, 3vw, 38px);
}
.model-card-copy > :first-child { display: grid; gap: 9px; }
.model-card-copy h3 { color: var(--snow); font-size: clamp(1.55rem, 2.4vw, 2.55rem); }
.model-card-copy small { max-width: 45ch; color: rgba(255, 255, 255, .72); font-size: .82rem; line-height: 1.55; }
.length-pill {
  display: grid;
  place-items: center;
  min-width: 64px;
  min-height: 42px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 999px;
  font-family: var(--display);
  font-size: .72rem;
  letter-spacing: .08em;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(54px, 8vw, 130px);
}
.split-layout-reverse > figure { order: -1; }
.split-layout > div { display: grid; gap: 24px; }
.split-layout h2 { max-width: 12ch; }
.split-layout p { font-size: clamp(1rem, 1.25vw, 1.13rem); }
.rounded-media {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  border-radius: var(--card-radius);
  background: var(--warm);
}
.rounded-media > picture { position: absolute; inset: 0; display: block; }
.rounded-media > img,
.rounded-media > picture > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.proof-list {
  display: grid;
  gap: 15px;
  padding: 6px 0 4px;
  margin: 0;
  list-style: none;
}
.proof-list li { position: relative; padding-left: 24px; color: var(--mist); }
.proof-list li::before { position: absolute; top: .78em; left: 0; width: 8px; height: 1px; background: var(--sea); content: ""; }

.recognition-section { background: var(--deep); color: var(--snow); }
.awgrid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px; }
.awcard {
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  gap: 9px;
  min-height: 278px;
  padding: 24px;
  border: 1px solid var(--line-light);
  border-radius: 14px;
  background: rgba(255, 255, 255, .04);
  text-decoration: none;
  transition: background .25s ease, transform .25s ease;
}
.awcard:hover { background: rgba(255, 255, 255, .09); transform: translateY(-4px); }
.awimg { display: grid; place-items: center; min-height: 112px; margin-bottom: 7px; border-radius: 8px; background: var(--snow); }
.awimg img { width: 86px; max-height: 86px; object-fit: contain; }
.awy { color: #9cc7ff; font-size: .69rem; font-weight: 600; letter-spacing: .16em; }
.awm { color: var(--snow); font-family: var(--display); font-size: .9rem; font-weight: 600; line-height: 1.35; }
.awc { color: rgba(255, 255, 255, .58); font-size: .76rem; line-height: 1.45; }
.award-more { display: flex; align-items: center; gap: 22px; margin-top: 34px; }
.award-more p { color: rgba(255, 255, 255, .58); font-size: .82rem; }

blockquote {
  padding: 26px 0 4px 34px;
  border-left: 1px solid var(--sea);
  color: var(--deep);
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.4vw, 2.2rem);
  font-weight: 400;
  line-height: 1.35;
}
blockquote cite { display: block; margin-top: 14px; color: var(--mist); font-family: var(--sans); font-size: .74rem; font-style: normal; font-weight: 400; letter-spacing: .12em; text-transform: uppercase; }

.contact-card {
  display: grid;
  gap: 13px;
  margin-top: 10px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--snow);
  box-shadow: 0 18px 60px rgba(14, 18, 36, .07);
}
.contact-card strong { font-family: var(--display); font-size: 1.2rem; }
.contact-card span { display: grid; color: var(--mist); font-size: .88rem; }
.contact-card b { margin-bottom: 2px; color: var(--deep); font-family: var(--display); font-size: .66rem; letter-spacing: .15em; text-transform: uppercase; }
.contact-card a { color: var(--deep); font-weight: 500; overflow-wrap: anywhere; text-decoration: none; }

#australia .split-layout > div { gap: 28px; }
#australia .eyebrow { font-size: .8rem; }
#australia h2 { max-width: 10ch; font-size: clamp(3.7rem, 6vw, 6.4rem); line-height: .92; }
#australia .australia-lead { color: #454d5c; font-size: clamp(1.08rem, 1.45vw, 1.28rem); line-height: 1.7; }
.australia-story-link { width: max-content; }

/* About */
.editorial-lead { max-width: 1120px; }
.editorial-lead > p {
  max-width: 39ch;
  margin: 28px 0 78px;
  color: var(--deep);
  font-family: var(--display);
  font-size: clamp(1.65rem, 3.1vw, 3.25rem);
  font-weight: 400;
  letter-spacing: -.03em;
  line-height: 1.3;
}
.timeline { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid var(--line); }
.timeline article { padding: 30px 26px 0 0; }
.timeline article + article { padding-left: 26px; border-left: 1px solid var(--line); }
.timeline time { color: var(--sea); font-family: var(--display); font-size: .72rem; font-weight: 600; letter-spacing: .15em; }
.timeline h2 { margin: 18px 0 12px; font-size: 1.35rem; }
.timeline p { font-size: .87rem; line-height: 1.62; }
.design-principle { padding: 24px 0 0 28px; border-left: 1px solid var(--sea); color: var(--deep); }
.principle-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; margin-top: 62px; background: var(--line-light); }
.principle-grid article { min-height: 300px; padding: clamp(30px, 4vw, 52px); background: var(--deep); }
.principle-grid h3 { margin-bottom: 20px; }

/* Awards */
.award-list { display: grid; gap: 16px; }
.award-row {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(24px, 4vw, 62px);
  min-height: 184px;
  padding: 28px clamp(28px, 4vw, 50px);
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--snow);
}
.award-mark { display: grid; place-items: center; width: 130px; height: 118px; border-radius: 10px; background: var(--cloud); }
.award-mark img { max-width: 88px; max-height: 88px; object-fit: contain; }
.award-mark > span { color: var(--sea); font-family: var(--display); font-size: 1.7rem; }
.award-copy { display: grid; gap: 10px; }
.award-copy h3 { font-size: clamp(1.45rem, 2.2vw, 2.2rem); }
.award-copy p { font-size: .88rem; }
.award-year { color: var(--sea); font-size: .68rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.award-actions { display: grid; justify-items: end; gap: 17px; }
.table-scroll { overflow-x: auto; border-radius: 12px; border: 1px solid var(--line); background: var(--snow); }
.recognition-table { width: 100%; min-width: 760px; border-collapse: collapse; }
.recognition-table th,
.recognition-table td { padding: 22px 24px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.recognition-table thead th { color: var(--mist); font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; }
.recognition-table tbody th { color: var(--sea); font-family: var(--display); }
.recognition-table a { color: var(--sea); }

/* Model detail */
.model-facts { background: var(--deep); color: var(--snow); }
.fact-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.fact-grid > div { min-height: 154px; padding: 36px 34px; border-right: 1px solid var(--line-light); }
.fact-grid > div:first-child { border-left: 1px solid var(--line-light); }
.fact-grid strong { display: block; margin-bottom: 10px; color: var(--snow); font-family: var(--display); font-size: clamp(1.25rem, 2vw, 1.8rem); font-weight: 400; }
.fact-grid span { color: rgba(255, 255, 255, .58); font-size: .72rem; letter-spacing: .11em; text-transform: uppercase; }

.jump-nav {
  position: sticky;
  z-index: 80;
  top: var(--header-height);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .96);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}
.jump-nav .shell { display: flex; align-items: center; justify-content: center; overflow-x: auto; scrollbar-width: none; }
.jump-nav a { flex: 0 0 auto; padding: 19px clamp(15px, 2vw, 28px); color: var(--mist); font-family: var(--display); font-size: .64rem; font-weight: 600; letter-spacing: .14em; text-decoration: none; text-transform: uppercase; }
.jump-nav a.is-current { color: var(--sea); box-shadow: inset 0 -2px var(--sea); }

.feature-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.feature-card { min-height: 230px; padding: 32px; border: 1px solid var(--line); border-radius: 14px; background: var(--snow); }
.feature-card h3 { margin-bottom: 18px; }
.feature-card p { font-size: .9rem; }

.gallery-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); grid-auto-rows: 270px; gap: 18px; }
.gallery-trigger {
  position: relative;
  grid-column: span 4;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 14px;
  background: var(--warm);
  cursor: zoom-in;
}
.gallery-trigger:nth-child(1),
.gallery-trigger:nth-child(7n) { grid-column: span 8; grid-row: span 2; }
.gallery-trigger:nth-child(5n) { grid-column: span 4; grid-row: span 2; }
.gallery-trigger img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.gallery-trigger:hover img { transform: scale(1.035); }
.gallery-more { margin-top: 28px; }

.gallery-modal {
  position: fixed;
  z-index: 400;
  inset: 0;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 72px;
  align-items: center;
  padding: 48px;
  background: rgba(4, 7, 15, .97);
  color: var(--snow);
}
.gallery-modal figure { display: grid; justify-items: center; gap: 14px; max-height: 88vh; }
.gallery-modal-image { max-width: 100%; max-height: 82vh; object-fit: contain; }
.gallery-modal-count { color: rgba(255, 255, 255, .66); font-size: .75rem; letter-spacing: .12em; }
.gallery-modal button { width: 52px; height: 52px; border: 1px solid var(--line-light); border-radius: 50%; background: transparent; color: var(--snow); cursor: pointer; }
.gallery-modal-close { position: absolute; top: 28px; right: 28px; font-size: 1.6rem; }
.gallery-modal-prev,
.gallery-modal-next { font-size: 2rem; }

.ga-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.ga-figure { display: grid; gap: 13px; }
.ga-figure .gallery-trigger { width: 100%; aspect-ratio: 16 / 10; padding: 24px; border: 1px solid var(--line); background: var(--snow); }
.ga-figure .gallery-trigger img { object-fit: contain; }
.ga-figure figcaption { color: var(--mist); font-size: .78rem; }

.video-section { background: var(--deep); color: var(--snow); }
.video-facade,
.video-section iframe { width: min(1120px, 100%); aspect-ratio: 16 / 9; margin-inline: auto; border: 0; border-radius: 16px; }
.video-facade { position: relative; padding: 0; overflow: hidden; background: #050713; cursor: pointer; }
.video-facade img { width: 100%; height: 100%; object-fit: cover; opacity: .78; transition: opacity .25s ease, transform .7s var(--ease); }
.video-facade:hover img { opacity: .9; transform: scale(1.025); }
.video-play { position: absolute; top: 50%; left: 50%; display: grid; place-items: center; width: 76px; height: 76px; padding-left: 5px; border: 1px solid rgba(255, 255, 255, .65); border-radius: 50%; background: rgba(5, 7, 19, .35); color: var(--snow); transform: translate(-50%, -50%); }
.video-credit { width: min(1120px, 100%); margin: 16px auto 0; color: rgba(255, 255, 255, .55); font-size: .74rem; }
.video-credit a { color: var(--snow); }

.specification-section { background: var(--cloud); }
.feed-specifications { max-width: none; }
.feed-spec-groups { display: grid; gap: 12px; }
.feed-spec-group { overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: var(--snow); }
.feed-spec-group summary {
  display: grid;
  grid-template-columns: minmax(150px, .34fr) minmax(0, 1fr) auto;
  align-items: stretch;
  gap: 0;
  min-height: 118px;
  padding: 0;
  color: var(--deep);
  cursor: pointer;
  list-style: none;
}
.feed-spec-group summary::-webkit-details-marker { display: none; }
.spec-group-name { display: flex; align-items: center; padding: 25px 28px; border-right: 1px solid var(--line); font-family: var(--display); font-size: clamp(1.3rem, 1.6vw, 1.65rem); font-weight: 500; line-height: 1.1; }
.spec-preview-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.spec-row-preview { display: grid; align-content: center; gap: 9px; min-width: 0; padding: 22px 28px; border-right: 1px solid var(--line); }
.spec-row-preview small { color: var(--mist); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; }
.spec-row-preview strong { color: var(--deep); font-family: var(--display); font-size: clamp(1.12rem, 1.4vw, 1.38rem); font-weight: 500; line-height: 1.25; overflow-wrap: anywhere; }
.spec-read-more { display: grid; place-items: center; min-width: 118px; padding: 20px 23px; color: var(--deep); font-size: .68rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.spec-read-more::after { margin-top: 8px; color: var(--sea); font-family: var(--display); font-size: 1.4rem; content: "+"; }
.spec-read-more-open { display: none; }
.feed-spec-group[open] .spec-read-more-closed { display: none; }
.feed-spec-group[open] .spec-read-more-open { display: inline; }
.feed-spec-group[open] .spec-read-more::after { content: "-"; }
.feed-spec-group[data-complete] summary { grid-template-columns: minmax(150px, .34fr) minmax(0, 1fr); cursor: default; }
.feed-spec-group[data-complete] summary::after { display: none; }
.feed-spec-group dl { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); margin: 0; border-top: 1px solid var(--line); }
.feed-spec-group dl > div { display: grid; grid-template-columns: minmax(120px, .42fr) minmax(0, 1fr); gap: 22px; padding: 20px 24px; border-bottom: 1px solid var(--line); }
.feed-spec-group dl > div:nth-child(odd) { border-right: 1px solid var(--line); }
.feed-spec-group dt { color: var(--mist); font-size: .73rem; letter-spacing: .06em; text-transform: uppercase; }
.feed-spec-group dd { margin: 0; color: var(--deep); font-size: .86rem; line-height: 1.6; overflow-wrap: anywhere; }
.spec-reference-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr); align-items: start; gap: 24px; margin-top: 42px; }
.factory-spec-group dl { grid-template-columns: 1fr; }
.factory-spec-group dl > div:nth-child(odd) { border-right: 0; }
.brochure-card { display: grid; align-content: start; gap: 22px; min-height: 100%; padding: 38px; border-radius: 18px; background: var(--deep); color: var(--snow); }
.brochure-card > img { width: 54px; height: 54px; object-fit: contain; filter: brightness(0) invert(1); }
.brochure-card h3 { max-width: 11ch; color: var(--snow); font-size: clamp(2.1rem, 3vw, 3.2rem); }
.brochure-card p { color: rgba(255, 255, 255, .7); font-size: 1rem; line-height: 1.65; }
.brochure-card .button { width: max-content; margin-top: auto; }
.brochure-card .button-primary { border-color: var(--snow); background: var(--snow); color: var(--deep); }

.compare-strip { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(220px, 1fr); gap: 14px; overflow-x: auto; padding: 0 0 16px; scroll-snap-type: x mandatory; }
.compare-card { display: grid; grid-template-rows: 150px 1fr; min-width: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 12px; background: var(--snow); text-decoration: none; scroll-snap-align: start; }
.compare-card > img { width: 100%; height: 100%; object-fit: cover; }
.compare-card > span { display: grid; gap: 7px; padding: 18px; }
.compare-card strong { color: var(--deep); font-family: var(--display); font-weight: 500; }
.compare-card small { color: var(--mist); line-height: 1.45; }
.compare-card.is-current { border-color: var(--sea); box-shadow: inset 0 0 0 1px var(--sea); }

.sticky-enquiry {
  position: fixed;
  z-index: 90;
  right: 24px;
  bottom: 24px;
  display: block;
  align-items: center;
  gap: 18px;
  min-width: 0;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background: rgba(14, 18, 36, .96);
  box-shadow: 0 16px 50px rgba(3, 6, 16, .3);
  color: var(--snow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity .25s ease, transform .25s ease;
}
.sticky-enquiry.is-visible { opacity: 1; pointer-events: auto; transform: none; }
.sticky-enquiry span { display: grid; grid-template-columns: repeat(2, minmax(150px, 1fr)); gap: 6px; }
.sticky-enquiry a { display: grid; place-items: center; min-width: 150px; min-height: 52px; padding: 11px 18px; border-radius: 3px; background: var(--snow); color: var(--deep); font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-align: center; text-decoration: none; text-transform: uppercase; }
.sticky-enquiry a + a { background: var(--sea); color: var(--snow); }

/* News and articles */
.plain-hero {
  padding: calc(var(--header-height) + clamp(76px, 8vw, 128px)) 0 clamp(72px, 8vw, 120px);
  background: var(--deep);
  color: var(--snow);
}
.plain-hero .shell { display: grid; gap: 24px; }
.plain-hero h1 { max-width: 11ch; color: var(--snow); font-size: clamp(3rem, 6.4vw, 7rem); }
.plain-hero p { color: rgba(255, 255, 255, .7); font-size: 1.12rem; }
.news-search { display: block; max-width: 720px; margin-top: 20px; }
.news-search input { width: 100%; min-height: 58px; padding: 14px 18px; border: 0; border-bottom: 1px solid rgba(255, 255, 255, .5); border-radius: 0; background: transparent; color: var(--snow); font-size: 1.05rem; }
.news-search input::placeholder { color: rgba(255, 255, 255, .45); }
.filter-row { display: flex; flex-wrap: wrap; gap: 9px; }
.filter-chip { min-height: 42px; padding: 10px 15px; border: 1px solid var(--line-light); border-radius: 3px; background: transparent; color: rgba(255, 255, 255, .72); font-size: .68rem; letter-spacing: .1em; cursor: pointer; text-transform: uppercase; }
.filter-chip.is-current { background: var(--snow); border-color: var(--snow); color: var(--deep); }
.news-count { margin-bottom: 28px; color: var(--mist); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }
.news-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(26px, 3vw, 44px); }
.news-card { display: grid; align-content: start; overflow: hidden; border-radius: 14px; background: var(--snow); color: var(--deep); text-decoration: none; }
.news-card figure { aspect-ratio: 16 / 10; overflow: hidden; }
.news-card figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.news-card:hover figure img { transform: scale(1.035); }
.news-card-copy { display: grid; gap: 15px; padding: 24px 4px 4px; }
.news-card-copy strong { font-family: var(--display); font-size: clamp(1.3rem, 2vw, 1.85rem); font-weight: 500; letter-spacing: -.025em; line-height: 1.2; }
.news-card-copy small { color: var(--mist); font-size: .86rem; line-height: 1.65; }
.news-meta { display: flex; justify-content: space-between; gap: 12px; color: var(--sea); font-size: .65rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.news-meta time { color: var(--mist); }
.news-empty { padding: 40px; border: 1px solid var(--line); border-radius: 10px; }

.article-page-content { padding-top: calc(var(--header-height) + clamp(72px, 8vw, 120px)); }
.article-header { display: grid; gap: 25px; }
.article-meta { display: flex; gap: 18px; color: var(--sea); font-size: .69rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.article-meta time { color: var(--mist); }
.article-header h1 { max-width: 14ch; font-size: clamp(3rem, 6.2vw, 6.7rem); }
.article-header > p { max-width: 62ch; font-size: clamp(1.08rem, 1.6vw, 1.3rem); }
.article-header figure { width: calc(100% + (var(--page-x) * 2)); max-width: none; margin: clamp(32px, 5vw, 70px) calc(var(--page-x) * -1) 0; aspect-ratio: 16 / 7; overflow: hidden; }
.article-header figure img { width: 100%; height: 100%; object-fit: cover; }
.article-body { display: grid; gap: 28px; max-width: var(--reading-max); padding-block: clamp(72px, 8vw, 120px); }
.article-body p { color: #3f4654; font-size: clamp(1rem, 1.35vw, 1.16rem); }
.article-body .article-lead { color: var(--deep); font-family: var(--display); font-size: clamp(1.35rem, 2.3vw, 2rem); letter-spacing: -.02em; line-height: 1.5; }
.article-source { padding-top: 22px; border-top: 1px solid var(--line); color: var(--mist) !important; font-size: .78rem !important; }
.article-source a { color: var(--sea); }
.related-grid .news-card-copy { padding-bottom: 16px; }

/* Enquiry and footer */
.enquiry-band { padding-block: clamp(96px, 11vw, 170px); background: var(--deep); color: var(--snow); }
.enquiry-band h2 { margin-top: 24px; color: var(--snow); }
.enquiry-band .narrow-centre > p { margin-top: 22px; color: rgba(255, 255, 255, .65); }
.enquiry-form { display: grid; gap: 20px; margin-top: 46px; text-align: left; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.enquiry-form label { display: grid; gap: 8px; color: rgba(255, 255, 255, .67); font-size: .66rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.enquiry-form label small { font-weight: 300; letter-spacing: normal; text-transform: none; }
.enquiry-form input,
.enquiry-form textarea {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 4px;
  background: rgba(255, 255, 255, .06);
  color: var(--snow);
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: normal;
  text-transform: none;
}
.enquiry-form textarea { min-height: 138px; resize: vertical; }
.enquiry-form input::placeholder,
.enquiry-form textarea::placeholder { color: rgba(255, 255, 255, .36); }
.enquiry-form input.is-invalid,
.enquiry-form textarea.is-invalid { border-color: #ff9e9e; }
.form-actions { margin-top: 4px; }
.form-status { min-height: 1.6em; color: rgba(255, 255, 255, .68); font-size: .8rem; }
.form-status.is-error { color: #ffb0b0; }
.form-status.is-success { color: #aeecc2; }
.enquiry-privacy-notice { max-width: 76ch; color: rgba(255, 255, 255, .58); font-size: .72rem; line-height: 1.65; }
.enquiry-privacy-notice a { color: var(--snow); text-underline-offset: 3px; }

.site-footer { padding: clamp(70px, 8vw, 116px) 0 28px; background: #090d1b; color: var(--snow); }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr .8fr 1.25fr; gap: clamp(34px, 5vw, 76px); }
.footer-brand { display: grid; align-content: start; gap: 20px; }
.footer-brand img { width: auto; height: 118px; }
.footer-brand h2,
.footer-links h2,
.footer-contact h2 { color: var(--snow); font-size: .72rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }
.footer-brand p { color: rgba(255, 255, 255, .58); font-size: .84rem; }
.footer-links,
.footer-contact { display: grid; align-content: start; justify-items: start; gap: 12px; }
.footer-links a,
.footer-contact a { color: rgba(255, 255, 255, .74); font-size: .79rem; text-decoration: none; }
.footer-links a:hover,
.footer-contact a:hover { color: var(--snow); }
.footer-office { display: grid; gap: 5px; padding-bottom: 10px; }
.footer-office strong { color: var(--snow); font-size: .7rem; font-weight: 500; }
.footer-office address { color: rgba(255, 255, 255, .54); font-size: .76rem; line-height: 1.55; }
.footer-contact a { overflow-wrap: anywhere; }
.footer-legal { display: flex; justify-content: space-between; gap: 24px; margin-top: 60px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, .12); color: rgba(255, 255, 255, .38); font-size: .68rem; }
.footer-legal > span:last-child { display: flex; align-items: center; gap: 18px; }
.footer-legal a,
.footer-legal button { border: 0; background: transparent; color: inherit; font: inherit; text-decoration: underline; text-underline-offset: 4px; cursor: pointer; }
.footer-legal a:hover,
.footer-legal button:hover { color: var(--snow); }

.analytics-consent {
  position: fixed;
  z-index: 290;
  right: 50%;
  bottom: clamp(12px, 2vw, 24px);
  transform: translateX(50%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px 24px;
  width: min(980px, calc(100% - 24px));
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 18px;
  background: var(--deep);
  box-shadow: 0 24px 80px rgba(4, 7, 17, .3);
  color: var(--snow);
}
.analytics-consent h2 { margin-top: 5px; color: var(--snow); font-size: clamp(1.3rem, 2.4vw, 1.8rem); }
.analytics-consent p { margin-top: 7px; color: rgba(255, 255, 255, .7); font-size: .78rem; line-height: 1.5; }
.analytics-consent-note { color: var(--focus) !important; }
.analytics-consent-primary { display: grid; grid-template-columns: repeat(3, minmax(112px, 1fr)); align-content: center; gap: 8px; }
.analytics-consent .button { min-height: 42px; width: 100%; padding: 10px 16px; }
.analytics-consent-primary [data-analytics-allow-all],
.analytics-consent-primary [data-analytics-reject-all] { border-color: var(--snow); background: var(--snow); color: var(--deep); }
.analytics-consent-primary [data-analytics-allow-all]:hover,
.analytics-consent-primary [data-analytics-reject-all]:hover { border-color: var(--sea-bright); background: var(--sea-bright); color: var(--snow); }
.analytics-consent-primary [data-analytics-manage-open] { background: transparent; }
.analytics-consent .button-secondary { border-color: rgba(255, 255, 255, .5); color: var(--snow); }
.analytics-consent .button:disabled { opacity: .42; cursor: not-allowed; }
.analytics-consent .text-link { color: rgba(255, 255, 255, .72); font-size: .72rem; }
.analytics-consent-dismiss { position: absolute; top: 5px; right: 8px; width: 32px; height: 32px; border: 0; background: transparent; color: rgba(255, 255, 255, .7); font: 400 1.3rem/1 sans-serif; cursor: pointer; }
.analytics-consent-manage { display: grid; grid-column: 1 / -1; grid-template-columns: repeat(2, minmax(0, 1fr)) auto; gap: 10px; }
.analytics-choice { display: grid; grid-template-columns: auto 1fr; gap: 10px; padding: 12px; border: 1px solid rgba(255, 255, 255, .16); border-radius: 10px; cursor: pointer; }
.analytics-choice input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--sea); }
.analytics-choice span { display: grid; gap: 4px; }
.analytics-choice strong { color: var(--snow); font-size: .76rem; }
.analytics-choice small { color: rgba(255, 255, 255, .58); font-size: .68rem; line-height: 1.45; }
.analytics-consent-privacy { grid-column: 1 / -1; justify-self: end; }

.privacy-page-content .plain-hero h1 { max-width: 12ch; }
.privacy-page-content .article-body h2 { margin-top: 24px; font-size: clamp(2.1rem, 4vw, 3.7rem); }
.privacy-page-content .article-body a { color: var(--sea); }
.privacy-page-content [data-analytics-preferences] { width: max-content; margin-top: 18px; }

.not-found { display: grid; place-items: center; min-height: 72svh; padding: calc(var(--header-height) + 70px) var(--page-x) 80px; background: var(--deep); color: var(--snow); }
.not-found h1 { margin: 20px 0; color: var(--snow); }
.not-found p { margin-bottom: 28px; color: rgba(255, 255, 255, .66); }

@media (max-width: 1180px) {
  .desktop-nav { gap: 17px; }
  .desktop-nav a { font-size: .59rem; }
  .site-logo { width: 128px; }
  .model-card { grid-column: span 6; }
  .model-card-wide { min-height: 560px; }
  .awgrid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .gallery-grid { grid-auto-rows: 230px; }
  .footer-grid { grid-template-columns: 1.2fr .8fr .8fr 1.2fr; gap: 34px; }
}

@media (max-width: 900px) {
  :root { --page-x: 32px; --section-y: 96px; --header-height: 74px; }
  .desktop-nav { display: none; }
  .header-inner { grid-template-columns: 1fr auto 1fr; }
  .site-logo { grid-column: 2; grid-row: 1; width: 132px; }
  .menu-button {
    display: block;
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    width: 44px;
    height: 44px;
    padding: 9px 7px;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
  }
  .menu-button span { display: block; width: 27px; height: 1px; margin: 6px 0; background: currentColor; transition: transform .25s ease, opacity .25s ease; }
  .menu-button.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-button.is-open span:nth-child(2) { opacity: 0; }
  .menu-button.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .mobile-contact { display: inline-flex; grid-column: 3; grid-row: 1; justify-self: end; color: inherit; font-size: .62rem; font-weight: 600; letter-spacing: .15em; text-decoration: none; text-transform: uppercase; }
  .image-hero { min-height: 78svh; }
  .home-hero { min-height: 100svh; }
  .hero-copy { padding-bottom: 72px; }
  .model-card,
  .model-card-wide { min-height: 480px; }
  .split-layout { grid-template-columns: 1fr; gap: 50px; }
  .split-layout-reverse > figure { order: 0; }
  .rounded-media { min-height: 0; aspect-ratio: 16 / 11; }
  .timeline { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .timeline article:nth-child(3) { padding-left: 0; border-left: 0; }
  .timeline article:nth-child(n + 3) { padding-top: 34px; margin-top: 34px; border-top: 1px solid var(--line); }
  .principle-grid { grid-template-columns: 1fr; }
  .principle-grid article { min-height: 0; }
  .award-row { grid-template-columns: 120px minmax(0, 1fr); }
  .award-actions { grid-column: 2; grid-row: 2; justify-items: start; grid-auto-flow: column; justify-content: start; }
  .fact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .fact-grid > div:nth-child(3) { border-left: 1px solid var(--line-light); }
  .gallery-grid { grid-auto-rows: 190px; }
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .spec-reference-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .article-header figure { aspect-ratio: 16 / 9; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  :root { --page-x: 22px; --section-y: 78px; --header-height: 70px; --card-radius: 16px; }
  body { font-size: .98rem; }
  h1 { font-size: clamp(2.7rem, 14vw, 4.45rem); }
  h2 { font-size: clamp(2.05rem, 10.6vw, 3.35rem); }
  .site-logo { width: 118px; }
  .home-hero { min-height: 100svh; }
  .page-hero,
  .model-hero { min-height: 80svh; }
  .hero-copy { gap: 18px; padding-bottom: 62px; }
  .hero-copy p { font-size: 1rem; }
  .hero-actions { align-items: stretch; }
  .hero-actions .button { flex: 1 1 100%; }
  .video-toggle { right: 22px; bottom: 20px; width: 44px; height: 44px; }
  .section-head { gap: 16px; margin-bottom: 38px; }
  .eyebrow { gap: 11px; font-size: .62rem; }
  .eyebrow::before { width: 24px; }
  .model-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
  .model-card,
  .model-card-wide { grid-column: 1; min-height: 0; aspect-ratio: 16 / 10.5; }
  .model-card-copy { gap: 12px; padding: 20px; }
  .model-card-copy h3 { font-size: 1.25rem; }
  .model-card-copy small { display: none; }
  .length-pill { min-width: 56px; min-height: 36px; font-size: .64rem; }
  .rounded-media { aspect-ratio: 4 / 3; }
  .awgrid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .awcard { min-height: 230px; padding: 15px; }
  .awimg { min-height: 92px; }
  .awimg img { width: 70px; max-height: 70px; }
  .awm { font-size: .78rem; }
  .awc { font-size: .67rem; }
  .award-more { align-items: flex-start; flex-direction: column; }
  .contact-card { padding: 22px; }
  .editorial-lead > p { margin-bottom: 54px; }
  .timeline { grid-template-columns: 1fr; }
  .timeline article,
  .timeline article + article { padding: 25px 0 0; border-left: 0; }
  .timeline article:nth-child(n + 2) { margin-top: 28px; border-top: 1px solid var(--line); }
  .award-row { grid-template-columns: 82px minmax(0, 1fr); gap: 18px; padding: 20px; }
  .award-mark { width: 82px; height: 78px; }
  .award-mark img { max-width: 57px; max-height: 57px; }
  .award-copy h3 { font-size: 1.3rem; }
  .award-actions { grid-auto-flow: row; gap: 10px; }
  .fact-grid > div { min-height: 126px; padding: 25px 20px; }
  .jump-nav .shell { justify-content: flex-start; width: 100%; padding-inline: 12px; }
  .jump-nav a { padding: 17px 13px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 0; padding: 25px; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 150px; gap: 10px; }
  .gallery-trigger,
  .gallery-trigger:nth-child(1),
  .gallery-trigger:nth-child(5n),
  .gallery-trigger:nth-child(7n) { grid-column: span 1; grid-row: span 1; border-radius: 10px; }
  .gallery-trigger:nth-child(1),
  .gallery-trigger:nth-child(7n) { grid-column: 1 / -1; grid-row: span 2; }
  .gallery-modal { grid-template-columns: 44px minmax(0, 1fr) 44px; padding: 26px 10px; }
  .gallery-modal button { width: 40px; height: 40px; }
  .gallery-modal-close { top: 16px; right: 16px; }
  .ga-grid { grid-template-columns: 1fr; }
  .ga-figure .gallery-trigger { aspect-ratio: 16 / 11; padding: 14px; }
  .video-play { width: 58px; height: 58px; }
  .feed-spec-group summary { grid-template-columns: 1fr; min-height: 0; padding: 0; }
  .feed-spec-group[data-complete] summary { grid-template-columns: 1fr; }
  .spec-group-name { padding: 20px 18px; border-right: 0; border-bottom: 1px solid var(--line); }
  .spec-preview-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .spec-row-preview { padding: 18px; }
  .spec-row-preview:nth-child(2) { border-right: 0; }
  .spec-read-more { min-width: 0; min-height: 56px; border-top: 1px solid var(--line); }
  .spec-read-more::after { margin: 0 0 0 10px; }
  .feed-spec-group dl { grid-template-columns: 1fr; }
  .feed-spec-group dl > div,
  .feed-spec-group dl > div:nth-child(odd) { grid-template-columns: 1fr; gap: 7px; padding: 17px 18px; border-right: 0; }
  .brochure-card { min-height: 420px; padding: 30px; }
  .sticky-enquiry { right: 12px; bottom: 12px; left: 12px; grid-template-columns: 1fr; min-width: 0; padding: 7px; }
  .sticky-enquiry > strong { display: none; }
  .sticky-enquiry span { grid-template-columns: repeat(2, 1fr); }
  .sticky-enquiry a { min-width: 0; min-height: 44px; display: grid; place-items: center; }
  .plain-hero { padding-top: calc(var(--header-height) + 70px); }
  .filter-row { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 8px; }
  .filter-chip { flex: 0 0 auto; }
  .news-grid { grid-template-columns: 1fr; gap: 38px; }
  .article-header h1 { font-size: clamp(2.55rem, 12vw, 4rem); }
  .article-header figure { width: calc(100% + 44px); margin-inline: -22px; aspect-ratio: 4 / 3; }
  .form-grid { grid-template-columns: 1fr; }
  .form-actions { align-items: stretch; flex-direction: column; }
  .form-actions .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 38px; }
  .footer-brand img { height: 104px; }
  .footer-legal { align-items: flex-start; flex-direction: column; margin-top: 44px; }
  .analytics-consent { right: 50%; bottom: 12px; grid-template-columns: 1fr; gap: 14px; width: calc(100% - 24px); max-height: calc(100svh - 24px); padding: 20px; overflow-y: auto; }
  .analytics-consent-primary { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .analytics-consent-primary [data-analytics-manage-open] { grid-column: 1 / -1; min-height: 34px; padding-block: 6px; border-color: transparent; background: transparent; font-size: .68rem; }
  .analytics-consent-manage { grid-template-columns: 1fr; }
}

/* Recovery v2 editorial composition */
.site-header { background: linear-gradient(to bottom, rgba(5, 8, 18, .52), transparent); }
.header-inner { width: min(1600px, calc(100% - (var(--page-x) * 2))); }
.menu-button,
.header-contact {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  color: inherit;
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-decoration: none;
  text-transform: uppercase;
}
.menu-button { justify-self: start; gap: 14px; width: auto; height: 48px; padding: 0; border: 0; background: transparent; cursor: pointer; }
.menu-lines { position: relative; display: block; width: 28px; height: 14px; }
.menu-lines i { position: absolute; left: 0; display: block; width: 28px; height: 1px; background: currentColor; transition: opacity .2s ease, transform .25s ease, top .25s ease; }
.menu-lines i:first-child { top: 1px; }
.menu-lines i:nth-child(2) { top: 7px; }
.menu-lines i:last-child { top: 13px; }
.menu-button.is-open .menu-lines i:first-child { top: 7px; transform: rotate(45deg); }
.menu-button.is-open .menu-lines i:nth-child(2) { opacity: 0; }
.menu-button.is-open .menu-lines i:last-child { top: 7px; transform: rotate(-45deg); }
.header-contact { justify-self: end; min-height: 42px; padding: 0 0 2px; border-bottom: 1px solid currentColor; }
.site-logo { width: 174px; }
body.is-locked .site-header { background: var(--deep); border-color: rgba(255, 255, 255, .14); color: var(--snow); box-shadow: none; }
body.is-locked .site-logo img,
.site-header.is-menu-open .site-logo img { filter: brightness(0) invert(1); }
.mobile-nav {
  z-index: 115;
  inset: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  align-content: stretch;
  gap: 46px;
  padding: calc(var(--header-height) + 44px) var(--page-x) 42px;
  background: var(--deep);
  transform: translateY(-20px);
}
.overlay-nav-shell { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(260px, .75fr); align-items: start; gap: clamp(50px, 10vw, 180px); width: min(1180px, 100%); margin: auto; }
.overlay-nav-models,
.overlay-nav-explore { display: grid; align-content: start; }
.overlay-nav-label { margin-bottom: 26px; color: rgba(255, 255, 255, .44); font-size: .64rem; letter-spacing: .2em; text-transform: uppercase; }
.mobile-nav a { padding: 8px 0; border: 0; font-family: var(--display); font-size: clamp(2rem, 4.2vw, 4.1rem); font-weight: 400; letter-spacing: -.025em; line-height: 1; }
.overlay-nav-explore a { font-size: clamp(1.5rem, 2.7vw, 2.5rem); }
.mobile-nav a:hover { color: #d4c099; }
.overlay-nav-contact { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 18px; width: min(1180px, 100%); margin-inline: auto; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, .16); }
.overlay-nav-contact a { padding: 0; color: rgba(255, 255, 255, .62); font-family: var(--sans); font-size: .75rem; letter-spacing: .04em; overflow-wrap: anywhere; }

.hero-copy h1,
.plain-hero h1,
.article-header h1 { font-size: clamp(3.6rem, 5.3vw, 5rem); }
.page-hero,
.model-hero,
.about-hero { min-height: 100svh; }
.about-page .about-hero > video { transform: none; }
.model-hero-picture { position: absolute; z-index: -3; inset: 0; }
.model-hero-picture img { width: 100%; height: 100%; object-fit: cover; }
.hero-chapter { position: absolute; right: var(--page-x); bottom: 118px; display: grid; gap: 4px; color: var(--snow); text-align: right; }
.hero-chapter span { font-size: .66rem; letter-spacing: .18em; text-transform: uppercase; }
.hero-chapter strong { font-family: var(--display); font-size: 1.75rem; font-weight: 400; }
.centred-story { display: grid; justify-items: center; gap: 25px; width: min(1040px, calc(100% - (var(--page-x) * 2))); margin-inline: auto; text-align: center; }
.centred-story h1,
.centred-story h2 { max-width: 15ch; }
.centred-story p { max-width: 58ch; font-size: 1rem; line-height: 1.6; }
.centred-actions { justify-content: center; margin-top: 10px; }
.about-intro { padding-bottom: 0; }
.about-intro h1 { color: var(--deep); }
.about-intro .wide-editorial-media { width: min(1240px, 100%); margin-top: 50px; overflow: hidden; border-radius: var(--card-radius) var(--card-radius) 0 0; aspect-ratio: 16 / 8; }
.wide-editorial-media img { width: 100%; height: 100%; object-fit: cover; }
.editorial-split h2 { max-width: 14ch; }
.editorial-split .rounded-media { min-height: 680px; }
.philosophy-focus { padding-block: 132px; }
.philosophy-focus h2 { max-width: 18ch; color: var(--snow); }
.philosophy-focus p { color: rgba(255, 255, 255, .68); }
.full-media-pause,
.full-media-beat { position: relative; min-height: 100svh; overflow: hidden; background: var(--deep); color: var(--snow); }
.full-media-pause > video,
.full-media-beat > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.full-media-pause::after,
.full-media-beat::after { position: absolute; inset: 0; background: linear-gradient(to top, rgba(5, 8, 18, .64), transparent 58%); content: ""; }
.media-pause-caption,
.media-beat-label { position: absolute; z-index: 1; right: var(--page-x); bottom: 70px; left: var(--page-x); display: grid; gap: 10px; max-width: 700px; }
.media-pause-caption span,
.media-beat-label span { font-size: .66rem; letter-spacing: .2em; text-transform: uppercase; }
.media-pause-caption strong,
.media-beat-label strong { font-family: var(--display); font-size: clamp(2.7rem, 4vw, 4.2rem); font-weight: 400; line-height: 1; }
.about-advantage-intro { padding-bottom: 70px; }
.advantage-panels { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); background: var(--deep); }
.advantage-panels article { position: relative; min-height: 72svh; overflow: hidden; isolation: isolate; }
.advantage-panels article::after { position: absolute; z-index: -1; inset: 25% 0 0; background: linear-gradient(to top, rgba(4, 7, 16, .94), transparent); content: ""; }
.advantage-panels img { position: absolute; z-index: -2; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.advantage-panels article:hover img { transform: scale(1.035); }
.advantage-panels article > div { position: absolute; right: 30px; bottom: 40px; left: 30px; display: grid; gap: 12px; color: var(--snow); }
.advantage-panels article > div > span { color: #d4c099; font-size: .65rem; letter-spacing: .18em; }
.advantage-panels h3 { color: var(--snow); font-size: clamp(1.7rem, 2.4vw, 2.6rem); }
.advantage-panels p { color: rgba(255, 255, 255, .76); font-size: 1rem; line-height: 1.55; }

.model-intro { padding-block: 118px; }
.model-intro h2 { max-width: 17ch; }
.motion-interlude { position: relative; min-height: 48svh; overflow: hidden; background: var(--deep); color: var(--snow); }
.motion-interlude > video,
.motion-interlude > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .54; }
.motion-interlude::after { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5, 8, 18, .75), rgba(5, 8, 18, .1)); content: ""; }
.motion-interlude > div { position: absolute; z-index: 1; top: 50%; left: var(--page-x); display: grid; gap: 10px; transform: translateY(-50%); }
.motion-interlude span { font-size: .66rem; letter-spacing: .2em; text-transform: uppercase; }
.motion-interlude strong { max-width: 12ch; font-family: var(--display); font-size: clamp(2.8rem, 4vw, 4.4rem); font-weight: 400; line-height: 1; }
.model-highlights { padding-block: 0; }
.highlight-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); }
.highlight-grid > div { min-height: 180px; padding: 42px 28px; border-right: 1px solid var(--line-light); }
.highlight-grid > div:first-child { border-left: 1px solid var(--line-light); }
.highlight-grid strong { display: block; margin-bottom: 14px; color: var(--snow); font-family: var(--display); font-size: 1.55rem; font-weight: 400; line-height: 1.1; }
.highlight-grid span { color: rgba(255, 255, 255, .52); font-size: .64rem; letter-spacing: .12em; text-transform: uppercase; }
.configuration-section { padding-block: 76px; background: #eae4d8; }
.configuration-composition { overflow: hidden; border: 1px solid rgba(156, 133, 93, .46); border-radius: 24px; background: var(--snow); box-shadow: 0 24px 70px rgba(7, 12, 28, .08); }
.configuration-showcase { display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); min-height: 520px; }
.configuration-showcase .section-head { align-content: center; max-width: none; margin: 0; padding: clamp(42px, 5.5vw, 78px); background: var(--deep); color: var(--snow); }
.model-page .configuration-showcase .section-head h2 { max-width: 11ch; color: var(--snow); font-size: clamp(3.55rem, 5.2vw, 5.6rem); }
.model-page .configuration-showcase .configuration-title-long h2 { font-size: clamp(3.25rem, 4.4vw, 4.8rem); }
.model-page .configuration-showcase .section-head p { max-width: 38ch; color: rgba(255, 255, 255, .76); font-size: 1.06rem; line-height: 1.65; }
.configuration-media { position: relative; min-height: 520px; overflow: hidden; background: var(--deep); }
.configuration-media picture { display: block; width: 100%; height: 100%; }
.configuration-media img { width: 100%; height: 100%; object-fit: cover; }
.configuration-media::after { position: absolute; inset: auto 0 0; height: 42%; background: linear-gradient(transparent, rgba(4, 8, 19, .7)); content: ""; pointer-events: none; }
.configuration-media figcaption { position: absolute; z-index: 1; right: 0; bottom: 0; left: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); padding: 24px 28px; color: var(--snow); }
.configuration-media figcaption span { display: grid; gap: 7px; padding: 0 20px; border-left: 1px solid rgba(255, 255, 255, .32); }
.configuration-media figcaption span:first-child { padding-left: 0; border-left: 0; }
.configuration-media figcaption strong { font-family: var(--display); font-size: clamp(1.2rem, 1.6vw, 1.65rem); font-weight: 400; line-height: 1.05; }
.configuration-media figcaption small { color: rgba(255, 255, 255, .68); font-size: .6rem; letter-spacing: .14em; text-transform: uppercase; }
.configuration-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; padding: 18px; border-top: 1px solid rgba(156, 133, 93, .38); background: #eae4d8; }
.configuration-grid-count-5 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.configuration-card { display: grid; grid-template-rows: 240px 1fr; min-height: 520px; overflow: hidden; border-radius: 16px; background: var(--snow); box-shadow: 0 14px 40px rgba(7, 12, 28, .07); }
.configuration-card figure { min-height: 0; overflow: hidden; background: var(--deep); }
.configuration-card figure picture { display: block; width: 100%; height: 100%; }
.configuration-card figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.configuration-card:hover figure img { transform: scale(1.025); }
.configuration-card > div { padding: 28px 26px 32px; }
.configuration-card > div > span { color: var(--sea); font-size: .65rem; letter-spacing: .16em; }
.configuration-card h3 { margin: 22px 0 14px; font-size: clamp(1.55rem, 1.8vw, 2.05rem); }
.configuration-card p { color: #4f5663; font-size: 1rem; line-height: 1.65; }
.model-statement { padding-block: 128px; }
.model-statement h2 { color: var(--snow); }
.model-statement p { color: rgba(255, 255, 255, .68); }
.layout-selector { display: grid; grid-template-columns: minmax(230px, .28fr) minmax(0, .72fr); gap: clamp(30px, 6vw, 90px); }
.layout-tabs { display: grid; align-content: start; }
.layout-tabs button { padding: 19px 0; border: 0; border-bottom: 1px solid var(--line); background: transparent; color: var(--mist); text-align: left; cursor: pointer; }
.layout-tabs button[aria-selected="true"] { color: var(--deep); font-weight: 500; }
.layout-panel { display: grid; gap: 16px; }
.layout-panel .gallery-trigger { width: 100%; min-height: 560px; padding: 32px; border: 1px solid var(--line); border-radius: var(--card-radius); background: var(--snow); }
.layout-panel .gallery-trigger img { width: 100%; height: 100%; object-fit: contain; }
.layout-panel figcaption { color: var(--mist); font-size: .75rem; }
.model-design .rounded-media { min-height: 720px; }
.story-gallery { overflow: hidden; }
.story-gallery-copy { display: grid; gap: 20px; max-width: 1100px; margin-bottom: 52px; }
.story-rail { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(520px, 44vw); gap: 18px; overflow-x: auto; padding: 0 var(--page-x) 22px; scroll-snap-type: x mandatory; scrollbar-width: thin; }
.story-rail-card { overflow: hidden; border-radius: var(--card-radius); aspect-ratio: 16 / 10; scroll-snap-align: start; }
.story-rail-card img { width: 100%; height: 100%; object-fit: cover; }
.story-gallery .button { margin-bottom: 34px; }
.gallery-data { width: 0; height: 0; overflow: hidden; }
.model-decision { padding-block: 104px; }
.decision-inner { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: 36px; }
.decision-inner h2 { max-width: 14ch; color: var(--snow); }
.decision-inner .eyebrow { grid-column: 1 / -1; }
.ownership-intro { padding-block: 96px 104px; background: #eae4d8; }
.ownership-panel { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr); min-height: 620px; overflow: hidden; border-radius: 24px; background: var(--deep); box-shadow: 0 24px 70px rgba(7, 12, 28, .12); }
.ownership-panel figure { min-height: 620px; overflow: hidden; }
.ownership-panel figure picture { display: block; width: 100%; height: 100%; }
.ownership-panel figure img { width: 100%; height: 100%; object-fit: cover; }
.ownership-panel > div { display: grid; align-content: center; gap: 26px; padding: clamp(44px, 5vw, 76px); }
.ownership-panel h2 { max-width: 9ch; color: var(--snow); font-size: clamp(3.35rem, 5vw, 5.4rem); line-height: .96; }
.ownership-panel p { max-width: 36ch; color: rgba(255, 255, 255, .72); font-size: 1.08rem; line-height: 1.7; }
.ownership-panel .button { width: max-content; }
.proof-links { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1px; margin-top: 70px; background: var(--line-light); }
.proof-links a { display: grid; gap: 10px; min-height: 190px; padding: 28px; background: var(--deep); color: var(--snow); text-decoration: none; }
.proof-links span { color: #d4c099; font-size: .64rem; letter-spacing: .15em; text-transform: uppercase; }
.proof-links strong { font-family: var(--display); font-size: 1.45rem; font-weight: 400; }
.proof-links small { color: rgba(255, 255, 255, .68); font-size: .9rem; line-height: 1.55; }
.video-facade img { image-rendering: auto; }
.jump-nav { position: sticky; }
.jump-nav::after { position: absolute; top: 0; right: 0; bottom: 0; width: 50px; background: linear-gradient(to right, transparent, rgba(255, 255, 255, .98)); content: ""; pointer-events: none; }
.site-footer { padding-top: 118px; }
.footer-grid { grid-template-columns: 1.6fr .9fr .75fr 1.25fr; }
.footer-brand img { height: 190px; }
.footer-brand h2 { font-family: var(--display); font-size: 1.8rem; font-weight: 400; letter-spacing: 0; text-transform: none; }
.footer-brand p { max-width: 32ch; }

.model-page .section-cloud,
.model-page .specification-section { background: #f2eee5; }
.model-page .centred-story h2,
.model-page .section-head h2,
.model-page .editorial-split h2,
.model-page .story-gallery-copy h2,
.model-page .decision-inner h2 {
  max-width: 16ch;
  font-size: clamp(3.35rem, 5.2vw, 5.7rem);
  line-height: .98;
}
.model-page .centred-story p,
.model-page .section-head p,
.model-page .editorial-split p { color: #505765; font-size: clamp(1.05rem, 1.25vw, 1.2rem); line-height: 1.7; }
.model-page .dark-section .centred-story p { color: rgba(255, 255, 255, .76); }
.model-page .feed-spec-group dt { font-size: .78rem; }
.model-page .feed-spec-group dd { font-size: 1rem; }
.model-page .compare-strip { grid-auto-columns: minmax(275px, 1fr); gap: 18px; }
.model-page .compare-card { grid-template-rows: 190px 1fr; border-radius: 16px; }
.model-page .compare-card > span { gap: 9px; padding: 22px; }
.model-page .compare-card strong { font-size: 1.12rem; }
.model-page .compare-card small { color: #626a78; font-size: .9rem; }
.model-page .highlight-grid strong { font-size: 1.7rem; }
.model-page .highlight-grid span { color: rgba(255, 255, 255, .68); font-size: .72rem; }

@media (max-width: 1100px) {
  :root { --header-height: 78px; }
  .advantage-panels { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .advantage-panels article { min-height: 64svh; }
  .highlight-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .configuration-showcase { grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); }
  .configuration-grid,
  .configuration-grid-count-5 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ownership-panel { grid-template-columns: 1fr; }
  .ownership-panel figure { min-height: 480px; }
  .proof-links { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 700px) {
  :root { --header-height: 68px; --section-y: 76px; }
  body { line-height: 1.5; }
  h1 { font-size: clamp(3rem, 14vw, 4.2rem); }
  h2 { font-size: clamp(2.3rem, 10vw, 3rem); }
  .site-logo { width: 132px; }
  .menu-button { display: inline-flex; grid-column: 1; grid-row: 1; width: auto; height: 44px; padding: 0; }
  .menu-button > .menu-lines { position: relative; display: block; width: 28px; height: 14px; margin: 0; background: transparent; transform: none; }
  .menu-button > .menu-label { display: none; width: auto; height: auto; margin: 0; background: transparent; }
  .menu-button.is-open > .menu-lines { opacity: 1; transform: none; }
  .header-contact { grid-column: 3; grid-row: 1; }
  .hero-chapter { bottom: 88px; }
  .mobile-nav { padding-top: calc(var(--header-height) + 34px); }
  .overlay-nav-shell { grid-template-columns: 1fr; gap: 34px; }
  .mobile-nav a { padding: 5px 0; font-size: clamp(2rem, 10vw, 3rem); }
  .overlay-nav-explore { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 18px; }
  .overlay-nav-explore .overlay-nav-label { grid-column: 1 / -1; }
  .overlay-nav-explore a { font-size: 1.45rem; }
  .overlay-nav-contact { display: grid; }
  .hero-copy h1,
  .plain-hero h1,
  .article-header h1 { font-size: clamp(3rem, 14vw, 4.2rem); }
  .page-hero,
  .model-hero,
  .about-hero { min-height: 100svh; }
  .about-page .about-hero > video { object-position: 72% center; }
  .hero-chapter { right: 22px; bottom: 96px; }
  .about-intro .wide-editorial-media { width: calc(100% + 44px); margin-inline: -22px; border-radius: 0; aspect-ratio: 4 / 3; }
  .editorial-split .rounded-media,
  .model-design .rounded-media { min-height: 0; aspect-ratio: 4 / 3; }
  .philosophy-focus { padding-block: 96px; }
  .full-media-pause,
  .full-media-beat { min-height: 82svh; }
  .media-pause-caption,
  .media-beat-label { right: 22px; bottom: 36px; left: 22px; }
  .media-pause-caption strong,
  .media-beat-label strong { font-size: 2.7rem; }
  .advantage-panels { grid-template-columns: 1fr; }
  .advantage-panels article { min-height: 68svh; }
  .about-range .model-card-copy small { display: block; }
  .model-card-copy { align-items: end; }
  .model-card-copy small { display: block; font-size: .72rem; }
  .motion-interlude { min-height: 42svh; }
  .motion-interlude > div { left: 22px; }
  .highlight-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .highlight-grid > div { min-height: 140px; padding: 28px 20px; border-bottom: 1px solid var(--line-light); }
  .configuration-section { padding-block: 44px; }
  .configuration-composition { border-radius: 18px; }
  .configuration-showcase { grid-template-columns: 1fr; min-height: 0; }
  .configuration-showcase .section-head { order: 2; padding: 38px 28px 42px; }
  .model-page .configuration-showcase .section-head h2 { font-size: clamp(2.75rem, 12vw, 3.7rem); }
  .configuration-media { min-height: 430px; }
  .configuration-media figcaption { padding: 20px 18px; }
  .configuration-media figcaption span { padding-inline: 11px; }
  .configuration-media figcaption strong { font-size: 1.08rem; }
  .configuration-media figcaption small { font-size: .52rem; }
  .configuration-grid,
  .configuration-grid-count-5 { grid-template-columns: none; grid-auto-flow: column; grid-auto-columns: minmax(285px, 82vw); overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: thin; }
  .configuration-card { grid-template-rows: 220px 1fr; min-height: 520px; scroll-snap-align: start; }
  .configuration-card h3 { margin-top: 28px; }
  .layout-selector { grid-template-columns: 1fr; }
  .layout-tabs { grid-auto-flow: column; grid-auto-columns: minmax(180px, auto); overflow-x: auto; }
  .layout-tabs button { padding-right: 24px; }
  .layout-panel .gallery-trigger { min-height: 0; aspect-ratio: 4 / 3; padding: 14px; }
  .story-rail { grid-auto-columns: 86vw; padding-inline: 22px; }
  .decision-inner { grid-template-columns: 1fr; align-items: start; }
  .ownership-intro { padding-block: 48px; }
  .ownership-panel { min-height: 0; border-radius: 18px; }
  .ownership-panel figure { min-height: 0; aspect-ratio: 4 / 3; }
  .ownership-panel > div { padding: 38px 28px 44px; }
  .ownership-panel h2 { font-size: clamp(2.75rem, 12vw, 3.8rem); }
  .spec-reference-grid { gap: 18px; margin-top: 28px; }
  .brochure-card { min-height: 410px; padding: 30px 26px; }
  .proof-links { grid-template-columns: 1fr; }
  .sticky-enquiry { display: none; }
  .recognition-section .awgrid { display: flex; width: 100%; max-width: 100%; min-width: 0; overflow-x: auto; padding-bottom: 18px; scroll-snap-type: x mandatory; }
  .recognition-section .awcard { flex: 0 0 220px; scroll-snap-align: start; }
  .table-scroll { overflow: visible; }
  .recognition-table { display: block; min-width: 0; }
  .recognition-table thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; }
  .recognition-table tbody,
  .recognition-table tr,
  .recognition-table th,
  .recognition-table td { display: block; width: 100%; }
  .recognition-table tr { padding: 22px; border-bottom: 1px solid var(--line); }
  .recognition-table tr:last-child { border-bottom: 0; }
  .recognition-table th,
  .recognition-table td { padding: 5px 0; border: 0; }
  .recognition-table th::before,
  .recognition-table td::before { display: block; margin-bottom: 3px; color: var(--mist); font-family: var(--sans); font-size: .59rem; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; }
  .recognition-table th::before { content: "Year"; }
  .recognition-table td:nth-child(2)::before { content: "Result"; }
  .recognition-table td:nth-child(3)::before { content: "Record"; }
  .site-footer { padding-top: 88px; }
  .footer-grid { grid-template-columns: 1fr; gap: 42px; }
  .footer-brand img { height: 156px; }
  .model-page .centred-story { width: calc(100% - 44px); }
  .model-page .centred-story h2,
  .model-page .section-head h2,
  .model-page .editorial-split h2,
  .model-page .story-gallery-copy h2,
  .model-page .decision-inner h2 { font-size: clamp(2.8rem, 12vw, 4rem); }
}

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