:root {
  --red: #c91522;
  --red-dark: #990f18;
  --ink: #15171b;
  --muted: #606872;
  --line: #e7e9ed;
  --soft: #f5f6f8;
  --white: #ffffff;
  --shadow: 0 18px 55px rgba(14, 18, 26, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Segoe UI", Roboto, Arial, Helvetica, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: #ffffff;
  border-bottom: 1px solid rgba(231, 233, 237, 0.9);
}

.site-header::after {
  display: block;
  width: clamp(138px, 14vw, 178px);
  min-width: 138px;
  height: 1px;
  content: "";
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(138px, 14vw, 178px);
  min-width: 138px;
  height: 54px;
}

.brand img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 54px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 34px);
  color: #303640;
  font-size: 0.95rem;
}

.main-nav a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover {
  color: var(--red);
  border-color: var(--red);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: calc(100vh - 76px);
  overflow: hidden;
  background: #16181c;
}

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

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

.hero-shade {
  background:
    radial-gradient(circle at 78% 46%, rgba(201, 21, 34, 0.16), transparent 28%),
    linear-gradient(90deg, rgba(9, 11, 15, 0.92) 0%, rgba(9, 11, 15, 0.72) 37%, rgba(9, 11, 15, 0.26) 72%, rgba(9, 11, 15, 0.12) 100%),
    linear-gradient(0deg, rgba(9, 11, 15, 0.5), rgba(9, 11, 15, 0.02) 42%);
}

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 88px);
  padding: 76px 0 86px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.76rem;
}

.hero .eyebrow::before {
  content: "";
  width: 38px;
  height: 2px;
  background: var(--red);
  border-radius: 999px;
}

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

h1 {
  max-width: 740px;
  margin-bottom: 22px;
  font-size: clamp(2.45rem, 6vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 720px;
  margin: 18px 0 28px;
  font-family: "Segoe UI Variable Display", "Segoe UI", Roboto, Arial, Helvetica, sans-serif;
  font-size: clamp(3.15rem, 5.45vw, 5.15rem);
  line-height: 1.04;
  font-weight: 900;
  text-shadow: 0 18px 45px rgba(0, 0, 0, 0.34);
}

.hero h1 span {
  display: block;
}

.hero h1 span:first-child {
  color: var(--white);
}

.hero h1 span:nth-child(2) {
  color: rgba(255, 255, 255, 0.94);
}

.hero h1 span:nth-child(3) {
  color: rgba(255, 255, 255, 0.9);
}

.hero h1 span:last-child {
  color: rgba(255, 255, 255, 0.86);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.14rem;
}

.hero-copy {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.04rem, 1.55vw, 1.18rem);
  line-height: 1.62;
}

.hero-actions,
.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-actions {
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.hero .btn {
  position: relative;
  min-height: 56px;
  padding: 0 24px;
  gap: 14px;
  overflow: hidden;
  font-size: 0.98rem;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
}

.hero [data-booking-call] {
  width: 212px;
}

.hero .btn::after {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 180ms ease;
}

.hero .btn-primary::after {
  display: none;
  content: none;
}

.btn:hover {
  transform: translateY(-1px);
}

.hero .btn:hover::after {
  transform: translate(3px) rotate(45deg);
}

.hero .btn-primary:hover::after {
  transform: none;
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, #e01625, #b9111d);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #f11a2b, #a80f1a);
}

.btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.46);
  backdrop-filter: blur(8px);
}

.hero .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-outline {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}

.location-actions .btn {
  min-height: 42px;
  padding: 0 16px;
  gap: 8px;
  border-radius: 8px;
  font-weight: 800;
  box-shadow: none;
}

.location-actions .btn-primary {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
}

.location-actions .btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.location-actions .btn-outline {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}

.location-actions .btn-outline:hover {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.location-actions [data-booking-call] {
  width: 238px;
}

.quick-facts {
  display: inline-flex;
  width: auto;
  max-width: 100%;
  margin: 36px 0 0;
}

.quick-facts div {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 18px;
  min-width: 0;
  padding: 2px 0 2px 20px;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.quick-facts div::before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(50% + 2px);
  width: 3px;
  height: 20px;
  background: var(--red);
  transform: translateY(-50%);
}

.quick-facts dt {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  transform: translateY(1px);
}

.quick-facts dd {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 0;
  color: var(--white);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.quick-facts dd span {
  color: rgba(255, 255, 255, 0.78);
}

.quick-facts dd strong {
  color: var(--white);
  font-size: 1.08rem;
  line-height: 1;
}

.section,
.intro-band,
.contact-band {
  padding: clamp(64px, 8vw, 110px) 0;
}

.section-inner {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.intro-band {
  background: var(--ink);
  color: var(--white);
}

.intro-grid,
.contact-grid,
.location-grid,
.specialist-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 6vw, 72px);
  align-items: center;
}

.intro-copy {
  display: grid;
  gap: 12px;
}

.intro-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.7vw, 1.14rem);
}

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

