:root {
  --black: #05070a;
  --ink: #0b1016;
  --panel: #101820;
  --panel-2: #151f28;
  --white: #f7fbff;
  --muted: #b6c2cd;
  --blue: #0097d7;
  --blue-bright: #55ccff;
  --line: rgba(255, 255, 255, 0.14);
  color: var(--white);
  background: var(--black);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: geometricPrecision;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(135deg, rgba(0, 151, 215, 0.12) 0 1px, transparent 1px 36px),
    radial-gradient(circle at 85% 12%, rgba(0, 151, 215, 0.24), transparent 28%),
    var(--black);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), transparent 70%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: minmax(230px, 1fr) auto minmax(178px, 1fr);
  align-items: center;
  gap: 20px;
  padding: 13px clamp(18px, 4vw, 58px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(4, 6, 9, 0.82);
  backdrop-filter: blur(18px);
}

.brand,
.icon-link,
.button,
.contact-button {
  display: inline-flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(0, 151, 215, 0.42));
}

nav {
  display: flex;
  gap: clamp(14px, 2vw, 30px);
  color: #e6eef5;
  font-size: 0.88rem;
  font-weight: 750;
}

nav a {
  position: relative;
  padding: 10px 0;
}

nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 3px;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  background: var(--blue);
  transition: transform 180ms ease;
}

nav a:hover::after {
  transform: scaleX(1);
}

.icon-link {
  gap: 8px;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(85, 204, 255, 0.46);
  border-radius: 6px;
  background: rgba(0, 151, 215, 0.12);
  color: #ffffff;
  font-weight: 850;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 8px;
}

.whatsapp-mini {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 15px;
  border-radius: 6px;
  background: var(--blue);
  color: #031019;
  font-weight: 900;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-bg,
.hero-overlay,
.track-lines {
  position: absolute;
  inset: 0;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.08);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(2, 4, 7, 0.98) 0%, rgba(2, 4, 7, 0.84) 43%, rgba(2, 4, 7, 0.22) 100%),
    linear-gradient(180deg, rgba(2, 4, 7, 0.08), rgba(2, 4, 7, 0.96));
}

.track-lines {
  opacity: 0.5;
  background:
    linear-gradient(118deg, transparent 0 42%, rgba(85, 204, 255, 0.36) 42.2% 42.7%, transparent 42.9%),
    linear-gradient(118deg, transparent 0 48%, rgba(255, 255, 255, 0.2) 48.2% 48.4%, transparent 48.8%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(780px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 96px);
  padding: 92px 0 100px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue-bright);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  color: #ffffff;
  font-size: clamp(3.5rem, 8.6vw, 7.4rem);
  line-height: 0.9;
  text-transform: uppercase;
  text-shadow: 0 10px 45px rgba(0, 0, 0, 0.6);
}

h2 {
  color: #ffffff;
  font-size: clamp(1.85rem, 3.4vw, 3.4rem);
  line-height: 1.06;
}

h3 {
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 1.1rem;
}

