:root {
  --bg: #0b1018;
  --bg-soft: #101827;
  --ink: #ffffff;
  --muted: rgba(255, 255, 255, 0.68);
  --line: rgba(255, 255, 255, 0.12);
  --panel: rgba(255, 255, 255, 0.06);
  --accent: #ffd21c;
  --accent-2: #08347a;
  --cool: #9ddcff;
  --cool-strong: #38bdf8;
  --paper: #f6f2eb;
  --paper-ink: #121826;
  font-family: Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-weight: 500;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

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

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

.site-shell {
  min-height: 100vh;
  overflow: clip;
  max-width: 100%;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(11, 16, 24, 0.84);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 17px 0;
  gap: 18px;
}

.hero-logo {
  width: min(520px, 100%);
  height: auto;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 210, 28, 0.55);
  border-radius: 6px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.nav-links a,
.footer-links a {
  transition: color 180ms ease;
}

.nav-links a:hover,
.footer-links a:hover {
  color: #fff;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language {
  position: relative;
}

.language summary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 14px 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  list-style: none;
  text-transform: uppercase;
}

.language-chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  line-height: 1;
  transform: translateY(-1px);
}

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

.language-list {
  position: absolute;
  right: 0;
  display: grid;
  width: 190px;
  max-width: calc(100vw - 24px);
  margin: 8px 0 0;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(16, 24, 39, 0.98);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
}

