:root {
  color-scheme: dark;
  --bg: #0b0f14;
  --bg-2: #101820;
  --panel: #151d25;
  --panel-strong: #1b252e;
  --paper: #f5f7f7;
  --text: #f7f8f8;
  --muted: #aab5bd;
  --soft: #d9e1e6;
  --ink: #111417;
  --line: rgba(255, 255, 255, 0.13);
  --line-strong: rgba(255, 255, 255, 0.2);
  --yellow: #f4c400;
  --yellow-2: #ffdd33;
  --green: #44d06a;
  --blue: #49a5ff;
  --red: #ff714d;
  --shadow: 0 24px 78px rgba(0, 0, 0, 0.36);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family:
    Manrope, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
  overflow-x: clip;
}

body::selection {
  background: var(--yellow);
  color: var(--ink);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(244, 196, 0, 0.78);
  outline-offset: 3px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
  padding: 13px max(22px, calc((100vw - var(--container)) / 2));
  background: rgba(9, 13, 17, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 310px;
}

.brand-mark {
  display: inline-grid;
  width: 44px;
  height: 44px;
  overflow: hidden;
  place-items: center;
  background: #eef5fb;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  font-size: 1.05rem;
  font-weight: 930;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 760;
}

.brand-expert {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 9px;
  color: var(--ink);
  background: var(--yellow);
  border-radius: var(--radius);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
}

.nav-links a {
  min-height: 40px;
  padding: 10px 12px;
  color: #dce3e8;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 760;
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
}

.language-switcher a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 36px;
  padding: 0 9px;
  color: #dce3e8;
  font-size: 0.75rem;
  font-weight: 920;
}

.language-switcher a + a {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.language-switcher a:hover,
.language-switcher a[aria-current="page"] {
  color: var(--ink);
  background: var(--yellow);
}

.button,
.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 860;
  line-height: 1;
  white-space: nowrap;
  transition:
    transform 160ms ease,
    background 160ms ease,
    color 160ms ease,
    border-color 160ms ease;
}

.button {
  padding: 0 18px;
}

.icon-button {
  width: 48px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.button svg,
.icon-button svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.button:hover,
.icon-button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 0 16px 36px rgba(244, 196, 0, 0.22);
}

.button-primary:hover {
  background: var(--yellow-2);
}

.button-ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.16);
}