.hero-subtitle {
  max-width: 620px;
  margin-bottom: 0;
  color: #e9f2f8;
  font-size: clamp(1.08rem, 2vw, 1.38rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  position: relative;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 6px;
  font-weight: 900;
}

.button.primary {
  background: var(--blue);
  color: #031019;
  box-shadow: 0 18px 40px rgba(0, 151, 215, 0.28);
}

.button.secondary {
  border: 1px solid rgba(85, 204, 255, 0.42);
  background: #101820;
  color: #ffffff;
}

.button.primary::after,
.button.secondary::after,
.button.ghost::after,
.button.whatsapp::after {
  content: ">";
  font-weight: 900;
}

.button.ghost,
.button.whatsapp {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.button.whatsapp {
  border-color: rgba(85, 204, 255, 0.55);
  background: rgba(0, 151, 215, 0.18);
}

.button.compact {
  display: inline-flex;
  width: fit-content;
  min-height: 48px;
  margin-top: 10px;
}

.lead-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.lead-bar span {
  min-height: 36px;
  display: inline-grid;
  place-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  background: rgba(5, 8, 12, 0.58);
  color: #f8fbff;
  font-size: 0.84rem;
  font-weight: 800;
}

.hero-card {
  position: absolute;
  z-index: 3;
  right: clamp(18px, 5vw, 76px);
  bottom: 104px;
  width: min(300px, calc(100% - 36px));
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid rgba(85, 204, 255, 0.38);
  border-radius: 8px;
  background: rgba(7, 12, 18, 0.78);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
}

.hero-card img {
  width: 86px;
  height: 86px;
  object-fit: contain;
}

.hero-card strong {
  color: #ffffff;
  font-size: 1.2rem;
}

.hero-card span {
  color: var(--muted);
  line-height: 1.45;
}

.hero-card a {
  min-height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 5px;
  background: #ffffff;
  color: #071019;
  font-weight: 900;
}

.hero-strip {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: var(--blue);
}

.hero-strip a {
  min-height: 66px;
  display: grid;
  place-items: center;
  border-right: 1px solid rgba(0, 0, 0, 0.16);
  color: #021018;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-strip a:hover,
.hero-strip a:focus-visible {
  background: #55ccff;
  outline: none;
}

.image-band {
  display: grid;
  grid-template-columns: 0.8fr 1.4fr 0.8fr;
  gap: 1px;
  padding: 1px;
  background: var(--line);
}

.image-band figure {
  position: relative;
  min-height: 310px;
  margin: 0;
  overflow: hidden;
  background: var(--panel);
}

.image-band .wide {
  min-height: 380px;
}

.image-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
}

.image-band figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  padding: 12px 14px;
  border-left: 4px solid var(--blue);
  background: rgba(4, 7, 10, 0.78);
  color: #ffffff;
  font-weight: 900;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.customer-cars {
  background:
    linear-gradient(180deg, rgba(10, 18, 25, 0.96), rgba(9, 14, 20, 0.98)),
    #091018;
}

.customer-car-grid {
  max-width: 1180px;
  display: grid;
  grid-template-columns: 1.15fr 0.92fr 0.92fr;
  gap: 14px;
  margin: 0 auto;
}

.customer-car-grid img,
.advice-image {
  width: 100%;
  min-height: 340px;
  max-height: 440px;
  object-fit: cover;
  overflow: hidden;
  border: 1px solid rgba(85, 204, 255, 0.24);
  border-radius: 8px;
  background: var(--panel);
  filter: saturate(1.08) contrast(1.04);
}

.advice-image figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  padding: 12px 14px;
  border-left: 4px solid var(--blue);
  background: rgba(4, 7, 10, 0.82);
  color: #ffffff;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.about-workshop {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  padding: clamp(72px, 8vw, 118px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(135deg, rgba(0, 151, 215, 0.1), transparent 45%),
    #0f171f;
}

.about-workshop img {
  width: 100%;
  min-height: 420px;
  max-height: 560px;
  object-fit: cover;
  border: 1px solid rgba(85, 204, 255, 0.24);
  border-radius: 8px;
}

.about-workshop p:not(.eyebrow) {
  color: #d5dee7;
  line-height: 1.72;
}

.section {
  padding: clamp(72px, 8vw, 118px) clamp(18px, 5vw, 72px);
}

.services {
  background:
    linear-gradient(180deg, rgba(12, 18, 24, 0.94), rgba(7, 10, 14, 0.98)),
    #070b10;
}

.section-heading {
  max-width: 1180px;
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(280px, 1fr);
  gap: clamp(24px, 5vw, 76px);
  align-items: end;
  margin: 0 auto 42px;
}

.section-heading p:last-child,
.split-copy p,
.motorsport-copy p,
.contact p {
  color: var(--muted);
  line-height: 1.7;
}

.service-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.service-card {
  min-height: 276px;
  padding: 28px;
  background:
    linear-gradient(155deg, rgba(0, 151, 215, 0.16), transparent 38%),
    var(--panel);
}

.service-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border: 1px solid rgba(85, 204, 255, 0.45);
  border-radius: 50%;
  color: var(--blue-bright);
  font-weight: 950;
}

