:root {
  color-scheme: dark;
  --brand-dark: #313131;
  --ink: var(--brand-dark);
  --ink-soft: color-mix(in srgb, var(--brand-dark), white 12%);
  --paper: oklch(14% 0.008 255);
  --panel: oklch(20% 0.01 255);
  --line: oklch(48% 0.035 84);
  --signal: oklch(70% 0.12 84);
  --signal-dark: oklch(24% 0.03 84);
  --white: oklch(97% 0.004 98);
  --muted: oklch(78% 0.016 90);
  --shadow: 0 24px 70px oklch(4% 0.008 255 / 36%);
  --font-body: "Aptos", "Avenir Next", "Segoe UI", system-ui, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --content-width: min(100% - 2rem, 72rem);
  --section-gap: clamp(1.5rem, 4vw, 3rem);
  --hero-peek: clamp(9rem, 18vw, 14rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--paper);
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.5;
  background: var(--paper);
}

main {
  display: grid;
  row-gap: var(--section-gap);
  overflow: clip;
  padding-bottom: clamp(2rem, 6vw, 4rem);
}

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

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  overflow: clip;
  width: 100%;
  min-height: calc(100svh - var(--hero-peek));
  align-items: center;
  gap: clamp(2rem, 7vw, 6rem);
  margin: 0;
  padding: max(2.25rem, env(safe-area-inset-top)) 0 clamp(2rem, 5vw, 4rem);
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, oklch(10% 0.01 255 / 84%) 0 38%, oklch(10% 0.01 255 / 52%) 60%, oklch(10% 0.01 255 / 70%) 100%),
    linear-gradient(180deg, oklch(10% 0.01 255 / 34%) 0, transparent 44%, oklch(10% 0.01 255 / 74%) 100%);
}

.hero-bg {
  position: absolute;
  inset: -22svh 0;
  z-index: -2;
  background-image: url("./assets/hero-workshop.png");
  background-position: center;
  background-size: cover;
  transform: translate3d(0, var(--hero-parallax, 0px), 0) scale(1.14);
  will-change: transform;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: var(--content-width);
  margin: 0 auto;
  padding-top: clamp(1rem, 2vw, 2rem);
  text-align: center;
}

.eyebrow {
  width: fit-content;
  margin: 0 0 1rem;
  padding: 0.45rem 0.7rem;
  color: var(--signal-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--signal);
}

h1 {
  margin: 0;
  max-width: 46rem;
}

h1 img {
  display: block;
  width: min(100%, 48rem);
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 1.25rem 2rem oklch(4% 0.008 255 / 35%));
}

.hero-tagline {
  display: block;
  max-width: 36rem;
  margin: clamp(1.5rem, 3vw, 2.5rem) auto 0;
  color: var(--muted);
  font-size: clamp(1.15rem, 1rem + 0.7vw, 1.55rem);
  font-weight: 650;
  line-height: 1.4;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  clip-path: inset(50%);
}

.call {
  display: inline-flex;
  min-height: 4.25rem;
  align-items: center;
  justify-content: center;
  margin-top: clamp(1.5rem, 4vw, 3rem);
  padding: 1rem clamp(1.3rem, 4vw, 2.4rem);
  color: var(--ink);
  font-size: clamp(1.15rem, 1rem + 0.8vw, 1.65rem);
  font-weight: 950;
  border: 0.18rem solid var(--ink);
  background: var(--signal);
  box-shadow: 0.55rem 0.55rem 0 var(--ink);
  transition: transform 180ms var(--ease-out), box-shadow 180ms var(--ease-out);
  white-space: nowrap;
}

.call:focus-visible {
  outline: 0.2rem solid var(--signal);
  outline-offset: 0.25rem;
}

@media (hover: hover) {
  .call:hover {
    transform: translate(-0.18rem, -0.18rem);
    box-shadow: 0.75rem 0.75rem 0 var(--ink);
  }
}

.call:active {
  transform: translate(0.18rem, 0.18rem);
  box-shadow: 0.32rem 0.32rem 0 var(--ink);
}

.services {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.85rem, 2vw, 1.25rem);
  width: var(--content-width);
  margin: 0 auto;
}

