:root {
  --ink: #202833;
  --muted: #5b6573;
  --paper: #faf9f6;
  --paper-deep: #f0ede6;
  --line: #dfd9ce;
  --night: #0b0e14;
  --night-soft: #141924;
  --orange: #e8690a;
  --orange-bright: #ff8533;
  --orange-wash: #ffe0c7;
  --cyan: #68d9e8;
  --blue: #2c6ecb;
  --green: #0f7a41;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "IBM Plex Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

img {
  display: block;
  max-width: 100%;
}

.section {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.preview-bar {
  min-height: 38px;
  padding: 8px 24px;
  background: #213756;
  color: #eaf3ff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  font-size: 0.82rem;
}

.preview-bar span {
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(104, 217, 232, 0.14);
  color: #a9f1fa;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.preview-bar p {
  margin: 0;
  color: #c9d6e8;
}

.site-header {
  height: 78px;
  padding: 0 max(24px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 28px;
  background: rgba(9, 12, 17, 0.96);
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  position: relative;
  z-index: 20;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  font-size: 1.33rem;
  font-weight: 700;
  white-space: nowrap;
}

.brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.brand strong {
  color: #6de6a4;
}

.rating {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 5px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.84rem;
}

.rating > span {
  color: #f7b633;
  letter-spacing: 0.04em;
}

.rating small {
  color: #aeb5c0;
  padding-left: 7px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(16px, 2vw, 28px);
  color: #d8dde4;
  font-weight: 600;
  font-size: 0.92rem;
}

.desktop-nav a {
  position: relative;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  background: var(--cyan);
  transition: right 160ms ease;
}

.desktop-nav a:hover::after {
  right: 0;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  color: #11151b;
  background: #69a7f2;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 160ms ease, background 160ms ease;
}

.header-cta:hover {
  background: #85b8f5;
  transform: translateY(-1px);
}

.mobile-menu {
  display: none;
}

/* Restored service navigation for the redesigned homepage. The original
   compact header remains in the markup only as a rollback-safe fallback. */
.home-site-header ~ main > .site-header,
.site-nav ~ main > .site-header {
  display: none;
}

.home-site-header {
  position: relative;
  z-index: 100;
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 28px;
  height: 78px;
  padding: 0 max(24px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(9, 12, 17, 0.98);
  color: #fff;
}

.home-desktop-navigation {
  justify-self: end;
}

.home-desktop-navigation > ul,
.home-nav-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-desktop-navigation > ul {
  display: flex;
  align-items: center;
  gap: clamp(15px, 1.8vw, 26px);
}

.home-desktop-navigation > ul > li {
  position: relative;
}

.home-desktop-navigation > ul > li > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 44px;
  color: #d8dde4;
  font-size: 0.9rem;
  font-weight: 650;
}

.home-desktop-navigation > ul > li > a::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: var(--cyan);
  transition: right 160ms ease;
}

.home-desktop-navigation > ul > li:hover > a::after,
.home-desktop-navigation > ul > li:focus-within > a::after {
  right: 0;
}

.home-nav-dropdown > a > span {
  color: #8996a5;
  font-size: 0.8rem;
  transition: transform 160ms ease;
}

.home-nav-dropdown:hover > a > span,
.home-nav-dropdown:focus-within > a > span {
  transform: rotate(180deg);
}

.home-nav-menu {
  position: absolute;
  top: calc(100% - 2px);
  left: -18px;
  width: 310px;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 10px;
  background: #111720;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.46);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 150ms ease, transform 150ms ease, visibility 150ms ease;
}

.home-nav-dropdown:hover > .home-nav-menu,
.home-nav-dropdown:focus-within > .home-nav-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.home-nav-menu li + li {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.home-nav-menu a {
  display: grid;
  gap: 2px;
  padding: 10px 11px;
  border-radius: 6px;
  color: #ccd5df;
  font-size: 0.84rem;
  line-height: 1.35;
}

.home-nav-menu a:hover,
.home-nav-menu a:focus-visible {
  background: rgba(104, 217, 232, 0.08);
  color: #fff;
  outline: none;
}

.home-nav-menu strong {
  color: #fff;
  font-size: 0.87rem;
}

.home-nav-menu small {
  color: #8f9cab;
  font-size: 0.73rem;
}

.home-mobile-menu {
  display: none;
}

.hero {
  min-height: 720px;
  position: relative;
  overflow: hidden;
  background: var(--night);
  background-image: none !important;
  color: white;
}

.hero-image,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  filter: saturate(0.85) contrast(1.05);
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(6, 9, 14, 0.98) 0%, rgba(6, 9, 14, 0.92) 38%, rgba(6, 9, 14, 0.54) 72%, rgba(6, 9, 14, 0.7) 100%),
    linear-gradient(0deg, rgba(6, 9, 14, 0.85) 0%, transparent 40%);
}

.hero-grid {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
  min-height: 720px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  align-items: center;
  gap: 72px;
  padding: 72px 0 84px;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--cyan);
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 28px;
  height: 2px;
  background: currentColor;
}

.eyebrow.dark {
  color: #21707a;
}

h1,
h2 {
  margin: 0;
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  letter-spacing: -0.025em;
  line-height: 1.02;
}