.service-card p {
  color: var(--muted);
  line-height: 1.6;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(320px, 1.08fr);
  min-height: 690px;
}

.split-copy {
  padding: clamp(58px, 8vw, 112px) clamp(18px, 6vw, 82px);
  background:
    linear-gradient(135deg, rgba(0, 151, 215, 0.12), transparent 40%),
    #ffffff;
  color: #101820;
}

.split-copy h2 {
  color: #101820;
}

.split-copy .eyebrow,
.contact .eyebrow {
  color: #006fa5;
}

.tick-list {
  display: grid;
  gap: 12px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
  color: #26313c;
  font-weight: 800;
}

.tick-list li {
  position: relative;
  padding-left: 24px;
}

.tick-list li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 10px;
  height: 10px;
  content: "";
  background: var(--blue);
  transform: translateY(-50%) skewX(-18deg);
}

.image-panel {
  min-height: 560px;
}

.image-panel img,
.motorsport img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.motorsport {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.motorsport > img {
  position: absolute;
  inset: 0;
  filter: saturate(1.08) contrast(1.08);
}

.motorsport::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(4, 7, 10, 0.88), rgba(4, 7, 10, 0.3)),
    linear-gradient(180deg, transparent, rgba(4, 7, 10, 0.96));
}

.motorsport-copy {
  position: relative;
  z-index: 1;
  max-width: 920px;
  padding: clamp(58px, 8vw, 108px) clamp(18px, 7vw, 92px);
}

.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.stat-row span {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 15px;
  border-radius: 4px;
  background: var(--blue);
  color: #031018;
  font-weight: 950;
}

.proof {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 32px;
  align-items: stretch;
  background: #0c1218;
}

.reviews-section {
  background:
    linear-gradient(180deg, rgba(9, 14, 20, 0.96), rgba(5, 7, 10, 0.98)),
    var(--black);
}

.review-carousel {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
}

.review-track {
  position: relative;
  min-height: 260px;
  overflow: hidden;
}

.google-review {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid rgba(85, 204, 255, 0.25);
  border-radius: 8px;
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 240ms ease, transform 240ms ease;
  background:
    linear-gradient(145deg, rgba(0, 151, 215, 0.14), transparent 44%),
    var(--panel);
}

.google-review.is-active {
  position: relative;
  opacity: 1;
  transform: translateX(0);
}

.google-review blockquote {
  padding: 0;
  background: transparent;
  color: #ffffff;
  font-size: clamp(1.18rem, 2.5vw, 1.8rem);
  line-height: 1.35;
}

.google-review p {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin: 0;
  color: var(--muted);
}

.google-review strong {
  color: #ffffff;
}

.carousel-control {
  min-width: 66px;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.review-actions {
  max-width: 1180px;
  margin: 18px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.rating {
  display: grid;
  align-content: center;
  gap: 8px;
}

.stars {
  color: #ffc107;
  font-size: 1.45rem;
  letter-spacing: 2px;
}

.rating strong {
  color: #ffffff;
  font-size: 2rem;
  text-transform: uppercase;
}

.rating span {
  color: var(--muted);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.review-grid figure {
  margin: 0;
  background: var(--panel-2);
}

.review-grid figcaption {
  padding: 0 28px 24px;
  color: var(--blue-bright);
  font-size: 0.9rem;
  font-weight: 900;
}

blockquote {
  margin: 0;
  padding: 28px;
  background:
    linear-gradient(160deg, rgba(0, 151, 215, 0.12), transparent 46%),
    var(--panel-2);
  color: #e8eef4;
  line-height: 1.6;
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1.18fr);
  gap: 38px;
  align-items: center;
  padding: clamp(70px, 8vw, 112px) clamp(18px, 6vw, 86px);
  background:
    linear-gradient(135deg, #f7fbff 0%, #dce8f0 100%);
  color: #101820;
}

.contact h2 {
  color: #101820;
}

.contact-copy {
  align-self: start;
}

.response-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  max-width: 540px;
  margin-top: 24px;
  padding: 16px;
  border-left: 5px solid var(--blue);
  background: #ffffff;
  color: #273542;
  line-height: 1.5;
  font-weight: 800;
  box-shadow: 0 18px 40px rgba(16, 24, 32, 0.08);
}

.response-note > span:first-child {
  min-width: 42px;
  color: #006fa5;
  font-weight: 950;
}

.contact-checklist {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 560px;
  margin-top: 18px;
}

.contact-checklist strong,
.contact-checklist span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border-radius: 4px;
  font-size: 0.86rem;
  font-weight: 900;
}

.contact-checklist strong {
  background: #101820;
  color: #ffffff;
}

.contact-checklist span {
  border: 1px solid #c4d1dc;
  background: #ffffff;
  color: #24313d;
}

.contact-checklist.compact strong {
  background: #006fa5;
}

.lead-form small {
  color: #657280;
  font-size: 0.78rem;
  font-weight: 750;
  text-transform: none;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid #c4d1dc;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 28px 70px rgba(16, 21, 27, 0.18);
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: #24313d;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.lead-form .full {
  grid-column: 1 / -1;
}

.lead-form .spam-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #b8c7d3;
  border-radius: 7px;
  background: #f8fbfd;
  color: #101820;
  font: inherit;
  font-size: 1rem;
}