.language-list a {
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.language-list a:hover,
.language-list a[aria-current="true"] {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.74rem;
  font-weight: 800;
  gap: 10px;
  letter-spacing: 0.16em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

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

.button svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
}

.button-primary {
  border-color: rgba(255, 255, 255, 0.18);
  background: #f8fafc;
  color: #0f172a;
  box-shadow: 0 16px 36px rgba(2, 6, 23, 0.24);
}

.hero .button-primary {
  border-color: rgba(255, 210, 28, 0.76);
  background: linear-gradient(90deg, #ffd21c 0%, #79d9ff 100%);
  color: #06101f;
  box-shadow: 0 18px 44px rgba(255, 210, 28, 0.22), 0 0 0 1px rgba(255, 255, 255, 0.12) inset;
}

.hero .button-primary:hover {
  box-shadow: 0 22px 58px rgba(56, 189, 248, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.18) inset;
}

.desktop-booking {
  border-color: rgba(255, 210, 28, 0.76);
  background: linear-gradient(90deg, #ffd21c 0%, #79d9ff 100%);
  color: #06101f;
  box-shadow: 0 18px 44px rgba(255, 210, 28, 0.22), 0 0 0 1px rgba(255, 255, 255, 0.12) inset;
}

.desktop-booking:hover {
  box-shadow: 0 22px 58px rgba(56, 189, 248, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.18) inset;
}

.button-secondary {
  border-color: rgba(157, 220, 255, 0.34);
  background: rgba(8, 52, 122, 0.18);
  color: rgba(255, 255, 255, 0.88);
}

.button-light {
  border-color: rgba(255, 255, 255, 0.72);
  background: #ffffff;
  color: #0f172a;
}

.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

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

.phone-number {
  display: inline-block;
  max-width: 0;
  overflow: hidden;
  opacity: 0;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.02em;
  line-height: 1;
  white-space: nowrap;
  transition: max-width 180ms ease, opacity 180ms ease;
}

@media (min-width: 941px) {
  .phone-action {
    display: inline-flex;
    width: auto;
    min-width: 44px;
    padding: 0 10px;
    gap: 0;
    text-decoration: none;
    transition: border-color 180ms ease, background 180ms ease, gap 180ms ease, padding 180ms ease;
  }

  .phone-action:hover,
  .phone-action:focus-visible,
  .phone-action.is-revealed {
    gap: 10px;
    padding-right: 15px;
    border-color: rgba(255, 210, 28, 0.55);
    background: rgba(255, 255, 255, 0.12);
  }

  .phone-action:hover .phone-number,
  .phone-action:focus-visible .phone-number,
  .phone-action.is-revealed .phone-number {
    max-width: 142px;
    opacity: 1;
  }
}

.hero {
  position: relative;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(11, 16, 24, 0.96), rgba(11, 16, 24, 0.78) 44%, rgba(11, 16, 24, 0.26)),
    url("../images/1000362158-7fe7b6d79e2e532b83c06c8d941580d4.jpg") center right / cover;
  content: "";
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 28%;
  background: linear-gradient(0deg, var(--bg), rgba(11, 16, 24, 0));
  content: "";
}

.hero-inner {
  display: grid;
  min-height: calc(100svh - 77px);
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(30px, 5vw, 76px) 0 clamp(86px, 9vw, 116px);
  align-items: center;
}

.hero-copy {
  width: min(860px, 100%);
  min-width: 0;
  animation: riseIn 700ms ease both;
}

.status {
  display: inline-flex;
  align-items: center;
  margin-bottom: 34px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 900;
  gap: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #84cc16;
  box-shadow: 0 0 0 7px rgba(132, 204, 22, 0.12);
  transition: background 400ms ease, box-shadow 400ms ease;
}

.status-dot.is-closed {
  background: #94a3b8;
  box-shadow: 0 0 0 7px rgba(148, 163, 184, 0.12);
}

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

.hero h1 {
  max-width: 720px;
  font-family: Inter, Manrope, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(2.75rem, 6.4vw, 5.95rem);
  font-weight: 820;
  line-height: 0.96;
  overflow-wrap: normal;
  text-wrap: balance;
}

html[lang="et"] .hero h1,
html[lang="en"] .hero h1 {
  max-width: 700px;
  font-size: clamp(2.45rem, 5.25vw, 4.75rem);
  line-height: 1.04;
}

html[lang="ru"] .hero h1 {
  max-width: 860px;
  font-size: clamp(2.35rem, 5.4vw, 4.7rem);
  line-height: 1.03;
  word-break: normal;
}

.hero p {
  max-width: 620px;
  margin-top: 25px;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 500;
  line-height: 1.76;
  overflow-wrap: anywhere;
}

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

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 820px;
  margin-top: 50px;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(18px);
}

.proof-item {
  min-height: 128px;
  padding: 24px;
  background: rgba(11, 16, 24, 0.48);
}

.proof-value {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: clamp(1.5rem, 2.4vw, 2.08rem);
  font-variant-numeric: tabular-nums;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 0 24px rgba(255, 210, 28, 0.28);
  white-space: nowrap;
}

.proof-stars {
  font-size: clamp(1.1rem, 1.9vw, 1.55rem);
  letter-spacing: 0.06em;
}

.proof-label {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.95rem;
  line-height: 1.45;
}

.section {
  padding: clamp(72px, 10vw, 132px) 0;
}

#services {
  position: relative;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 210, 28, 0.2), transparent 30%),
    radial-gradient(circle at 84% 20%, rgba(56, 189, 248, 0.24), transparent 34%),
    radial-gradient(circle at 58% 78%, rgba(31, 178, 132, 0.18), transparent 36%),
    linear-gradient(135deg, #122a4d 0%, #07536a 48%, #102148 100%);
}

#services::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 24%, rgba(2, 6, 23, 0.18)),
    linear-gradient(90deg, rgba(255, 210, 28, 0.1), transparent 28%, transparent 70%, rgba(157, 220, 255, 0.13));
  content: "";
}

#services .section-inner {
  position: relative;
}

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

.section-kicker {
  margin-bottom: 16px;
  color: var(--cool);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.section-title {
  max-width: 780px;
  margin-bottom: 28px;
  font-size: clamp(2.05rem, 5vw, 4rem);
  font-weight: 850;
  line-height: 1.05;
}

.lead {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.18rem);
  font-weight: 500;
  line-height: 1.82;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 56px;
  gap: 24px;
}