.button-dark {
  color: var(--text);
  background: rgba(0, 0, 0, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.button-dark:hover {
  background: rgba(0, 0, 0, 0.88);
}

.hero {
  position: relative;
  min-height: 92svh;
  overflow: hidden;
  isolation: isolate;
  padding: 132px max(22px, calc((100vw - var(--container)) / 2)) 68px;
}

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

.hero-media {
  z-index: -2;
  object-fit: cover;
  object-position: center;
  filter: brightness(1.04) saturate(1.1) contrast(1.05);
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(9, 13, 17, 0.98) 0%, rgba(9, 13, 17, 0.86) 39%, rgba(9, 13, 17, 0.36) 73%, rgba(9, 13, 17, 0.68) 100%),
    linear-gradient(0deg, rgba(9, 13, 17, 0.96) 0%, rgba(9, 13, 17, 0.12) 52%, rgba(9, 13, 17, 0.68) 100%);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  gap: 52px;
  align-items: end;
  min-height: calc(92svh - 200px);
}

.hero-content {
  max-width: 830px;
}

.eyebrow,
.kicker {
  margin: 0 0 14px;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.eyebrow span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  background: rgba(244, 196, 0, 0.13);
  border: 1px solid rgba(244, 196, 0, 0.36);
  border-radius: var(--radius);
}

.brand-line {
  width: fit-content;
  margin: 0 0 18px;
  padding: 8px 12px;
  color: var(--ink);
  background: linear-gradient(90deg, var(--yellow), var(--yellow-2));
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(244, 196, 0, 0.22);
  font-size: clamp(1.05rem, 2vw, 1.55rem);
  font-weight: 950;
  letter-spacing: 0.04em;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
}

h1 {
  max-width: 820px;
  font-size: 4.55rem;
  font-weight: 950;
}

h2 {
  max-width: 780px;
  font-size: 3rem;
  font-weight: 920;
}

h3 {
  font-size: 1.16rem;
  font-weight: 900;
}

.hero-lead {
  max-width: 760px;
  margin: 24px 0 0;
  color: #e9eef2;
  font-size: 1.2rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-tags a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  color: #eef3f5;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 850;
}

.hero-tags a:hover {
  border-color: rgba(244, 196, 0, 0.45);
  background: rgba(244, 196, 0, 0.12);
}

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

.hero-panel {
  padding: 22px;
  background: rgba(11, 16, 21, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-panel-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: #eaf0f3;
  font-size: 0.9rem;
  font-weight: 860;
}

.status-dot {
  width: 10px;
  height: 10px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(68, 208, 106, 0.12);
}

.hero-panel dl {
  display: grid;
  gap: 1px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
}

.hero-panel div {
  padding: 17px;
  background: rgba(8, 12, 16, 0.74);
}

.hero-panel dt {
  margin-bottom: 7px;
  color: var(--yellow);
  font-size: 0.73rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-panel dd {
  margin: 0;
  color: #f5f8f9;
  font-size: 0.96rem;
  font-weight: 780;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
  border-block: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 92px;
  padding: 20px;
  background: #0e141a;
  color: var(--text);
  font-weight: 850;
}

.trust-item svg {
  width: 24px;
  height: 24px;
  color: var(--yellow);
  flex: 0 0 24px;
}

.trust-item:hover {
  background: #162029;
}

.section {
  max-width: var(--container);
  margin-inline: auto;
  padding: 96px 22px;
}

.intro-section,
.booking-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.76fr);
  gap: 56px;
  align-items: start;
}

.section-copy p,
.section-heading p,
.diagnostic-content p,
.booking-copy p,
.contact-copy p,
.season-content p {
  max-width: 650px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.proof-card {
  position: relative;
  min-height: 244px;
  overflow: hidden;
  background: #111820;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.proof-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(8, 12, 16, 0.04), rgba(8, 12, 16, 0.82)),
    linear-gradient(90deg, rgba(8, 12, 16, 0.54), rgba(8, 12, 16, 0.08));
}

.proof-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.3) saturate(1.08);
}

.proof-card-copy {
  position: absolute;
  z-index: 1;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 8px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.72);
}

.proof-card strong {
  display: block;
  font-size: clamp(1.1rem, 1.25vw, 1.42rem);
  line-height: 1.08;
  font-weight: 950;
}

.proof-card span {
  display: block;
  color: #eef4f6;
  font-size: 0.9rem;
  font-weight: 880;
  line-height: 1.24;
}

.workshop-media-section {
  padding-top: 20px;
}

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

.workshop-gallery figure {
  position: relative;
  min-height: 306px;
  margin: 0;
  overflow: hidden;
  background: #101820;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
}

.workshop-gallery figure::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(6, 9, 12, 0.02), rgba(6, 9, 12, 0.74)),
    linear-gradient(90deg, rgba(6, 9, 12, 0.4), transparent 55%);
}

.workshop-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.08) saturate(1.06);
}

.workshop-photo-wide {
  grid-column: span 2;
}

.workshop-gallery figcaption {
  position: absolute;
  z-index: 1;
  left: 16px;
  right: 16px;
  bottom: 16px;
  color: #fff6c7;
  font-size: 0.92rem;
  font-weight: 920;
  line-height: 1.22;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.7);
}

.section-heading {
  display: block;
  margin-bottom: 34px;
}

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

.service-card {
  min-height: 244px;
  padding: 24px;
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  transition:
    background 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.service-card:hover {
  transform: translateY(-2px);
  background: var(--panel-strong);
  border-color: rgba(244, 196, 0, 0.4);
}

.service-card svg {
  width: 32px;
  height: 32px;
  margin-bottom: 24px;
  color: var(--yellow);
}

.service-card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.service-card a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  margin-top: 18px;
  color: var(--yellow);
  font-size: 0.88rem;
  font-weight: 900;
}

.service-card a:hover {
  color: var(--yellow-2);
}