input,
select {
  min-height: 50px;
  padding: 0 13px;
}

textarea {
  min-height: 112px;
  resize: vertical;
  padding: 12px 13px;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(0, 151, 215, 0.22);
  border-color: #006fa5;
}

.form-submit {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.form-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.form-actions .button {
  width: 100%;
  border: 0;
}

.form-actions .button.whatsapp {
  background: #101820;
  color: #ffffff;
}

.form-footnote {
  align-self: center;
  margin: 0;
  color: #657280;
  font-size: 0.9rem;
  font-weight: 800;
}

footer {
  min-height: 96px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  align-items: center;
  padding: 24px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: #05070a;
  color: var(--muted);
}

footer img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

footer span:first-of-type {
  color: #ffffff;
  font-weight: 900;
}

.footer-actions {
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.footer-actions a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: #ffffff;
  font-weight: 850;
}

.mobile-cta {
  position: fixed;
  z-index: 30;
  right: 10px;
  bottom: max(10px, env(safe-area-inset-bottom));
  left: 10px;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 8px;
  padding-bottom: calc(8px + env(safe-area-inset-bottom));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(5, 7, 10, 0.9);
  backdrop-filter: blur(14px);
}

.mobile-cta a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  background: #ffffff;
  color: #101820;
  font-weight: 900;
}

.mobile-cta a:nth-child(2) {
  background: var(--blue);
}

.seo-home,
.advice-home {
  background:
    linear-gradient(180deg, rgba(13, 21, 28, 0.98), rgba(9, 15, 21, 0.98)),
    #0a1017;
}

.town-home {
  background:
    linear-gradient(135deg, rgba(0, 151, 215, 0.12), transparent 44%),
    #111a22;
}

.race-teaser,
.case-study-teaser {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(22px, 5vw, 64px);
  align-items: center;
  padding: clamp(54px, 7vw, 92px) clamp(18px, 6vw, 86px);
  background:
    linear-gradient(135deg, rgba(0, 151, 215, 0.13), transparent 46%),
    #08131b;
}

.case-study-teaser {
  background:
    linear-gradient(135deg, rgba(0, 151, 215, 0.08), transparent 46%),
    #101820;
}

.race-teaser img,
.case-study-teaser img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.race-teaser p:not(.eyebrow),
.case-study-teaser p:not(.eyebrow) {
  color: #d5dee7;
  line-height: 1.7;
}

.link-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.link-grid a {
  min-height: 92px;
  display: flex;
  align-items: center;
  padding: 22px;
  background:
    linear-gradient(155deg, rgba(0, 151, 215, 0.14), transparent 42%),
    var(--panel);
  color: #ffffff;
  font-weight: 900;
}

.link-grid a::after {
  margin-left: auto;
  color: var(--blue-bright);
  content: ">";
}