h1 {
  max-width: 720px;
  font-size: clamp(3.35rem, 5.4vw, 5.55rem);
}

h1 em,
.workshop-copy h2 em {
  color: #ffb87e;
  font-style: normal;
}

.hero-lead {
  max-width: 630px;
  margin: 28px 0 0;
  color: #d5d9e0;
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
}

.hero-compare-route {
  max-width: 630px;
  margin: 16px 0 0;
  padding-left: 13px;
  border-left: 2px solid var(--orange-bright);
  color: #c4cad3;
  font-size: 0.88rem;
  line-height: 1.5;
}

.hero-compare-route span {
  margin-right: 5px;
  color: #ffffff;
  font-weight: 700;
}

main p.hero-compare-route a:not(.btn) {
  color: #ffd2b3 !important;
  text-decoration: underline;
  text-decoration-color: rgba(255, 133, 51, 0.55);
  text-underline-offset: 3px;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}

main p.hero-compare-route a:not(.btn):hover {
  color: #ffffff !important;
  text-decoration-color: #ffffff;
}

.hero-compare-route b {
  display: inline-block;
  margin-left: 3px;
  transition: transform 160ms ease;
}

.hero-review-route {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  max-width: 630px;
  margin-top: 14px;
  padding: 12px 12px 12px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(121, 223, 228, 0.3);
  border-radius: 12px;
  background:
    radial-gradient(circle at 0 50%, rgba(255, 132, 59, 0.2), transparent 34%),
    linear-gradient(115deg, rgba(20, 29, 39, 0.97), rgba(8, 12, 18, 0.94) 58%, rgba(20, 34, 45, 0.96));
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.hero-review-route::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, #79dfe4, #f2ba48 54%, #ff843b);
  box-shadow: 0 0 18px rgba(121, 223, 228, 0.45);
}

.hero-review-route::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 0 0 46%;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(121, 223, 228, 0.38) 1px, transparent 1px),
    linear-gradient(90deg, rgba(121, 223, 228, 0.38) 1px, transparent 1px);
  background-size: 18px 18px;
}

.hero-review-route__stars {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  padding: 8px 10px;
  color: #f2ba48;
  background: rgba(4, 7, 11, 0.48);
  border: 1px solid rgba(242, 186, 72, 0.28);
  border-radius: 999px;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-shadow: 0 0 12px rgba(242, 186, 72, 0.28);
}

.hero-review-route__stars b {
  color: #ffffff;
  font-size: 0.7rem;
  letter-spacing: 0;
}

.hero-review-route__copy {
  display: grid;
  min-width: 0;
  margin-right: auto;
  line-height: 1.25;
}

