:root {
  color-scheme: light;
  --ink: #1f1c19;
  --muted: #6a625b;
  --paper: #fbfaf7;
  --panel: #ffffff;
  --line: #e7e0d7;
  --signal: #c53c2f;
  --signal-dark: #8f281f;
  --steel: #43606b;
  --gold: #c79a3c;
  --shadow: 0 20px 55px rgba(31, 28, 25, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 14px clamp(18px, 4vw, 54px);
  color: #fff;
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-solid {
  background: rgba(251, 250, 247, 0.96);
  color: var(--ink);
  box-shadow: 0 8px 30px rgba(31, 28, 25, 0.11);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 850;
  letter-spacing: 0;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 6px;
  background: #fff;
  object-fit: contain;
  padding: 4px;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2.2vw, 30px);
  font-size: 0.95rem;
  font-weight: 720;
}

.nav-links a {
  opacity: 0.88;
}

.nav-links a:hover {
  opacity: 1;
}

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

.lang-toggle,
.icon-call {
  border: 1px solid currentColor;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: inherit;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.lang-toggle {
  min-width: 48px;
  height: 40px;
}

.icon-call {
  position: relative;
  width: 42px;
  height: 40px;
}

.icon-call span,
.icon-call::before,
.icon-call::after {
  position: absolute;
  content: "";
}

.icon-call span {
  left: 13px;
  top: 10px;
  width: 15px;
  height: 19px;
  border: 3px solid currentColor;
  border-top-width: 5px;
  border-bottom-width: 5px;
  border-radius: 9px;
  transform: rotate(-26deg);
}

.hero {
  position: relative;
  min-height: min(760px, 92vh);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #191817;
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08) contrast(1.06);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(25, 24, 23, 0.9), rgba(25, 24, 23, 0.56) 48%, rgba(25, 24, 23, 0.24)),
    linear-gradient(0deg, rgba(25, 24, 23, 0.75), rgba(25, 24, 23, 0.06) 56%);
}

.hero-inner {
  position: relative;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 132px 0 54px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 14px;
  color: #f0c45d;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

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

h1 {
  width: min(820px, 100%);
  margin: 0;
  font-size: clamp(2.65rem, 6.8vw, 5.9rem);
  line-height: 0.93;
  letter-spacing: 0;
}

.hero-copy {
  width: min(650px, 100%);
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.06rem, 1.8vw, 1.28rem);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 8px;
  padding: 13px 20px;
  font-weight: 880;
}

.btn.primary {
  background: var(--signal);
  color: #fff;
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.62);
  color: #fff;
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(700px, 100%);
  margin-top: 34px;
}

.proof-row div {
  min-height: 86px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.proof-row strong {
  display: block;
  font-size: 1.75rem;
  line-height: 1;
}

.proof-row span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.quick-strip div {
  min-width: 0;
  background: #fff;
  padding: 22px clamp(18px, 4vw, 54px);
}

.quick-strip span,
.contact-card span {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.quick-strip a {
  display: block;
  margin-top: 5px;
  font-weight: 850;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(68px, 8vw, 112px) 0;
}

.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

.section-copy p:not(.eyebrow),
.offer-copy p:not(.eyebrow),
.contact p,
.workshop-copy p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.symptom-panel {
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.symptom-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.symptom {
  min-height: 74px;
  border: 0;
  background: #fff;
  color: var(--ink);
  padding: 16px;
  text-align: left;
  font: inherit;
  font-weight: 820;
  cursor: pointer;
}

.symptom.active {
  background: var(--signal);
  color: #fff;
}

.recommendation {
  min-height: 218px;
  padding: clamp(22px, 4vw, 38px);
  background:
    linear-gradient(135deg, rgba(197, 60, 47, 0.12), rgba(67, 96, 107, 0.1)),
    #fff;
}

.recommendation span {
  color: var(--signal-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.recommendation h3 {
  margin: 9px 0 0;
  font-size: clamp(1.45rem, 2.4vw, 2.3rem);
  line-height: 1.05;
}

.recommendation p {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.service-grid article {
  min-width: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
}

.service-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-grid div {
  padding: 18px;
}

.service-grid h3 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.12;
}

.service-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.offer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
}

.offer-stack {
  display: grid;
  gap: 14px;
}

.metric-card,
.brand-card {
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
  padding: clamp(22px, 4vw, 34px);
}

.metric-card.accent {
  background: var(--ink);
  color: #fff;
}

.metric-card span {
  display: block;
  color: #f0c45d;
  font-size: clamp(4rem, 8vw, 6.8rem);
  font-weight: 920;
  line-height: 0.9;
}

.metric-card p {
  width: min(360px, 100%);
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.16rem;
  font-weight: 760;
}

.brand-card h3 {
  margin: 0;
  font-size: 1.5rem;
}

.brand-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
  padding: 0;
  list-style: none;
}

.brand-card li {
  border-radius: 999px;
  background: rgba(67, 96, 107, 0.13);
  color: #243a42;
  padding: 8px 12px;
  font-weight: 850;
}

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

.workshop {
  padding: clamp(68px, 8vw, 108px) clamp(18px, 4vw, 54px);
  background: #fff;
}

.workshop-copy {
  width: min(1180px, 100%);
  margin: 0 auto 28px;
}

.gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-auto-rows: minmax(180px, 24vw);
  gap: 12px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.gallery img:first-child {
  grid-row: span 2;
}

.contact {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
}

.contact-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--line);
  border: 1px solid var(--line);
}

.contact-card a {
  min-height: 132px;
  min-width: 0;
  background: #fff;
  padding: 22px;
  font-size: 1.08rem;
  font-weight: 850;
}

.contact-card a:hover {
  background: rgba(197, 60, 47, 0.07);
}

.contact-card span {
  margin-bottom: 7px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(18px, 4vw, 54px) 92px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.95rem;
}

.footer span {
  color: var(--ink);
  font-weight: 850;
}

.mobile-bar {
  position: fixed;
  z-index: 30;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.mobile-bar.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-bar a {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--signal);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 14px 36px rgba(31, 28, 25, 0.26);
}

.mobile-bar a:last-child {
  background: var(--steel);
}

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

  .nav-links {
    display: none;
  }

  .header-actions {
    justify-content: end;
  }

  .hero {
    min-height: 720px;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(25, 24, 23, 0.88), rgba(25, 24, 23, 0.24)),
      linear-gradient(90deg, rgba(25, 24, 23, 0.74), rgba(25, 24, 23, 0.2));
  }

  .quick-strip,
  .split,
  .offer,
  .contact {
    grid-template-columns: 1fr;
  }

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

  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: minmax(170px, 38vw);
  }

  .gallery img:first-child {
    grid-row: span 1;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 12px 14px;
  }

  .brand span {
    max-width: 120px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero {
    min-height: 710px;
  }

  .hero-inner {
    width: calc(100% - 28px);
    padding-bottom: 34px;
  }

  h1 {
    font-size: clamp(2.35rem, 14vw, 4rem);
  }

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

  .proof-row,
  .symptom-buttons,
  .service-grid,
  .contact-card,
  .gallery {
    grid-template-columns: 1fr;
  }

  .proof-row div {
    min-height: 74px;
  }

  .quick-strip div,
  .section,
  .service-grid,
  .workshop,
  .footer {
    width: auto;
  }

  .section,
  .service-grid {
    width: calc(100% - 28px);
  }

  .service-grid {
    gap: 12px;
  }

  .contact-card a {
    min-height: 108px;
  }

  .mobile-bar {
    display: grid;
  }
}