.town-links a {
  min-height: 74px;
}

.seo-page .site-header {
  position: sticky;
}

.breadcrumbs {
  padding: 14px clamp(18px, 6vw, 86px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #080c11;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  max-width: 1180px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.breadcrumbs li:not(:last-child)::after {
  margin-left: 8px;
  color: var(--blue-bright);
  content: ">";
}

.breadcrumbs a {
  color: #ffffff;
}

.seo-hero {
  position: relative;
  min-height: 650px;
  display: grid;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.seo-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.08);
}

.seo-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(3, 6, 10, 0.96), rgba(3, 6, 10, 0.58), rgba(3, 6, 10, 0.2)),
    linear-gradient(180deg, rgba(3, 6, 10, 0.16), rgba(3, 6, 10, 0.94));
}

.seo-hero-copy {
  position: relative;
  z-index: 1;
  width: min(880px, calc(100% - 36px));
  padding: clamp(70px, 10vw, 132px) 0;
  margin-left: clamp(18px, 7vw, 92px);
}

.seo-hero h1 {
  max-width: 900px;
  font-size: clamp(3rem, 6.4vw, 5.8rem);
  line-height: 0.95;
}

.seo-hero p {
  max-width: 720px;
  color: #e9f2f8;
  font-size: clamp(1.04rem, 1.8vw, 1.3rem);
  line-height: 1.62;
}

.seo-content {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) 340px;
  gap: clamp(24px, 5vw, 70px);
  padding: clamp(58px, 7vw, 88px) clamp(18px, 6vw, 86px);
  background: #0b1016;
}

.seo-content article {
  max-width: 960px;
}

.seo-content p {
  color: #d5dee7;
  line-height: 1.72;
}

.seo-content h2 {
  max-width: 860px;
  margin-bottom: 22px;
  font-size: clamp(2rem, 3.1vw, 3.15rem);
  line-height: 1.08;
}

.seo-content .tick-list {
  color: #e9f2f8;
}

.seo-content .tick-list li {
  opacity: 1;
}

.utility-content a,
.utility-links a {
  color: #ffffff;
}

.faq-section {
  padding: clamp(64px, 7vw, 96px) clamp(18px, 6vw, 86px);
  background:
    linear-gradient(180deg, rgba(8, 13, 18, 0.96), rgba(5, 7, 10, 0.98)),
    var(--black);
}

.faq-list {
  max-width: 980px;
  margin: 0 auto;
  border: 1px solid var(--line);
  background: var(--line);
}

.faq-list details {
  padding: 22px;
  background: var(--panel);
}

.faq-list details + details {
  border-top: 1px solid var(--line);
}

.faq-list summary {
  cursor: pointer;
  color: #ffffff;
  font-weight: 900;
}

.faq-list p {
  margin: 14px 0 0;
  color: #d5dee7;
  line-height: 1.65;
}

.case-study-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 28px;
  border: 1px solid var(--line);
  background: var(--line);
}

.case-study-template {
  min-height: 280px;
  padding: 24px;
  background:
    linear-gradient(155deg, rgba(0, 151, 215, 0.12), transparent 44%),
    var(--panel);
}

.case-study-template img {
  width: 100%;
  aspect-ratio: 16 / 10;
  margin: -4px 0 20px;
  border: 1px solid rgba(85, 204, 255, 0.2);
  border-radius: 6px;
  object-fit: cover;
  background: #05080b;
}

.case-study-template p:not(.eyebrow) {
  color: #d5dee7;
}

.case-study-template strong {
  color: #ffffff;
}

.case-study-template .button {
  margin: 8px 10px 10px 0;
}

.case-study-template .source-link {
  display: inline-flex;
  width: fit-content;
  min-height: 38px;
  align-items: center;
  margin: 6px 0 16px;
  padding: 0 12px;
  border: 1px solid rgba(85, 204, 255, 0.35);
  border-radius: 5px;
  color: #ffffff;
  font-weight: 900;
}

.advice-image {
  min-height: 420px;
  margin-top: 34px;
}