.service-card-featured {
  display: flex;
  grid-column: span 2;
  min-height: 340px;
  overflow: hidden;
  flex-direction: column;
  padding: 0;
}

.service-card-featured img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: brightness(1.22) saturate(1.1);
}

.service-card-featured div {
  flex: 1;
  padding: 20px 22px 22px;
}

.service-card-featured svg {
  width: 28px;
  height: 28px;
  margin-bottom: 14px;
}

.service-card-accent {
  background:
    linear-gradient(180deg, rgba(244, 196, 0, 0.13), rgba(244, 196, 0, 0)),
    var(--panel);
  border-color: rgba(244, 196, 0, 0.28);
}

.symptom-router,
.season-band,
.reviews-section {
  background: #0d1319;
  border-block: 1px solid rgba(255, 255, 255, 0.1);
}

.symptom-router-inner,
.season-content,
.reviews-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: 46px;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 86px 22px;
}

.symptom-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.symptom-card,
.expert-card,
.review-cards article {
  min-height: 156px;
  padding: 22px;
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
}

.symptom-card {
  display: grid;
  align-content: start;
  gap: 10px;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.symptom-card:hover {
  transform: translateY(-2px);
  background: var(--panel-strong);
  border-color: rgba(244, 196, 0, 0.42);
}

.symptom-card svg,
.expert-card svg {
  width: 28px;
  height: 28px;
  color: var(--yellow);
}

.symptom-card strong,
.review-cards strong {
  font-size: 1.12rem;
  line-height: 1.1;
  font-weight: 920;
}

.symptom-card span,
.review-cards span {
  color: var(--muted);
  font-weight: 720;
}

.diagnostic-band {
  background:
    linear-gradient(180deg, rgba(15, 22, 29, 0.95), rgba(15, 22, 29, 0.97)),
    url("assets/service-list.png") center / cover;
  border-block: 1px solid rgba(255, 255, 255, 0.1);
}

.diagnostic-content {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 0.72fr);
  gap: 56px;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 96px 22px;
}

.symptom-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.symptom {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  min-height: 78px;
  padding: 14px 18px;
  background: rgba(12, 17, 22, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.symptom svg {
  width: 25px;
  height: 25px;
  color: var(--yellow);
}

.symptom span {
  color: #e9eef1;
  font-weight: 760;
}

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

.expert-card {
  min-height: 236px;
}

.expert-card h3 {
  margin-top: 24px;
}

.expert-card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.season-band {
  background:
    linear-gradient(90deg, rgba(9, 13, 17, 0.98), rgba(9, 13, 17, 0.78)),
    url("assets/service-ac.jpg") center / cover;
}

.season-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  min-height: 260px;
  padding: 24px;
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
}

.process-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 30px;
  color: var(--ink);
  background: var(--yellow);
  border-radius: var(--radius);
  font-weight: 950;
}

.process-list p {
  margin: 14px 0 0;
  color: var(--muted);
}

.reviews-inner {
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1fr);
}

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

.review-cards article {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 150px;
}

.review-cards strong {
  color: var(--yellow);
}

.booking-section {
  max-width: 100%;
  padding-inline: max(22px, calc((100vw - var(--container)) / 2));
  background: #0d1319;
  border-block: 1px solid rgba(255, 255, 255, 0.1);
}

.booking-direct {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 22px;
  background: rgba(7, 11, 15, 0.92);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.booking-form label {
  display: grid;
  gap: 8px;
}

.booking-form span {
  font-size: 0.86rem;
  font-weight: 900;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--text);
  background: #141c24;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  outline: 0;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: #7f8b94;
}

.booking-form textarea {
  resize: vertical;
  min-height: 112px;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: #a17f00;
  box-shadow: 0 0 0 3px rgba(244, 196, 0, 0.22);
}

.booking-form .wide {
  grid-column: 1 / -1;
}

.booking-form .button {
  width: 100%;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 46px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
}

.faq-list summary {
  min-height: 64px;
  padding: 20px 22px;
  cursor: pointer;
  color: #f4f7f8;
  font-weight: 880;
}

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

