:root {
  color-scheme: light;
  --ink: #16181b;
  --muted: #5e646c;
  --paper: #f3f0e9;
  --panel: #ffffff;
  --line: #ded8cf;
  --steel: #66717b;
  --charcoal: #22262a;
  --red: #b92f27;
  --red-dark: #80231f;
  --amber: #d7a43a;
  --green: #1f7a57;
  --shadow: 0 22px 70px rgba(22, 24, 27, 0.16);
  --radius: 8px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-y: auto;
  scroll-padding-top: 5rem;
}

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  overflow-x: hidden;
  overflow-y: auto;
}

body::selection {
  background: var(--red);
  color: #fff;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 50;
  transform: translateY(-160%);
  background: #fff;
  color: var(--ink);
  padding: 0.65rem 0.9rem;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

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

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem max(1rem, calc((100vw - var(--container)) / 2));
  color: #fff;
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: 0 10px 35px rgba(22, 24, 27, 0.12);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  flex: 0 0 auto;
  border: 2px solid currentColor;
  border-radius: 7px;
  font-weight: 900;
  font-size: 0.84rem;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.92rem;
  line-height: 1.1;
}

.brand small {
  margin-top: 0.1rem;
  color: currentColor;
  opacity: 0.74;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.95rem;
}

.nav-links a {
  min-height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.85rem;
  border-radius: 6px;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  outline: none;
}

.site-header.is-scrolled .nav-links a:hover,
.site-header.is-scrolled .nav-links a:focus-visible {
  background: rgba(184, 51, 42, 0.09);
}

.nav-cta {
  background: var(--red);
  color: #fff;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  padding: 6rem 0 3.5rem;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/hero-workshop.jpg");
  background-size: cover;
  background-position: center 42%;
  transform: scale(1.01);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 8, 9, 0.92) 0%, rgba(17, 18, 19, 0.78) 43%, rgba(22, 24, 27, 0.34) 100%),
    linear-gradient(0deg, rgba(8, 9, 10, 0.86), rgba(8, 9, 10, 0.08) 48%),
    linear-gradient(135deg, rgba(185, 47, 39, 0.24), rgba(215, 164, 58, 0.08));
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 2rem;
}

.hero-copy,
.trust-panel {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: #ffd47c;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0;
}

.eyebrow.dark {
  color: var(--red);
}

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

h1 {
  max-width: 12ch;
  margin-bottom: 1rem;
  font-size: 4.25rem;
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 44rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.12rem;
}

.hero-copy p,
.facts dd,
.contact-details dd,
.service-card p,
.faq-list p {
  overflow-wrap: anywhere;
}