.hero-review-route__copy small {
  color: #8fdde2;
  font: 700 0.64rem/1.2 ui-monospace, "SFMono-Regular", Consolas, monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-review-route__copy strong {
  color: #ffffff;
  font-size: 0.88rem;
}

main .hero-review-route > a:not(.btn) {
  position: relative;
  z-index: 1;
  min-height: 44px;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex: 0 0 auto;
  color: #11151b !important;
  background: linear-gradient(135deg, #f4ffff, #cfeef1);
  border: 1px solid rgba(121, 223, 228, 0.76);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(8, 20, 27, 0.32), inset 0 1px 0 #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

main .hero-review-route > a:not(.btn)::after {
  content: "→";
  transition: transform 180ms ease;
}

main .hero-review-route > a:not(.btn):hover,
main .hero-review-route > a:not(.btn):focus-visible {
  background: linear-gradient(135deg, #ffffff, #e1f8fa);
  box-shadow: 0 11px 30px rgba(8, 20, 27, 0.42), inset 0 1px 0 #ffffff;
  transform: translateY(-1px);
}

main .hero-review-route > a:not(.btn):hover::after,
main .hero-review-route > a:not(.btn):focus-visible::after {
  transform: translateX(3px);
}

.upload-card--beginner {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-color: rgba(121, 223, 228, 0.34);
  background:
    radial-gradient(circle at 0 0, rgba(121, 223, 228, 0.12), transparent 42%),
    linear-gradient(145deg, rgba(18, 26, 36, 0.98), rgba(11, 15, 22, 0.98));
}

.upload-card--beginner::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 0 0 48%;
  opacity: 0.1;
  background-image:
    linear-gradient(rgba(121, 223, 228, 0.35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(121, 223, 228, 0.35) 1px, transparent 1px);
  background-size: 20px 20px;
}

.upload-card--beginner .upload-topline span {
  color: #8fdde2;
  font: 700 0.68rem/1.2 ui-monospace, "SFMono-Regular", Consolas, monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.upload-card--beginner .drop-zone {
  border-style: solid;
  border-color: rgba(121, 223, 228, 0.3);
  background: rgba(6, 10, 15, 0.42);
}

.upload-card--beginner .drop-zone strong {
  font-size: 1.22rem;
}

.upload-card--beginner .drop-zone small {
  color: #c2cbd6;
}

.upload-card--beginner .drop-action {
  min-height: 50px;
  background: linear-gradient(135deg, #ff965a, #ff843b);
  box-shadow: 0 10px 26px rgba(255, 132, 59, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.upload-card--beginner > p {
  color: #bcc5d0;
  line-height: 1.5;
}

.home-file-help {
  min-height: 58px;
  padding: 11px 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #f4f6f8;
  background: rgba(12, 17, 24, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 10px;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.home-file-help span {
  display: grid;
  margin-right: auto;
}

.home-file-help small {
  color: #aeb8c5;
  font-size: 0.68rem;
}

.home-file-help strong {
  font-size: 0.84rem;
}

.home-file-help b {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #11151b;
  background: #8fdde2;
  border-radius: 50%;
  transition: transform 180ms ease;
}

.home-file-help:hover,
.home-file-help:focus-visible {
  background: rgba(18, 27, 37, 0.96);
  border-color: rgba(121, 223, 228, 0.48);
  transform: translateY(-1px);
}

.home-file-help:hover b,
.home-file-help:focus-visible b {
  transform: translateX(3px);
}

.hero-compare-route a:hover b {
  transform: translateX(3px);
}

.button {
  min-height: 52px;
  padding: 0 22px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--orange-bright);
  color: #11151b;
  box-shadow: 0 12px 30px rgba(232, 105, 10, 0.22);
}

.button-primary:hover {
  background: #ff9a55;
}

.button-ghost {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.05);
  color: white;
}

.button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.1);
}

.button-dark {
  background: var(--night);
  color: white;
}

.hero-trust {
  margin: 28px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  list-style: none;
  color: #c4cad3;
  font-size: 0.88rem;
}

.hero-trust span {
  color: #6de6a4;
  margin-right: 5px;
}

/* A compact workshop shift ticket: opening hours are operational information,
   so they sit with the hero's service facts rather than in promotional copy. */
.hero-hours {
  max-width: 630px;
  margin-top: 22px;
  padding: 14px 16px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 4px 15px;
  align-items: baseline;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 3px solid var(--orange-bright);
  border-radius: 8px;
  background: rgba(11, 15, 22, 0.72);
  color: #f4f6f8;
}

.hero-hours > span {
  color: #ffb87e;
  font: 800 0.68rem/1.2 ui-monospace, "SFMono-Regular", Consolas, monospace;
  letter-spacing: 0.12em;
}

.hero-hours strong {
  font-size: 0.9rem;
}

.hero-hours b {
  color: #ffffff;
  font: 800 0.95rem/1.2 ui-monospace, "SFMono-Regular", Consolas, monospace;
}

.hero-hours small {
  grid-column: 2 / -1;
  color: #aeb7c3;
  font-size: 0.76rem;
  line-height: 1.4;
}

.hero-panel {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.upload-card {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(16, 21, 31, 0.88);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(14px);
  transition: transform 180ms ease, border-color 180ms ease;
}

.upload-card:hover {
  transform: translateY(-3px);
  border-color: rgba(104, 217, 232, 0.55);
}

.upload-topline {
  margin-bottom: 14px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: #cfd5df;
  font-size: 0.88rem;
}

.upload-topline strong {
  color: #ffbd87;
}

.drop-zone {
  min-height: 164px;
  padding: 24px;
  border: 1px dashed rgba(255, 255, 255, 0.3);
  border-radius: 13px;
  background:
    radial-gradient(circle at 0 0, rgba(104, 217, 232, 0.1), transparent 43%),
    rgba(255, 255, 255, 0.035);
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 16px;
}

.upload-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(44, 110, 203, 0.2);
  color: var(--cyan);
  font-size: 1.7rem;
}

.drop-zone strong,
.drop-zone small {
  display: block;
}

.drop-zone strong {
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  font-size: 1.12rem;
}

.drop-zone small {
  margin-top: 4px;
  color: #aeb6c2;
  font-size: 0.86rem;
}

.drop-action {
  grid-column: 1 / -1;
  min-height: 47px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: var(--orange-bright);
  color: #11151b;
  font-weight: 800;
}

.upload-card > p {
  margin: 13px 2px 0;
  color: #9fa7b3;
  font-size: 0.84rem;
  text-align: center;
}

.repair-card {
  min-height: 78px;
  padding: 15px 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  background: rgba(16, 21, 31, 0.8);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
}

.repair-card:hover {
  border-color: rgba(255, 184, 126, 0.55);
}

.repair-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(232, 105, 10, 0.14);
  color: #ffb87e;
  font-size: 1.5rem;
}

.repair-card small,
.repair-card strong {
  display: block;
}

.repair-card small {
  color: #aeb6c2;
}

.repair-card strong {
  margin-top: 2px;
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  color: #aeb6c2;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scroll-cue span {
  width: 22px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  position: relative;
}

.scroll-cue span::after {
  content: "";
  width: 3px;
  height: 7px;
  border-radius: 9px;
  background: var(--cyan);
  position: absolute;
  top: 7px;
  left: 9px;
}

/* Seasonal collection: a compact workshop specimen card, positioned after the
   main service hero so the campaign supports the core homepage journey. */
.halloween-route {
  position: relative;
  overflow: hidden;
  padding-block: 58px;
  color: #f4eee5;
  background:
    radial-gradient(circle at 8% 16%, rgba(244, 123, 32, 0.16), transparent 26rem),
    linear-gradient(118deg, #17111f 0%, #241427 56%, #30182b 100%);
}

.halloween-route::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(244, 238, 229, 0.25) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 238, 229, 0.25) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, #000, transparent 48%);
  pointer-events: none;
}

.halloween-route-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
}

.halloween-route-copy .eyebrow {
  margin-bottom: 14px;
  color: #f5a467;
}

.halloween-route-copy .eyebrow span {
  background: #f47b20;
}

.halloween-route-copy h2 {
  max-width: 620px;
  color: #fffaf3;
  font-size: clamp(2.2rem, 4.6vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.halloween-route-copy > p:not(.eyebrow) {
  max-width: 570px;
  margin: 22px 0 0;
  color: #cfc3cf;
  font-size: 1.05rem;
}

.halloween-route-actions {
  margin-top: 28px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.halloween-route .button-primary {
  background: #f47b20;
  color: #17111f;
}

.halloween-route-link {
  color: #fffaf3;
  font-weight: 750;
  border-bottom: 1px solid rgba(255, 250, 243, 0.45);
}

.halloween-route-facts {
  margin: 30px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}

.halloween-route-facts li {
  padding: 8px 11px;
  border: 1px solid rgba(244, 238, 229, 0.18);
  border-radius: 4px;
  color: #d8cbd7;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.halloween-specimen {
  position: relative;
  min-height: 410px;
  padding: 16px;
  border: 1px solid rgba(244, 238, 229, 0.22);
  background: rgba(10, 7, 13, 0.42);
  box-shadow: 18px 18px 0 rgba(244, 123, 32, 0.12);
}

.halloween-specimen::before {
  content: "HALLOWEEN / 08 DESIGNS";
  position: absolute;
  z-index: 2;
  top: 29px;
  left: 29px;
  padding: 8px 10px;
  color: #fffaf3;
  background: rgba(23, 17, 31, 0.88);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
}

.halloween-specimen img {
  width: 100%;
  height: 344px;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.84) contrast(1.03);
}

.halloween-specimen-caption {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 20px;
  align-items: end;
}

.halloween-specimen-caption strong {
  color: #fffaf3;
  font-size: 1.12rem;
}

.halloween-specimen-caption b {
  color: #f5a467;
  font-size: 1.12rem;
}

.halloween-specimen-caption small {
  color: #a99baa;
  font-size: 0.72rem;
}

.halloween-specimen-caption small:last-child {
  text-align: right;
}

@media (max-width: 900px) {
  .halloween-route-inner {
    grid-template-columns: 1fr;
  }

  .halloween-specimen {
    min-height: 0;
  }
}

@media (max-width: 560px) {
  .halloween-route {
    padding-block: 44px;
  }

  .halloween-route-copy h2 {
    font-size: clamp(2.35rem, 13vw, 3.4rem);
  }

  .halloween-route-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .halloween-specimen {
    padding: 10px;
    box-shadow: 10px 10px 0 rgba(244, 123, 32, 0.12);
  }

  .halloween-specimen img {
    height: 260px;
  }

  .halloween-specimen::before {
    top: 20px;
    left: 20px;
  }

  .halloween-specimen-caption {
    grid-template-columns: 1fr auto;
  }
}

.pathway-section,
.reviews-section,
.about-section {
  padding-block: 96px;
}

.section-heading {
  margin-bottom: 38px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 48px;
}

.section-heading h2 {
  max-width: 720px;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
}

.section-heading > p {
  max-width: 470px;
  margin: 0;
  color: var(--muted);
}

.pathway-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.pathway-card {
  min-height: 300px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 30px rgba(30, 37, 47, 0.045);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.pathway-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: var(--card-accent);
}

.pathway-card.orange { --card-accent: #c45100; }
.pathway-card.blue { --card-accent: var(--blue); }
.pathway-card.cyan { --card-accent: #0d7888; }

.pathway-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(30, 37, 47, 0.1);
}

.path-number {
  color: var(--card-accent);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.pathway-card h3 {
  margin: 30px 0 10px;
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  font-size: 1.42rem;
  letter-spacing: -0.03em;
}

.pathway-card p {
  margin: 0;
  color: var(--muted);
}

.pathway-card > strong {
  margin-top: auto;
  padding-top: 28px;
  color: var(--card-accent);
}

.process-section {
  padding-block: 88px;
  background: var(--paper-deep);
  border-block: 1px solid var(--line);
}

.process-heading {
  margin-bottom: 46px;
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #cfc7b9;
}

.steps li {
  min-height: 180px;
  padding: 28px 28px 0 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  border-right: 1px solid #cfc7b9;
}

.steps li + li {
  padding-left: 28px;
}

.steps li:last-child {
  border-right: 0;
}

.step-number {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--night);
  color: var(--cyan);
  font-weight: 800;
}

.steps h3 {
  margin: 5px 0 8px;
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  letter-spacing: -0.025em;
}

.steps p {
  margin: 0;
  color: var(--muted);
}

.workshop-section {
  padding-block: 100px;
  background:
    linear-gradient(118deg, var(--orange-wash) 0%, #fff2e7 27%, var(--paper) 68%);
  color: var(--ink);
  border-block: 1px solid #efc7a6;
}

.workshop-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.workshop-copy h2 {
  color: var(--ink);
  font-size: clamp(2.7rem, 4.5vw, 4.3rem);
}

.workshop-copy > p:not(.eyebrow) {
  margin: 24px 0 30px;
  color: var(--muted);
  font-size: 1.05rem;
}

.workshop-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 150px 150px;
  gap: 12px;
}

.workshop-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid #cfc6ba;
}

.workshop-gallery .gallery-main {
  grid-row: 1 / 3;
  grid-column: 1 / 3;
}

.workshop-gallery img:last-child {
  display: none;
}

.proof-section {
  padding-block: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}

.proof-item {
  padding: 10px 25px;
  display: flex;
  align-items: center;
  gap: 15px;
  border-right: 1px solid var(--line);
}

.proof-item:first-child {
  padding-left: 0;
}

.proof-item:last-child {
  border-right: 0;
}

.proof-item > strong {
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  font-size: 1.75rem;
  white-space: nowrap;
}

.proof-item span,
.proof-item small {
  display: block;
}

.proof-item span {
  font-weight: 800;
}

.proof-item small {
  color: var(--muted);
  line-height: 1.35;
}

.text-link {
  color: #174f93;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.review-grid figure {
  min-height: 270px;
  margin: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
  display: flex;
  flex-direction: column;
}

.stars {
  color: #bd6b05;
  letter-spacing: 0.08em;
}

.review-grid blockquote {
  margin: 20px 0 28px;
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  font-size: 1.06rem;
  line-height: 1.55;
  letter-spacing: -0.02em;
}

.review-grid figcaption {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.review-grid figcaption strong,
.review-grid figcaption span {
  display: block;
}

.review-grid figcaption span {
  color: var(--muted);
  font-size: 0.9rem;
}

.repairs-section {
  padding-block: 94px;
  background: #efede7;
  border-block: 1px solid var(--line);
}

.repair-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.repair-grid > a {
  min-height: 220px;
  padding: 24px;
  border: 1px solid #d6d0c5;
  border-radius: 14px;
  background: white;
  display: flex;
  flex-direction: column;
  transition: transform 160ms ease, border-color 160ms ease;
}

.repair-grid > a:hover {
  transform: translateY(-3px);
  border-color: #168493;
}

.repair-grid > a > div {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 14px;
}

.repair-grid h3 {
  margin: 0;
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  font-size: 1rem;
}

.repair-grid strong {
  color: #116d75;
  white-space: nowrap;
}

.repair-grid p {
  margin: 18px 0;
  color: var(--muted);
}

.repair-grid > a > span {
  margin-top: auto;
  color: #116d75;
  font-weight: 800;
}

.repairs-footer {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font-size: 0.92rem;
}

.about-section {
  display: grid;
  grid-template-columns: auto 1fr 0.72fr;
  align-items: center;
  gap: 42px;
}

.about-mark {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 32% 25%, rgba(104, 217, 232, 0.22), transparent 34%),
    var(--night);
  color: var(--cyan);
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(104, 217, 232, 0.27);
}

.about-copy h2 {
  max-width: 680px;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
}

.about-copy > p:not(.eyebrow) {
  max-width: 730px;
  margin: 20px 0;
  color: var(--muted);
}

.about-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: #174f93;
  font-weight: 800;
}

.about-links a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.about-section aside {
  padding: 28px;
  border-radius: 16px;
  background: var(--night-soft);
  color: white;
}

.about-section aside span,
.about-section aside strong {
  display: block;
}

.about-section aside span {
  color: #aeb6c2;
}

.about-section aside strong {
  margin: 6px 0 22px;
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  font-size: 1.35rem;
}

.about-section aside .button {
  width: 100%;
}

.faq-section {
  padding-block: 90px;
  background: white;
  border-top: 1px solid var(--line);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 90px;
}

.faq-grid h2 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
}

.faq-grid > div:first-child > p:not(.eyebrow) {
  color: var(--muted);
}

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

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

.faq-list summary {
  min-height: 72px;
  padding: 18px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  color: var(--orange);
  font-size: 1.3rem;
  transition: transform 160ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  margin: -5px 42px 22px 0;
  color: var(--muted);
}

.closing-section {
  padding-block: 66px;
  background:
    radial-gradient(circle at 80% 30%, rgba(104, 217, 232, 0.12), transparent 28%),
    var(--night);
  color: white;
}

.closing-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.closing-inner h2 {
  color: white;
  font-size: clamp(2rem, 3.7vw, 3.5rem);
}

footer {
  padding-top: 64px;
  background: #090c11;
  color: white;
}

.footer-grid {
  padding-bottom: 54px;
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 60px;
}

.footer-brand {
  font-size: 1.2rem;
}

.footer-grid > div:first-child p {
  max-width: 330px;
  color: #98a2b0;
}

.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 9px;
}

.footer-grid > div:not(:first-child) strong {
  margin-bottom: 5px;
  color: white;
}

.footer-heading {
  display: block;
  margin-bottom: 12px;
  color: white;
  font-size: 1rem;
}

main footer .footer-grid > div:not(:first-child) a {
  color: #c5ccd6 !important;
}

main footer .footer-grid > div:not(:first-child) a:hover {
  color: var(--cyan) !important;
}

.footer-bottom {
  min-height: 58px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #818b99;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-size: 0.8rem;
}

.mobile-cta {
  display: none;
}

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

  .home-site-header {
    grid-template-columns: auto 1fr auto;
  }

  .rating {
    display: none;
  }

  .desktop-nav {
    gap: 15px;
    font-size: 0.86rem;
  }

  .home-desktop-navigation > ul {
    gap: 15px;
  }

  .home-desktop-navigation > ul > li > a {
    font-size: 0.84rem;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.72fr;
    gap: 34px;
  }

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

  .proof-item:nth-child(2) {
    border-right: 0;
  }

  .proof-item:nth-child(n + 3) {
    margin-top: 24px;
  }

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

  .about-section {
    grid-template-columns: auto 1fr;
  }

  .about-section aside {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 4px 24px;
  }

  .about-section aside .button {
    width: auto;
    grid-row: 1 / 3;
    grid-column: 2;
  }
}

@media (max-width: 820px) {
  .section,
  .hero-grid {
    width: min(100% - 32px, 680px);
  }

  .preview-bar {
    justify-content: flex-start;
    overflow: hidden;
  }

  .preview-bar p {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .site-header {
    height: 70px;
    padding-inline: 16px;
    grid-template-columns: 1fr auto;
  }

  .home-site-header {
    height: 70px;
    padding-inline: 16px;
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .home-desktop-navigation,
  .header-cta {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .home-mobile-menu {
    display: block;
  }

  .mobile-menu summary {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    display: grid;
    place-content: center;
    gap: 5px;
    cursor: pointer;
    list-style: none;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu summary span {
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: white;
  }

  .mobile-menu nav {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    padding: 10px 16px 20px;
    background: #111620;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
  }

  .mobile-menu nav a {
    padding: 13px 5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    color: #d9dee6;
    font-weight: 700;
  }

  .mobile-menu nav .menu-cta {
    margin-top: 12px;
    border: 0;
    border-radius: 9px;
    background: var(--orange-bright);
    color: #11151b;
    text-align: center;
  }

  .home-mobile-menu > summary {
    display: grid;
    width: 44px;
    height: 44px;
    place-content: center;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    cursor: pointer;
    list-style: none;
  }

  .home-mobile-menu > summary::-webkit-details-marker,
  .home-mobile-submenu > summary::-webkit-details-marker {
    display: none;
  }

  .home-mobile-menu > summary span {
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: #fff;
  }

  .home-mobile-menu > nav {
    position: absolute;
    top: 70px;
    right: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    max-height: calc(100vh - 70px);
    padding: 10px 16px 20px;
    overflow-y: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: #111620;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  }

  .home-mobile-menu > nav > a,
  .home-mobile-submenu > a {
    display: block;
    padding: 12px 5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    color: #d9dee6;
    font-weight: 650;
  }

  .home-mobile-submenu > summary {
    position: relative;
    padding: 13px 34px 13px 5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    color: #fff;
    cursor: pointer;
    font-weight: 750;
    list-style: none;
  }

  .home-mobile-submenu > summary::after {
    content: "+";
    position: absolute;
    right: 7px;
    color: var(--cyan);
    font-size: 1.15rem;
    font-weight: 500;
  }

  .home-mobile-submenu[open] > summary::after {
    content: "−";
  }

  .home-mobile-submenu > a {
    padding-left: 18px;
    color: #b9c5d1;
    font-size: 0.9rem;
  }

  .home-mobile-menu > nav > .menu-cta {
    margin-top: 12px;
    border: 0;
    border-radius: 9px;
    background: var(--orange-bright);
    color: #11151b;
    text-align: center;
  }

  .hero,
  .hero-grid {
    min-height: 780px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 38px;
    padding: 60px 0 72px;
  }

  .hero-image {
    object-position: 63% center;
  }

  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(6, 9, 14, 0.8) 0%, rgba(6, 9, 14, 0.93) 48%, rgba(6, 9, 14, 0.99) 100%);
  }

  h1 {
    font-size: clamp(2.7rem, 11vw, 4.2rem);
  }

  .hero-lead {
    max-width: 560px;
  }

  .hero-panel {
    max-width: 560px;
  }

  .scroll-cue {
    display: none;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
    gap: 20px;
  }

  .pathway-grid,
  .steps,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .pathway-card {
    min-height: 240px;
  }

  .steps {
    border-top: 0;
  }

  .steps li,
  .steps li + li {
    min-height: auto;
    padding: 24px 0;
    border-right: 0;
    border-top: 1px solid #cfc7b9;
  }

  .workshop-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .workshop-gallery {
    grid-template-rows: 130px 130px;
  }

  .review-grid figure {
    min-height: 230px;
  }

  .about-section {
    grid-template-columns: auto 1fr;
    gap: 24px;
  }

  .about-mark {
    width: 78px;
    height: 78px;
    font-size: 1.2rem;
  }

  .about-copy {
    grid-column: 2;
  }

  .about-section aside {
    grid-column: 1 / -1;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .closing-inner {
    align-items: start;
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .preview-bar {
    min-height: 34px;
    padding: 6px 12px;
    gap: 8px;
  }

  .preview-bar span {
    flex: 0 0 auto;
    font-size: 0.65rem;
  }

  .preview-bar p {
    font-size: 0.72rem;
  }

  .brand {
    font-size: 1.2rem;
  }

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

  .hero,
  .hero-grid {
    min-height: auto;
  }

  .hero-grid {
    padding: 52px 0 58px;
    gap: 28px;
  }

  .eyebrow {
    font-size: 0.69rem;
  }

  h1 {
    font-size: 2.72rem;
    line-height: 1.04;
  }

  .hero-lead {
    margin-top: 22px;
    font-size: 1rem;
  }

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

  .hero-actions .button {
    width: 100%;
  }

  .hero-review-route {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
  }

  main .hero-review-route > a:not(.btn) {
    grid-column: 1 / -1;
    justify-content: center;
    width: 100%;
  }

  .hero-trust {
    display: grid;
    gap: 6px;
  }

  .hero-hours {
    grid-template-columns: 1fr auto;
    margin-top: 20px;
  }

  .hero-hours > span {
    grid-column: 1 / -1;
  }

  .hero-hours small {
    grid-column: 1 / -1;
  }

  .upload-card {
    display: none;
  }

  .drop-zone {
    min-height: 150px;
    padding: 18px;
  }

  .pathway-section,
  .reviews-section,
  .about-section {
    padding-block: 72px;
  }

  .process-section,
  .repairs-section,
  .faq-section {
    padding-block: 72px;
  }

  .section-heading h2,
  .faq-grid h2,
  .about-copy h2 {
    font-size: 2.15rem;
  }

  .workshop-section {
    padding-block: 72px;
  }

  .workshop-copy h2 {
    font-size: 3rem;
  }

  .workshop-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 180px 110px;
  }

  .workshop-gallery .gallery-main {
    grid-column: 1 / 3;
    grid-row: 1;
  }

  .workshop-gallery img:last-child {
    display: none;
  }

  .proof-section {
    grid-template-columns: 1fr;
    padding-block: 32px;
  }

  .proof-item,
  .proof-item:first-child {
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-item:nth-child(n + 3) {
    margin-top: 0;
  }

  .proof-item:last-child {
    border-bottom: 0;
  }

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

  .repair-grid > a {
    min-height: 190px;
  }

  .repairs-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .about-section {
    display: block;
  }

  .about-mark {
    margin-bottom: 24px;
  }

  .about-section aside {
    margin-top: 34px;
    display: block;
  }

  .about-section aside .button {
    margin-top: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px 24px;
  }

  .footer-bottom {
    padding-block: 18px;
    align-items: start;
    flex-direction: column;
    gap: 5px;
  }

  .mobile-cta {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Workshop refinement: fewer template cues, flatter working surfaces. */
.section-heading .eyebrow,
.workshop-copy .eyebrow,
.about-copy .eyebrow,
.faq-grid .eyebrow {
  display: none;
}

.path-number {
  display: none;
}

.button,
.upload-card,
.drop-zone,
.upload-icon,
.drop-action,
.repair-card,
.pathway-card,
.review-grid figure,
.repair-grid > a,
.about-section aside {
  border-radius: 3px;
}

.button,
.upload-card,
.pathway-card,
.review-grid figure,
.repair-grid > a,
.about-section aside {
  box-shadow: none;
}

.button:hover,
.upload-card:hover,
.pathway-card:hover,
.repair-grid > a:hover {
  transform: none;
}

.upload-card {
  background: rgba(16, 21, 31, 0.96);
  backdrop-filter: none;
}

.drop-zone {
  background: rgba(255, 255, 255, 0.035);
}

.pathway-card {
  border-left: 3px solid var(--card-accent);
}

.pathway-card::before {
  display: none;
}

.pathway-card h3 {
  margin-top: 0;
}

/* Homepage card depth pass: rounded workshop surfaces with a subtle
   stacked-layer edge, inspired by the way a finished print lifts off the bed. */
.upload-card,
.pathway-card,
.review-grid figure,
.repair-grid > a,
.about-section aside {
  border-radius: 14px;
}

.upload-card {
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 18px 44px rgba(0, 0, 0, 0.32);
}

.drop-zone {
  border-radius: 10px;
  background:
    radial-gradient(circle at 0 0, rgba(104, 217, 232, 0.1), transparent 43%),
    rgba(255, 255, 255, 0.045);
}

.pathway-card {
  --card-wash: #f6f8fb;
  border: 1px solid #d7dce3;
  border-left: 4px solid var(--card-accent);
  background: linear-gradient(145deg, #ffffff 52%, var(--card-wash) 100%);
  box-shadow:
    inset 0 1px 0 #ffffff,
    0 4px 0 color-mix(in srgb, var(--card-accent) 16%, transparent),
    0 16px 34px rgba(30, 37, 47, 0.09);
}

.pathway-card.orange { --card-wash: #fff3e9; }
.pathway-card.blue { --card-wash: #eef4fd; }
.pathway-card.cyan { --card-wash: #edf8f8; }

.review-grid figure {
  border-color: #ddd6cb;
  border-top: 3px solid #c47a24;
  background: linear-gradient(155deg, #ffffff 58%, #fff8ef 100%);
  box-shadow: 0 14px 32px rgba(56, 45, 31, 0.09);
}

.repair-grid > a {
  border-color: #d3d7d3;
  border-left: 4px solid #168493;
  background: linear-gradient(150deg, #ffffff 55%, #eef8f6 100%);
  box-shadow:
    0 4px 0 rgba(22, 132, 147, 0.12),
    0 14px 30px rgba(31, 46, 45, 0.09);
}

.about-section aside {
  border: 1px solid rgba(104, 217, 232, 0.2);
  background:
    radial-gradient(circle at 100% 0, rgba(104, 217, 232, 0.12), transparent 46%),
    var(--night-soft);
  box-shadow: 0 18px 40px rgba(16, 22, 31, 0.2);
}

.upload-card,
.pathway-card,
.review-grid figure,
.repair-grid > a,
.about-section aside {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.upload-card:hover,
.pathway-card:hover,
.repair-grid > a:hover {
  transform: translateY(-4px);
}

.pathway-card:hover {
  border-color: color-mix(in srgb, var(--card-accent) 40%, #d7dce3);
  border-left-color: var(--card-accent);
  box-shadow:
    inset 0 1px 0 #ffffff,
    0 5px 0 color-mix(in srgb, var(--card-accent) 20%, transparent),
    0 22px 44px rgba(30, 37, 47, 0.14);
}

.repair-grid > a:hover {
  box-shadow:
    0 5px 0 rgba(22, 132, 147, 0.16),
    0 20px 38px rgba(31, 46, 45, 0.13);
}

.upload-card:focus-visible,
.pathway-card:focus-visible,
.repair-grid > a:focus-visible {
  outline: 3px solid #2c6ecb;
  outline-offset: 4px;
}

/* Hark Tech signature graphics: printer-bed grid, workshop line drawings and
   one deliberately offset real photograph. Kept to this route section so the
   page gains character without turning into a field of decorative effects. */
.pathway-section {
  background-color: #fbfaf7;
  background-image:
    linear-gradient(rgba(41, 74, 105, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(41, 74, 105, 0.045) 1px, transparent 1px);
  background-size: 28px 28px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.pathway-card::after {
  content: "";
  width: 96px;
  height: 72px;
  position: absolute;
  top: 22px;
  right: 24px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.48;
  transform: translate3d(0, 0, 0);
  transition: opacity 220ms ease, transform 220ms ease;
}

.pathway-card.orange::after {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 96 72' fill='none' stroke='%23c45100' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'><path d='M11 49 39 63l44-21-28-15-39-6-5 28Z'/><path d='m16 21 40-10 27 31M56 11l-1 16M16 21l23 42m16-36L39 63M11 49l44-22'/><circle cx='16' cy='21' r='2.2'/><circle cx='55' cy='27' r='2.2'/><circle cx='39' cy='63' r='2.2'/></svg>");
}

.pathway-card.blue::after {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 96 72' fill='none' stroke='%232c6ecb' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'><rect x='8' y='8' width='80' height='56' rx='4'/><path d='M8 36h80M48 8v56'/><path d='m19 27 8-10 9 10H19ZM61 18h14v10H61z'/><circle cx='28' cy='50' r='8'/><path d='m60 55 7-12 8 12H60Z'/><path d='M12 32h72' stroke-dasharray='2 4'/></svg>");
}

.pathway-card.cyan::after {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 96 72' fill='none' stroke='%230d7888' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'><path d='M10 50h72M17 46V19h11v14h39V19h11v31'/><path d='M28 29h39M39 29v26h17V29M44 36h7M44 42h7M44 48h7'/><path d='M82 46v12M87 46v12M82 54h5'/><circle cx='18' cy='50' r='2'/><circle cx='77' cy='50' r='2'/></svg>");
}

.pathway-card h3 {
  max-width: 62%;
}

.pathway-card p {
  max-width: 70%;
}

.pathway-card:hover::after,
.pathway-card:focus-visible::after {
  opacity: 0.78;
  transform: translate3d(-3px, 3px, 0);
}

.workshop-gallery .gallery-main {
  position: relative;
  z-index: 1;
  transform: translate(-12px, -12px);
  box-shadow:
    12px 12px 0 rgba(196, 81, 0, 0.12),
    0 22px 44px rgba(61, 43, 27, 0.16);
}

@media (max-width: 820px) {
  .pathway-card::after {
    width: 82px;
    height: 62px;
    top: 20px;
    right: 20px;
  }

  .workshop-gallery .gallery-main {
    transform: translate(-6px, -6px);
    box-shadow:
      6px 6px 0 rgba(196, 81, 0, 0.12),
      0 16px 30px rgba(61, 43, 27, 0.14);
  }
}

@media (prefers-reduced-motion: reduce) {
  .pathway-card::after {
    transition: none;
  }
}