.contact-section {
  background: #07090b;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-content {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.78fr);
  gap: 46px;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 96px 22px;
}

.contact-actions,
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-actions {
  margin-top: 30px;
}

.business-notes {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.business-notes li {
  position: relative;
  padding-left: 22px;
  color: #d7dee3;
  font-weight: 740;
}

.business-notes li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--yellow);
  border-radius: 50%;
  transform: translateY(-50%);
}

.business-notes a {
  color: var(--yellow);
}

.social-links {
  margin-top: 20px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  color: var(--muted);
  font-weight: 800;
}

.social-links a:hover {
  color: var(--text);
}

.social-links svg {
  width: 19px;
  height: 19px;
}

.contact-visual {
  margin: 0;
}

.contact-visual img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 28px max(22px, calc((100vw - var(--container)) / 2)) 104px;
  color: #c5cdd2;
  background: #07090b;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer p {
  margin: 0;
  font-weight: 800;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  color: var(--yellow);
}

.legal-page {
  min-height: 100svh;
  background:
    linear-gradient(180deg, rgba(10, 13, 16, 0.96), rgba(10, 13, 16, 0.98)),
    url("assets/service-banner.png") center / cover fixed;
}

.legal-shell {
  max-width: 940px;
  margin: 0 auto;
  padding: 138px 22px 76px;
}