.seo-sidebar {
  align-self: start;
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(85, 204, 255, 0.3);
  border-radius: 8px;
  background:
    linear-gradient(155deg, rgba(0, 151, 215, 0.18), transparent 44%),
    var(--panel);
}

.seo-sidebar strong {
  color: #ffffff;
  font-size: 1.18rem;
}

.seo-sidebar p {
  margin: 0;
}

.seo-sidebar a {
  width: fit-content;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 5px;
  background: var(--blue);
  color: #031019;
  font-weight: 900;
}

.camaro-build-section {
  grid-template-columns: minmax(300px, 1fr) minmax(300px, 460px);
  align-items: start;
}

.camaro-build-visual {
  padding: 0;
  gap: 0;
  overflow: hidden;
}

.camaro-build-visual img {
  width: 100%;
  min-height: 520px;
  max-height: 680px;
  display: block;
  object-fit: cover;
  object-position: center 62%;
  background: #05080b;
}

.camaro-build-visual div {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.seo-enquiry {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 1.1fr);
  gap: 24px;
  align-items: center;
  padding: clamp(56px, 7vw, 92px) clamp(18px, 6vw, 86px);
  background:
    linear-gradient(135deg, #f7fbff 0%, #dce8f0 100%);
  color: #101820;
}

.seo-enquiry h2 {
  color: #101820;
}

.seo-enquiry .eyebrow {
  color: #006fa5;
}

.seo-enquiry p {
  color: #4f5f6d;
  line-height: 1.7;
}

.enquiry-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.alfa-arrive-drive {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(320px, 1.28fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  padding: clamp(64px, 8vw, 112px) clamp(18px, 6vw, 86px);
  background:
    radial-gradient(circle at 18% 28%, rgba(0, 151, 215, 0.15), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 46%),
    #090f15;
}

.alfa-arrive-copy {
  max-width: 620px;
}

.alfa-arrive-copy h2 {
  color: #ffffff;
}

.alfa-arrive-copy p:not(.eyebrow) {
  color: #d5dee7;
  line-height: 1.72;
}

.alfa-arrive-copy .enquiry-actions {
  grid-template-columns: repeat(2, minmax(160px, 1fr));
  margin-top: 28px;
}

.alfa-photo-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  grid-template-rows: repeat(2, minmax(190px, 1fr));
  gap: 10px;
}

.alfa-photo-grid img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  display: block;
  object-fit: cover;
  border: 1px solid rgba(85, 204, 255, 0.24);
  border-radius: 8px;
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.26);
}

.alfa-photo-main {
  grid-row: span 2;
  min-height: 520px;
}

.button.dark,
.button.ghost.dark {
  border-color: #b7c6d2;
  background: #101820;
  color: #ffffff;
}

.link-section {
  padding: clamp(62px, 7vw, 96px) clamp(18px, 5vw, 72px);
  background: #05070a;
}

.link-section > .eyebrow {
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
}

.link-grid.compact {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 26px;
}

.link-grid.compact a {
  min-height: 72px;
}

.content-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin: 28px 0;
  border: 1px solid var(--line);
  background: var(--line);
}

.content-card-grid section {
  padding: 22px;
  background:
    linear-gradient(155deg, rgba(0, 151, 215, 0.12), transparent 44%),
    var(--panel);
}

.content-card-grid p {
  color: #cfd9e2;
  margin-bottom: 0;
}

.partner-tech {
  padding: clamp(58px, 7vw, 96px) clamp(18px, 6vw, 86px);
  background:
    linear-gradient(135deg, rgba(0, 151, 215, 0.12), transparent 46%),
    #0f171f;
}

.partner-heading {
  margin-bottom: 30px;
}

.partner-tech .source-link {
  width: fit-content;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  margin-top: 16px;
  padding: 0 12px;
  border: 1px solid rgba(85, 204, 255, 0.34);
  border-radius: 5px;
  color: #ffffff;
  font-weight: 900;
}

.partner-showcase {
  display: grid;
  grid-template-columns: minmax(280px, 1.05fr) minmax(280px, 0.95fr);
  gap: 24px;
  align-items: stretch;
}