.service {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: clamp(34px, 4.4vw, 56px);
  border: 1px solid rgba(157, 220, 255, 0.18);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(20, 42, 72, 0.98), rgba(11, 16, 24, 0.98));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.service > * {
  position: relative;
  z-index: 2;
}

.service::before {
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--accent), var(--cool-strong));
  content: "";
}

.service::after {
  position: absolute;
  inset: 0 0 0 auto;
  z-index: 0;
  width: min(40%, 430px);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  opacity: 0.78;
  filter: saturate(0.78) contrast(0.98) brightness(0.62);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 32%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 32%);
}

.service-tire::after {
  background-image: url("../images/service-tire-macro.png");
  background-position: center right;
}

.service-climate::after {
  background-image: url("../images/service-ac-macro.png");
  background-position: center right;
}

.service:nth-child(odd) {
  border-color: rgba(255, 210, 28, 0.28);
  background: linear-gradient(145deg, rgba(24, 48, 78, 0.98), rgba(11, 16, 24, 0.98));
}

.service h3 {
  max-width: min(58%, 720px);
  margin-bottom: 24px;
  color: #f8fafc;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.1;
  text-wrap: balance;
}

.service-facts {
  position: absolute;
  z-index: 2;
  top: clamp(32px, 4vw, 52px);
  right: clamp(28px, 4vw, 56px);
  display: flex;
  gap: 10px;
}

.service-fact {
  display: flex;
  min-width: 132px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 16px 14px;
  border: 1px solid rgba(157, 220, 255, 0.3);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(8, 52, 122, 0.78), rgba(15, 23, 42, 0.74));
  color: #fff;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(16px);
}

.service-fact span {
  color: rgba(157, 220, 255, 0.86);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.service-fact strong {
  display: block;
  margin-top: 4px;
  color: #fff;
  font-size: clamp(1.12rem, 1.9vw, 1.58rem);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.service p,
.service li {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.82;
}

.service p {
  max-width: min(58%, 720px);
  font-size: 1.02rem;
  font-weight: 500;
}

.service ul {
  display: grid;
  max-width: min(58%, 720px);
  margin: 26px 0 0;
  padding: 0;
  gap: 11px;
  list-style: none;
}

.service li {
  position: relative;
  padding-left: 28px;
}

.service li::before {
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cool);
  box-shadow: 0 0 0 5px rgba(157, 220, 255, 0.1);
  content: "";
}

.service li strong {
  color: #fff;
}

.location {
  position: relative;
  background:
    radial-gradient(circle at 16% 20%, rgba(255, 255, 255, 0.14), transparent 24%),
    radial-gradient(circle at 78% 18%, rgba(157, 220, 255, 0.16), transparent 28%),
    radial-gradient(circle at 48% 100%, rgba(255, 210, 28, 0.08), transparent 30%),
    linear-gradient(135deg, #090d14 0%, #101827 56%, #0b1018 100%);
  color: #fff;
}

.location::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.08) 38%, transparent 56%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 30%, rgba(2, 6, 23, 0.16));
  content: "";
}

.location .section-inner {
  position: relative;
}

.location .section-kicker {
  color: var(--cool);
}

.location .section-title {
  max-width: 900px;
  font-size: clamp(1.85rem, 3.6vw, 3.05rem);
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: 0;
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: start;
}

.location .lead,
.location-list,
.areas {
  color: rgba(255, 255, 255, 0.72);
}

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