.legal-content {
  padding: 34px;
  background: rgba(12, 16, 20, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.legal-content h1 {
  font-size: 3.2rem;
}

.legal-content h2 {
  margin-top: 34px;
  font-size: 1.38rem;
}

.legal-content p {
  margin: 16px 0 0;
  color: #d4dde3;
}

.legal-content a {
  color: var(--yellow);
  font-weight: 850;
}

.legal-updated {
  color: var(--muted);
  font-weight: 780;
}

.mobile-action-bar {
  position: fixed;
  z-index: 60;
  inset: auto 10px 10px 10px;
  display: none;
  min-height: 62px;
  overflow: hidden;
  background: rgba(12, 16, 20, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(16px);
}

.mobile-action-bar a {
  display: grid;
  flex: 1;
  place-items: center;
  min-width: 0;
  padding: 8px 4px;
  color: #eef2f4;
  font-size: 0.76rem;
  font-weight: 850;
}

.mobile-action-bar svg {
  width: 20px;
  height: 20px;
  color: var(--yellow);
}

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

  .brand {
    min-width: 240px;
  }

  .brand-expert {
    display: none;
  }

  .nav-links {
    display: none;
  }

  h1 {
    font-size: 3.72rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  .hero-layout,
  .intro-section,
  .diagnostic-content,
  .booking-section,
  .faq-section,
  .contact-content,
  .symptom-router-inner,
  .season-content,
  .reviews-inner {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    gap: 32px;
  }

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

  .service-grid,
  .process-list,
  .expert-grid,
  .workshop-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 760px) {
  .site-header {
    min-height: 68px;
    padding: 10px 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-copy strong {
    font-size: 0.96rem;
  }

  .brand-copy span {
    font-size: 0.7rem;
  }

  .header-actions .button {
    display: none;
  }

  .language-switcher a {
    min-width: 34px;
    padding-inline: 7px;
  }

  .hero {
    min-height: auto;
    padding: 108px 18px 42px;
  }

  .hero-layout {
    min-height: auto;
  }

  .hero-media {
    object-position: 64% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(9, 13, 17, 0.98) 0%, rgba(9, 13, 17, 0.86) 60%, rgba(9, 13, 17, 0.52) 100%),
      linear-gradient(0deg, rgba(9, 13, 17, 0.97) 0%, rgba(9, 13, 17, 0.28) 54%, rgba(9, 13, 17, 0.76) 100%);
  }

  .brand-line {
    font-size: 1rem;
  }

  h1 {
    font-size: 2.45rem;
  }

  h2 {
    font-size: 1.95rem;
  }

  .hero-lead {
    font-size: 1.04rem;
  }

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

  .hero-panel {
    display: none;
  }

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

  .trust-item {
    min-height: 78px;
    padding: 14px 10px;
    font-size: 0.92rem;
  }

  .section,
  .diagnostic-content,
  .contact-content,
  .symptom-router-inner,
  .season-content,
  .reviews-inner {
    padding: 70px 18px;
  }

  .proof-grid,
  .service-grid,
  .process-list,
  .booking-form,
  .symptom-cards,
  .expert-grid,
  .review-cards,
  .workshop-gallery {
    grid-template-columns: 1fr;
  }

  .proof-card {
    min-height: 184px;
  }

  .proof-card strong {
    font-size: 1.3rem;
  }

  .proof-card span {
    font-size: 0.86rem;
  }

  .workshop-media-section {
    padding-top: 56px;
  }

  .workshop-photo-wide {
    grid-column: auto;
  }

  .workshop-gallery figure {
    min-height: 260px;
  }

  .service-card,
  .service-card-featured,
  .process-list li,
  .expert-card,
  .symptom-card {
    grid-column: auto;
    min-height: auto;
  }

  .booking-section {
    padding-inline: 18px;
  }

  .booking-form {
    padding: 18px;
  }

  .booking-direct .button,
  .contact-actions .button {
    width: 100%;
  }

  .site-footer {
    display: grid;
    padding: 24px 18px 90px;
  }

  .legal-shell {
    padding: 104px 18px 46px;
  }

  .legal-content {
    padding: 22px;
  }

  .legal-content h1 {
    font-size: 2.25rem;
  }

  .mobile-action-bar {
    display: flex;
  }
}

@media (max-width: 430px) {
  .brand-copy {
    display: none;
  }

  h1 {
    font-size: 2.16rem;
  }

  h2 {
    font-size: 1.7rem;
  }

  .eyebrow span,
  .hero-tags a {
    width: 100%;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }
}

/* Premium Workshop visual refresh */
.site-header {
  background: rgba(6, 8, 10, 0.9);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.24);
}

.brand-copy strong,
.brand-expert,
.brand-line,
h1,
h2,
h3 {
  font-family: Unbounded, Manrope, ui-sans-serif, system-ui, sans-serif;
  letter-spacing: 0;
}

.brand-expert {
  font-size: 0.64rem;
  font-weight: 800;
}

.hero {
  min-height: 100svh;
  padding-top: 126px;
  padding-bottom: 54px;
  background: #07090c;
}

.hero-media {
  object-position: 58% center;
  filter: brightness(0.82) saturate(1.08) contrast(1.08);
  transform: scale(1.015);
}

.hero-shade {
  background:
    radial-gradient(circle at 17% 35%, rgba(244, 196, 0, 0.2), transparent 34%),
    linear-gradient(90deg, rgba(5, 7, 9, 0.98) 0%, rgba(5, 7, 9, 0.88) 42%, rgba(5, 7, 9, 0.34) 72%, rgba(5, 7, 9, 0.68) 100%),
    linear-gradient(0deg, rgba(5, 7, 9, 0.98) 0%, rgba(5, 7, 9, 0.24) 56%, rgba(5, 7, 9, 0.78) 100%);
}

.hero-wordmark {
  position: absolute;
  top: 118px;
  right: max(22px, calc((100vw - var(--container)) / 2));
  z-index: 0;
  width: min(520px, 48vw);
  color: transparent;
  font-family: Unbounded, Manrope, ui-sans-serif, system-ui, sans-serif;
  font-size: 6.8rem;
  font-weight: 800;
  line-height: 0.86;
  text-align: right;
  text-transform: uppercase;
  overflow-wrap: normal;
  white-space: normal;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.17);
  opacity: 0.8;
  pointer-events: none;
}

.hero-layout {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 0.94fr) minmax(330px, 0.44fr);
  align-items: center;
  min-height: calc(100svh - 180px);
}

.hero-content {
  max-width: 840px;
}

.eyebrow {
  gap: 8px;
  margin-bottom: 18px;
}

.eyebrow span {
  min-height: 32px;
  color: #fff5b4;
  background: rgba(244, 196, 0, 0.11);
  border-color: rgba(244, 196, 0, 0.38);
  backdrop-filter: blur(12px);
}

.brand-line {
  margin-bottom: 20px;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0;
}