.service-card {
  display: grid;
  align-content: start;
  gap: 0.75rem;
  min-height: 13rem;
  padding: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--ink);
  border: 0.16rem solid var(--ink);
  background: var(--white);
  box-shadow: 0 1.2rem 3rem oklch(4% 0.008 255 / 26%);
  transition:
    transform 220ms var(--ease-out),
    box-shadow 220ms var(--ease-out),
    background-color 220ms var(--ease-out);
}

.service-icon {
  display: inline-grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  color: var(--signal-dark);
  border: 0.13rem solid var(--ink);
  background: var(--signal);
  box-shadow: 0.22rem 0.22rem 0 var(--ink);
  transition:
    transform 220ms var(--ease-out),
    box-shadow 220ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .service-card:hover {
    transform: translateY(-0.35rem);
    background: oklch(99% 0.006 98);
    box-shadow: 0 1.8rem 4rem oklch(4% 0.008 255 / 36%);
  }

  .service-card:hover .service-icon {
    transform: translate(-0.12rem, -0.12rem);
    box-shadow: 0.34rem 0.34rem 0 var(--ink);
  }
}

.service-icon svg {
  width: 1.7rem;
  height: 1.7rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin: 0;
  font-size: clamp(0.9rem, 0.78rem + 0.5vw, 1.08rem);
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-card p {
  max-width: 22ch;
  margin: 0;
  color: color-mix(in srgb, var(--ink), white 18%);
  font-size: clamp(0.92rem, 0.86rem + 0.25vw, 1rem);
  font-weight: 700;
  line-height: 1.35;
}

.faq {
  width: var(--content-width);
  margin: 0 auto;
}

.faq h2 {
  margin: 0 0 1rem;
  color: var(--white);
  font-size: clamp(1.6rem, 1.2rem + 1.5vw, 2.4rem);
  font-weight: 850;
  line-height: 1.15;
}

.faq a {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: var(--signal);
  text-decoration-thickness: 0.12em;
  text-underline-offset: 0.18em;
}

.faq-list {
  display: grid;
  gap: clamp(0.85rem, 2vw, 1.25rem);
  margin: 0;
}

.faq-item {
  padding: clamp(1rem, 2vw, 1.35rem);
  border: 0.12rem solid color-mix(in srgb, var(--line), transparent 40%);
  background: var(--panel);
}

.faq-item dt {
  margin: 0 0 0.5rem;
  color: var(--white);
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.12rem);
  font-weight: 850;
}

.faq-item dd {
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.95rem, 0.9rem + 0.2vw, 1.05rem);
  font-weight: 600;
  line-height: 1.55;
}

.location {
  display: grid;
  grid-template-columns: minmax(16rem, 0.75fr) minmax(18rem, 1.25fr);
  gap: clamp(1rem, 2.5vw, 2rem);
  width: var(--content-width);
  margin: 0 auto;
  align-items: stretch;
}

.location-copy {
  display: grid;
  align-content: center;
  padding: clamp(0.5rem, 1.5vw, 1rem) 0;
  color: var(--white);
}

.location-copy h2 {
  margin: 0 0 1rem;
  color: var(--white);
  font-size: clamp(2.3rem, 7vw, 4.8rem);
  line-height: 0.9;
}

.location-copy address {
  font-style: normal;
}

.location-copy address a {
  color: var(--muted);
  font-size: clamp(1.1rem, 1rem + 0.5vw, 1.35rem);
  font-weight: 850;
  line-height: 1.35;
  text-decoration: underline;
  text-decoration-color: var(--signal);
  text-decoration-thickness: 0.12em;
  text-underline-offset: 0.18em;
}

.map-frame {
  overflow: hidden;
  min-height: clamp(20rem, 42vw, 28rem);
  border: 0.16rem solid var(--ink);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
  filter: grayscale(0.28) contrast(1.04);
}

.footer {
  width: var(--content-width);
  margin: 0 auto;
  padding: 0 0 max(1.5rem, env(safe-area-inset-bottom));
  color: var(--muted);
  font-size: 0.85rem;
}

.footer p {
  margin: 0;
}

@media (max-width: 42rem) {
  .services {
    grid-template-columns: 1fr;
  }

  .location {
    grid-template-columns: 1fr;
  }

  .hero-bg {
    background-position: 62% center;
  }

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

}

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

  .hero-bg {
    transform: none;
    will-change: auto;
  }
}
