:root {
  --yellow: #f3c300;
  --yellow-deep: #f2b900;
  --pink: #ff2d8b;
  --black: #080b0d;
  --charcoal: #171a1c;
  --panel: #202426;
  --panel-soft: #303436;
  --white: #fff;
  --muted: #c8cbcc;
  --line: rgba(255, 255, 255, .18);
  --page: min(1390px, calc(100% - 48px));
  --shadow: 0 16px 40px rgba(0, 0, 0, .26);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--white);
  background: #25292b;
  font-family: "Arial Narrow", "Roboto Condensed", Arial, Helvetica, sans-serif;
  line-height: 1.45;
}
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
svg { display: block; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.svg-defs { position: absolute; width: 0; height: 0; overflow: hidden; }
.page-width { width: var(--page); margin-inline: auto; }

.site-header {
  min-height: 96px;
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: stretch;
  gap: 30px;
  padding-right: max(26px, calc((100vw - 1500px) / 2));
  background: linear-gradient(110deg, #ffdc00, #ffcb00);
  color: var(--black);
  box-shadow: 0 6px 24px rgba(0, 0, 0, .22);
}

.brand {
  width: 235px;
  min-width: 235px;
  padding: 8px 24px 7px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  border-radius: 0 0 12px 0;
  background: #ffd600;
}
.brand img {
  width: 185px;
  height: 63px;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.brand span {
  margin-top: -4px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.header-main {
  min-width: 0;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}
.main-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(26px, 3vw, 56px);
  white-space: nowrap;
}
.main-nav a {
  position: relative;
  padding: 39px 0 36px;
  color: #090909;
  text-decoration: none;
  font-size: clamp(11px, .82vw, 14px);
  font-weight: 900;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 22px;
  width: 0;
  height: 3px;
  transform: translateX(-50%);
  background: var(--pink);
  transition: width .2s ease;
}
.main-nav a:hover::after, .main-nav a.active::after { width: 46px; }
.header-actions { display: flex; gap: 14px; align-items: center; }
.header-phone, .header-book {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease;
}
.header-phone:hover, .header-book:hover, .button:hover { transform: translateY(-2px); }
.header-phone { gap: 10px; padding: 0 20px; background: #080a0b; color: #fff; }
.header-phone svg { width: 18px; height: 18px; }
.header-book { padding: 0 24px; background: #fff; box-shadow: 0 7px 18px rgba(130, 95, 0, .13); }
.menu-toggle { display: none; }

.hero {
  min-height: clamp(560px, 65vh, 720px);
  position: relative;
  display: flex;
  align-items: center;
  isolation: isolate;
  background-image: url("images/hero-workshop-clean-optimized.jpg");
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--yellow);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(5, 7, 8, .08) 0%, rgba(5, 7, 8, .18) 43%, rgba(5, 7, 8, .88) 100%);
}
.hero-content { display: flex; justify-content: flex-end; padding: 72px 16px; }
.hero-copy-block { width: min(590px, 48%); }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--yellow);
  font-size: 15.6px;
  font-weight: 900;
  text-transform: uppercase;
}
.eyebrow span { width: 30px; height: 3px; background: var(--yellow); }
.hero h1 {
  max-width: 600px;
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(52px, 5vw, 82px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -.6px;
  text-wrap: balance;
  text-shadow: 0 3px 18px rgba(0, 0, 0, .34);
}
.hero-copy { max-width: 570px; margin: 20px 0 30px; color: #f1f1f1; font-size: clamp(17px, 1.3vw, 21px); line-height: 1.55; }
.hero-actions { display: flex; gap: 22px; flex-wrap: wrap; }
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0 24px;
  border-radius: 7px;
  font-weight: 900;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button svg { width: 20px; height: 20px; }
.button-yellow { background: var(--yellow); color: #090909; box-shadow: 0 10px 22px rgba(0, 0, 0, .22); }
.button-yellow:hover { box-shadow: 0 13px 28px rgba(255, 212, 0, .2); }
.button-outline { border: 1px solid rgba(255, 255, 255, .9); background: rgba(5, 7, 8, .5); color: #fff; }
.button-outline:hover { background: rgba(255, 255, 255, .1); }

.trust-strip { background: linear-gradient(90deg, #1b1f20, #25292a, #191c1e); border-bottom: 1px solid rgba(255,255,255,.08); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); padding-block: 18px; }
.trust-item { min-width: 0; display: flex; align-items: center; gap: 18px; padding: 0 26px; border-right: 1px solid var(--line); }
.trust-item:first-child { padding-left: 16px; }
.trust-item:last-child { border: 0; }
.trust-item > svg { width: 42px; height: 42px; flex: 0 0 auto; color: var(--yellow); }
.trust-item div { display: flex; flex-direction: column; gap: 4px; }
.trust-item strong { font-size: 15px; }
.trust-item span { color: #f3f3f3; font-size: 13px; }

.services-advice { padding: 16px 0 10px; background: linear-gradient(110deg, #5e6060 0%, #343738 65%, #2b2e30 100%); }
.content-grid { display: grid; grid-template-columns: 1.35fr .95fr; gap: 20px; }
.section-heading { margin-bottom: 13px; }
.section-heading h2 { margin: 0; color: #fff; font-size: clamp(25px, 2.1vw, 32px); line-height: 1.1; text-transform: uppercase; }
.section-heading > span { display: block; width: 36px; height: 4px; margin-top: 9px; background: var(--yellow); }
.section-heading.light h2 { color: #fff; }
.section-heading.light > span { background: linear-gradient(90deg, var(--pink) 0 70%, transparent 70%); }

.services-column { min-width: 0; padding: 7px 0 16px; }
.service-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 13px; }
.service-card {
  min-height: 184px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  padding: 21px 15px;
  background: linear-gradient(145deg, #282b2c, #191c1e);
  border-radius: 6px;
  box-shadow: 0 7px 14px rgba(0,0,0,.25);
  transition: transform .2s ease, background .2s ease;
}
.service-card:hover { transform: translateY(-4px); background: #171a1c; }
.service-card > svg { width: 43px; height: 43px; color: var(--yellow); }
.service-card h3 { min-height: 42px; margin: 3px 0 12px; font-size: 14px; line-height: 1.25; text-transform: uppercase; }
.service-card p { min-height: 52px; margin: 0 0 13px; color: #eee; font-size: 12px; line-height: 1.65; }
.service-card a { font-size: 12px; font-weight: 900; text-decoration: none; }
.service-card a span { padding-left: 7px; color: var(--yellow); font-size: 18px; }
.more-services {
  min-height: 50px;
  margin-top: 13px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  background: #222526;
  border-radius: 5px;
  box-shadow: 0 6px 13px rgba(0,0,0,.22);
}
.more-services span { padding: 0 18px; border-right: 1px solid rgba(255,45,139,.65); font-size: 13px; white-space: nowrap; }
.more-services span:last-child { border-right: 0; }
.more-services span::first-letter { color: var(--yellow); }

.advice-panel { min-width: 0; padding: 15px 23px 18px; background: linear-gradient(140deg, #1c1f20, #242728); border-radius: 6px; box-shadow: var(--shadow); }
.advice-panel .section-heading { margin-bottom: 0; }
.advice-intro { margin: 0 0 13px; font-size: 13px; }
.quick-answer { display: grid; grid-template-columns: 1fr 96px; gap: 12px; padding: 16px 18px; color: #111; background: #fff; border-radius: 5px; }
.quick-answer small { padding: 3px 7px; border-radius: 2px; background: var(--yellow); font-size: 10px; font-weight: 900; text-transform: uppercase; }
.quick-answer h3 { margin: 7px 0 4px; font-size: 18px; }
.quick-answer p { margin: 0 0 7px; font-size: 12px; line-height: 1.5; }
.quick-answer a { font-size: 12px; font-weight: 900; text-decoration: none; }
.quick-answer a span { color: var(--pink); font-size: 18px; }
.answer-icon { width: 82px; height: 82px; align-self: center; display: grid; place-items: center; border-radius: 50%; background: var(--yellow); color: #151718; }
.answer-icon svg { width: 47px; height: 47px; }
.advice-tips { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 16px; }
.advice-tips article { min-width: 0; display: grid; grid-template-columns: 34px 1fr; gap: 9px; padding: 0 15px; border-right: 1px solid rgba(255,45,139,.65); }
.advice-tips article:first-child { padding-left: 0; }
.advice-tips article:last-child { border: 0; padding-right: 0; }
.advice-tips svg { width: 30px; height: 30px; color: var(--yellow); }
.advice-tips div { display: flex; flex-direction: column; gap: 5px; }
.advice-tips strong { color: var(--yellow); font-size: 10px; text-transform: uppercase; }
.advice-tips span { color: #eee; font-size: 10px; line-height: 1.45; }

.why-us { padding: 13px 0 20px; background: linear-gradient(90deg, #292d2e, #171a1b 48%, #2d3031); }
.why-us .section-heading { margin-bottom: 8px; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.why-grid article { display: grid; grid-template-columns: 52px 1fr; gap: 14px; padding: 0 32px; border-right: 1px solid var(--line); }
.why-grid article:first-child { padding-left: 0; }
.why-grid article:last-child { border: 0; }
.why-grid svg { width: 48px; height: 48px; color: var(--yellow); }
.why-grid h3 { display: inline-block; margin: 0 0 4px; padding-bottom: 2px; border-bottom: 2px solid var(--pink); font-size: 15px; }
.why-grid p { margin: 0; color: #f0f0f0; font-size: 13px; }

.contact-cta { padding: 58px 0; background: #080b0c; border-top: 1px solid rgba(255,212,0,.35); }
.contact-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.contact-inner h2 { margin: 0 0 8px; font-size: clamp(32px, 4vw, 54px); line-height: 1; }
.contact-inner > div > p:last-child { margin: 0; color: var(--muted); }
.contact-buttons { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.contact-buttons .button { min-width: 230px; }
.mobile-number { color: #fff; font-size: 13px; text-decoration: none; }

footer { padding: 18px 0; background: #030405; color: #9da1a3; font-size: 12px; }
footer > div { display: flex; justify-content: space-between; }
footer a { text-decoration: none; }

@media (max-width: 1700px) {
  .main-nav a:nth-child(8), .main-nav a:nth-child(9) { display: none; }
}

@media (max-width: 1480px) {
  .site-header { gap: 18px; }
  .brand { width: 205px; min-width: 205px; padding-inline: 14px; }
  .brand img { width: 170px; }
  .header-main { gap: 18px; }
  .header-actions { gap: 9px; }
  .header-phone, .header-book { padding-inline: 16px; font-size: 13px; }
}

@media (max-width: 1180px) {
  :root { --page: min(100% - 36px, 1040px); }
  .site-header { min-height: 82px; padding-right: 18px; }
  .brand { width: 190px; min-width: 190px; }
  .brand img { width: 156px; height: 55px; }
  .main-nav a { padding-block: 31px; }
  .main-nav a:nth-child(n+6) { display: none; }
  .main-nav a::after { bottom: 15px; }
  .hero { min-height: 470px; background-position: 57% center; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card { min-height: 165px; }
  .service-card h3, .service-card p { min-height: 0; }
  .more-services { grid-template-columns: repeat(2, 1fr); row-gap: 10px; padding-block: 12px; }
  .more-services span:nth-child(2) { border-right: 0; }
  .trust-item { padding-inline: 15px; gap: 12px; }
}

@media (max-width: 900px) {
  :root { --page: min(100% - 30px, 720px); }
  .site-header { min-height: 74px; align-items: center; justify-content: space-between; padding-right: 14px; }
  .brand { width: 176px; min-width: 176px; height: 74px; }
  .brand img { width: 145px; height: 50px; }
  .brand span { font-size: 6px; letter-spacing: 3px; }
  .menu-toggle {
    width: 46px;
    height: 44px;
    display: grid;
    place-content: center;
    gap: 6px;
    border: 0;
    border-radius: 6px;
    background: #090b0c;
    cursor: pointer;
  }
  .menu-toggle span { width: 24px; height: 2px; display: block; background: var(--yellow); transition: transform .2s ease, opacity .2s ease; }
  .menu-open .menu-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
  .menu-open .menu-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .header-main {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    display: none;
    padding: 18px;
    background: #111416;
    color: #fff;
    box-shadow: 0 20px 35px rgba(0,0,0,.45);
  }
  .menu-open .header-main { display: block; }
  .main-nav { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; white-space: normal; }
  .main-nav a, .main-nav a:nth-child(n) { display: block; padding: 12px 10px; color: #fff; border-bottom: 1px solid rgba(255,255,255,.1); font-size: 13px; }
  .main-nav a::after { display: none; }
  .header-actions { margin-top: 16px; }
  .header-phone, .header-book { flex: 1; }
  .hero { min-height: 600px; align-items: flex-end; background-position: 67% center; }
  .hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg, rgba(2,5,6,.97) 4%, rgba(2,5,6,.73) 47%, rgba(2,5,6,.1) 80%); }
  .hero-content { padding: 50px 0; }
  .hero-copy-block { width: min(100%, 620px); }
  .hero h1 { font-size: clamp(43px, 9vw, 66px); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 20px 0; }
  .trust-item:nth-child(2) { border-right: 0; }
  .content-grid { grid-template-columns: 1fr; }
  .advice-panel { margin-bottom: 12px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 0; }
  .why-grid article:nth-child(2) { border-right: 0; }
  .contact-inner { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 620px) {
  :root { --page: calc(100% - 28px); }
  .brand { width: 160px; min-width: 160px; }
  .hero { min-height: 570px; background-position: 70% center; }
  .hero-actions { gap: 12px; }
  .button { width: 100%; }
  .trust-grid { grid-template-columns: 1fr; gap: 0; }
  .trust-item, .trust-item:first-child { padding: 15px 4px; border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 0; }
  .more-services { grid-template-columns: 1fr; }
  .more-services span, .more-services span:nth-child(2) { padding-block: 7px; border-right: 0; border-bottom: 1px solid rgba(255,45,139,.42); }
  .more-services span:last-child { border-bottom: 0; }
  .advice-panel { padding-inline: 15px; }
  .quick-answer { grid-template-columns: 1fr; }
  .answer-icon { display: none; }
  .advice-tips { grid-template-columns: 1fr; gap: 16px; }
  .advice-tips article, .advice-tips article:first-child, .advice-tips article:last-child { padding: 0 0 14px; border-right: 0; border-bottom: 1px solid rgba(255,45,139,.45); }
  .advice-tips article:last-child { border-bottom: 0; }
  .why-grid { grid-template-columns: 1fr; gap: 20px; }
  .why-grid article, .why-grid article:first-child { padding: 0; border-right: 0; }
  .contact-cta { padding-block: 44px; }
  footer > div { gap: 15px; flex-direction: column; }
}

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

/* Simple inside pages */
.subpage {
  background: linear-gradient(110deg, #35393b 0%, #232729 68%, #171a1c 100%);
}

.page-hero {
  padding: 70px 0 34px;
}

.page-hero h1 {
  max-width: 780px;
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: -.5px;
  text-transform: uppercase;
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 18px 0 0;
  color: #f0f0f0;
  font-size: clamp(17px, 1.45vw, 22px);
}

.page-section {
  padding: 0 0 70px;
}

.page-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.page-grid.two-column {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.page-card,
.contact-page-card {
  padding: 24px;
  border-radius: 8px;
  background: linear-gradient(145deg, #282b2c, #191c1e);
  box-shadow: var(--shadow);
}

.page-card small {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 8px;
  border-radius: 2px;
  background: var(--yellow);
  color: #111;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.page-card h2,
.contact-page-card h2 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.12;
  text-transform: uppercase;
}

.page-card p,
.contact-page-card p {
  margin: 0;
  color: #eeeeee;
}

.contact-page-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

@media (max-width: 900px) {
  .page-grid,
  .page-grid.two-column {
    grid-template-columns: 1fr;
  }

  .contact-page-card {
    align-items: flex-start;
    flex-direction: column;
  }
}

.map-link {
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.map-card {
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 212, 0, .35);
  border-radius: 8px;
  background: #111416;
  box-shadow: var(--shadow);
}

.map-card iframe {
  width: 100%;
  min-height: 390px;
  display: block;
  border: 0;
}

.contact-logo {
  width: 210px;
  max-width: 100%;
  height: auto;
  margin: 0 0 14px;
  border-radius: 4px;
  mix-blend-mode: screen;
}

.contact-email {
  width: fit-content;
  margin-top: 16px;
}

/* Advice Centre FAQ structure */
.advice-faq {
  display: grid;
  gap: 18px;
}

.grouped-faq {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.faq-group {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(255, 212, 0, .25);
  border-radius: 10px;
  background: rgba(8, 11, 13, .34);
  box-shadow: var(--shadow);
}

.faq-group-title {
  margin: 0 0 4px;
  color: var(--yellow);
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1;
  text-transform: uppercase;
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background: linear-gradient(145deg, #282b2c, #191c1e);
  box-shadow: var(--shadow);
}

.faq-question {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-items: center;
  padding: 18px 20px;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.faq-question:hover,
.faq-question:focus-visible {
  background: rgba(255, 212, 0, .08);
  outline: none;
}

.faq-category {
  width: fit-content;
  padding: 4px 8px;
  border-radius: 3px;
  background: var(--yellow);
  color: #111;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.faq-title {
  font-size: clamp(18px, 1.8vw, 25px);
  font-weight: 900;
  line-height: 1.1;
}

.faq-answer {
  padding: 0 20px 20px;
  color: #eeeeee;
}

.answer-block + .answer-block {
  margin-top: 16px;
}

.answer-block h3 {
  margin: 0 0 5px;
  color: var(--yellow);
  font-size: 14px;
  text-transform: uppercase;
}

.answer-block p {
  margin: 0;
}

.advice-cta {
  margin-top: 24px;
  padding: 24px;
  border-radius: 8px;
  background: #080b0d;
  border: 1px solid rgba(255, 212, 0, .35);
  box-shadow: var(--shadow);
}

.advice-cta h2 {
  margin: 0 0 8px;
  font-size: clamp(24px, 2.6vw, 38px);
  text-transform: uppercase;
}

.advice-cta p {
  max-width: 760px;
  margin: 0 0 18px;
  color: #eeeeee;
}

@media (max-width: 700px) {
  .grouped-faq {
    grid-template-columns: 1fr;
  }
}

/* About / Meet Jase page */
.about-hero {
  padding-top: 54px;
}

.about-hero-card {
  position: relative;
  overflow: hidden;
  padding: clamp(26px, 4vw, 46px);
  border: 1px solid rgba(255, 212, 0, .28);
  border-radius: 18px;
  background:
    radial-gradient(circle at top right, rgba(255, 212, 0, .22), transparent 34%),
    linear-gradient(145deg, #2c3031, #111416 72%);
  box-shadow: var(--shadow);
}

.about-hero-card::after {
  content: "";
  position: absolute;
  right: 28px;
  bottom: -34px;
  width: 150px;
  height: 150px;
  border: 18px solid rgba(255, 212, 0, .12);
  border-radius: 999px;
}

.about-hero-card > * {
  position: relative;
  z-index: 1;
}

.meet-page {
  display: grid;
  gap: 18px;
}

.meet-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(260px, .8fr);
  gap: 18px;
  align-items: stretch;
}

.meet-intro,
.meet-highlight,
.meet-page .page-card {
  border-radius: 16px;
}

.meet-intro {
  border-left: 5px solid var(--yellow);
}

.meet-intro p + p {
  margin-top: 14px;
}

.meet-highlight {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, .42), transparent 34%),
    var(--yellow);
  color: #ffffff;
  box-shadow: var(--shadow);
}

.meet-highlight span,
.meet-highlight strong,
.meet-highlight p {
  position: relative;
  z-index: 1;
}

.meet-highlight span {
  width: fit-content;
  margin-bottom: 18px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(10, 10, 10, .9);
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.meet-highlight strong {
  display: block;
  padding: 20px;
  border-radius: 14px;
  background: linear-gradient(145deg, #191c1e, #080b0d);
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(28px, 2.6vw, 40px);
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1.02;
  text-transform: none;
}

.meet-highlight p {
  margin: 16px 0 0;
  color: #101010;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.35;
}

.expect-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  color: #eeeeee;
  list-style: none;
}

.expect-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 12px;
  background: rgba(255, 255, 255, .04);
}

.expect-list span {
  display: grid;
  place-items: center;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--yellow);
  color: #101010;
  font-size: 13px;
  font-weight: 900;
}

.meet-page .page-card:nth-of-type(2) {
  background:
    linear-gradient(145deg, rgba(255, 212, 0, .09), transparent 42%),
    linear-gradient(145deg, #282b2c, #191c1e);
}

.meet-cta {
  margin-top: 0;
  border-radius: 16px;
}

@media (max-width: 800px) {
  .meet-feature,
  .expect-list {
    grid-template-columns: 1fr;
  }
}

/* Subpage workshop photography */
.subpage {
  position: relative;
  isolation: isolate;
}

.subpage::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: -1;
  height: clamp(340px, 42vw, 520px);
  background-image:
    linear-gradient(90deg, rgba(13, 16, 18, .9) 0%, rgba(13, 16, 18, .64) 52%, rgba(13, 16, 18, .3) 100%),
    linear-gradient(0deg, #35393b 0%, transparent 48%),
    var(--page-background);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 72%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 72%, transparent 100%);
}

.services-page { --page-background: url("images/bg-services-engine-brakes-optimized.jpg"); }
.advice-page { --page-background: url("images/bg-advice-diagnostics-optimized.jpg"); }
.about-page { --page-background: url("images/bg-about-tools-optimized.jpg"); }
.contact-page { --page-background: url("images/bg-contact-counter-optimized.jpg"); }

.services-page::before {
  height: 100%;
  background-image:
    linear-gradient(90deg, rgba(13, 16, 18, .9), rgba(13, 16, 18, .68)),
    linear-gradient(0deg, rgba(35, 39, 41, .9), rgba(13, 16, 18, .18) 65%),
    var(--page-background);
  background-position: center top;
  background-size: cover;
  -webkit-mask-image: none;
  mask-image: none;
}

.subpage .page-hero {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-shadow: 0 3px 20px rgba(0, 0, 0, .62);
}

.about-page .about-hero-card {
  background: linear-gradient(145deg, rgba(35, 40, 42, .9), rgba(12, 15, 16, .82) 72%);
  backdrop-filter: blur(2px);
}

@media (max-width: 700px) {
  .subpage::before {
    height: 500px;
    background-position: 62% center;
  }

  .services-page::before {
    height: 100%;
    background-position: 68% top;
  }

  .subpage .page-hero {
    min-height: 300px;
  }
}