h1 {
  font-size: 4.9rem;
  font-weight: 800;
  line-height: 0.98;
}

h2 {
  font-weight: 800;
}

.hero-lead {
  max-width: 720px;
  color: #eef3f6;
  font-size: 1.18rem;
  font-weight: 650;
}

.hero-tags {
  max-width: 780px;
}

.hero-tags a {
  color: #fff8cf;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(244, 196, 0, 0.3);
  backdrop-filter: blur(10px);
}

.hero-proof-card {
  overflow: hidden;
  align-self: center;
  background: rgba(9, 12, 15, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(18px);
}

.hero-proof-card img {
  width: 100%;
  height: 238px;
  object-fit: cover;
}

.hero-proof-body {
  padding: 22px;
}

.hero-proof-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: #dfe7ea;
  font-size: 0.86rem;
  font-weight: 850;
}

.hero-proof-body h2 {
  font-size: 1.48rem;
  line-height: 1.08;
}

.hero-proof-body p:not(.hero-proof-kicker) {
  margin: 14px 0 0;
  color: #cfd8dd;
  font-weight: 650;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
}

.hero-metrics div {
  min-width: 0;
  padding: 16px 12px;
}

.hero-metrics div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-metrics strong {
  display: block;
  color: var(--yellow);
  font-family: Unbounded, Manrope, ui-sans-serif, system-ui, sans-serif;
  font-size: 1.08rem;
  line-height: 1;
}

.hero-metrics span {
  display: block;
  margin-top: 8px;
  color: #eef3f5;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.22;
}

.trust-strip {
  background: #07090c;
  border-block-color: rgba(244, 196, 0, 0.2);
}

.trust-item {
  background:
    linear-gradient(180deg, rgba(244, 196, 0, 0.08), transparent 70%),
    #0d1217;
}

.trust-item span {
  overflow-wrap: anywhere;
}

@media (max-width: 1120px) {
  .hero-wordmark {
    top: 108px;
    width: min(440px, 62vw);
    font-size: 5.1rem;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr);
    min-height: auto;
  }

  h1 {
    font-size: 3.7rem;
  }

  .hero-proof-card {
    max-width: 620px;
  }
}

@media (max-width: 760px) {
  .site-header {
    box-shadow: 0 12px 44px rgba(0, 0, 0, 0.32);
  }

  .brand-expert {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 108px 18px 46px;
  }

  .hero-media {
    object-position: 64% center;
  }

  .hero-shade {
    background:
      radial-gradient(circle at 26% 14%, rgba(244, 196, 0, 0.18), transparent 38%),
      linear-gradient(90deg, rgba(5, 7, 9, 0.99) 0%, rgba(5, 7, 9, 0.9) 67%, rgba(5, 7, 9, 0.58) 100%),
      linear-gradient(0deg, rgba(5, 7, 9, 0.98) 0%, rgba(5, 7, 9, 0.4) 58%, rgba(5, 7, 9, 0.82) 100%);
  }

  .hero-wordmark {
    top: 86px;
    right: 16px;
    width: min(300px, 78vw);
    font-size: 3rem;
    opacity: 0.42;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr);
    min-height: auto;
    gap: 28px;
  }

  .brand-line {
    font-size: 0.95rem;
  }

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

  .hero-lead {
    font-size: 1rem;
  }

  .hero-tags a {
    width: auto;
    min-height: 36px;
    padding: 8px 10px;
    font-size: 0.82rem;
  }

  .hero-actions {
    display: none;
  }

  .hero-proof-card {
    width: 100%;
  }

  .hero-proof-card img {
    height: 178px;
  }

  .hero-proof-body {
    padding: 18px;
  }

  .hero-proof-body h2 {
    font-size: 1.26rem;
  }

  .hero-metrics span {
    font-size: 0.68rem;
  }
}

@media (max-width: 430px) {
  .hero-wordmark {
    width: min(250px, 76vw);
    font-size: 2.35rem;
  }

  h1 {
    font-size: 2.05rem;
  }

  .hero-tags a {
    width: 100%;
  }

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

  .hero-metrics div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 0;
  }
}

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