.section-heading > p {
  color: var(--muted);
  font-size: 1.05rem;
}

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

.service-card {
  min-height: 244px;
  padding: 24px;
  background: #f7f8fa;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(14, 18, 26, 0.04);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  color: var(--red);
  background: #fff0f1;
  border: 1px solid #ffd8dc;
  border-radius: 8px;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.service-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
  transition: color 180ms ease;
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-5px);
  color: var(--white);
  background: #b9141f;
  border-color: #b9141f;
  box-shadow: 0 18px 38px rgba(185, 20, 31, 0.22);
}

.service-card:hover .service-icon,
.service-card:focus-within .service-icon {
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-2px);
}

.service-card:hover p,
.service-card:focus-within p {
  color: rgba(255, 255, 255, 0.9);
}

.process-section {
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(201, 21, 34, 0.2), rgba(201, 21, 34, 0) 34%),
    #111318;
}

.process-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: end;
  margin-bottom: 34px;
}

.process-hero h2 {
  margin-bottom: 0;
}

.process-hero p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.8vw, 1.14rem);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.process-timeline article {
  position: relative;
  min-height: 150px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.06);
}

.process-timeline span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  color: var(--red);
  background: var(--white);
  border-radius: 999px;
  font-weight: 900;
}

.process-timeline strong,
.process-timeline small {
  display: block;
}

.process-timeline strong {
  margin-bottom: 8px;
  color: var(--white);
}

.process-timeline small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
}

.brands-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  margin-top: 34px;
  padding: 28px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(201, 21, 34, 0.12), rgba(255, 255, 255, 0) 36%),
    #08090c;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: var(--white);
}

.brands-panel h3 {
  margin-bottom: 10px;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.brands-panel p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
}

.brand-logo-carousel {
  position: relative;
  overflow: hidden;
  padding: 4px 0;
}

.brand-logo-carousel::before,
.brand-logo-carousel::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 72px;
  content: "";
  pointer-events: none;
}

.brand-logo-carousel::before {
  left: 0;
  background: linear-gradient(90deg, #08090c, rgba(8, 9, 12, 0));
}

.brand-logo-carousel::after {
  right: 0;
  background: linear-gradient(270deg, #08090c, rgba(8, 9, 12, 0));
}

.brand-logo-track {
  display: flex;
  width: max-content;
  animation: brand-logo-scroll 52s linear infinite;
}

.brand-logo-carousel:hover .brand-logo-track {
  animation-play-state: paused;
}

.brand-logo-set {
  display: flex;
  flex-shrink: 0;
  gap: 14px;
  padding-right: 14px;
}

.brand-logo-card {
  display: grid;
  place-items: center;
  gap: 8px;
  width: 138px;
  height: 90px;
  padding: 14px 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.brand-logo-card:hover {
  transform: translateY(-3px);
  background: rgba(201, 21, 34, 0.2);
  border-color: rgba(201, 21, 34, 0.42);
}

.brand-logo-card img {
  display: block;
  width: 58px;
  height: 42px;
  object-fit: contain;
  transition: filter 160ms ease, transform 160ms ease;
}

.brand-logo-card:hover img {
  transform: scale(1.05);
}

.brand-logo-card span {
  display: flex;
  align-items: center;
  min-height: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.76rem;
  font-weight: 800;
  text-align: center;
}

@keyframes brand-logo-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.section-muted {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(201, 21, 34, 0.05), rgba(255, 255, 255, 0) 32%),
    var(--soft);
}

.section-muted::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(21, 23, 27, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 23, 27, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.5), transparent 72%);
  content: "";
  pointer-events: none;
}

.section-muted .section-inner {
  position: relative;
  z-index: 1;
}

.specialist-copy p {
  color: var(--muted);
  font-size: 1.04rem;
}

.specialist-panel {
  position: relative;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.9)),
    radial-gradient(circle at 92% 0%, rgba(201, 21, 34, 0.12), transparent 34%);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(14, 18, 26, 0.08);
}

.specialist-panel-head {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  margin-bottom: 14px;
  padding-left: 2px;
}

.specialist-controls {
  display: flex;
  gap: 8px;
}

