:root {
  --bg: #070707;
  --surface: #101010;
  --surface-2: #151515;
  --surface-3: #1b1b1b;
  --text: #f6f6f4;
  --muted: #aaa9a3;
  --line: #2a2a28;
  --yellow: #f6c400;
  --yellow-soft: #ffe15c;
  --black: #050505;
  --radius: 16px;
  --shadow: 0 20px 60px rgba(0,0,0,.35);
  --shell: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.shell { width: var(--shell); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 9999; transform: translateY(-150%); background: var(--yellow); color: #000; padding: 10px 14px; border-radius: 8px; font-weight: 800; }
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5,5,5,.92);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
}
.header-inner { min-height: 86px; display: flex; align-items: center; gap: 32px; }
.brand { display: flex; align-items: center; gap: 14px; flex: 0 0 auto; min-width: 0; }
.brand img { width: 138px; height: 78px; object-fit: contain; flex: 0 0 auto; }
.brand-copy { display: grid; gap: 3px; min-width: 0; }
.brand-copy strong { font-size: 1.12rem; line-height: 1; letter-spacing: .02em; text-transform: uppercase; }
.brand-copy span { color: var(--muted); font-size: .78rem; line-height: 1.25; white-space: nowrap; }
.main-nav { margin-left: auto; display: flex; align-items: center; gap: 30px; }
.main-nav a { color: #d4d4d0; font-size: .95rem; font-weight: 650; position: relative; padding: 10px 0; }
.main-nav a::after { content: ""; position: absolute; left: 0; bottom: 2px; width: 100%; height: 2px; background: var(--yellow); transform: scaleX(0); transform-origin: left; transition: transform .2s ease; }
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }
.menu-toggle { display: none; margin-left: auto; width: 44px; height: 44px; border: 1px solid var(--line); background: var(--surface); border-radius: 10px; padding: 10px; }
.menu-toggle span:not(.sr-only) { display: block; height: 2px; background: #fff; margin: 5px 0; }

.button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; border-radius: 9px; border: 1px solid transparent; padding: 0 20px; font-weight: 850; letter-spacing: .01em; cursor: pointer; transition: transform .18s ease, background .18s ease, border-color .18s ease; }
.button:hover { transform: translateY(-1px); }
.button svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.button-primary { background: var(--yellow); color: #050505; box-shadow: 0 8px 24px rgba(246,196,0,.14); }
.button-primary:hover { background: var(--yellow-soft); }
.button-secondary { border-color: rgba(246,196,0,.72); background: rgba(8,8,8,.6); color: var(--text); }
.button-secondary:hover { border-color: var(--yellow); background: rgba(246,196,0,.08); }
.header-call { min-height: 44px; padding-inline: 17px; font-size: .94rem; }

.hero { position: relative; min-height: 650px; display: grid; align-items: center; overflow: hidden; border-bottom: 1px solid var(--line); }
.hero-media { position: absolute; inset: 0 0 0 38%; background: url("assets/hero-workshop.webp") center/cover no-repeat; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, #070707 0%, #070707 37%, rgba(7,7,7,.88) 50%, rgba(7,7,7,.15) 77%, rgba(7,7,7,.35) 100%), linear-gradient(0deg, rgba(0,0,0,.2), transparent 55%); }
.hero-content { position: relative; z-index: 2; padding-block: 110px; }
.hero-content > * { max-width: 670px; }
.eyebrow { margin: 0 0 14px; color: var(--yellow); font-size: .82rem; font-weight: 850; letter-spacing: .18em; text-transform: uppercase; }
.hero-brand { margin: 0 0 14px; font-size: clamp(1.65rem, 3vw, 2.35rem); font-weight: 950; line-height: 1; letter-spacing: .06em; text-transform: uppercase; color: var(--yellow); }
h1, h2, h3 { margin: 0; line-height: 1.08; letter-spacing: -.03em; }
h1 { font-size: clamp(2.5rem, 4.6vw, 4rem); max-width: 780px !important; text-transform: uppercase; font-weight: 950; }
h1 span { color: var(--yellow); }
.hero-copy { color: #d0d0cb; font-size: clamp(1.05rem, 1.4vw, 1.22rem); margin: 24px 0 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.trust-strip { background: var(--surface); border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { min-height: 112px; display: flex; align-items: center; gap: 16px; padding: 20px 28px; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.icon-frame { width: 48px; height: 48px; flex: 0 0 auto; display: grid; place-items: center; color: var(--yellow); }
.icon-frame svg { width: 38px; height: 38px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.icon-frame.text-icon { border: 2px solid var(--yellow); border-radius: 8px; font-size: 1.35rem; font-weight: 900; }
.trust-item strong, .trust-item span { display: block; }
.trust-item strong { font-size: .98rem; text-transform: uppercase; }
.trust-item div span { color: var(--muted); font-size: .86rem; }

.section { padding: 104px 0; border-bottom: 1px solid var(--line); }
.section-muted { background: var(--surface); }
.section-heading { max-width: 700px; margin-bottom: 44px; }
h2 { font-size: clamp(2.1rem, 4.6vw, 4rem); font-weight: 900; }
.section-heading > p:last-child, .large-copy, .quote-copy > p { color: var(--muted); font-size: 1.08rem; }

.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.service-card { position: relative; min-height: 210px; padding: 26px; background: linear-gradient(145deg, #151515, #101010); border: 1px solid var(--line); border-radius: var(--radius); transition: transform .2s ease, border-color .2s ease; }
.service-card:hover { transform: translateY(-3px); border-color: rgba(246,196,0,.48); }
.service-number { color: var(--yellow); font-size: .78rem; font-weight: 850; letter-spacing: .16em; }
.service-card h3 { margin: 34px 0 12px; font-size: 1.18rem; }
.service-card p { margin: 0; color: var(--muted); font-size: .94rem; }
.service-note { color: #8e8e89; margin: 20px 0 0; font-size: .9rem; }

.about-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 90px; align-items: start; }
.large-copy { margin-top: 24px; max-width: 620px; }
.about-reasons-title { margin-bottom: 24px; font-size: clamp(2rem, 3.4vw, 3.25rem); font-weight: 900; }
.about-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.about-list li { display: grid; grid-template-columns: 48px 1fr; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.about-list li > span { color: var(--yellow); font-weight: 900; }
.about-list strong { font-size: 1.05rem; }
.about-list p { color: var(--muted); margin: 3px 0 0; }

.quote-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: start; }
.quote-copy { position: sticky; top: 120px; }
.contact-mini { margin-top: 32px; display: grid; gap: 8px; }
.contact-mini a { font-weight: 750; }
.contact-mini a:hover { color: var(--yellow); }
.quote-form { background: var(--surface); border: 1px solid var(--line); border-radius: 20px; padding: 30px; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label { display: grid; gap: 8px; margin-bottom: 15px; color: #d7d7d2; font-size: .9rem; font-weight: 700; }
input, textarea, select { width: 100%; color: var(--text); background: #0b0b0b; border: 1px solid #343431; border-radius: 9px; padding: 13px 14px; outline: 0; transition: border-color .18s ease, box-shadow .18s ease; }
input:focus, textarea:focus, select:focus { border-color: var(--yellow); box-shadow: 0 0 0 3px rgba(246,196,0,.12); }
textarea { resize: vertical; min-height: 130px; }
select { appearance: none; background-image: linear-gradient(45deg,transparent 50%,#aaa 50%),linear-gradient(135deg,#aaa 50%,transparent 50%); background-position: calc(100% - 20px) 52%,calc(100% - 15px) 52%; background-size: 5px 5px,5px 5px; background-repeat: no-repeat; }
.submit-button { width: 100%; }
.form-status { min-height: 24px; margin: 12px 0 0; color: var(--muted); font-size: .9rem; }

.reviews-layout { display: grid; grid-template-columns: .95fr 1.05fr; gap: 70px; align-items: center; }
.review-placeholder { background: var(--surface-3); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; }
.review-placeholder > span { display: block; color: var(--yellow); font-size: 4rem; line-height: .7; font-family: Georgia, serif; }
.review-placeholder p { font-size: 1.2rem; margin: 18px 0 8px; }
.review-placeholder small { color: var(--muted); }

.contact-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 28px; }
.contact-panel { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; }
.contact-details { margin: 30px 0 0; display: grid; gap: 21px; }
.contact-details div { display: grid; grid-template-columns: 120px 1fr; gap: 18px; }
.contact-details dt { color: #8f8f8a; font-size: .82rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.contact-details dd { margin: 0; }
.contact-details a:hover { color: var(--yellow); }
.contact-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.contact-badges span { border: 1px solid #383833; background: #0a0a0a; color: #cfcfc9; border-radius: 999px; padding: 8px 12px; font-size: .82rem; }
.map-wrap { min-height: 500px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #151515; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 500px; border: 0; filter: none; opacity: 1; }

.site-footer { background: #040404; padding: 48px 0 24px; }
.footer-inner { display: grid; grid-template-columns: 160px 1fr auto; align-items: center; gap: 36px; }
.footer-inner img { width: 145px; height: 90px; object-fit: contain; }
.footer-inner p { color: var(--muted); max-width: 380px; }
.footer-links { display: flex; gap: 22px; }
.footer-links a { color: #c7c7c2; }
.footer-links a:hover { color: var(--yellow); }
.footer-bottom { margin-top: 28px; padding-top: 20px; border-top: 1px solid #20201e; color: #74746f; display: flex; justify-content: space-between; font-size: .82rem; }

@media (max-width: 980px) {
  .header-call { display: none; }
  .hero { min-height: 620px; }
  .hero-media { inset: 0; }
  .hero-overlay { background: linear-gradient(90deg, rgba(7,7,7,.98) 0%, rgba(7,7,7,.88) 55%, rgba(7,7,7,.45) 100%), linear-gradient(0deg, rgba(7,7,7,.65), transparent 45%); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .quote-layout, .reviews-layout, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .quote-copy { position: static; }
  .footer-inner { grid-template-columns: 120px 1fr; }
  .footer-links { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  :root { --shell: min(100% - 28px, 1180px); }
  .header-inner { min-height: 72px; }
  .brand { gap: 10px; }
  .brand img { width: 104px; height: 62px; }
  .brand-copy strong { font-size: .95rem; }
  .brand-copy span { font-size: .68rem; white-space: normal; }
  .menu-toggle { display: block; }
  .main-nav { position: fixed; top: 72px; left: 14px; right: 14px; display: none; padding: 14px; border: 1px solid var(--line); border-radius: 14px; background: #0b0b0b; box-shadow: var(--shadow); }
  .main-nav.open { display: grid; }
  .main-nav a { padding: 12px 10px; }
  .hero { min-height: 650px; }
  .hero-content { padding-block: 90px 72px; }
  h1 { font-size: clamp(2.55rem, 13vw, 4.2rem); }
  .hero-copy { max-width: 92%; }
  .hero-actions { display: grid; width: min(100%, 420px); }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--line); min-height: 96px; padding-inline: 18px; }
  .trust-item:last-child { border-bottom: 0; }
  .section { padding: 76px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 170px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .quote-form { padding: 20px; }
  .contact-details div { grid-template-columns: 1fr; gap: 3px; }
  .map-wrap, .map-wrap iframe { min-height: 390px; }
  .footer-inner { grid-template-columns: 1fr; text-align: left; }
  .footer-inner img { width: 130px; }
  .footer-links { flex-wrap: wrap; }
  .footer-bottom { flex-direction: column; gap: 6px; }
}

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


/* Workshop contact strip */
.header-contact-bar {
  background: #151515;
  border-bottom: 1px solid var(--line);
}
.header-contact-inner {
  min-height: 58px;
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: end;
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
}
.header-contact-item {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #f2f2ee;
  line-height: 1.2;
}
.header-contact-item svg {
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--yellow);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.header-contact-item span {
  display: grid;
  gap: 3px;
}
.header-contact-item small {
  color: #8f8f89;
  font-size: .68rem;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.header-contact-item strong {
  font-size: .88rem;
  font-weight: 800;
  white-space: nowrap;
}
a.header-contact-item {
  transition: color .18s ease;
}
a.header-contact-item:hover {
  color: var(--yellow);
}
.header-phone {
  position: relative;
}
.header-phone::after {
  content: "";
  position: absolute;
  left: calc(100% + clamp(14px, 2.5vw, 35px));
  width: 1px;
  height: 30px;
  background: var(--line);
}
.site-header .header-inner {
  min-height: 78px;
}
.site-header .brand img {
  width: 138px;
  height: 70px;
}

@media (max-width: 980px) {
  .header-contact-inner {
    grid-template-columns: repeat(2, auto);
    justify-content: space-between;
    gap: 18px;
  }
  .header-contact-item strong {
    font-size: .82rem;
  }
  .header-phone::after {
    display: none;
  }
}

@media (max-width: 720px) {
  .header-contact-inner {
    min-height: 48px;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 10px;
  }
  .header-contact-item {
    gap: 8px;
  }
  .header-contact-item svg {
    width: 19px;
    height: 19px;
  }
  .header-contact-item small {
    display: none;
  }
  .header-contact-item strong {
    font-size: .76rem;
  }
  .header-phone {
    justify-self: end;
  }
  .header-location {
    min-width: 0;
  }
  .header-location strong {
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .site-header .header-inner {
    min-height: 72px;
  }
  .site-header .brand img {
    width: 104px;
    height: 62px;
  }
  .main-nav {
    top: 120px;
  }
}

@media (max-width: 390px) {
  .header-contact-item strong {
    font-size: .7rem;
  }
  .header-contact-item svg {
    width: 17px;
    height: 17px;
  }
}


/* Large overlapping header logo */
.site-header .header-inner {
  position: relative;
  padding-left: 250px;
}
.site-header .brand {
  position: absolute;
  z-index: 3;
  left: 0;
  top: -52px;
  width: 224px;
  height: 122px;
  display: grid;
  place-items: center;
}
.site-header .brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.site-header .brand-copy {
  display: none;
}
.site-header .header-contact-inner {
  padding-left: 250px;
}

@media (max-width: 980px) {
  .site-header .header-inner,
  .site-header .header-contact-inner {
    padding-left: 210px;
  }
  .site-header .brand {
    width: 188px;
    height: 112px;
    top: -47px;
  }
}

@media (max-width: 720px) {
  .site-header .header-contact-inner {
    padding-left: 138px;
  }
  .site-header .header-inner {
    padding-left: 138px;
  }
  .site-header .brand {
    width: 128px;
    height: 104px;
    top: -40px;
  }
}

@media (max-width: 390px) {
  .site-header .header-contact-inner,
  .site-header .header-inner {
    padding-left: 118px;
  }
  .site-header .brand {
    width: 110px;
    height: 96px;
    top: -36px;
  }
}