.partner-media {
  position: relative;
  min-height: 430px;
  margin: 0;
  border: 1px solid rgba(85, 204, 255, 0.28);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(0, 151, 215, 0.16), transparent),
    #071017;
}

.partner-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 48%, rgba(3, 6, 10, 0.72)),
    radial-gradient(circle at 12% 12%, rgba(85, 204, 255, 0.18), transparent 34%);
  pointer-events: none;
}

.partner-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.camaro-tech-media img {
  object-position: center;
}

.partner-card-stack {
  display: grid;
  gap: 16px;
}

.partner-card,
.partner-points section {
  padding: 24px;
  border: 1px solid rgba(85, 204, 255, 0.25);
  border-radius: 8px;
  background:
    linear-gradient(155deg, rgba(0, 151, 215, 0.13), transparent 44%),
    rgba(15, 24, 32, 0.92);
}

.partner-card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  justify-content: end;
}

.hero-partner-card {
  min-height: 430px;
  justify-content: center;
}

.partner-logo {
  width: min(260px, 80%);
  max-height: 84px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 30px;
}

.max-tune-logo {
  width: min(220px, 78%);
}

.xautomotive-logo {
  width: min(230px, 65%);
  margin: 0;
}

.haltech-logo {
  width: min(320px, 88%);
}

.partner-thumb {
  width: 100%;
  height: 150px;
  margin: 0 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  object-fit: cover;
}

.xhp-brand-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  align-items: center;
  margin-bottom: 28px;
}

.xhp-brand-row span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(85, 204, 255, 0.35);
  border-radius: 999px;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.partner-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 24px;
  border: 1px solid rgba(85, 204, 255, 0.2);
  background: rgba(85, 204, 255, 0.2);
}

.partner-points section {
  border: 0;
  border-radius: 0;
}

.partner-card p,
.partner-points p {
  color: #cfd9e2;
  line-height: 1.7;
}

.tuning-partner {
  background:
    radial-gradient(circle at 20% 25%, rgba(85, 204, 255, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(0, 151, 215, 0.1), transparent 45%),
    #121d25;
}

.tuning-showcase {
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1.15fr);
}

.tuning-showcase .partner-media {
  min-height: 540px;
}

.camaro-electronics {
  background:
    linear-gradient(135deg, rgba(0, 151, 215, 0.11), transparent 45%),
    linear-gradient(180deg, #0c131a, #101820);
}

.map-section {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 0.8fr);
  gap: 24px;
  align-items: center;
  padding: clamp(56px, 7vw, 92px) clamp(18px, 6vw, 86px);
  background:
    linear-gradient(135deg, rgba(0, 151, 215, 0.14), transparent 44%),
    #0b1016;
}

.map-section p {
  color: var(--muted);
  line-height: 1.7;
}

.map-card {
  min-height: 180px;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 28px;
  border: 1px solid rgba(85, 204, 255, 0.32);
  border-radius: 8px;
  background:
    linear-gradient(155deg, rgba(0, 151, 215, 0.18), transparent 44%),
    var(--panel);
}

.map-card strong {
  color: #ffffff;
  font-size: 1.3rem;
}

.map-card span {
  color: var(--blue-bright);
  font-weight: 900;
}

.race-hero::after {
  background:
    linear-gradient(90deg, rgba(3, 6, 10, 0.96), rgba(3, 6, 10, 0.58), rgba(3, 6, 10, 0.18)),
    linear-gradient(180deg, rgba(3, 6, 10, 0.08), rgba(3, 6, 10, 0.96));
}

.race-feature {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
  padding: clamp(62px, 8vw, 110px) clamp(18px, 6vw, 86px);
  background: #0b1016;
}

.race-feature p {
  color: #d5dee7;
  line-height: 1.7;
}

.race-feature .tick-list {
  color: #e9f2f8;
}

.race-feature figure {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
}

.race-feature img {
  width: 100%;
  height: auto;
}

.race-feature figcaption {
  padding: 12px 14px;
  background: #101820;
  color: #ffffff;
  font-weight: 900;
}