.specialist-control {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1;
  transition: transform 160ms ease, color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.specialist-control:hover {
  transform: translateY(-1px);
  color: var(--red);
  border-color: rgba(201, 21, 34, 0.32);
  box-shadow: 0 10px 24px rgba(14, 18, 26, 0.08);
}

.specialist-list {
  position: relative;
  min-height: 430px;
  overflow: hidden;
}

.specialist-list::before {
  position: absolute;
  top: 16px;
  bottom: 16px;
  left: 24px;
  width: 2px;
  background: linear-gradient(180deg, transparent, rgba(201, 21, 34, 0.7), transparent);
  content: "";
  z-index: 0;
}

.specialist-page {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  opacity: 0;
  transform: translateX(28px);
  pointer-events: none;
  transition: opacity 360ms ease, transform 360ms ease;
}

.specialist-page.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.specialist-item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(110px, 0.42fr) minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 78px;
  padding: 16px 18px 16px 52px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(231, 233, 237, 0.9);
  border-radius: 8px;
  box-shadow: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
  z-index: 1;
}

.specialist-item::before {
  position: absolute;
  left: 16px;
  top: 50%;
  width: 16px;
  height: 16px;
  background: var(--red);
  border: 4px solid #fff;
  border-radius: 999px;
  box-shadow: 0 0 0 1px rgba(201, 21, 34, 0.22);
  transform: translateY(-50%);
  content: "";
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.specialist-item span {
  display: block;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 800;
}

.specialist-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.45;
}

.specialist-item:hover {
  transform: translateX(6px);
  background: #fff;
  border-color: rgba(185, 20, 31, 0.28);
  box-shadow: 0 14px 34px rgba(185, 20, 31, 0.12);
}

.specialist-item:hover::before {
  transform: translateY(-50%) scale(1.2);
  box-shadow: 0 0 0 7px rgba(201, 21, 34, 0.1);
}

.reviews-section {
  overflow: hidden;
  background: var(--white);
}

.reviews-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  margin-bottom: 34px;
}

.reviews-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.reviews-carousel {
  position: relative;
  margin-inline: calc((100vw - min(1160px, calc(100vw - 36px))) / -2);
  padding: 4px 0 18px;
}

.reviews-carousel::before,
.reviews-carousel::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: min(12vw, 150px);
  content: "";
  pointer-events: none;
}

.reviews-carousel::before {
  left: 0;
  background: linear-gradient(90deg, var(--white), rgba(255, 255, 255, 0));
}

.reviews-carousel::after {
  right: 0;
  background: linear-gradient(270deg, var(--white), rgba(255, 255, 255, 0));
}