.hero-actions,
.contact-box {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.button {
  min-height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.78rem 1rem;
  border: 1px solid transparent;
  border-radius: 7px;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button.primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 16px 34px rgba(184, 51, 42, 0.34);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.button.outline {
  border-color: var(--line);
  color: var(--ink);
  background: #fff;
}

.trust-panel {
  padding: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(31, 33, 34, 0.76);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.rating {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.score {
  width: 4rem;
  height: 4rem;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 7px;
  background: #fff;
  color: var(--red-dark);
  font-size: 1.4rem;
  font-weight: 900;
}

.rating strong,
.rating small {
  display: block;
}

.rating small,
.facts dt {
  color: rgba(255, 255, 255, 0.72);
}

.facts {
  display: grid;
  gap: 0.85rem;
  margin: 1rem 0 0;
}

.facts div,
.contact-details div {
  display: grid;
  gap: 0.15rem;
}

.facts dt,
.contact-details dt {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.facts dd,
.contact-details dd {
  margin: 0;
}

.quick-strip {
  background: #1b1f22;
  color: #fff;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.strip-grid > div {
  display: grid;
  gap: 0.15rem;
  padding: 1rem;
  background: #1b1f22;
}

.strip-grid span {
  color: #c9ced2;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.strip-grid a,
.strip-grid strong {
  font-size: 1rem;
}

.section {
  padding: 4.5rem 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-heading.compact {
  margin-bottom: 1.25rem;
}

h2 {
  margin-bottom: 0.8rem;
  font-size: 2.3rem;
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.6rem;
  font-size: 1.14rem;
  line-height: 1.22;
}

.section-heading p,
.service-card p,
.process-steps p,
.work-card p,
.prep-grid p,
.location-copy p,
.faq-list p,
.site-footer p {
  color: var(--muted);
}

.photo-story {
  background:
    linear-gradient(180deg, #f3f0e9 0%, #ffffff 100%);
}

.photo-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 2rem;
  align-items: center;
}

.photo-story .section-heading {
  margin-bottom: 0;
}

.photo-stack {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  grid-template-rows: repeat(2, minmax(14rem, 1fr));
  gap: 0.85rem;
}

.photo-card {
  position: relative;
  min-height: 14rem;
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius);
  background: #22262a;
  box-shadow: 0 16px 42px rgba(22, 24, 27, 0.14);
}

.photo-card.large {
  grid-row: 1 / span 2;
}

.photo-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
}

.photo-card figcaption {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  padding: 0.42rem 0.55rem;
  border-radius: 6px;
  background: rgba(13, 14, 15, 0.78);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.service-card {
  min-height: 16rem;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 12px 35px rgba(22, 24, 27, 0.06);
  border-top: 4px solid rgba(185, 47, 39, 0.78);
}

.service-number {
  display: inline-flex;
  margin-bottom: 2.3rem;
  color: var(--red);
  font-weight: 900;
}

.process {
  background: #fff;
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 2.5rem;
  align-items: start;
}

.sticky-heading {
  position: sticky;
  top: 6rem;
  margin-bottom: 0;
}

.mini-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.process-steps {
  display: grid;
  gap: 1rem;
}

.process-steps article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 1rem;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfaf6;
}

.process-steps article span {
  grid-row: span 2;
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: var(--charcoal);
  color: #fff;
  font-weight: 900;
}

.process-steps h3,
.process-steps p {
  margin-bottom: 0;
}

.work-types {
  background: #f3f0e9;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.work-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 34px rgba(22, 24, 27, 0.08);
}

.work-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
}

.work-card div {
  padding: 1rem;
}

.work-card p {
  margin-bottom: 0;
}

.proof {
  background: #e9e4dc;
}

.proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  align-items: center;
  gap: 2rem;
}

.proof-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.proof-list div {
  min-height: 8rem;
  display: grid;
  align-content: center;
  gap: 0.25rem;
  padding: 1rem;
  border-left: 4px solid var(--red);
  background: #fff;
  border-radius: var(--radius);
}

.proof-list strong {
  font-size: 1.5rem;
}

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

.prep {
  background:
    linear-gradient(90deg, rgba(27, 31, 34, 0.94), rgba(27, 31, 34, 0.82)),
    url("assets/shop-lift.jpg") center / cover;
  color: #fff;
}

.prep-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.prep-grid p {
  color: rgba(255, 255, 255, 0.78);
}

.checklist {
  display: grid;
  gap: 0.8rem;
}

.checklist div {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.75rem;
  align-items: start;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(10px);
}

.checklist span {
  width: 1.8rem;
  height: 1.8rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--amber);
  color: #191a1c;
  font-weight: 900;
}

.checklist p {
  margin: 0;
}

.cta-band {
  background: #171a1d;
  color: #fff;
}

.cta-band-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
}

.cta-band h2 {
  max-width: 780px;
}

.cta-band p:not(.eyebrow) {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
}

.location {
  background: #fff;
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.contact-details {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0 0;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #faf8f3;
}

.contact-details dt {
  color: var(--muted);
}

.contact-details a {
  color: var(--red-dark);
  font-weight: 800;
}

.map-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.map-open-link {
  position: absolute;
  right: 0.9rem;
  bottom: 0.9rem;
  z-index: 2;
  min-height: 2.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 0.85rem;
  border-radius: 7px;
  background: var(--red);
  color: #fff;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 12px 26px rgba(22, 24, 27, 0.24);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  pointer-events: none;
}

.faq {
  background: var(--paper);
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 24px rgba(22, 24, 27, 0.05);
}

summary {
  cursor: pointer;
  padding: 1rem 1.1rem;
  font-weight: 850;
}

details p {
  padding: 0 1.1rem 1rem;
  margin: 0;
}

.site-footer {
  padding: 2rem 0;
  background: #151719;
  color: #fff;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-grid p {
  margin: 0.35rem 0 0;
  color: #bdc4ca;
}

.footer-grid > div:last-child {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.8rem;
}

.footer-grid a {
  color: #fff;
  font-weight: 800;
}

@media (max-width: 920px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .nav-links a:not(.nav-cta) {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 7rem;
  }

  .hero-grid,
  .photo-story-grid,
  .process-grid,
  .prep-grid,
  .cta-band-grid,
  .proof-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .photo-story .section-heading {
    margin-bottom: 1.5rem;
  }

  h1 {
    max-width: 11ch;
    font-size: 3.1rem;
  }

  h2 {
    font-size: 1.9rem;
  }

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

  .sticky-heading {
    position: static;
  }

  .cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100vw - 2rem), var(--container));
    max-width: 100%;
  }

  .site-header {
    padding-inline: 0.65rem;
  }

  .brand {
    gap: 0.55rem;
  }

  .brand-mark {
    width: 2.35rem;
    height: 2.35rem;
    font-size: 0.72rem;
  }

  .brand strong {
    max-width: 12rem;
    font-size: 0.78rem;
  }

  .nav-cta {
    padding-inline: 0.72rem;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding-bottom: 2rem;
  }

  .hero-grid {
    display: block;
    width: calc(100vw - 2rem);
    max-width: 100%;
  }

  .trust-panel {
    width: 100%;
    max-width: 100%;
    margin-top: 2rem;
  }

  .rating {
    align-items: flex-start;
  }

  h1 {
    font-size: 2.45rem;
  }

  .hero-lede {
    font-size: 1rem;
    max-width: 100%;
  }

  .hero-actions,
  .contact-box {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .strip-grid,
  .photo-stack,
  .service-grid,
  .work-grid,
  .proof-list {
    grid-template-columns: 1fr;
  }

  .process-steps article {
    grid-template-columns: 1fr;
  }

  .process-steps article span {
    grid-row: auto;
    margin-bottom: 0.75rem;
  }

  .mini-cta,
  .cta-actions {
    display: grid;
  }

  .photo-stack {
    grid-template-rows: none;
  }

  .photo-card.large {
    grid-row: auto;
  }

  .section {
    padding: 3.2rem 0;
  }

  .service-card {
    min-height: auto;
  }

  .service-number {
    margin-bottom: 1rem;
  }

  .map-card,
  .map-card iframe {
    min-height: 330px;
  }

  .footer-grid {
    display: grid;
  }

  .footer-grid > div:last-child {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