.tag {
  padding: 10px 14px;
  border: 1px solid rgba(157, 220, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.83rem;
  font-weight: 700;
}

.location h3,
.areas strong {
  color: #fff;
  font-weight: 800;
}

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

.location-list li {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  line-height: 1.72;
}

.areas {
  margin-top: 28px;
  line-height: 1.75;
}

.gallery-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.gallery-controls {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.gallery-arrow {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(157, 220, 255, 0.32);
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(8, 52, 122, 0.88), rgba(15, 23, 42, 0.9));
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.gallery-arrow:hover {
  border-color: rgba(255, 210, 28, 0.68);
  background: linear-gradient(145deg, rgba(8, 52, 122, 0.94), rgba(7, 83, 106, 0.92));
  transform: translateY(-2px);
}

.gallery-frame {
  position: relative;
  margin-top: 48px;
}

.gallery-frame::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 20px;
  width: min(120px, 16vw);
  pointer-events: none;
  background: linear-gradient(90deg, transparent, #0b1018 92%);
  content: "";
}

.gallery-grid {
  display: grid;
  grid-auto-columns: clamp(250px, 25vw, 340px);
  grid-auto-flow: column;
  grid-template-columns: none;
  gap: 16px;
  align-items: stretch;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 2px 70px 20px 0;
  scroll-padding-inline: max(18px, calc((100vw - 1180px) / 2));
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(157, 220, 255, 0.46) rgba(255, 255, 255, 0.08);
  scrollbar-width: thin;
}

.gallery-grid::-webkit-scrollbar {
  height: 8px;
}

.gallery-grid::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.gallery-grid::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 210, 28, 0.72), rgba(157, 220, 255, 0.72));
}

.gallery-item {
  position: relative;
  overflow: hidden;
  display: block;
  min-width: 0;
  border: 1px solid rgba(157, 220, 255, 0.18);
  border-radius: 22px;
  background: var(--bg-soft);
  aspect-ratio: 4 / 5.2;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.22);
  cursor: zoom-in;
  padding: 0;
  scroll-snap-align: start;
}

.gallery-item.featured {
  width: auto;
  aspect-ratio: 4 / 5.2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease, opacity 500ms ease;
}

.gallery-item::after {
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(180deg, transparent, rgba(5, 9, 15, 0.74));
  content: "";
}

.gallery-item:hover img {
  transform: scale(1.055);
}

.reviews {
  position: relative;
  background:
    radial-gradient(circle at 10% 22%, rgba(255, 210, 28, 0.16), transparent 30%),
    radial-gradient(circle at 85% 14%, rgba(157, 220, 255, 0.24), transparent 36%),
    radial-gradient(circle at 58% 92%, rgba(31, 178, 132, 0.18), transparent 34%),
    linear-gradient(135deg, #153a67 0%, #0a5b70 52%, #17345f 100%);
}

.reviews::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), transparent 28%, rgba(2, 6, 23, 0.08)),
    linear-gradient(90deg, rgba(255, 210, 28, 0.08), transparent 34%, rgba(157, 220, 255, 0.08));
  content: "";
}

.reviews .section-inner {
  position: relative;
}

.reviews-wrap {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(36px, 7vw, 86px);
}

.rating {
  position: sticky;
  top: 116px;
  align-self: start;
}

.score {
  display: block;
  margin: 18px 0 10px;
  font-size: clamp(4rem, 10vw, 7.5rem);
  font-weight: 850;
  line-height: 0.9;
}

.rating-stars {
  color: var(--accent);
  font-size: clamp(2rem, 4.6vw, 3.25rem);
  letter-spacing: 0.08em;
  line-height: 1;
  white-space: nowrap;
}

.review-list {
  display: grid;
  gap: 18px;
}

.review {
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.review blockquote {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.08rem, 2vw, 1.4rem);
  line-height: 1.65;
}

.review cite {
  color: rgba(255, 255, 255, 0.58);
  font-style: normal;
}

.google-review-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.google-reviews-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid rgba(157, 220, 255, 0.34);
  border-radius: 999px;
  color: #fff;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.google-reviews-link-primary {
  border-color: rgba(255, 210, 28, 0.6);
  background: linear-gradient(90deg, rgba(255, 210, 28, 0.95), rgba(121, 217, 255, 0.9));
  color: #06101f;
}

.google-reviews-link:hover {
  border-color: rgba(255, 210, 28, 0.55);
  color: var(--accent);
  transform: translateY(-1px);
}

.google-reviews-link-primary:hover {
  color: #06101f;
}

