:root{
  --navy:#0a1a2b;
  --navy-deep:#0c2034;
  --ink:#0a1a2b;
  --storm:#2c3238;
  --yellow:#ffbf00;
  --yellow-bright:#ffd24a;
  --orange:#ffbf00;
  --orange-bright:#ffd24a;
  --off-white:#f4f1ea;
  --text:#f4f1ea;
  --muted:rgba(244,241,234,0.76);
  --grey-line:rgba(244,241,234,0.2);
  --grey-line-soft:rgba(244,241,234,0.1);
  --card:#12263c;
  --display: 'Big Shoulders Display', sans-serif;
  --body: 'Barlow', sans-serif;
  --mono: 'IBM Plex Mono', monospace;
}
*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth; overflow-x:hidden; min-height:100%;}
body{
  background:var(--navy);
  color:var(--off-white);
  font-family:var(--body);
  line-height:1.55;
  overflow-x:hidden;
  max-width:100%;
  min-height:100vh;
  display:flex;
  flex-direction:column;
}
img{max-width:100%; display:block;}
a{color:inherit; text-decoration:none;}
.wrap{max-width:1180px; margin:0 auto; padding:0 24px;}
h1,h2,h3{font-family:var(--body); font-weight:700; letter-spacing:-0.02em; line-height:1.12; text-transform:none;}
.hero h1, .page-hero h1{font-family:var(--display); text-transform:uppercase; letter-spacing:0.01em; line-height:0.95;}
.eyebrow{
  font-size:13px; letter-spacing:0.04em; text-transform:uppercase; font-weight:600;
  color:var(--orange); margin-bottom:12px;
}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:6px;
  font-family:var(--body); font-size:13px; font-weight:600;
  letter-spacing:0.02em; padding:8px 16px;
  border-radius:6px; border:1px solid transparent; cursor:pointer;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease, border-color .2s ease, color .2s ease;
}
.btn:hover{ transform:translateY(-1px); }
.btn:active{ transform:translateY(0); }
.btn-primary{
  background:var(--yellow); color:var(--navy);
  box-shadow:0 6px 16px rgba(255,191,0,.28);
}
.btn-primary:hover{ background:var(--yellow-bright); color:var(--navy); }
.btn-ghost{
  border-color:rgba(244,241,234,.32); color:var(--off-white); background:transparent;
}
.btn-ghost:hover{ border-color:var(--off-white); background:rgba(244,241,234,.08); }
.hero .btn-ghost, .racing .btn-ghost{
  border-color:rgba(244,241,234,.4); color:var(--off-white); background:transparent;
}
.hero .btn-ghost:hover, .racing .btn-ghost:hover{ background:rgba(244,241,234,.1); }
.btn-sm{padding:6px 12px; font-size:12px;}