.race-video {
  max-width: 720px;
  margin-top: 28px;
  border: 1px solid rgba(85, 204, 255, 0.28);
  border-radius: 8px;
  overflow: hidden;
  background: #05080b;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
}

.race-video iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  border: 0;
}

.race-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding: 1px;
  background: var(--line);
}

.race-gallery img {
  width: 100%;
  min-height: 330px;
  height: 36vw;
  max-height: 520px;
  object-fit: cover;
}

@media (max-width: 1080px) {
  .hero-card {
    display: none;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  nav {
    display: none;
  }

  .section-heading,
  .split-section,
  .proof,
  .contact,
  .seo-content,
  .seo-enquiry,
  .alfa-arrive-drive,
  .map-section,
  .race-teaser,
  .case-study-teaser,
  .about-workshop,
  .race-feature,
  .partner-showcase,
  .tuning-showcase {
    grid-template-columns: 1fr;
  }

  .image-band {
    grid-template-columns: 1fr;
  }

  .image-band figure,
  .image-band .wide {
    min-height: 310px;
  }

  .review-grid,
  .lead-form,
  .link-grid,
  .link-grid.compact,
  .content-card-grid,
  .partner-points,
  .customer-car-grid,
  .case-study-grid,
  .race-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .alfa-photo-grid {
    grid-template-columns: 1fr 1fr;
  }

  .alfa-photo-main {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 360px;
  }

  .partner-media,
  .tuning-showcase .partner-media,
  .hero-partner-card {
    min-height: 360px;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 10px 14px;
  }

  .brand span,
  .icon-link span,
  .whatsapp-mini {
    display: none;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .hero {
    min-height: 92vh;
    align-items: end;
    padding-bottom: 78px;
  }

  .hero-content {
    width: calc(100% - 28px);
    margin: 0 auto;
    padding: 110px 0 28px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.95rem, 15vw, 4.1rem);
    line-height: 0.92;
    overflow-wrap: anywhere;
  }

  .hero-subtitle {
    font-size: 1.12rem;
    line-height: 1.45;
  }

  .hero-actions {
    display: grid;
  }

  .hero-strip {
    grid-template-columns: repeat(5, minmax(108px, 1fr));
    overflow-x: auto;
  }

  .hero-strip a {
    min-height: 54px;
    font-size: 0.78rem;
  }

  .service-grid,
  .review-grid,
  .lead-form,
  .link-grid,
  .link-grid.compact,
  .enquiry-actions,
  .content-card-grid,
  .partner-points,
  .customer-car-grid,
  .case-study-grid,
  .race-gallery {
    grid-template-columns: 1fr;
  }

  .alfa-arrive-copy .enquiry-actions,
  .alfa-photo-grid {
    grid-template-columns: 1fr;
  }

  .alfa-photo-grid img,
  .alfa-photo-main {
    min-height: 260px;
  }

  .partner-card,
  .partner-points section {
    padding: 20px;
  }

  .partner-logo,
  .haltech-logo,
  .max-tune-logo,
  .xautomotive-logo {
    width: min(240px, 100%);
  }

  .advice-image {
    min-height: 300px;
  }

  .review-carousel {
    grid-template-columns: 1fr;
  }

  .carousel-control {
    width: 100%;
  }

  .form-submit,
  .form-footnote,
  .form-actions {
    grid-column: 1 / -1;
  }

  .form-actions {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 220px;
  }

  .image-panel,
  .motorsport,
  .about-workshop img {
    min-height: 520px;
  }

  footer {
    padding-bottom: 92px;
  }

  .footer-actions {
    width: 100%;
    margin-left: 0;
  }

  .mobile-cta {
    display: grid;
  }

  .seo-hero {
    min-height: 620px;
  }

  .seo-hero-copy {
    width: calc(100% - 28px);
    margin: 0 auto;
    padding: 92px 0 58px;
  }

  .seo-hero h1 {
    font-size: clamp(2.45rem, 11vw, 4.25rem);
    line-height: 1;
    overflow-wrap: anywhere;
  }
}