.contact {
  background:
    radial-gradient(circle at 15% 0%, rgba(157, 220, 255, 0.22), transparent 34%),
    linear-gradient(135deg, #0b1018, #08347a 62%, #061a3c);
  color: #fff;
}

.contact .section-kicker {
  color: rgba(255, 255, 255, 0.74);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(290px, 1.1fr);
  gap: clamp(30px, 6vw, 70px);
  align-items: center;
}

.social-block {
  display: grid;
  max-width: 540px;
  margin-top: 28px;
  gap: 12px;
}

.social-block > span {
  color: rgba(157, 220, 255, 0.82);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

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

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 16px 0 10px;
  border: 1px solid rgba(157, 220, 255, 0.3);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.social-links a:hover {
  border-color: rgba(255, 210, 28, 0.62);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.social-links .social-card {
  position: relative;
  display: grid;
  min-height: 0;
  padding: 14px;
  gap: 10px;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.18);
}

.social-card::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.92;
  content: "";
}

.social-card > * {
  position: relative;
  z-index: 1;
}

.social-card-instagram::before {
  background:
    radial-gradient(circle at 18% 90%, rgba(255, 220, 128, 0.32), transparent 28%),
    radial-gradient(circle at 85% 18%, rgba(214, 41, 118, 0.28), transparent 32%),
    linear-gradient(135deg, rgba(245, 133, 41, 0.18), rgba(129, 52, 175, 0.22) 55%, rgba(81, 91, 212, 0.18));
}

.social-card-tiktok::before {
  background:
    radial-gradient(circle at 14% 22%, rgba(37, 244, 238, 0.24), transparent 34%),
    radial-gradient(circle at 86% 78%, rgba(254, 44, 85, 0.24), transparent 34%),
    linear-gradient(135deg, rgba(2, 6, 23, 0.04), rgba(255, 255, 255, 0.08));
}

.social-card-head {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.social-qr-wrap {
  display: grid;
  width: 122px;
  justify-items: center;
  justify-self: center;
  gap: 7px;
  padding: 8px 5px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  color: #07111f;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
}

.social-qr {
  width: min(112px, 100%);
  height: auto;
  border-radius: 7px;
}

.social-icon {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.social-icon svg {
  width: 18px;
  height: 18px;
}

.social-icon-instagram {
  background: radial-gradient(circle at 30% 108%, #feda75 0 16%, #fa7e1e 31%, #d62976 50%, #962fbf 68%, #4f5bd5 100%);
  color: #fff;
}

.social-icon-tiktok {
  position: relative;
  background: #050505;
  color: #fff;
  box-shadow:
    -2px 1px 0 rgba(37, 244, 238, 0.86),
    2px -1px 0 rgba(254, 44, 85, 0.86),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.contact-panel {
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(157, 220, 255, 0.2);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(8, 52, 122, 0.46), rgba(5, 9, 15, 0.72)),
    rgba(10, 18, 31, 0.9);
  box-shadow: 0 28px 72px rgba(2, 6, 23, 0.34);
  backdrop-filter: blur(18px);
}

.contact-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px;
  padding: 24px;
  border-bottom: 1px solid rgba(157, 220, 255, 0.13);
  background:
    linear-gradient(90deg, rgba(157, 220, 255, 0.06), transparent 42%),
    rgba(255, 255, 255, 0.045);
  color: #f8fafc;
}

.contact-row:last-child {
  border-bottom: 0;
}

.contact-row span {
  color: rgba(157, 220, 255, 0.72);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-row strong {
  font-size: 1.02rem;
  font-weight: 850;
  line-height: 1.45;
}

.contact-row a {
  color: inherit;
}

.map {
  width: 100%;
  min-height: 390px;
  margin-top: 28px;
  overflow: hidden;
  border: 0;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.16);
}

.booking {
  background:
    linear-gradient(180deg, rgba(8, 52, 122, 0.18), rgba(8, 52, 122, 0)),
    #0f172a;
  color: #fff;
}

.booking .section-kicker {
  color: var(--cool);
}

.booking .lead {
  color: rgba(255, 255, 255, 0.7);
}

.booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: 34px;
  align-items: start;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.booking-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

[data-required]::after {
  color: #ffd21c;
  content: " *";
  font-size: 1.05em;
  font-weight: 900;
}

.booking-form label:first-of-type {
  grid-column: 1 / -1;
}

.booking-form input,
.booking-form select,
.booking-form textarea,
.booking-fixed-service {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(33, 32, 28, 0.18);
  border-radius: 8px;
  padding: 0 44px 0 14px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font: inherit;
  font-size: 0.95rem;
}

.booking-fixed-service {
  display: flex;
  align-items: center;
  padding-right: 14px;
  cursor: default;
  text-transform: none;
}

.booking-date-control {
  position: relative;
  display: block;
}

.booking-date-control input[name="appointment_date"] {
  padding-right: 58px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23ffffff' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 3v3M17 3v3M4.5 9h15M6.5 5h11A2.5 2.5 0 0 1 20 7.5v10A2.5 2.5 0 0 1 17.5 20h-11A2.5 2.5 0 0 1 4 17.5v-10A2.5 2.5 0 0 1 6.5 5Z'/%3E%3C/svg%3E");
  background-position: calc(100% - 24px) 50%;
  background-repeat: no-repeat;
  background-size: 21px 21px;
}

.visually-hidden-date {
  position: absolute;
  top: 0;
  right: 0;
  width: 58px !important;
  min-height: 50px !important;
  height: 50px;
  padding: 0 !important;
  border: 0 !important;
  opacity: 0;
  cursor: pointer;
}

.booking-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.88) 50%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.88) 50%, transparent 50%);
  background-position:
    calc(100% - 24px) 52%,
    calc(100% - 17px) 52%;
  background-repeat: no-repeat;
  background-size: 7px 7px, 7px 7px;
}