header{
  position:fixed; top:0; left:0; right:0; z-index:100;
  color:var(--off-white); padding:10px 0;
  background:linear-gradient(to bottom, rgba(0,0,0,.4), transparent);
  transition:background .25s ease, color .25s ease, box-shadow .25s ease, padding .25s ease;
}
header.scrolled, header.inner{
  background:rgba(10,26,43,0.96); color:var(--off-white); padding:6px 0;
  box-shadow:0 1px 0 var(--grey-line); backdrop-filter:none;
}
nav{display:flex; align-items:center; justify-content:space-between; gap:16px;}
.brand{display:flex; align-items:center; flex-shrink:0;}
.brand span{display:none !important;}
.brand img, .foot-brand img{
  height:88px; width:auto; display:block; object-fit:contain; background:var(--off-white);
  padding:3px; border-radius:12px; border:2px solid var(--off-white);
}
.foot-brand img{height:56px;}
.navlinks{display:flex; align-items:center; gap:4px; font-size:14px; font-weight:600;}
.navlinks > a, .navlinks button.drop-btn{
  background:none; border:none; color:inherit; font:inherit;
  cursor:pointer; padding:8px 10px; border-radius:6px;
}
.navlinks button.drop-btn{display:inline-flex; align-items:center; gap:6px;}
.navlinks button.drop-btn::after{
  content:''; width:6px; height:6px; margin-top:-2px;
  border-right:1.5px solid currentColor; border-bottom:1.5px solid currentColor;
  transform:rotate(45deg);
}
.has-drop.open .drop-btn::after, .has-drop:hover .drop-btn::after{transform:rotate(225deg); margin-top:2px;}
.navlinks > a:hover, .navlinks button.drop-btn:hover{background:rgba(255,255,255,.12);}
header.scrolled .navlinks > a:hover, header.inner .navlinks > a:hover,
header.scrolled .navlinks button.drop-btn:hover, header.inner .navlinks button.drop-btn:hover{background:var(--grey-line-soft);}
.navlinks > a.active, .navlinks .has-drop.active-drop > .drop-btn{color:var(--orange);}
.has-drop{position:relative;}
.drop{
  position:absolute; top:calc(100% + 8px); left:0; min-width:260px;
  background:var(--navy); color:#fff; border:1px solid var(--grey-line);
  padding:6px; z-index:120; border-radius:10px; box-shadow:0 16px 40px rgba(0,0,0,.35);
  opacity:0; visibility:hidden; pointer-events:none;
}
.has-drop.open .drop, .has-drop:hover .drop{opacity:1; visibility:visible; pointer-events:auto;}
.drop a{display:block; padding:9px 12px; white-space:nowrap; border-radius:6px; color:#fff;}
.drop a:hover{background:rgba(255,255,255,.08);}
.navcta{display:flex; align-items:center; gap:10px; flex-shrink:0;}
.socials{display:flex; align-items:center; gap:6px;}
.socials a{
  width:34px; height:34px; border:1px solid rgba(255,255,255,.3); border-radius:8px;
  display:flex; align-items:center; justify-content:center;
}
header.scrolled .socials a, header.inner .socials a{border-color:var(--grey-line);}
.socials a:hover{border-color:var(--orange); color:var(--orange);}
.socials svg{width:15px; height:15px; fill:currentColor;}
.burger{
  display:none; flex-direction:column; justify-content:center; gap:5px; cursor:pointer;
  background:transparent; border:1px solid rgba(255,255,255,.35);
  width:42px; height:42px; border-radius:8px; padding:0 11px; color:inherit;
}
header.scrolled .burger, header.inner .burger{border-color:var(--grey-line);}
.burger span{width:18px; height:2px; background:currentColor; border-radius:2px;}

.hero{position:relative; min-height:100vh; display:flex; align-items:flex-end; background:#000;}
.hero-media{position:absolute; inset:0; overflow:hidden;}
.hero-media video, .hero-media img{
  width:100%; height:100%; object-fit:cover; object-position:center 42%;
  opacity:0.82; transform:scale(1.08);
}
.hero-media video{
  animation: ken 28s ease-in-out infinite alternate;
}
.hero-media::after{
  content:''; position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(6,17,32,0.55) 0%, rgba(6,17,32,0.35) 40%, rgba(6,10,15,0.95) 100%);
}
.hero-content{position:relative; z-index:2; padding:180px 0 64px;}
.hero h1{font-size:clamp(48px, 9vw, 112px); font-weight:900; color:var(--off-white); max-width:920px; animation: rise 1.1s cubic-bezier(.16,1,.3,1) both;}
.hero h1 em{font-style:normal; color:var(--orange-bright);}
.hero p.lead{
  font-family:var(--body); font-size:clamp(16px,2vw,20px); font-weight:500; color:rgba(244,241,234,0.85);
  max-width:520px; margin:12px 0 14px; animation: rise 1.1s .12s cubic-bezier(.16,1,.3,1) both;
}
.hero-actions{display:flex; gap:16px; flex-wrap:wrap; animation: rise 1.1s .22s cubic-bezier(.16,1,.3,1) both;}

.page-hero{position:relative; padding:140px 0 48px; background:var(--navy-deep); border-bottom:1px solid var(--grey-line);}
.page-hero h1{font-size:clamp(32px, 5vw, 56px); font-weight:800; max-width:900px; color:var(--off-white);}
.page-hero p{margin-top:14px; max-width:640px; color:var(--muted); font-size:17px;}
.page-hero p{margin-top:14px; max-width:640px; color:var(--muted); font-size:17px;}
.crumbs{font-family:var(--mono); font-size:11px; letter-spacing:0.08em; text-transform:uppercase; opacity:0.55; margin-bottom:6px;}
.crumbs a:hover{color:var(--orange-bright); opacity:1;}

.ticker{
  background:var(--navy-deep); border-top:1px solid var(--grey-line); border-bottom:1px solid var(--grey-line);
  padding:0; overflow:hidden;
}
.ticker .wrap{max-width:none; padding:0;}
.stat{font-family:var(--mono); text-align:left;}
.stat .num{font-size:22px; color:var(--orange-bright); font-weight:600;}
.stat .lbl{font-size:11px; letter-spacing:0.1em; text-transform:uppercase; opacity:0.65; margin-top:2px;}

section{padding:32px 0;}
.section-head{max-width:680px; margin-bottom:16px;}
.section-head h2{font-size:clamp(34px,5vw,56px); font-weight:800;}
.section-head p{margin-top:16px; font-size:17px; color:var(--muted); max-width:560px;}
.prose{max-width:760px;}
.prose p, .prose li{color:var(--muted); font-size:16px; margin-bottom:16px;}
.prose h2, .prose h3{margin:36px 0 16px;}
.prose ul, .prose ol{margin:0 0 20px 18px;}
.stack{display:flex; flex-direction:column; gap:18px;}

.statement{background:var(--ink); padding:90px 0; text-align:center;}
.statement-text{
  font-family:var(--body); font-weight:700; text-transform:none;
  font-size:clamp(26px, 4vw, 42px); line-height:1.2; letter-spacing:-0.02em;
  color:var(--text); max-width:860px; margin:0 auto;
}
.statement-text span{color:var(--text); display:inline;}
.statement-text em{color:var(--orange-bright); font-style:normal;}

.intro{background:var(--ink);}
.intro-grid{display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center;}
.intro-copy p{color:var(--muted); font-size:16px; margin-bottom:16px;}
.intro-copy p:first-of-type{font-size:18px; color:var(--off-white); font-weight:500;}
.roles{display:flex; flex-wrap:wrap; gap:10px; margin-top:26px;}
.role-chip{
  font-size:12px; border:1px solid var(--grey-line); padding:7px 12px; border-radius:999px; color:var(--muted); background:transparent;
}
.intro-media{position:relative; border-radius:4px; overflow:hidden;}
.intro-media img{width:100%; height:100%; object-fit:cover; min-height:380px;}

.range{background:var(--navy-deep); border-top:1px solid var(--grey-line); border-bottom:1px solid var(--grey-line);}
.range-grid{display:grid; grid-template-columns:repeat(auto-fill, minmax(250px,1fr)); gap:16px;}
.range-card{
  background:var(--navy); border:1px solid var(--grey-line); border-radius:10px; padding:28px 24px; display:flex; flex-direction:column; justify-content:space-between;
  min-height:180px; color:var(--off-white);
}
.range-card:hover{border-color:rgba(255,106,48,.5); background:#0d2138;}
.range-tag{font-family:var(--mono); font-size:11px; letter-spacing:0.1em; text-transform:uppercase; color:var(--yellow); margin-bottom:14px;}
.range-card h3{font-size:26px; font-weight:700; margin-bottom:8px;}
.range-card .spec-line{font-size:14px; color:var(--muted); text-transform:none; letter-spacing:0;}
.range-card .enquire{margin-top:22px; font-family:var(--mono); font-size:12px; letter-spacing:0.06em; text-transform:uppercase; color:var(--orange-bright); display:inline-flex; align-items:center; gap:6px;}
.range-card .enquire::after{content:'→'; transition:transform .2s;}
.range-card:hover .enquire::after{transform:translateX(4px);}

.racing{position:relative; background:#000;}
.racing-media{position:absolute; inset:0;}
.racing-media img{width:100%; height:100%; object-fit:cover; opacity:0.32;}
.racing-media::after{content:''; position:absolute; inset:0; background:linear-gradient(180deg, rgba(6,10,15,0.85), rgba(6,10,15,0.96));}
.racing .wrap{position:relative; z-index:2;}
.racing .section-head h2{color:var(--off-white);}
.hud-grid{display:grid; grid-template-columns:1.1fr 1fr; gap:50px; align-items:start;}
.hud-panel{border:1px solid rgba(255,255,255,.2); background:rgba(12,12,12,.72); padding:24px; border-radius:10px; color:#fff; overflow-x:auto;}
.hud-panel h3{font-family:var(--mono); font-size:12px; letter-spacing:0.12em; text-transform:uppercase; color:var(--orange-bright); margin-bottom:18px; display:flex; justify-content:space-between;}
table{width:100%; border-collapse:collapse; font-family:var(--mono); font-size:13px;}
table th{text-align:left; font-weight:600; color:var(--muted); font-size:12px; padding:10px 12px 10px 0; border-bottom:1px solid var(--grey-line);}
table td{padding:9px 12px 9px 0; border-bottom:1px solid var(--grey-line-soft); color:var(--text);}
.hud-panel table th, .hud-panel table td, .racing table td{color:#f4f1ea;}
.hud-panel table th{color:rgba(255,255,255,.6);}
table tr:last-child td{border-bottom:none;}
.spec-wrap{overflow-x:auto; border:1px solid var(--grey-line); background:var(--navy); padding:8px 18px 4px; margin:28px 0; border-radius:10px;}
.spec-wrap table, .spec-wrap th, .spec-wrap td{color:var(--off-white);}
table th{color:rgba(244,241,234,.55);}
table td{color:var(--off-white);}
.equip-card{border:1px solid var(--grey-line); padding:24px; background:var(--navy); border-radius:10px;}
.equip-card h3{color:var(--off-white);}
.equip-card ul{margin:0; padding:0; list-style:disc inside;}
.equip-card li{color:rgba(244,241,234,.88); margin-left:0; margin-bottom:8px;}
.dealer, .history-card, .care-card, .trust-card, .link-card, .speed-card{
  background:var(--navy); border:1px solid var(--grey-line); color:var(--off-white);
}
.dealer p, .history-card p, .care-card p, .trust-card p, .speed-card p, .repontoon p, .circuit-intro p{color:var(--muted);}
.quote p{color:var(--off-white);}
footer{background:var(--ink); color:var(--off-white);}
.contact-info p{color:var(--muted);}
input, select, textarea{background:rgba(255,255,255,.06); border:1px solid var(--grey-line); color:var(--off-white);}
select option{background:var(--navy); color:var(--off-white);}
.navlinks.mobile-open{
  background:var(--navy); color:#fff; border:1px solid var(--grey-line);
}
.navlinks.mobile-open .has-drop, .navlinks.mobile-open button.drop-btn{
  width:100%; justify-content:flex-start; text-align:left;
}
.modal-panel{background:var(--navy); color:var(--off-white); border:1px solid var(--grey-line);}
.modal-close{background:transparent; color:#fff; border:1px solid var(--grey-line);}
.captcha-code{background:#0c1828; border:1px solid var(--grey-line); color:#fff;}
.captcha-refresh{background:transparent; color:#fff; border:1px solid var(--grey-line);}
.cta-band{background:var(--navy); border-top:1px solid var(--grey-line);}
.cta-band-inner{display:flex; justify-content:space-between; align-items:center; gap:24px; flex-wrap:wrap;}
.cta-band h2{font-size:clamp(26px,4vw,40px); margin-bottom:8px;}
.cta-band p{color:var(--muted); max-width:480px;}
@media (max-width:1100px){
  .brand img{height:72px;}
}
@media (max-width:860px){
  .brand img{height:64px; padding:2px;}
}
.spec-wrap table{min-width:860px;}
.top-speed-callout{
  margin-top:26px; padding:24px; border:1px solid rgba(255,106,48,0.35); background:rgba(232,83,31,0.08); border-radius:4px;
}
.top-speed-callout .num{font-family:var(--display); font-size:64px; font-weight:900; color:var(--orange-bright); line-height:1;}
.top-speed-callout .cap{font-family:var(--mono); font-size:11px; letter-spacing:0.1em; text-transform:uppercase; opacity:0.7; margin-top:8px;}
.racing-copy p{color:rgba(244,241,234,0.75); font-size:16px; margin-bottom:16px;}

.history{background:var(--ink);}
.history-grid{display:grid; grid-template-columns:1fr 1fr; gap:16px;}
.history-card{background:#fff; border:1px solid var(--grey-line); border-radius:12px; padding:32px 28px;}
.history-year{font-family:var(--mono); font-size:12px; letter-spacing:0.1em; text-transform:uppercase; color:var(--yellow); margin-bottom:14px;}
.history-card h3{font-size:26px; font-weight:700; margin-bottom:16px; text-transform:none; letter-spacing:0;}
.history-card p{color:var(--muted); font-size:15px; margin-bottom:14px;}
.history-card p:last-child{margin-bottom:0;}
.history-card p.accent{color:var(--orange-bright); font-weight:500;}

.family{background:var(--ink);}
.family-grid{display:grid; grid-template-columns:1fr 1fr; gap:24px; margin-bottom:20px;}
.family-grid img{border-radius:4px; width:100%; height:340px; object-fit:cover;}
.quote{border-left:3px solid var(--orange); padding-left:28px; max-width:760px;}
.quote p{font-family:var(--body); font-size:clamp(22px,3vw,32px); font-weight:600; text-transform:none; line-height:1.3; color:var(--text);}
.quote cite{display:block; margin-top:18px; font-family:var(--mono); font-size:12px; letter-spacing:0.08em; text-transform:uppercase; color:var(--orange-bright); font-style:normal;}

.colours{background:var(--navy-deep); border-top:1px solid var(--grey-line); border-bottom:1px solid var(--grey-line);}
.swatch-grid{display:grid; grid-template-columns:repeat(auto-fill, minmax(150px,1fr)); gap:14px;}
.swatch{border:1px solid var(--grey-line); border-radius:4px; overflow:hidden;}
.swatch-fill{height:88px;}
.swatch-label{padding:12px 14px; font-family:var(--mono); font-size:11.5px; letter-spacing:0.05em; text-transform:uppercase; background:rgba(255,255,255,0.02);}
.colours-note{margin-top:28px; font-size:14px; color:var(--muted); max-width:560px;}

.care{background:var(--navy-deep); border-top:1px solid var(--grey-line); border-bottom:1px solid var(--grey-line);}
.care-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:16px;}
.care-card{background:#fff; border:1px solid var(--grey-line); border-radius:12px; padding:24px;}
.care-num{font-family:var(--mono); font-size:24px; color:var(--yellow); font-weight:600; margin-bottom:10px;}
.care-card p{font-size:14px; color:var(--muted);}

.trust{background:var(--ink);}
.trust-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin-bottom:20px;}
.trust-card{background:#fff; border:1px solid var(--grey-line); border-radius:12px; padding:28px;}
.trust-card .num{font-family:var(--display); font-size:44px; font-weight:800; color:var(--orange-bright);}
.trust-card p{margin-top:10px; font-size:14px; color:var(--muted);}
.repontoon{
  display:grid; grid-template-columns:1fr 1fr; gap:40px; align-items:center;
  border:1px solid var(--grey-line); border-radius:12px; padding:40px; background:#fff;
}
.repontoon h3{font-size:32px; font-weight:700; margin-bottom:16px;}
.repontoon p{color:var(--muted); margin-bottom:24px;}

.contact{background:var(--navy-deep); border-top:1px solid var(--grey-line);}
.contact-grid{display:grid; grid-template-columns:0.9fr 1.1fr; gap:60px;}
.contact-info h2{font-size:clamp(32px,4.5vw,50px); font-weight:800; margin-bottom:20px;}
.contact-info p{color:rgba(244,241,234,0.72); margin-bottom:30px; max-width:420px;}
.contact-line{display:flex; gap:14px; padding:16px 0; border-top:1px solid var(--grey-line-soft); font-family:var(--mono); font-size:14px;}
.contact-line:last-child{border-bottom:1px solid var(--grey-line-soft);}
.contact-line span.lbl{opacity:0.5; min-width:90px; text-transform:uppercase; font-size:11px; letter-spacing:0.08em; padding-top:2px;}
.contact-line a:hover{color:var(--orange-bright);}
form{display:flex; flex-direction:column; gap:16px; position:relative; min-width:0; max-width:100%;}
.field{display:flex; flex-direction:column; gap:8px; min-width:0;}
label{font-family:var(--body); font-size:13px; letter-spacing:0.02em; text-transform:none; font-weight:600; opacity:0.8;}
input, select, textarea{
  background:#fff; border:1px solid var(--grey-line); color:var(--text);
  padding:12px 14px; font-family:var(--body); font-size:15px; border-radius:8px; outline:none;
  width:100%; max-width:100%; min-width:0; box-sizing:border-box;
}
input:focus, select:focus, textarea:focus{border-color:var(--orange);}
select option{background:#fff; color:var(--text);}
textarea{resize:vertical; min-height:100px;}
.form-row{display:grid; grid-template-columns:minmax(0,1fr) minmax(0,1fr); gap:16px;}
.phone-group{display:grid; grid-template-columns:minmax(86px,110px) minmax(0,1fr); gap:8px; min-width:0;}
.phone-group select{font-family:var(--body); font-size:13px; letter-spacing:0; padding-left:8px; padding-right:4px;}
.form-note{font-size:13px; color:var(--muted); margin-top:4px;}
.form-ok{background:#eef7e8; border:1px solid #cde0c2; color:#2d5a1e; padding:12px 14px; border-radius:8px;}
.form-err{color:#b42318; font-size:14px;}
.hp{
  position:absolute; left:0; top:0; width:1px; height:1px; margin:0; padding:0;
  overflow:hidden; clip:rect(0,0,0,0); border:0; opacity:0; pointer-events:none;
}

.photo-grid{
  display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:14px;
}
.photo-grid figure{
  margin:0; position:relative; overflow:hidden; border-radius:6px; min-height:280px;
  isolation:isolate;
}
.photo-grid figure:first-child{grid-row: span 2; min-height:560px;}
.photo-grid img{
  width:100%; height:100%; object-fit:cover; position:absolute; inset:0;
  transform:scale(1.04); transition:transform 1.1s cubic-bezier(.16,1,.3,1);
  border:none; border-radius:0;
}
.photo-grid figure:hover img{transform:scale(1.12);}
.photo-grid figcaption{
  position:absolute; left:0; right:0; bottom:0; margin:0; z-index:2;
  padding:48px 22px 20px;
  background:linear-gradient(180deg, transparent 0%, rgba(6,10,15,0.92) 70%);
  font-family:var(--display); font-size:clamp(18px,2.2vw,28px); font-weight:800;
  letter-spacing:0.01em; text-transform:uppercase; line-height:1.05; opacity:1; color:var(--off-white);
}
.equip-grid{display:grid; grid-template-columns:1fr 1fr; gap:24px; margin:28px 0 40px;}
.equip-card{border:1px solid var(--grey-line); padding:24px; background:#fff; border-radius:12px;}
.equip-card h3{font-size:20px; margin-bottom:14px;}
.equip-card li{color:var(--muted); margin-left:18px; margin-bottom:6px;}
.dealer-grid{display:grid; grid-template-columns:repeat(auto-fill, minmax(250px,1fr)); gap:16px;}
.dealer{
  border:1px solid var(--grey-line); padding:22px; background:#fff; border-radius:12px;
  display:flex; flex-direction:column; gap:10px;
}
.dealer img{width:100%; height:180px; object-fit:cover; object-position:top; border-radius:2px;}
.dealer h3{font-size:22px; margin-top:6px;}
.dealer p, .dealer a{font-size:14px; color:var(--muted);}
.dealer a{color:var(--orange-bright);}
.doc-list{display:grid; gap:8px;}
.doc-list a{
  display:flex; justify-content:space-between; gap:16px; align-items:center;
  border:1px solid var(--grey-line); padding:14px 16px; font-family:var(--mono); font-size:12px;
  letter-spacing:0.04em; text-transform:uppercase;
}
.doc-list a:hover{border-color:var(--orange-bright); color:var(--orange-bright);}
.video-grid{display:grid; grid-template-columns:1fr 1fr; gap:16px; margin:28px 0;}
.video-grid iframe{width:100%; aspect-ratio:16/9; border:0; border-radius:4px;}
.link-card{
  display:flex; gap:20px; align-items:center; border:1px solid var(--grey-line);
  padding:22px; background:#fff; border-radius:12px;
}
.link-card img{width:90px; height:90px; object-fit:contain; background:#fff; border-radius:4px; padding:8px;}
.two-col{display:grid; grid-template-columns:1.2fr 0.8fr; gap:48px; align-items:start;}

footer{padding:22px 0; background:#fff; border-top:1px solid var(--grey-line); margin-top:auto;}
footer .wrap{display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:16px;}
.foot-brand{display:flex; align-items:center; gap:12px; font-weight:700; font-size:16px;}
footer .fine{font-family:var(--mono); font-size:11px; opacity:0.45; letter-spacing:0.04em;}
.foot-links{display:flex; gap:14px; align-items:center; flex-wrap:wrap;}

.float-btns{position:fixed; right:22px; bottom:22px; z-index:200; display:flex; flex-direction:column; gap:12px;}
.whatsapp-btn, .contact-float{
  width:52px; height:52px; border-radius:14px; border:0; cursor:pointer; color:#fff;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 8px 20px rgba(0,0,0,0.22);
}
.whatsapp-btn{background:#25D366; color:#0c0f12;}
.contact-float{background:var(--orange);}
.whatsapp-btn:hover, .contact-float:hover{transform:translateY(-2px);}
.contact-float svg, .whatsapp-btn svg{width:22px; height:22px; fill:currentColor;}

.reveal{opacity:0; transform:translateY(16px); transition:opacity .5s ease, transform .5s ease;}
.reveal.in{opacity:1; transform:none; filter:none;}

.navlinks.mobile-open{
  display:flex; position:absolute; top:calc(100% + 8px); left:12px; right:12px; flex-direction:column;
  background:#fff; color:var(--text); padding:10px; gap:4px;
  border:1px solid var(--grey-line); border-radius:12px;
  max-height:calc(100vh - 72px); overflow:auto;
  box-shadow:0 16px 40px rgba(0,0,0,.12);
}
.navlinks.mobile-open a, .navlinks.mobile-open button.drop-btn{
  padding:12px 14px; border-bottom:none; font-size:13px; text-align:left; width:100%;
  border-radius:12px;
}
.navlinks.mobile-open .drop{
  position:static; display:none; border:none; background:transparent; padding:0 0 6px 8px;
  opacity:1; visibility:visible; transform:none; pointer-events:auto;
  box-shadow:none; backdrop-filter:none;
}
.navlinks.mobile-open .has-drop.open .drop{display:block;}
.navlinks.mobile-open .drop a{padding:9px 12px; font-size:12px;}
.burger.open span:nth-child(1){transform:translateY(7px) rotate(45deg);}
.burger.open span:nth-child(2){opacity:0;}
.burger.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}

@media (max-width:1100px){
  .navlinks{gap:2px; font-size:13px;}
  .navlinks > a, .navlinks button.drop-btn{padding:8px 9px;}
  .brand img{height:76px;}
}
@media (max-width:860px){
  .navlinks{display:none; background:none; border:none; padding:0; border-radius:0;}
  .burger{display:flex;}
  .socials{display:none;}
  .navlinks.mobile-open .mobile-socials{display:flex; gap:10px; padding-top:14px;}
  .intro-grid, .hud-grid, .family-grid, .repontoon, .contact-grid, .equip-grid, .video-grid, .two-col, .history-grid, .racing-split{grid-template-columns:1fr;}
  .trust-grid, .care-grid{grid-template-columns:1fr;}
  .family-grid img, .intro-media img{height:240px; min-height:240px;}
  section{padding:28px 0;}
  .form-row{grid-template-columns:1fr;}
  .page-hero{padding:88px 0 0;}
  .repontoon{padding:24px;}
  .float-btns{right:16px; bottom:16px;}
  .link-card{flex-direction:column; align-items:flex-start;}
  .photo-grid, .cinematic, .speed-grid, .champ-list{grid-template-columns:1fr;}
  .photo-grid figure:first-child{grid-row:auto; min-height:320px;}
  .shot.feature{min-height:420px;}
}
.mobile-socials{display:none;}


.range-card, .dealer, .equip-card, .history-card, .care-card, .trust-card, .link-card{
  transition: transform .4s cubic-bezier(.16,1,.3,1), background .3s, border-color .3s, box-shadow .4s;
}
.range-card:hover, .dealer:hover, .history-card:hover, .link-card:hover{
  transform:translateY(-6px);
  box-shadow:0 24px 50px rgba(0,0,0,.35);
}
.intro-media img, .family-grid img, .dealer img, .repontoon img{
  transition: transform 1.1s cubic-bezier(.16,1,.3,1);
}
.intro-media:hover img, .family-grid img:hover, .dealer:hover img{transform:scale(1.07);}

@keyframes rise{
  from{opacity:0; transform:translateY(28px);}
  to{opacity:1; transform:none;}
}
@keyframes ken{
  from{transform:scale(1.08) translate3d(0,0,0);}
  to{transform:scale(1.18) translate3d(-1.5%, -1.5%, 0);}
}
@keyframes marquee{
  from{transform:translateX(0);}
  to{transform:translateX(-50%);}
}

.ticker{overflow:hidden; padding:0;}
.ticker-track{
  display:flex; width:max-content; animation: marquee 28s linear infinite;
}
.ticker .stat{padding:22px 48px; border-right:1px solid var(--grey-line); min-width:280px;}

.champ-list{display:grid; grid-template-columns:1fr 1fr; gap:12px; margin:8px 0 24px; border-top:none;}
.champ-row{
  display:grid; grid-template-columns:88px 1fr; gap:14px; align-items:center;
  padding:16px 18px; border:1px solid var(--grey-line-soft); border-radius:14px; background:#fff;
  transition: background .3s, transform .2s;
}
.champ-row:hover{background:#fff8e6; transform:translateY(-2px);}
.champ-row .year{font-family:var(--display); font-size:42px; font-weight:900; color:var(--orange-bright); line-height:1;}
.champ-row .who{font-size:20px; font-weight:600;}
.champ-row .meta{font-family:var(--mono); font-size:11px; letter-spacing:.12em; text-transform:uppercase; opacity:.55; margin-top:4px;}

.speed-grid{display:grid; grid-template-columns:repeat(5,1fr); gap:12px; margin:12px 0 16px;}
.speed-card{
  border:1px solid var(--grey-line); padding:22px 18px 20px; min-height:160px;
  background:#fff; border-radius:12px;
}
.speed-card:hover{border-color:#d2ccc0;}
.speed-card .kph{font-family:var(--display); font-size:clamp(28px,3vw,44px); font-weight:900; color:var(--orange-bright); line-height:1;}
.speed-card .unit{font-family:var(--mono); font-size:10px; letter-spacing:.14em; text-transform:uppercase; opacity:.55; margin:8px 0 14px;}
.speed-card h3{font-size:16px; text-transform:none; letter-spacing:0; margin-bottom:6px;}
.speed-card p{font-size:13px; color:var(--muted);}

.cinematic{
  display:grid; grid-template-columns:1.7fr .9fr; grid-template-rows:1fr 1fr; gap:14px; min-height:0;
}
.shot{
  position:relative; overflow:hidden; border-radius:8px; isolation:isolate; min-height:220px;
}
.shot.feature{grid-row: span 2; min-height:460px;}
.shot img{
  width:100%; height:100%; object-fit:cover; position:absolute; inset:0;
  transform:scale(1.04); transition:transform 1.2s cubic-bezier(.16,1,.3,1);
}
.shot:hover img{transform:scale(1.1);}
.shot-copy{
  position:absolute; left:0; right:0; bottom:0; z-index:2;
  padding:clamp(24px,5vw,56px) clamp(20px,3vw,40px) 28px;
  background:linear-gradient(180deg, transparent 0%, rgba(6,10,15,.55) 38%, rgba(6,10,15,.94) 100%);
}
.shot-copy h3{font-size:clamp(26px,4vw,48px); font-weight:900; margin:8px 0 10px; max-width:16ch;}
.shot-copy p{max-width:42ch; color:rgba(244,241,234,.82); font-size:16px;}
.shot-copy h3, .shot-copy p, .photo-grid figcaption{
  color:#f4f1ea !important;
}
.shot-copy .eyebrow{color:#ffbf00 !important;}
.shot-copy h3{text-shadow:0 2px 12px rgba(0,0,0,.55);}
.circuit-intro{max-width:720px; margin:8px 0 10px;}
.circuit-intro h2{font-size:clamp(32px,5vw,52px); font-weight:800; margin-bottom:8px;}
.circuit-intro p{font-size:16px; color:var(--muted); margin-bottom:6px;}
.circuit-intro .eyebrow{margin-bottom:6px;}


.modal-root{
  position:fixed; inset:0; z-index:400; display:flex; align-items:flex-start; justify-content:center;
  padding:72px 16px 24px; opacity:0; visibility:hidden; pointer-events:none;
  overflow:hidden;
}
.modal-root.open{opacity:1; visibility:visible; pointer-events:auto;}
.modal-backdrop{position:absolute; inset:0; background:rgba(20,18,14,.45);}
.modal-panel{
  position:relative; width:min(560px, 100%); max-width:100%; max-height:min(92vh, 860px);
  overflow-x:hidden; overflow-y:auto;
  background:#fff; color:var(--text); border:1px solid var(--grey-line); border-radius:12px;
  box-shadow:0 24px 60px rgba(0,0,0,.18); padding:24px 22px 20px;
  box-sizing:border-box;
}
.modal-panel *, .modal-panel *::before, .modal-panel *::after{max-width:100%; box-sizing:border-box;}
.modal-close{
  position:absolute; top:12px; right:12px; width:36px; height:36px; border-radius:8px;
  border:1px solid var(--grey-line); background:#fff; color:var(--text); cursor:pointer; font-size:22px;
}
.modal-panel h2{font-size:28px; font-weight:800; margin:4px 0 8px; padding-right:40px; overflow-wrap:anywhere;}
.modal-panel .lead-mini{color:var(--muted); margin-bottom:18px; font-size:15px;}
.boat-colour{margin:8px 0 16px; --top:#f4f1ea; --bot:#c4122f;}
.boat-stage{
  background:#b8bcc2;
  border-radius:14px;
  padding:16px 14px 12px;
  margin-bottom:10px;
}
.boat-canvas{width:100%; height:auto; display:block;}
.tone-cards{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}
.tone-card{
  background:#fff;
  border:1px solid rgba(10,26,43,.12);
  border-radius:12px;
  padding:10px 10px 8px;
}
.tone-lbl{
  display:block;
  font-size:11px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-bottom:8px;
  color:#0a1a2b;
}
.swatch-row{display:flex; flex-wrap:wrap; gap:6px;}
.swatch-dot{
  width:22px; height:22px; border-radius:6px; padding:0;
  border:2px solid rgba(10,26,43,.22);
  cursor:pointer; background:#ccc;
}
.swatch-dot.on{
  border-color:#0a1a2b;
  box-shadow:0 0 0 2px #ffbf00;
}
.tone-picked{display:block; margin-top:8px; font-size:13px; color:#0a1a2b;}
body.modal-open{overflow:hidden;}

.captcha{display:flex; flex-direction:column; gap:8px; min-width:0;}
.captcha-row{display:flex; gap:8px; align-items:stretch; min-width:0;}
.captcha-code{
  flex:1; min-width:0; font-family:var(--body); font-size:18px; letter-spacing:.18em;
  text-align:center; padding:12px 8px; background:#f3efe6; border:1px solid var(--grey-line);
  color:#222; user-select:none; border-radius:8px;
}
.captcha-refresh{
  border:1px solid var(--grey-line); background:#fff; color:var(--text); cursor:pointer;
  padding:0 12px; border-radius:8px; font-size:13px; font-weight:600; white-space:nowrap;
}
.captcha-refresh:hover{background:var(--grey-line-soft);}
.captcha-error{color:#b42318; font-size:13px; margin:0;}
.captcha-error[hidden]{display:none;}

@media (max-width:1100px){
  .speed-grid{grid-template-columns:1fr 1fr;}
}
@media (max-width:860px){
  .speed-grid{grid-template-columns:1fr;}
  .champ-row{grid-template-columns:1fr;}
  .cinematic{min-height:0;}
  .shot.feature{grid-row:auto;}
  .modal-panel{width:100%; padding:20px 16px 16px;}
  .modal-panel .form-row{grid-template-columns:1fr;}
}
.history-card, .care-card, .trust-card, .dealer, .link-card, .speed-card, .repontoon, .equip-card{
  background:var(--navy) !important; color:var(--off-white) !important;
}
footer{background:var(--ink) !important; color:var(--off-white) !important;}
.navlinks.mobile-open{background:var(--navy) !important; color:#fff !important;}
.modal-panel{background:var(--navy) !important; color:var(--off-white) !important;}
.modal-close, .captcha-refresh{background:transparent !important; color:#fff !important; border-color:var(--grey-line) !important;}
.captcha-code{background:#081422 !important; color:#fff !important; border-color:var(--grey-line) !important;}
input, select, textarea{background:rgba(255,255,255,.06) !important; color:var(--off-white) !important;}

.hero{overflow:hidden;}
.page-hero h1{animation: rise .8s cubic-bezier(.16,1,.3,1) both;}
.page-hero p{animation: rise .8s .1s cubic-bezier(.16,1,.3,1) both;}

.btn{
  position:relative; overflow:hidden;
  transition: transform .28s cubic-bezier(.16,1,.3,1), box-shadow .28s ease, background .28s ease, border-color .28s ease;
}
.btn::after{
  content:''; position:absolute; inset:0;
  background:linear-gradient(110deg, transparent 18%, rgba(255,255,255,.38) 48%, transparent 72%);
  transform:translateX(-130%);
  transition:transform .55s ease;
  pointer-events:none;
}
.btn:hover{ transform:translateY(-3px) scale(1.04); }
.btn:hover::after{ transform:translateX(130%); }
.btn:active{ transform:translateY(0) scale(.98); }
.btn-primary{
  background:linear-gradient(180deg, var(--yellow-bright), var(--yellow));
  color:var(--navy);
  box-shadow:0 0 0 1px rgba(255,191,0,.35), 0 10px 28px rgba(255,191,0,.28);
  animation: btnGlow 6s ease-in-out infinite;
}
.btn-ghost{
  animation: none;
}
.btn-ghost:hover{ box-shadow:0 8px 24px rgba(0,0,0,.25); border-color:var(--yellow); color:var(--off-white); }

.float-btns{position:fixed; right:22px; bottom:22px; z-index:200; display:flex; flex-direction:column; gap:16px;}
.whatsapp-btn, .contact-float{
  width:58px; height:58px; border-radius:18px; border:0; cursor:pointer; color:#fff;
  display:flex; align-items:center; justify-content:center; position:relative;
  box-shadow:0 12px 28px rgba(0,0,0,.4);
  animation: floatBob 7.5s ease-in-out infinite;
  transition:transform .35s ease, box-shadow .35s ease;
}
.contact-float{background:linear-gradient(180deg, var(--yellow-bright), var(--yellow)); color:var(--navy); animation-delay:1.2s;}
.whatsapp-btn{background:#25D366; color:#0c0f12;}
.whatsapp-btn:hover, .contact-float:hover{
  transform:translateY(-3px) scale(1.05);
  animation-play-state:paused;
  box-shadow:0 16px 36px rgba(0,0,0,.5);
}
.contact-float::before, .whatsapp-btn::before{
  content:''; position:absolute; inset:-6px; border-radius:22px; border:1.5px solid currentColor;
  animation: pulseRing 5.5s ease-out infinite; pointer-events:none;
}
.contact-float::before{border-color:rgba(255,191,0,.45); animation-delay:1.4s;}
.whatsapp-btn::before{border-color:rgba(37,211,102,.4);}
.contact-float svg, .whatsapp-btn svg{width:24px; height:24px; fill:currentColor; position:relative; z-index:1;}

.brand img{animation: logoPulse 8s ease-in-out infinite;}
.hero h1{animation: rise .9s cubic-bezier(.16,1,.3,1) both;}
.hero h1 em, .racing-copy h2 em, .intro-copy h2{
  font-style:normal;
}
.hero h1 em, .racing-copy h2 em{
  color:var(--orange-bright);
  text-shadow:0 0 18px rgba(255,106,48,.45);
  animation: raceFlash 5s ease-in-out infinite;
}
.hero p.lead{animation: rise .9s .12s cubic-bezier(.16,1,.3,1) both;}
.hero-actions{animation: rise .9s .22s cubic-bezier(.16,1,.3,1) both;}
.eyebrow{
  display:inline-flex; align-items:center; gap:10px;
  animation: rise .7s cubic-bezier(.16,1,.3,1) both;
}
.eyebrow::before{
  content:''; width:28px; height:3px; background:var(--yellow);
  box-shadow:0 0 12px rgba(242,169,0,.85);
  animation: stripeRun 4.5s ease-in-out infinite;
}
.section-head h2, .intro-copy h2, .cta-band h2, .racing-copy h2{
  animation: rise .8s cubic-bezier(.16,1,.3,1) both;
}

.range-tag{
  display:inline-block; background:var(--yellow); color:#0a1a2b;
  padding:3px 10px; font-weight:800; letter-spacing:0.14em;
  transform:skewX(-12deg); border-radius:2px;
  animation: plateFlick 7s ease-in-out infinite;
}
.range-card .enquire{
  transition: transform .25s ease, letter-spacing .25s ease;
}
.range-card:hover .enquire{ transform:translateX(6px); letter-spacing:.12em; }
.range-card{
  transition: transform .35s cubic-bezier(.16,1,.3,1), border-color .3s, box-shadow .35s, background .3s;
}
.range-card:hover{
  transform:translateY(-8px);
  border-color:rgba(255,106,48,.55);
  box-shadow:0 18px 40px rgba(0,0,0,.35), 0 0 0 1px rgba(255,106,48,.25);
}

.racing{
  background:var(--navy-deep);
  padding:32px 0;
  border-top:1px solid var(--grey-line);
}
.racing-media{display:none;}
.racing-split{
  display:grid; grid-template-columns:1.15fr .85fr; gap:48px; align-items:center;
}
.racing-shot{
  margin:0; position:relative; overflow:hidden; border-radius:4px;
  min-height:420px; isolation:isolate;
  box-shadow:0 24px 60px rgba(0,0,0,.45);
}
.racing-shot img{
  width:100%; height:100%; object-fit:cover; position:absolute; inset:0;
  animation: ken 22s ease-in-out infinite alternate;
}
.racing-copy h2{font-size:clamp(36px,5vw,58px); font-weight:900; text-transform:uppercase; font-family:var(--display); letter-spacing:.01em; line-height:.95;}
.racing-copy p{margin:16px 0 0; font-size:17px; color:var(--muted); max-width:42ch;}
.race-hud{
  display:grid; grid-template-columns:repeat(3,1fr); gap:12px; margin:28px 0 26px;
}
.hud-stat{
  border:1px solid var(--grey-line); padding:14px 12px 12px; background:rgba(10,26,43,.7);
}
.hud-stat b{
  display:block; font-family:var(--display); font-size:clamp(28px,3vw,40px); font-weight:900;
  color:var(--orange-bright); line-height:1; animation: raceFlash 6.5s ease-in-out infinite;
}
.hud-stat span{
  display:block; margin-top:6px; font-family:var(--mono); font-size:10px;
  letter-spacing:.12em; text-transform:uppercase; color:var(--muted);
}

.navlinks > a, .navlinks button.drop-btn{
  transition: color .2s, background .2s, transform .2s;
}
.navlinks > a:hover, .navlinks button.drop-btn:hover{ transform:translateY(-1px); color:#fff; }

@keyframes btnGlow{
  0%,100%{ box-shadow:0 0 0 1px var(--yellow), 0 8px 22px rgba(232,83,31,.28); }
  50%{ box-shadow:0 0 0 1px #ffe08a, 0 12px 28px rgba(232,83,31,.42); }
}
@keyframes ghostPulse{
  0%,100%{ border-color:rgba(244,241,234,.28); }
  50%{ border-color:rgba(242,169,0,.45); }
}
@keyframes floatBob{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-3px); }
}
@keyframes pulseRing{
  0%{ transform:scale(.96); opacity:.35; }
  70%{ transform:scale(1.12); opacity:0; }
  100%{ transform:scale(1.12); opacity:0; }
}
@keyframes logoPulse{
  0%,100%{ transform:scale(1); }
  50%{ transform:scale(1.02); }
}
@keyframes raceFlash{
  0%,100%{ text-shadow:0 0 8px rgba(255,106,48,.18); }
  50%{ text-shadow:0 0 14px rgba(255,106,48,.4); }
}
@keyframes stripeRun{
  0%,100%{ width:22px; opacity:.7; }
  50%{ width:30px; opacity:1; }
}
@keyframes plateFlick{
  0%,100%{ box-shadow:none; }
  50%{ box-shadow:0 0 14px rgba(242,169,0,.55); }
}

@media (max-width:1100px){
  .brand img{height:76px !important;}
  .racing-split{grid-template-columns:1fr; gap:28px;}
  .racing-shot{min-height:320px;}
}
@media (max-width:860px){
  .brand img{height:68px !important; padding:2px;}
  .race-hud{grid-template-columns:1fr 1fr 1fr; gap:8px;}
  .hud-stat{padding:10px 8px;}
}

@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{animation:none !important; transition:none !important;}
  .hero-media video, .hero-media img{height:100%; animation:none;}
}

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800&display=swap');

body{
  background:#f4f1ea !important;
  color:#0a1a2b !important;
  font-family:'Plus Jakarta Sans', Barlow, sans-serif !important;
  min-height:100vh;
  display:flex;
  flex-direction:column;
}
h1,h2,h3,label,cite,.crumbs,.stat .lbl,.range-tag,.enquire,.hud-stat span,.doc-list a,.foot-brand,footer .fine{
  font-family:'Plus Jakarta Sans', Barlow, sans-serif !important;
}
.hero, .hero h1, .hero p, .hero .eyebrow{color:#f4f1ea;}
.hero h1{
  font-family:'Big Shoulders Display', sans-serif !important;
  text-transform:uppercase !important;
}
.page-hero{
  background:#f4f1ea !important;
  color:#0a1a2b !important;
  border-bottom:none !important;
  padding:112px 0 0 !important;
}
.page-hero + section{
  padding-top:8px !important;
  padding-bottom:28px !important;
}
.page-hero h1{
  font-family:'Plus Jakarta Sans', sans-serif !important;
  text-transform:none !important;
  letter-spacing:-0.03em !important;
  color:#0a1a2b !important;
  font-size:clamp(30px, 4vw, 44px) !important;
  line-height:1.08 !important;
  font-weight:800 !important;
  margin:0 !important;
}
.page-hero p{color:#334155 !important; max-width:62ch; margin-top:6px !important; font-weight:500;}
.crumbs{font-family:'Plus Jakarta Sans', sans-serif !important; letter-spacing:.04em; margin-bottom:4px !important; opacity:.7;}
header, header.scrolled, header.inner{color:#f4f1ea;}
.intro, .racing, .cta-band, .contact, .history, .care, .trust, .colours, section{
  background:#f4f1ea !important;
  color:#0a1a2b !important;
}
.hero, .ticker{background:#0a1a2b !important; color:#f4f1ea !important;}
.ticker{border-color:rgba(244,241,234,.16) !important;}
.stat .num{color:#ffbf00 !important;}
.prose{max-width:none;}
.prose p, .prose li{color:#1e293b !important; font-size:16px; line-height:1.55; margin-bottom:10px;}
.prose h2, .prose h3{color:#0a1a2b !important; margin-top:18px;}
.prose p:has(.btn), .news-feature p:has(.btn){margin:10px 0 0 !important;}
.section-head h2, .intro-copy h2, .cta-band h2, .racing-copy h2{
  color:#0a1a2b !important;
  font-family:'Plus Jakarta Sans', sans-serif !important;
  text-transform:none !important;
  letter-spacing:-0.03em !important;
}
.racing-copy h2{font-size:clamp(32px,4.4vw,48px) !important;}
.intro-copy p, .racing-copy p, .cta-band p, .section-head p{color:rgba(10,26,43,.7) !important;}
.eyebrow{color:#0a1a2b !important;}
.hero .eyebrow{color:#ffbf00 !important;}

.two-col{
  display:grid !important;
  grid-template-columns:minmax(0,1.05fr) minmax(0,.95fr) !important;
  gap:48px !important;
  align-items:start !important;
}
.split-media{
  margin:0;
  border-radius:14px;
  overflow:hidden;
  position:relative;
  top:auto;
  min-height:300px;
  height:360px;
  max-height:360px;
}
.split-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.quote-band{padding:36px 0 !important; background:#0a1a2b !important;}
.quote{
  max-width:900px;
  border-left:4px solid #ffbf00;
  padding:4px 0 4px 24px;
}
.quote p{color:#f4f1ea !important; font-size:clamp(20px,2.8vw,30px) !important; line-height:1.3 !important; font-weight:700;}
.quote cite{color:#ffbf00 !important; opacity:1;}

.intro-grid{
  display:grid !important;
  grid-template-columns:minmax(0,1fr) minmax(0,1fr) !important;
  gap:28px !important;
  align-items:center !important;
}
.racing-split{
  display:grid !important;
  grid-template-columns:minmax(0,1.2fr) minmax(280px,.8fr) !important;
  gap:32px !important;
  align-items:center !important;
}
.intro-media, .racing-shot{
  margin:0;
  min-height:100% !important;
  height:auto;
  border-radius:14px !important;
  overflow:hidden;
}
.intro-media img, .racing-shot img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}
.intro-media, .racing-shot{position:relative; min-height:300px !important;}
.racing-shot{
  min-height:0 !important;
  width:100%;
  aspect-ratio:1 / 1 !important;
  height:auto !important;
  border-radius:22px !important;
  box-shadow:0 18px 40px rgba(10,26,43,.22);
}
.racing-shot img{
  animation:none !important;
  object-fit:cover !important;
  object-position:center 62% !important;
  transform:none !important;
}

.photo-grid{
  display:grid !important;
  grid-template-columns:repeat(3, minmax(0,1fr)) !important;
  gap:14px !important;
  margin-top:0;
}
.photo-grid figure{
  min-height:0 !important;
  aspect-ratio:4/3 !important;
  grid-row:auto !important;
  border-radius:12px !important;
}
.photo-grid.photo-grid-2, .two-col .photo-grid, .news-layout .photo-grid{
  grid-template-columns:repeat(2, minmax(0,1fr)) !important;
}
.news-feature{
  display:grid;
  grid-template-columns:minmax(0,.85fr) minmax(0,1.15fr);
  gap:20px;
  align-items:start;
}
.news-feature h2{
  font-size:clamp(26px,3.2vw,38px) !important;
  margin:4px 0 8px !important;
}
.news-feature p{max-width:none; font-size:16px; line-height:1.5; color:#1e293b;}
.news-links, .link-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:12px;
  margin-top:16px;
}
.news-links{margin-top:18px;}
.link-card{
  min-height:0;
  align-items:center;
  background:#0a1a2b !important;
  color:#f4f1ea !important;
  border:1px solid rgba(255,191,0,.35) !important;
  box-shadow:0 10px 24px rgba(10,26,43,.18);
}
.link-card h3{color:#fff !important; margin:8px 0 4px;}
.link-card p{color:rgba(244,241,234,.82) !important; font-weight:500;}
.link-card img{background:#fff; border-radius:10px;}
.page-hero .link-grid{margin-top:16px; margin-bottom:28px;}
.contact-strip{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:12px;
  margin:16px 0 18px;
}
.contact-tile{
  background:#0a1a2b !important;
  color:#f4f1ea !important;
  border:1px solid rgba(255,191,0,.28);
  border-radius:14px;
  padding:16px 18px 18px;
  min-width:0;
  position:relative;
  overflow:hidden;
  box-shadow:0 10px 22px rgba(10,26,43,.16);
}
.contact-tile::before{
  content:'';
  position:absolute; left:0; top:0; right:0; height:4px;
  background:#ffbf00;
}
.contact-tile .tile-ico{
  width:34px; height:34px; border-radius:9px;
  background:#ffbf00; color:#0a1a2b;
  display:flex; align-items:center; justify-content:center;
  margin-bottom:10px;
}
.contact-tile .tile-ico svg{width:18px; height:18px; fill:currentColor;}
.contact-tile .lbl{
  display:block;
  font-size:11px;
  font-weight:800;
  letter-spacing:.1em;
  text-transform:uppercase;
  opacity:1;
  color:#ffbf00;
  margin-bottom:6px;
}
.contact-tile, .contact-tile a{color:#f4f1ea !important; font-size:14px; line-height:1.4; word-break:break-word; font-weight:600;}
.contact-tile a:hover{color:#ffbf00 !important;}
.contact-tile:nth-child(2){background:#132a44 !important;}
.dealers{padding-top:8px !important;}
.doc-list{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:8px;
}
.follow-card, .dealer, .equip-card, .range-card, .speed-card, .history-card, .care-card, .trust-card, .spec-wrap{
  background:#fff !important;
  color:#0a1a2b !important;
  border:1px solid rgba(10,26,43,.1) !important;
  border-radius:14px !important;
}
.equip-card li, .dealer p, .speed-card p, .follow-card p{color:rgba(10,26,43,.7) !important;}
.equip-grid{align-items:stretch; gap:20px !important;}
.range-grid{grid-template-columns:repeat(4, minmax(0,1fr)) !important; gap:16px;}
.range .range-grid{grid-template-columns:repeat(3, minmax(0,1fr)) !important;}
.range-card{min-height:148px;}
.range{
  background:#0a1a2b !important;
  color:#f4f1ea !important;
}
.range .section-head h2{color:#f4f1ea !important;}
.range .eyebrow{color:#ffbf00 !important;}
.range-card.range-card-dark{
  background:#061018 !important;
  color:#f4f1ea !important;
  border-color:#ffbf00 !important;
}
.range-card.range-card-dark h3{color:#f4f1ea !important;}
.range-card.range-card-dark .spec-line{color:rgba(244,241,234,.78) !important;}
.range-card.range-card-dark .enquire{color:#ffbf00 !important;}
.contact form{max-width:none;}
.contact-line{font-family:'Plus Jakarta Sans', sans-serif !important; color:#0a1a2b;}
.contact-line span.lbl{opacity:.55;}
input, select, textarea{
  background:#fff !important;
  color:#0a1a2b !important;
  border-color:rgba(10,26,43,.16) !important;
}
.modal-panel{
  background:#f4f1ea !important;
  color:#0a1a2b !important;
  overflow-x:hidden !important;
}
.modal-panel h2, .modal-panel label{color:#0a1a2b !important;}
.captcha-code{background:#fff !important; color:#0a1a2b !important; letter-spacing:.16em !important;}
.captcha-refresh, .modal-close{color:#0a1a2b !important; background:#fff !important;}
footer{background:#0a1a2b !important; color:#f4f1ea !important;}
.btn-ghost{border-color:rgba(10,26,43,.28) !important; color:#0a1a2b !important;}
.hero .btn-ghost, .ticker + * .btn-ghost{border-color:rgba(244,241,234,.4) !important; color:#f4f1ea !important;}
.hero .btn-ghost{color:#f4f1ea !important; border-color:rgba(244,241,234,.4) !important;}
.doc-list a{color:#0a1a2b; background:#fff; border-radius:10px;}
.hud-stat{background:#fff !important; border-color:rgba(10,26,43,.12) !important;}
.hud-stat b{color:#0a1a2b !important;}
.hud-stat span{
  color:#0a1a2b !important;
  opacity:1 !important;
  font-size:11px !important;
  font-weight:700 !important;
  letter-spacing:.08em !important;
}
.range-card .spec-line{color:#334155 !important; opacity:1 !important;}
.range-card .enquire{color:#0a1a2b !important; font-weight:700 !important;}
.racing-copy h2 em{color:#b8860b !important; text-shadow:none !important;}
.champ-row .year, .speed-card .kph{color:#0a1a2b !important;}
.speed-card .unit, .champ-row .meta{color:#0a1a2b !important; opacity:.75 !important; font-weight:700;}
.champ-row .who{color:#0a1a2b;}
.champ-list .champ-row{background:#fff !important; border:1px solid rgba(10,26,43,.1) !important;}
footer{background:#0a1a2b !important; color:#f4f1ea !important; margin-top:auto;}
table th, table td{color:#0a1a2b !important;}
.video-grid{grid-template-columns:1fr !important; max-width:860px;}
.cta-band{
  background:#0a1a2b !important;
  color:#f4f1ea !important;
}
.cta-band h2{color:#f4f1ea !important;}
.cta-band p{color:rgba(244,241,234,.78) !important;}
.intro, .range, .racing, .contact, .dealers{
  padding-top:32px !important;
  padding-bottom:32px !important;
}
.race-hud{margin:16px 0 18px;}
.link-card{
  min-height:0;
  background:#0a1a2b !important;
  color:#f4f1ea !important;
  border:1px solid rgba(255,191,0,.4) !important;
}
.link-card h3{color:#fff !important;}
.link-card p{color:rgba(244,241,234,.85) !important;}
.rep-hero{
  flex:1 1 auto;
  display:flex;
  flex-direction:column;
  padding-bottom:22px !important;
}
.rep-hero > .wrap{
  flex:1;
  display:flex;
  flex-direction:column;
  width:100%;
}
.rep-layout{
  flex:1;
  display:grid;
  grid-template-columns:minmax(0,.92fr) minmax(0,1.08fr);
  gap:16px 22px;
  align-items:stretch;
  min-height:0;
}
.rep-copy{
  display:block;
  align-self:start;
}
.rep-copy .prose{margin-top:8px;}
.rep-copy .prose p{margin-bottom:8px;}
.rep-copy .hero-actions{margin-top:10px; padding-top:0;}
.rep-layout .photo-grid{
  grid-template-columns:1fr 1fr !important;
  grid-template-rows:minmax(120px,1fr) minmax(160px,1.2fr);
  gap:10px !important;
  height:100%;
  min-height:0;
}
.rep-layout .photo-grid figure{
  aspect-ratio:unset !important;
  min-height:0 !important;
  height:100%;
}
.rep-layout .photo-grid figure:last-child{grid-column:1 / -1;}
.about-split{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,1fr);
  gap:28px;
  align-items:stretch;
  margin:0;
}
.about-hero .about-split{margin-top:0;}
.about-lead{margin:6px 0 12px !important; color:#334155 !important; font-weight:500;}
.about-shot{
  margin:0;
  position:relative;
  align-self:stretch;
  height:100%;
  min-height:320px;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 18px 40px rgba(10,26,43,.18);
}
.about-shot img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  display:block;
}
.about-cards{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:22px;
  margin-bottom:28px;
}
.about-hero{padding-bottom:12px !important;}
.about-hero + section{padding-top:20px !important;}
.about-cards .history-card{padding:20px 20px 18px;}
.about-cards h3{margin-bottom:8px !important; font-size:22px !important;}
.about-cards p{margin:0; color:#1e293b !important;}
.about-card-dark{
  background:#0a1a2b !important;
  color:#f4f1ea !important;
  border-color:rgba(255,191,0,.35) !important;
}
.about-card-dark h3, .about-card-dark p{color:#f4f1ea !important;}
.about-card-dark .history-year{color:#ffbf00 !important;}

@media (max-width:1100px){
  .range-grid, .range .range-grid{grid-template-columns:repeat(2, minmax(0,1fr)) !important;}
  .news-layout, .news-feature, .two-col, .intro-grid, .contact-grid, .contact-strip, .champ-list, .rep-layout, .about-split{grid-template-columns:1fr 1fr !important;}
  .racing-split{grid-template-columns:minmax(0,1.15fr) minmax(0,.85fr) !important;}
  .link-grid, .news-links{grid-template-columns:1fr 1fr !important;}
  .split-media{position:relative; top:auto; height:320px; min-height:280px; max-height:320px;}
}
@media (max-width:860px){
  .photo-grid, .photo-grid.photo-grid-2, .range-grid, .equip-grid, .doc-list, .contact-strip, .news-feature, .link-grid, .news-links, .champ-list, .rep-layout, .racing-split, .about-split, .about-cards{grid-template-columns:1fr !important;}
  .photo-grid figure{aspect-ratio:16/10 !important;}
  .rep-hero{flex:none;}
  .rep-copy .hero-actions{margin-top:10px; padding-top:0;}
  .rep-layout .photo-grid{grid-template-rows:none; height:auto;}
  .rep-layout .photo-grid figure{aspect-ratio:16/10 !important;}
  section, .intro, .range, .racing, .contact, .dealers{padding:24px 0 !important;}
  .page-hero{padding:100px 0 0 !important;}
  .page-hero + section{padding-top:6px !important;}
  .intro-media{min-height:240px !important;}
  .racing-shot{min-height:0 !important; aspect-ratio:1 / 1 !important; max-width:560px; margin:0 auto;}
}

/* Photo overlays sit on dark images — cream type, gold labels */
.shot-copy{
  background:linear-gradient(180deg, transparent 0%, rgba(6,10,15,.7) 42%, rgba(6,10,15,.96) 100%) !important;
}
.shot-copy,
.shot-copy h3,
.shot-copy p,
.photo-grid figcaption{
  color:#f4f1ea !important;
}
.shot-copy h3{
  text-shadow:0 2px 14px rgba(0,0,0,.7);
}
.shot-copy .eyebrow{
  color:#ffbf00 !important;
}

/* ========== Mobile: one column, no sideways scroll ========== */
@media (max-width:1100px){
  header, header.scrolled, header.inner{
    background:#0a1a2b !important;
    box-shadow:0 1px 0 rgba(255,191,0,.18);
  }
  nav{position:relative; gap:10px !important; align-items:center;}
  .navlinks{display:none !important;}
  .burger{display:flex !important; flex-shrink:0;}
  .navcta .socials,
  .navcta > .btn{display:none !important;}
  .navlinks.mobile-open{
    display:flex !important;
    position:absolute;
    top:calc(100% + 8px);
    left:10px; right:10px;
    flex-direction:column;
    gap:2px;
    padding:10px;
    background:#0a1a2b !important;
    color:#f4f1ea !important;
    border:1px solid rgba(255,191,0,.35);
    border-radius:14px;
    max-height:min(78vh, 640px);
    overflow:auto;
    z-index:250;
    box-shadow:0 18px 40px rgba(0,0,0,.35);
  }
  .navlinks.mobile-open a,
  .navlinks.mobile-open button.drop-btn{
    color:#f4f1ea !important;
    width:100%;
    text-align:left;
    padding:12px 14px !important;
    font-size:15px !important;
    border-radius:10px;
  }
  .navlinks.mobile-open .mobile-socials{display:flex !important; gap:10px; padding:12px 8px 6px;}
  .navlinks.mobile-open .drop{
    position:static !important;
    min-width:0 !important;
    opacity:1; visibility:visible; transform:none;
    pointer-events:auto;
    display:none;
    background:transparent !important;
    border:none !important;
    box-shadow:none !important;
    padding:0 0 6px 8px;
  }
  .navlinks.mobile-open .has-drop.open .drop{display:block;}
  .hero-content{text-align:center;}
  .hero .eyebrow{justify-content:center;}
  .hero h1, .hero p.lead{margin-left:auto; margin-right:auto; text-align:center;}
  .hero-actions{justify-content:center; gap:10px;}
}

@media (max-width:900px){
  html, body{overflow-x:hidden !important; max-width:100% !important;}
  body{padding-bottom:72px;}
  .wrap{padding:0 16px !important; max-width:100% !important;}
  nav{gap:8px !important;}
  .brand{min-width:0;}
  .brand img{height:42px !important; padding:2px !important; border-radius:8px !important;}
  .foot-brand img{height:40px !important;}
  header, header.scrolled, header.inner{padding:8px 0 !important;}
  h1,h2,h3,p,li,.intro-copy,.racing-copy,.prose,.lead{
    overflow-wrap:break-word;
    word-break:break-word;
    min-width:0;
  }

  .hero{
    min-height:100svh !important;
    height:100svh !important;
    width:100% !important;
    max-width:100% !important;
    margin:0 !important;
    align-items:flex-end !important;
  }
  .hero-media{
    position:absolute !important;
    inset:0 !important;
    width:100% !important;
    height:100% !important;
  }
  .hero-media video, .hero-media img{
    width:100% !important;
    height:100% !important;
    min-width:100% !important;
    min-height:100% !important;
    object-fit:cover !important;
    object-position:center center !important;
  }
  .hero-content{
    padding:86px 12px 24px !important;
    text-align:center !important;
  }
  .hero .eyebrow{
    justify-content:center !important;
    margin-left:auto !important;
    margin-right:auto !important;
  }
  .hero h1{
    font-size:clamp(24px, 7.6vw, 34px) !important;
    line-height:1.08 !important;
    max-width:18ch !important;
    margin-left:auto !important;
    margin-right:auto !important;
    text-align:center !important;
  }
  .hero p.lead{
    font-size:14px !important;
    margin:10px auto 14px !important;
    max-width:36ch !important;
    text-align:center !important;
  }
  .hero-actions{
    flex-direction:row !important;
    flex-wrap:wrap !important;
    justify-content:center !important;
    align-items:center !important;
    gap:8px !important;
  }
  .hero-actions .btn{
    width:auto !important;
    min-width:0 !important;
    flex:0 0 auto !important;
    text-align:center;
    justify-content:center;
    box-sizing:border-box;
  }

  .page-hero{padding:78px 0 10px !important;}
  .page-hero h1{font-size:clamp(24px, 7.5vw, 34px) !important;}
  .page-hero p{font-size:15px !important; margin-top:8px !important; max-width:none !important;}

  .ticker{
    width:100% !important;
    max-width:100% !important;
    overflow:hidden !important;
    padding:0 !important;
  }
  .ticker .wrap{max-width:none !important; padding:0 !important;}
  .ticker-track{
    display:flex !important;
    width:max-content !important;
    max-width:none !important;
    animation: marquee 28s linear infinite !important;
    transform:none;
    grid-template-columns:none !important;
  }
  .ticker-track .stat:nth-child(n + 7){display:block !important;}
  .ticker .stat{
    min-width:240px !important;
    padding:18px 36px !important;
    border-right:1px solid var(--grey-line) !important;
  }

  .intro-grid,
  .two-col,
  .racing-split,
  .about-split,
  .rep-layout,
  .news-layout,
  .news-feature,
  .contact-grid,
  .contact-strip,
  .champ-list,
  .cinematic,
  .photo-grid,
  .photo-grid.photo-grid-2,
  .range-grid,
  .range .range-grid,
  .equip-grid,
  .speed-grid,
  .link-grid,
  .news-links,
  .about-cards,
  .doc-list,
  .hud-grid,
  .family-grid,
  .history-grid,
  .trust-grid,
  .care-grid,
  .form-row,
  .dealer-grid,
  .video-grid{
    grid-template-columns:1fr !important;
    grid-template-rows:none !important;
    gap:16px !important;
  }
  .intro-grid > *, .two-col > *, .racing-split > *, .about-split > *, .rep-layout > *{
    min-width:0 !important;
    max-width:100%;
  }
  .cinematic .shot.feature{grid-row:auto !important;}
  .shot,
  .shot.feature{
    min-height:0 !important;
    height:auto !important;
    aspect-ratio:4 / 3;
  }
  .shot-copy{padding:28px 16px 16px !important;}
  .shot-copy h3{font-size:clamp(22px, 7vw, 32px) !important; max-width:none !important;}
  .shot-copy p{font-size:14px !important;}

  .photo-grid figure,
  .rep-layout .photo-grid figure{
    grid-row:auto !important;
    grid-column:auto !important;
    min-height:0 !important;
    aspect-ratio:16 / 10 !important;
    height:auto !important;
  }
  .rep-layout .photo-grid figure:last-child{grid-column:auto !important;}
  .rep-hero{flex:none !important;}
  .rep-hero > .wrap, .rep-layout{height:auto !important; min-height:0 !important;}
  .rep-layout .photo-grid{height:auto !important; grid-template-rows:none !important;}

  .intro-media, .racing-shot, .about-shot, .split-media{
    position:relative !important;
    width:100% !important;
    max-width:100% !important;
    min-height:0 !important;
    height:auto !important;
    max-height:none !important;
    aspect-ratio:4 / 3;
    top:auto !important;
  }
  .racing-shot{aspect-ratio:1 / 1 !important; max-width:100% !important; margin:0 !important; border-radius:16px !important;}
  .intro-copy h2, .racing-copy h2, .section-head h2{
    font-size:clamp(24px, 7vw, 34px) !important;
  }
  .race-hud{grid-template-columns:1fr 1fr 1fr !important; gap:8px !important;}
  .range-card{min-height:0 !important; padding:18px 16px !important;}
  .champ-row{grid-template-columns:1fr !important; gap:4px !important;}
  .spec-wrap{overflow-x:auto !important; -webkit-overflow-scrolling:touch; margin:16px 0 !important;}
  .spec-wrap table{min-width:640px;}
  table{font-size:13px;}
  section, .intro, .range, .racing, .contact, .dealers, .history, .care{
    padding:22px 0 !important;
  }
  .page-hero + section{padding-top:4px !important;}
  footer .wrap{
    flex-direction:column !important;
    align-items:flex-start !important;
    gap:12px !important;
  }
  .float-btns{right:12px !important; bottom:12px !important; gap:8px !important;}
  .whatsapp-btn, .contact-float{width:46px !important; height:46px !important; border-radius:12px !important;}
  input, select, textarea{font-size:16px !important; max-width:100%;}
  .btn{font-size:13px !important; padding:8px 14px !important;}
  .phone-group{grid-template-columns:minmax(92px,108px) minmax(0,1fr) !important;}
  .quote{padding-left:16px !important;}
  .quote p{font-size:18px !important;}
  .link-card{flex-direction:column !important; align-items:flex-start !important;}
  .tone-cards{grid-template-columns:1fr 1fr !important; gap:8px !important;}
  .modal-panel{padding:18px 14px 16px !important;}
  .modal-root{padding:56px 10px 16px !important;}
  .modal-panel{width:100% !important; max-width:100% !important;}
}

@media (max-width:480px){
  .brand img{height:38px !important;}
  .race-hud{grid-template-columns:1fr !important;}
  .wrap{padding-left:14px !important; padding-right:14px !important;}
  .ticker .wrap{padding:0 !important;}
  .ticker-track{
    display:flex !important;
    width:max-content !important;
    animation: marquee 28s linear infinite !important;
    grid-template-columns:none !important;
  }
  .ticker .stat{min-width:220px !important; padding:16px 28px !important;}
}

.btn, a.btn, button.btn{
  font-size:13px !important;
  padding:8px 16px !important;
  border-radius:6px !important;
  min-height:0 !important;
  line-height:1.2 !important;
}
.btn-sm, a.btn-sm{
  padding:6px 12px !important;
  font-size:12px !important;
}
.btn-primary{
  box-shadow:0 4px 12px rgba(255,191,0,.22) !important;
}