.reviews-track {
  display: flex;
  gap: 16px;
  width: max-content;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.reviews-set {
  display: flex;
  flex-shrink: 0;
  gap: 16px;
  padding-right: 16px;
}

.review-card {
  flex: 0 0 clamp(290px, 31vw, 420px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 210px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(14, 18, 26, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.review-card:hover {
  transform: translateY(-8px);
  background: #ffffff;
  border-color: rgba(185, 20, 31, 0.36);
  box-shadow: 0 24px 54px rgba(185, 20, 31, 0.16);
}

.review-card::before {
  display: block;
  margin-bottom: 16px;
  color: var(--red);
  content: "★★★★★";
  font-size: 0.95rem;
  letter-spacing: 0.12em;
}

.review-card p {
  margin-bottom: 24px;
  color: #303640;
  font-size: 1.02rem;
}

.review-card footer {
  color: var(--muted);
  font-weight: 800;
}

.location-section {
  background: #f5f6f8;
}

.location-copy p {
  color: var(--muted);
  font-size: 1.04rem;
}

.map-panel {
  position: relative;
  height: 460px;
  overflow: hidden;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.map-panel iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 3px;
  max-width: 420px;
  padding: 14px 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(14, 18, 26, 0.12);
  pointer-events: none;
}

.map-caption span {
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-band {
  color: var(--white);
  background: var(--red);
}

.contact-band .eyebrow {
  color: rgba(255, 255, 255, 0.76);
}

.contact-band p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.84);
}

.contact-details {
  display: grid;
  gap: 14px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  font-style: normal;
  font-weight: 800;
}

.contact-details a:hover {
  text-decoration: underline;
}

.site-footer {
  padding: 28px 0;
  color: rgba(255, 255, 255, 0.76);
  background: #111318;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr auto minmax(240px, 0.9fr);
  gap: 24px;
  align-items: center;
}

.footer-grid p {
  margin: 0;
}

.footer-grid strong,
.footer-grid a {
  color: var(--white);
}

.footer-contact {
  display: grid;
  gap: 2px;
}

.footer-contact a {
  font-weight: 800;
}

.footer-contact span,
.footer-links {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 16px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.legal-page {
  background: var(--white);
}

.legal-hero {
  padding: clamp(70px, 9vw, 120px) 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(13, 15, 20, 0.96), rgba(13, 15, 20, 0.78)),
    url("assets/hero-workshop.png") center / cover;
}

.legal-hero h1 {
  max-width: 860px;
  margin-bottom: 18px;
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  line-height: 1;
}

.legal-hero p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.6vw, 1.16rem);
}

.legal-content {
  padding: clamp(58px, 7vw, 96px) 0;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: clamp(34px, 6vw, 72px);
  align-items: start;
}

.legal-layout article {
  max-width: 820px;
}

.legal-layout h2 {
  margin: 34px 0 10px;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.legal-layout h2:first-child {
  margin-top: 0;
}

.legal-layout p {
  color: #3d4652;
}

.legal-layout a {
  color: var(--red);
  font-weight: 800;
}

.legal-updated {
  margin-top: 34px;
  font-weight: 800;
}

.legal-aside {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 8px;
  padding: 22px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.legal-aside strong {
  margin-bottom: 4px;
}

.legal-aside span {
  color: var(--muted);
  font-size: 0.86rem;
}

.reveal-on-scroll {
  opacity: 0;
  filter: blur(8px);
  clip-path: inset(0 0 14% 0);
  transition: opacity 700ms ease, filter 700ms ease, clip-path 700ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  filter: blur(0);
  clip-path: inset(0 0 0 0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll {
    opacity: 1;
    filter: none;
    clip-path: none;
    transition: none;
  }
}

@media (max-width: 980px) {
  .site-header {
    flex-wrap: wrap;
    gap: 14px;
  }

  .brand {
    flex: 0 0 auto;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-top: 4px;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    width: min(720px, calc(100% - 36px));
    margin: 0 auto;
    padding: 86px 0 72px;
  }

  .hero h1 {
    max-width: 680px;
    font-size: clamp(2.85rem, 7.4vw, 4.35rem);
  }

  .quick-facts,
  .intro-grid,
  .contact-grid,
  .legal-layout,
  .location-grid,
  .specialist-grid,
  .reviews-heading,
  .process-hero,
  .brands-panel {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 640px) {
  .site-header {
    position: relative;
    justify-content: center;
    gap: 0;
    min-height: 70px;
    padding: 10px 15px;
    background: #ffffff;
    border-bottom: 1px solid rgba(231, 233, 237, 0.9);
  }

  .brand {
    width: 142px;
    min-width: 142px;
    height: 50px;
  }

  .brand img {
    max-height: 50px;
  }

  .site-header::after {
    display: none;
  }

  .main-nav {
    display: none;
  }

  .section,
  .intro-band,
  .contact-band {
    padding: 46px 0;
  }

  .section-inner {
    width: min(100% - 30px, 1160px);
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(10, 12, 16, 0.95), rgba(10, 12, 16, 0.72) 58%, rgba(10, 12, 16, 0.52)),
      linear-gradient(0deg, rgba(10, 12, 16, 0.62), rgba(10, 12, 16, 0.16));
  }

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

  .hero-content {
    width: min(100% - 30px, 560px);
    min-height: calc(100svh - 70px);
    margin: 0 auto;
    padding: 34px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .hero .eyebrow {
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.68rem;
  }

  .hero .eyebrow::before {
    width: 24px;
  }

  .hero h1 {
    margin: 10px 0 20px;
    font-size: clamp(2.5rem, 11.2vw, 3.22rem);
    line-height: 1.12;
  }

  .hero h1 span {
    display: block;
  }

  .hero-copy {
    max-width: 100%;
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 24px;
  }

  .btn {
    width: 100%;
    min-height: 50px;
    padding: 0 14px;
    font-size: 0.92rem;
  }

  .hero [data-booking-call] {
    width: 100%;
  }

  .hero .btn {
    min-height: 52px;
    padding: 0 14px;
    gap: 8px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  }

  .location-actions [data-booking-call] {
    width: 100%;
  }

  .quick-facts,
  .service-grid,
  .specialist-list {
    grid-template-columns: 1fr;
  }

  .quick-facts {
    display: flex;
    width: 100%;
    max-width: 100%;
    margin-top: 22px;
  }

  .quick-facts div {
    align-items: center;
    flex-direction: row;
    gap: 12px;
    width: 100%;
    min-height: 0;
    padding: 2px 0 2px 16px;
  }

  .quick-facts dd {
    align-items: center;
    flex-direction: row;
    gap: 8px;
    line-height: 1.25;
    white-space: normal;
  }

  .quick-facts dt {
    font-size: 0.66rem;
  }

  .quick-facts dd span {
    font-size: 0.86rem;
  }

  .quick-facts dd strong {
    font-size: 0.94rem;
  }

  .section-heading {
    margin-bottom: 18px;
  }

  h2 {
    font-size: clamp(1.75rem, 7.5vw, 2.25rem);
    line-height: 1.08;
  }

  .intro-grid {
    gap: 18px;
  }

  .intro-band h2 {
    margin-bottom: 0;
  }

  .intro-copy {
    gap: 8px;
  }

  .intro-copy p,
  .section-heading > p,
  .process-hero p,
  .specialist-copy p,
  .location-copy p,
  .contact-band p {
    font-size: 0.94rem;
    line-height: 1.45;
  }

  .service-grid {
    gap: 10px;
  }

  .service-card {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 3px 12px;
    align-items: start;
    min-height: 0;
    padding: 14px;
  }

  .service-icon {
    grid-row: span 2;
    width: 38px;
    height: 38px;
    margin-bottom: 0;
  }

  .service-icon svg {
    width: 20px;
    height: 20px;
  }

  .service-card h3 {
    margin-bottom: 2px;
    font-size: 0.98rem;
  }

  .service-card p {
    font-size: 0.88rem;
    line-height: 1.38;
  }

  .process-section {
    background:
      linear-gradient(135deg, rgba(201, 21, 34, 0.2), rgba(201, 21, 34, 0) 42%),
      #111318;
  }

  .specialist-panel {
    padding: 14px;
  }

  .specialist-panel-head {
    display: none;
  }

  .specialist-list {
    min-height: 500px;
    touch-action: pan-y;
  }

  .specialist-list::before {
    left: 20px;
  }

  .specialist-item {
    grid-template-columns: 1fr;
    gap: 4px;
    min-height: 88px;
    padding: 14px 14px 14px 46px;
  }

  .specialist-item span {
    font-size: 0.96rem;
  }

  .specialist-item p {
    font-size: 0.88rem;
    line-height: 1.38;
  }

  .process-timeline article {
    min-height: 0;
  }

  .process-timeline article {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 4px 12px;
    align-items: center;
    padding: 16px;
  }

  .process-timeline span {
    grid-row: span 2;
    margin-bottom: 0;
  }

  .process-timeline strong {
    margin-bottom: 0;
  }

  .brands-panel {
    padding: 22px;
  }

  .brand-logo-carousel::before,
  .brand-logo-carousel::after {
    width: 38px;
  }

  .brand-logo-set {
    gap: 10px;
    padding-right: 10px;
  }

  .brand-logo-card {
    width: 112px;
    height: 78px;
    padding: 12px 10px;
  }

  .brand-logo-card img {
    width: 48px;
    height: 34px;
  }

  .brand-logo-card span {
    font-size: 0.68rem;
  }

  .reviews-carousel {
    margin-inline: -15px;
    padding-bottom: 8px;
  }

  .reviews-carousel::before,
  .reviews-carousel::after {
    width: 34px;
  }

  .reviews-track,
  .reviews-set {
    gap: 12px;
  }

  .reviews-set {
    padding-right: 12px;
  }

  .review-card {
    flex-basis: min(82vw, 330px);
    min-height: 218px;
    padding: 20px;
  }

  .review-card p {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .location-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 24px;
  }

  .location-actions .btn {
    min-height: 48px;
  }

  .map-panel {
    height: 320px;
  }

  .map-caption {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 12px;
  }

  .contact-details {
    padding: 20px;
    gap: 12px;
  }

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

  .footer-links {
    justify-content: flex-start;
  }

  .legal-aside {
    position: static;
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: clamp(2.34rem, 11vw, 2.72rem);
  }

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

  .quick-facts dd {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }
}

@media (hover: none) and (pointer: coarse) {
  .service-card:hover,
  .service-card:focus-within {
    transform: none;
    color: var(--ink);
    background: #f7f8fa;
    border-color: var(--line);
    box-shadow: 0 6px 20px rgba(14, 18, 26, 0.04);
  }

  .service-card:hover .service-icon,
  .service-card:focus-within .service-icon {
    color: var(--red);
    background: #fff0f1;
    border-color: #ffd8dc;
    transform: none;
  }

  .service-card:hover p,
  .service-card:focus-within p {
    color: var(--muted);
  }

  .review-card:hover,
  .brand-logo-card:hover,
  .specialist-item:hover {
    transform: none;
  }
}