.booking-form input[type="date"] {
  appearance: none;
  padding-right: 58px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23ffffff' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 3v3M17 3v3M4.5 9h15M6.5 5h11A2.5 2.5 0 0 1 20 7.5v10A2.5 2.5 0 0 1 17.5 20h-11A2.5 2.5 0 0 1 4 17.5v-10A2.5 2.5 0 0 1 6.5 5Z'/%3E%3C/svg%3E");
  background-position: calc(100% - 24px) 50%;
  background-repeat: no-repeat;
  background-size: 21px 21px;
}

.booking-form input[type="date"]::-webkit-calendar-picker-indicator {
  width: 44px;
  height: 100%;
  margin: 0;
  cursor: pointer;
  opacity: 0;
}

.booking-form .visually-hidden-date {
  position: absolute;
  top: 0;
  right: 0;
  width: 58px !important;
  min-height: 50px !important;
  height: 50px;
  padding: 0 !important;
  border: 0 !important;
  background: transparent;
  background-image: none;
  opacity: 0;
  cursor: pointer;
}

.booking-form .visually-hidden-date::-webkit-calendar-picker-indicator {
  width: 58px;
  opacity: 0;
  cursor: pointer;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: rgba(157, 220, 255, 0.65);
  outline: none;
  box-shadow: 0 0 0 3px rgba(157, 220, 255, 0.14);
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.booking-form textarea {
  min-height: 92px;
  padding-top: 12px;
  padding-right: 14px;
  resize: vertical;
}

.booking-consent {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 32px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.45;
}

.booking-consent input[type="checkbox"] {
  appearance: none;
  position: relative;
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  margin: 0;
  padding: 0;
  border: 2px solid rgba(157, 220, 255, 0.72);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.booking-consent input[type="checkbox"]:checked {
  border-color: rgba(255, 210, 28, 0.85);
  background: #ffd21c;
  background-image: none;
}

.booking-consent input[type="checkbox"]:checked::after {
  position: absolute;
  left: 50%;
  top: 48%;
  width: 7px;
  height: 12px;
  border: solid #06101f;
  border-width: 0 3px 3px 0;
  content: "";
  transform: translate(-50%, -50%) rotate(45deg);
  transform-origin: center;
}

.booking-consent > span {
  display: block;
  min-width: 0;
  white-space: nowrap;
}

.booking-consent a {
  color: #fff;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.walk-in-consent {
  grid-template-columns: 24px minmax(0, 1fr);
  justify-content: start;
  gap: 10px;
  text-transform: none;
}

.walk-in-consent > span {
  display: inline;
  min-width: 0;
  white-space: nowrap;
}

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

.booking-form .button-primary {
  border-color: rgba(255, 210, 28, 0.55);
  background: linear-gradient(90deg, #ffd21c 0%, #9ddcff 100%);
  color: #06101f;
  box-shadow: 0 18px 44px rgba(56, 189, 248, 0.22);
}

.booking-form .button-primary:hover {
  box-shadow: 0 22px 54px rgba(255, 210, 28, 0.22);
}

.booking-message {
  min-height: 24px;
  margin: 0;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.booking-message[data-state="success"] {
  padding: 14px 16px;
  border-color: rgba(157, 220, 255, 0.34);
  background: rgba(157, 220, 255, 0.12);
  color: #e8f7ff;
}

.booking-message[data-state="error"] {
  padding: 14px 16px;
  border-color: rgba(248, 113, 113, 0.36);
  background: rgba(248, 113, 113, 0.1);
  color: #fecaca;
}

.service-note {
  border-left: 3px solid var(--accent);
  margin: 14px 0 0;
  padding: 10px 0 10px 14px;
  color: #ffffff;
  font-weight: 800;
}

.standalone-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: radial-gradient(circle at 50% 0%, rgba(157, 220, 255, 0.12), transparent 42%), var(--bg);
}

.standalone-card {
  width: min(100%, 620px);
  max-width: calc(100vw - 56px);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(24px, 5vw, 42px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.standalone-card h1 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  overflow-wrap: normal;
  text-wrap: balance;
}

.privacy-card {
  width: min(100%, 760px);
}

.privacy-card h1 {
  font-size: clamp(1.75rem, 3vw, 2.55rem);
  line-height: 1.08;
}

.standalone-card p {
  color: var(--muted);
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.walk-in-page {
  padding: clamp(14px, 4vw, 24px);
}

.walk-in-card {
  width: min(100%, 620px);
  max-width: calc(100vw - 28px);
}

.walk-in-logo {
  display: block;
  width: min(100%, 390px);
  height: auto;
  margin: 0 0 24px;
  border: 1px solid rgba(255, 210, 28, 0.5);
  border-radius: 6px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.26);
}

.walk-in-card h1 {
  font-size: clamp(1.85rem, 6vw, 2.5rem);
  line-height: 1.08;
  margin-bottom: 22px;
}

.walk-in-card .booking-form label {
  font-size: 0.84rem;
  letter-spacing: 0;
  text-transform: none;
}

.walk-in-card .booking-form {
  gap: 18px;
}

.walk-in-card .booking-form input {
  min-height: 58px;
  padding: 0 16px;
  font-size: 1rem;
}

.walk-in-card .button {
  min-height: 58px;
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  text-transform: none;
}

.walk-in-card .walk-in-consent {
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.52rem, 1.65vw, 0.64rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.1;
}

.walk-in-card .walk-in-consent input[type="checkbox"] {
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  padding: 0;
  align-self: center;
}

.walk-in-card .walk-in-consent > span {
  white-space: nowrap;
}

.walk-in-card .walk-in-consent a {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

.footer {
  border-top: 1px solid var(--line);
  background: #090d14;
}

.footer-inner {
  display: flex;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 34px 0;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.68);
}

.footer-logo {
  width: 150px;
  height: 31px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  object-fit: cover;
}

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

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.footer-links .social-icon {
  width: 20px;
  height: 20px;
  flex-basis: 20px;
}

.footer-links .social-icon svg {
  width: 14px;
  height: 14px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  padding: 28px;
  align-items: center;
  justify-content: center;
  background: rgba(5, 8, 13, 0.9);
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: min(100%, 1180px);
  max-height: 88vh;
  border-radius: 18px;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
  font-size: 1.6rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 940px) {
  .nav-links,
  .desktop-booking {
    display: none;
  }

  .nav {
    justify-content: flex-end;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(11, 16, 24, 0.86), rgba(11, 16, 24, 0.72)),
      url("../images/1000362158-7fe7b6d79e2e532b83c06c8d941580d4.jpg") center / cover;
  }

  .hero-proof,
  .services-grid,
  .location-grid,
  .reviews-wrap,
  .booking-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .booking-form {
    grid-template-columns: 1fr;
  }

  .service:nth-child(odd) {
    border-right: 0;
  }

  .service h3 {
    max-width: 68%;
  }

  .service p,
  .service ul {
    max-width: 66%;
  }

  .service-facts {
    position: relative;
    top: auto;
    right: auto;
    width: fit-content;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 22px;
  }

  .rating {
    position: static;
  }

  .gallery-head {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .nav {
    width: min(100% - 28px, 1180px);
  }

  .brand-text {
    max-width: 118px;
    letter-spacing: 0.1em;
  }

  .language summary {
    padding: 0 12px;
    letter-spacing: 0.12em;
  }

  .hero-inner,
  .section-inner,
  .footer-inner {
    width: min(100% - 28px, 1180px);
  }

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

  .social-links .social-card {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border-radius: 999px;
  }

  .social-card-head {
    grid-column: auto;
    font-size: 0.78rem;
  }

  .social-qr-wrap {
    display: none;
  }

  .social-qr {
    width: 86px;
  }

  .hero-inner {
    min-height: auto;
    padding: 20px 0 62px;
  }

  .hero h1 {
    font-size: clamp(1.9rem, 8.9vw, 2.45rem);
    line-height: 1.02;
  }

  .service h3,
  .service p,
  .service ul {
    max-width: 100%;
  }

  .service::after {
    width: 58%;
    opacity: 0.38;
  }

  html[lang="ru"] .hero h1 {
    max-width: 100%;
    font-size: clamp(2rem, 8vw, 2.25rem);
    line-height: 1.08;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    margin-top: 22px;
  }

  .button {
    width: 100%;
    padding: 0 18px;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    line-height: 1.22;
    white-space: normal;
  }

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

  .proof-item {
    min-height: auto;
  }

  .gallery-grid {
    grid-auto-columns: minmax(230px, 74vw);
    gap: 12px;
    padding-right: 44px;
  }

  .gallery-arrow {
    width: 46px;
    height: 46px;
    font-size: 1.75rem;
  }

  .gallery-item,
  .gallery-item.wide,
  .gallery-item.featured {
    width: auto;
    aspect-ratio: 4 / 5;
  }

  .contact-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .booking-consent {
    gap: 8px;
    font-size: 0.68rem;
  }

  .booking-consent input[type="checkbox"] {
    width: 22px;
    height: 22px;
    min-width: 22px;
    min-height: 22px;
  }

  .walk-in-page {
    padding: 8px;
  }

  .walk-in-card {
    max-width: calc(100vw - 16px);
    padding: 18px;
    transform: translateY(-50px);
  }

  .walk-in-logo {
    width: min(100%, 320px);
    margin-bottom: 20px;
  }

  .walk-in-card .booking-form {
    gap: 18px;
    padding: 16px;
  }

  .walk-in-card .walk-in-consent {
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 6px;
    font-size: clamp(0.48rem, 1.9vw, 0.56rem);
  }

  .walk-in-card .walk-in-consent input[type="checkbox"] {
    width: 22px;
    height: 22px;
    min-width: 22px;
    min-height: 22px;
    padding: 0;
  }

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

@media (max-width: 430px) {
  .nav {
    gap: 8px;
  }

  .nav-actions {
    gap: 7px;
  }

  .language summary {
    min-height: 40px;
    padding: 0 10px;
    font-size: 0.66rem;
  }
}
