/* ================================================================ */
/*  Design Tokens                                                    */
/* ================================================================ */
:root {
  /* Brand palette (purple theme — matches dark purple→wine reference) */
  --color-brand-primary: #5B2A4E;       /* deep purple — header, map, guarantee bg */
  --color-brand-secondary: #8E4A7E;     /* mauve — Consultation Offer btn */
  --color-brand-accent: #D5B775;        /* gold — Book Appointment, Reservation, services tab bg */
  --color-brand-primary-rgb: 91, 42, 78;

  /* Neutrals */
  --color-ink: #000;
  --color-ink-soft: #565759;
  --color-ink-muted: rgba(0, 0, 0, 0.6);
  --color-surface: #fff;
  --color-surface-alt: #f7f3f6;
  --color-surface-alt-2: #efe4ec;
  --color-footer-bg: #1F0B1C;
  --color-footer-text: #fff;
  --color-overlay: rgba(0, 0, 0, 0.6);

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-pill: 999px;
  --radius-circle: 50%;

  /* Shadows */
  --shadow-card: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-modal: 0 5px 13.4px rgba(0, 0, 0, 0.2);
  --shadow-float: 0 0 16px rgba(0, 0, 0, 0.2);
  --shadow-nav: 0 5px 14px rgba(0, 0, 0, 0.3);

  /* Layout */
  --container: min(1440px, 96vw);
  --container-narrow: min(1200px, 92vw);
  --header-height: 90px;
  --bottom-bar-height: 88px;

  /* Typography */
  --font-display: "Urbanist", "Noto Sans SC", system-ui, sans-serif;
  --font-body: "Rubik", "Noto Sans SC", system-ui, sans-serif;
  --font-form: "Roboto Condensed", "Noto Sans SC", system-ui, sans-serif;

  /* Transitions */
  --t-fast: 0.2s ease;
  --t-base: 0.3s ease;
  --t-slow: 0.5s ease;
}

/* ================================================================ */
/*  Reset + Base                                                     */
/* ================================================================ */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-ink);
  background: var(--color-surface);
  overflow-x: hidden;
}

img, svg, video, iframe {
  display: block;
  max-width: 100%;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

p, h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

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

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

/* Reveal animation — short fade-up on entry, applied once via .is-pending → .is-in */
[data-anim] { transition: opacity 0.7s ease, transform 0.7s ease; }
[data-anim].is-pending { opacity: 0; transform: translateY(28px); }
[data-anim="fade-down"].is-pending { transform: translateY(-28px); }
[data-anim].is-in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  [data-anim] { opacity: 1; transform: none; }
}

/* ================================================================ */
/*  Button base                                                      */
/* ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: transform var(--t-fast), filter var(--t-fast), background var(--t-fast);
  padding: 14px 28px;
  color: #fff;
}
.btn:hover { filter: brightness(0.96); }
.btn:active { transform: scale(0.97); }

.btn--accent { background: var(--color-brand-accent); }
.btn--secondary { background: var(--color-brand-secondary); }
.btn--primary { background: var(--color-brand-primary); }

/* ================================================================ */
/*  Site Header                                                      */
/* ================================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 24px calc((100% - var(--container)) / 2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
}
.site-header[data-state="scrolled"]::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-brand-primary);
  opacity: 0.5;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  filter: drop-shadow(var(--shadow-nav));
  z-index: -1;
}

.site-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  pointer-events: auto;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0 24px;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 20px;
}

.site-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 43px;
  color: #fff;
  text-decoration: none;
  position: relative;
  transition: color var(--t-fast), transform var(--t-fast);
}
.site-nav__link:hover { color: var(--color-brand-accent); transform: translateY(-2px); }

.site-nav__chev {
  width: 16px;
  height: 10px;
  fill: currentColor;
}

.site-nav__link svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* Phone bubble on hover */
.site-nav__contact { position: relative; }
.site-nav__bubble {
  position: absolute;
  top: calc(100% + 9px);
  right: 0;
  background: #fff;
  color: #000;
  border-radius: var(--radius-sm);
  padding: 16px 24px;
  font-size: 20px;
  font-family: var(--font-body);
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity var(--t-base), transform var(--t-base);
}
.site-nav__bubble::before {
  content: '';
  position: absolute;
  top: -10px;
  right: 24px;
  border-style: solid;
  border-width: 0 9px 10px 9px;
  border-color: transparent transparent #fff transparent;
}
.site-nav__contact:hover .site-nav__bubble {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================================ */
/*  Hero                                                             */
/* ================================================================ */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 100vh;
  padding: var(--header-height) 24px 80px;
  overflow: hidden;
  color: #fff;
}
.hero__slider {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}
.hero__slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  animation: heroSlideFade 12s infinite;
  will-change: opacity, transform;
}
.hero__slide--1 {
  background-image: url('../img/hero-1.jpg');
  animation-delay: 0s;
}
.hero__slide--2 {
  background-image: url('../img/hero-2.jpg');
  animation-delay: 6s;
}
@keyframes heroSlideFade {
  0%   { opacity: 0; transform: scale(1.08); }
  8%   { opacity: 1; }
  42%  { opacity: 1; }
  50%  { opacity: 0; transform: scale(1.00); }
  100% { opacity: 0; transform: scale(1.00); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__slide { animation: none; opacity: 1; }
  .hero__slide--2 { opacity: 0; }
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.02) 0%, rgba(0,0,0,0.12) 60%, rgba(0,0,0,0.22) 100%);
  z-index: -1;
}

.hero__logo {
  width: 96px;
  margin-bottom: 18px;
}
.hero__logo img { width: 100%; height: auto; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.25)); }

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 72px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -1px;
  text-transform: uppercase;
  max-width: 18ch;
  margin-bottom: 14px;
  text-shadow: 0 4px 18px rgba(0,0,0,0.25);
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: capitalize;
  opacity: 0.95;
}

/* ================================================================ */
/*  Advantages                                                       */
/* ================================================================ */
.advantages {
  background: var(--color-surface);
  padding: 80px 24px;
}
.advantages__inner {
  width: var(--container-narrow);
  margin: 0 auto;
}
.advantages__title {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(20px, 2vw, 26px);
  letter-spacing: 8px;
  color: var(--color-brand-secondary);
  text-transform: uppercase;
  margin-bottom: 48px;
}
.advantages__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  background: var(--color-surface);
  border-radius: var(--radius-md);
}
.advantages__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 40px 24px;
  border-radius: var(--radius-md);
  background: var(--color-surface-alt);
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.advantages__item:nth-child(even) { background: var(--color-surface-alt-2); }
.advantages__item:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.advantages__icon {
  display: block;
  width: 56px;
  height: 56px;
  background: var(--color-ink-soft);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
.advantages__item:nth-child(1) .advantages__icon { -webkit-mask-image: url('../images/icon-certified.svg'); mask-image: url('../images/icon-certified.svg'); }
.advantages__item:nth-child(2) .advantages__icon { -webkit-mask-image: url('../images/icon-no-hidden.svg'); mask-image: url('../images/icon-no-hidden.svg'); }
.advantages__item:nth-child(3) .advantages__icon { -webkit-mask-image: url('../images/icon-lightning.svg'); mask-image: url('../images/icon-lightning.svg'); }
.advantages__item:nth-child(4) .advantages__icon { -webkit-mask-image: url('../images/icon-sterilize.svg'); mask-image: url('../images/icon-sterilize.svg'); }
.advantages__label {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  color: var(--color-ink-soft);
  line-height: 1.3;
}

/* ================================================================ */
/*  Contact                                                          */
/* ================================================================ */
.contact {
  position: relative;
  padding: 80px calc((100% - var(--container-narrow)) / 2);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  overflow: hidden;
  color: #fff;
}
.contact__bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}
.contact__bg--desktop { background-image: url('../images/contact-bg.jpg'); }
.contact__bg--mobile { background-image: url('../images/contact-bg.jpg'); display: none; }

.contact__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 48px;
}
.contact__stat-label {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 8px;
}
.contact__stat-value {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1;
}
.contact__stat-value--percent::before { content: '% '; font-size: 0.6em; opacity: 0.8; }
.contact__stat-network {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 600;
  color: var(--color-brand-accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.contact__right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact__cta {
  font-size: clamp(24px, 2.5vw, 32px);
  padding: 22px 32px;
  align-self: flex-start;
  box-shadow: var(--shadow-card);
}
.contact__cta svg { width: 36px; height: 32px; fill: currentColor; }
.contact__hours {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact__hours--single { grid-template-columns: 1fr; }
.contact__hours--single li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 14px 22px;
}
.contact__hours--single .contact__hours-time { font-size: 18px; }
.contact__hours li {
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
}
.contact__hours-label {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  opacity: 0.9;
}
.contact__hours-time {
  font-family: var(--font-body);
  font-size: 14px;
  opacity: 0.95;
}
.contact__hours-tel {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  margin-top: 4px;
}

/* ================================================================ */
/*  Location Map                                                     */
/* ================================================================ */
.location-map {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 80px 0 0;
}
.location-map__left {
  text-align: center;
  padding: 0 24px;
}
.location-map__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--color-brand-primary);
}
.location-map__address {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  color: var(--color-ink-soft);
}
.location-map__right {
  width: 100%;
  height: clamp(320px, 38vw, 480px);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.location-map__right iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ================================================================ */
/*  Stores Carousel                                                  */
/* ================================================================ */
.stores {
  background: var(--color-brand-secondary);
  padding: 90px 0 0;
  color: #fff;
}
.stores__title {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  letter-spacing: normal;
  text-transform: uppercase;
  margin: 0 24px 48px;
}
.stores__carousel {
  overflow: hidden;
  width: 100%;
  padding-left: calc((100% - var(--container)) / 2);
}
.stores__track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 8px;
  padding-right: 24px;
}
.stores__track::-webkit-scrollbar { display: none; }
.stores__slide {
  flex: 0 0 clamp(280px, 27vw, 388px);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.stores__img {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(0,0,0,0.15);
}
.stores__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.stores__slide:hover .stores__img img { transform: scale(1.05); }
.stores__name {
  text-align: center;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: capitalize;
}

/* Limited-Time Surprise Event banner */
.stores__banner {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 24 / 10;
  background-image: url('../images/event-banner.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.stores__banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center,
    rgba(20, 4, 40, 0.55) 0%,
    rgba(20, 4, 40, 0.35) 50%,
    rgba(20, 4, 40, 0.15) 100%);
  pointer-events: none;
}
.stores__banner:focus-visible { outline: 3px solid #c8a8ff; outline-offset: -6px; }

.stores__banner__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 24px;
  color: #fff;
  text-align: center;
  z-index: 1;
}
.stores__banner__tag {
  display: inline-block;
  padding: 8px 24px;
  background: linear-gradient(135deg, #b89cff 0%, #d6b8ff 100%);
  color: #1a0030;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: lowercase;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(184, 156, 255, 0.4);
}
.stores__banner__title {
  margin: 0;
  font-family: var(--font-display), 'Playfair Display', serif;
  font-size: clamp(48px, 8vw, 108px);
  font-weight: 600;
  font-style: italic;
  letter-spacing: 1px;
  line-height: 1.05;
  color: #fff;
  text-shadow: 0 6px 28px rgba(0, 0, 0, 0.55);
  white-space: nowrap;
}
.stores__banner__cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 8px 8px 8px 32px;
  background: linear-gradient(180deg, #d8ccff 0%, #b8a8ff 100%);
  color: #fff;
  text-shadow: 0 2px 6px rgba(60, 30, 120, 0.5);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 999px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    0 12px 30px rgba(138, 123, 255, 0.45);
}
.stores__banner__cta-text { padding-block: 4px; }
.stores__banner__cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #1a0030;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35);
  flex-shrink: 0;
}
.stores__banner__cta-arrow svg { width: 22px; height: 14px; }

@media (max-width: 768px) {
  .stores__banner { aspect-ratio: 16 / 11; }
  .stores__banner__overlay { gap: 14px; }
  .stores__banner__tag { font-size: 14px; padding: 6px 18px; letter-spacing: 1.5px; }
  .stores__banner__title { white-space: normal; font-size: clamp(40px, 11vw, 64px); }
  .stores__banner__cta { padding: 6px 6px 6px 22px; font-size: 18px; gap: 10px; }
  .stores__banner__cta-arrow { width: 38px; height: 38px; }
  .stores__banner__cta-arrow svg { width: 18px; height: 12px; }
}

/* ================================================================ */
/*  Technicians                                                      */
/* ================================================================ */
.technicians {
  background: var(--color-surface);
  padding: 90px 24px;
}
.technicians__inner {
  width: min(1368px, 96vw);
  margin: 0 auto;
}
.technicians__title {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(44px, 5.2vw, 72px);
  font-weight: 600;
  letter-spacing: normal;
  text-transform: uppercase;
  margin-bottom: 56px;
  color: var(--color-brand-secondary);
}
.technicians__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.technicians__list--services {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 500px;
  margin: 0 auto;
}
.technicians__list--services .technicians__photo {
  aspect-ratio: 1 / 1;
  background: #f0e9df;
}
.technicians__list--services .technicians__photo img {
  object-position: center;
}
.technicians__card-btn {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.technicians__card-btn:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.20);
}
.technicians__card-btn:focus-visible {
  outline: 3px solid var(--color-brand-accent, #d4a857);
  outline-offset: 4px;
}
.technicians__hint {
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-brand-accent, #d4a857);
  font-weight: 600;
  margin-top: 4px;
}
.technicians__list--services .technicians__info {
  padding: 24px 28px 28px;
}
.technicians__card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  background: transparent;
  transition: transform var(--t-base);
}
.technicians__card:hover { transform: translateY(-4px); }

.technicians__photo {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.technicians__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.technicians__card:hover .technicians__photo img { transform: scale(1.04); }
.technicians__total {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(4px);
}

.technicians__info {
  position: relative;
  padding: 32px 28px 96px;
  background: var(--color-surface-alt);
}
.technicians__name {
  font-family: var(--font-display);
  font-size: clamp(22px, 1.8vw, 28px);
  font-weight: 600;
  letter-spacing: normal;
  text-transform: uppercase;
  color: var(--color-ink-soft);
  margin-bottom: 12px;
}
.technicians__price {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  color: var(--color-ink-soft);
}
.technicians__tag {
  position: absolute;
  top: -22px;
  left: 24px;
  background: var(--color-brand-accent);
  color: #fff;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 6px 18px;
  border-radius: 0;
  text-transform: uppercase;
}

/* ================================================================ */
/*  Services (tabs + cards)                                          */
/* ================================================================ */
.services {
  background: var(--color-brand-accent);
  padding: 80px 0;
  color: #fff;
}
.services__tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0 24px 48px;
}
.services__tab {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 28px;
  color: rgba(255, 255, 255, 0.6);
  border-bottom: 3px solid transparent;
  transition: color var(--t-base), border-color var(--t-base);
  cursor: pointer;
}
.services__tab:hover { color: #fff; }
.services__tab.is-active {
  color: #fff;
  border-bottom-color: #fff;
}

/* Service Staff section */
.service-staff { padding: 80px 24px; }
.service-staff__title {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 56px;
  color: #fff;
}
.service-staff__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}
.service-staff__card {
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  overflow: hidden;
  backdrop-filter: blur(4px);
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.service-staff__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}
.service-staff__photo {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.15);
}
.service-staff__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.service-staff__card:hover .service-staff__photo img { transform: scale(1.05); }
.service-staff__info {
  padding: 22px 24px 26px;
  color: #fff;
  text-align: center;
}
.service-staff__name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.service-staff__stats {
  display: flex;
  justify-content: center;
  gap: 28px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.service-staff__stats li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-family: var(--font-body);
}
.service-staff__stats span {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.7;
}
.service-staff__stats strong {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
}
@media (max-width: 1024px) {
  .service-staff__list { grid-template-columns: repeat(2, 1fr); gap: 22px; max-width: 720px; }
}
@media (max-width: 480px) {
  .service-staff__list { grid-template-columns: 1fr; max-width: 360px; }
  .service-staff__title { margin-bottom: 36px; }
}

.services__carousel {
  overflow: hidden;
  padding: 0 calc((100% - var(--container)) / 2);
}
.services__track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 8px;
  scroll-behavior: smooth;
}
.services__track::-webkit-scrollbar { display: none; }
.services__card {
  flex: 0 0 calc((100% - 72px) / 4);
  scroll-snap-align: start;
  background: var(--color-surface);
  color: var(--color-ink);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  transition: opacity var(--t-base), transform var(--t-base);
}
.services__card[hidden] { display: none; }
.services__img { aspect-ratio: 1 / 1; overflow: hidden; }
.services__img img { width: 100%; height: 100%; object-fit: cover; }
.services__info { padding: 20px 22px 24px; }
.services__name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.services__original {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-ink-soft);
  text-decoration: line-through;
  display: inline-block;
}
.services__now {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-brand-accent);
  margin-top: 4px;
}

/* ================================================================ */
/*  Merchant Comparison                                              */
/* ================================================================ */
.comparison {
  background: var(--color-surface-alt-2);
  padding: 90px 24px;
  text-align: center;
}
.comparison__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  letter-spacing: normal;
  text-transform: uppercase;
  margin-bottom: 56px;
  color: var(--color-ink-soft);
}
.comparison__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  width: min(1368px, 96vw);
  margin: 0 auto;
}
.comparison__item {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: transparent;
}
.comparison__label {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 72px;
  background: var(--color-brand-secondary);
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(24px, 2.4vw, 36px);
  font-weight: 400;
  letter-spacing: normal;
  text-transform: capitalize;
}
.comparison__count-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  background: var(--color-surface);
  color: var(--color-brand-secondary);
  font-family: var(--font-display);
  font-weight: 300;
  padding: 16px 12px 28px;
  min-height: 136px;
}
.comparison__count { font-size: clamp(72px, 10vw, 144px); line-height: 1; }
.comparison__unit { font-size: clamp(56px, 8vw, 120px); line-height: 1; }

/* ================================================================ */
/*  Comments                                                         */
/* ================================================================ */
.comments {
  position: relative;
  padding: 80px calc((100% - var(--container-narrow)) / 2);
  color: var(--color-ink);
  overflow: hidden;
}
.comments__bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}
.comments__bg--desktop { background-image: url('../images/comment-bg-desktop.jpg'); }
.comments__bg--mobile { background-image: url('../images/comment-bg-mobile.jpg'); display: none; }
.comments::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.55);
  z-index: -1;
}

.comments__main {
  display: grid;
  grid-template-columns: 240px 1fr;
  align-items: center;
  gap: 48px;
}
.comments__avatars {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.comments__avatar {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-circle);
  overflow: hidden;
  opacity: 0.55;
  transform: scale(0.85);
  transition: opacity var(--t-base), transform var(--t-base);
  border: 3px solid rgba(255,255,255,0.8);
  background: #fff;
}
.comments__avatar img { width: 100%; height: 100%; object-fit: cover; }
.comments__avatar.is-active {
  opacity: 1;
  transform: scale(1);
  border-color: var(--color-brand-primary);
  box-shadow: 0 8px 24px rgba(129, 187, 205, 0.45);
}

.comments__content {
  position: relative;
  min-height: 220px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-md);
  padding: 32px 40px;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-card);
}
.comments__quote {
  position: absolute;
  inset: 32px 40px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity var(--t-base), transform var(--t-base);
  pointer-events: none;
}
.comments__quote.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
  inset: auto;
}
.comments__name {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-brand-primary);
}
.comments__msg {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.55;
  color: var(--color-ink);
}
.comments__project {
  margin-top: 16px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-brand-accent);
}

.comments__pagination {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}
.comments__dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-circle);
  background: rgba(0, 0, 0, 0.25);
  transition: background var(--t-base), transform var(--t-base);
}
.comments__dot.is-active {
  background: var(--color-brand-primary);
  transform: scale(1.3);
}

/* ================================================================ */
/*  Guarantee                                                        */
/* ================================================================ */
.guarantee {
  background: var(--color-brand-accent);
  padding: 80px 24px;
  color: #fff;
}
.guarantee__title {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -1px;
  text-transform: uppercase;
  margin-bottom: 56px;
}
.guarantee__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  width: var(--container-narrow);
  margin: 0 auto;
}
.guarantee__item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
  padding: 24px;
}
.guarantee__num {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 800;
  line-height: 1;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: -2px;
}
.guarantee__text {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  max-width: 28ch;
}

/* ================================================================ */
/*  Partners                                                         */
/* ================================================================ */
.partners {
  background: var(--color-surface);
  padding: 80px 24px;
  text-align: center;
}
.partners__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -1px;
  text-transform: uppercase;
  margin-bottom: 48px;
  color: var(--color-ink-soft);
}
.partners__list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  width: var(--container-narrow);
  margin: 0 auto;
  align-items: center;
}
.partners__item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  filter: grayscale(1) opacity(0.7);
  transition: filter var(--t-base), transform var(--t-base);
}
.partners__item img { max-width: 100%; height: auto; max-height: 60px; }
.partners__item:hover { filter: none; transform: scale(1.04); }

/* ================================================================ */
/*  Site Footer                                                      */
/* ================================================================ */
.site-footer {
  background: var(--color-footer-bg);
  color: var(--color-footer-text);
  padding: 80px 24px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.site-footer__logo {
  width: 80px;
  margin-bottom: 8px;
}
.site-footer__logo img { width: 100%; filter: brightness(0) invert(1); }
.site-footer__address {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
}
.site-footer__tel {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 1px;
}
.site-footer__tel a { color: var(--color-brand-accent); }

.site-footer__social {
  display: flex;
  gap: 20px;
  margin-top: 12px;
}
.site-footer__icon {
  display: block;
  width: 32px;
  height: 32px;
  background: var(--color-footer-text);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  transition: transform var(--t-base), background var(--t-base);
}
.site-footer__icon--instagram { -webkit-mask-image: url('../images/icon-instagram.svg'); mask-image: url('../images/icon-instagram.svg'); }
.site-footer__icon--x { -webkit-mask-image: url('../images/icon-x.svg'); mask-image: url('../images/icon-x.svg'); }
.site-footer__icon--facebook { -webkit-mask-image: url('../images/icon-facebook.svg'); mask-image: url('../images/icon-facebook.svg'); }
.site-footer__icon--youtube { -webkit-mask-image: url('../images/icon-youtube.svg'); mask-image: url('../images/icon-youtube.svg'); }
.site-footer__icon:hover { transform: scale(1.2); background: var(--color-brand-accent); }

.site-footer__copyright {
  margin-top: 32px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 1px;
}

/* ================================================================ */
/*  Site Floating                                                    */
/* ================================================================ */
.site-floating { pointer-events: none; }
.site-floating > * { pointer-events: auto; }

.site-floating__right {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  z-index: 100;
  filter: drop-shadow(var(--shadow-float));
}
.site-floating__btn {
  width: 64px;
  height: 64px;
  position: relative;
  background-image: url('../images/floating-right-bg.png');
  background-repeat: no-repeat;
  background-size: 100% auto;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.5px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 6px;
  transition: transform var(--t-fast);
}
.site-floating__btn:hover { transform: translateX(-4px); }
.site-floating__btn--offers { background-position: top center; }
.site-floating__btn--contact {
  background-position: bottom center;
  color: #fff;
}

.site-floating__bubble {
  position: absolute;
  top: 50%;
  right: calc(100% + 12px);
  transform: translateY(-50%) translateX(20px);
  background: #fff;
  color: #000;
  border-radius: var(--radius-sm);
  padding: 12px 20px;
  font-size: 18px;
  font-family: var(--font-body);
  white-space: nowrap;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-base), transform var(--t-base);
}
.site-floating__bubble::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -10px;
  transform: translateY(-50%);
  border-style: solid;
  border-width: 9px 0 9px 10px;
  border-color: transparent transparent transparent #fff;
}
.site-floating__btn--contact:hover .site-floating__bubble {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.site-floating__bottom {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 96%;
  max-width: 700px;
  display: flex;
  gap: 12px;
  z-index: 100;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.25));
}
.site-floating__bottom li { flex: 1; }
.site-floating__bottom .btn {
  width: 100%;
  height: 64px;
  font-size: clamp(16px, 2vw, 22px);
  padding: 0 16px;
}

.site-floating__top {
  position: fixed;
  bottom: 100px;
  right: 16px;
  width: 56px;
  height: 56px;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  background: var(--color-surface);
  color: var(--color-ink-soft);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-circle);
  box-shadow: var(--shadow-float);
  z-index: 99;
  transition: transform var(--t-fast);
}
.site-floating__top svg { width: 16px; height: 10px; fill: currentColor; }
.site-floating__top:hover { transform: translateY(-2px); }
.site-floating__top.is-visible { display: flex; }

/* ================================================================ */
/*  Modal                                                            */
/* ================================================================ */
.modal {
  position: fixed;
  inset: 0;
  background: var(--color-overlay);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 32px;
  z-index: 9999;
  padding: 16px;
}
.modal[hidden] { display: none; }

.modal__panel {
  background: #EFEFEF;
  border-radius: var(--radius-md);
  padding: 40px;
  width: 100%;
  max-width: 436px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  animation: modal-in 0.2s ease;
}
@keyframes modal-in {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.modal__title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -1px;
  text-align: center;
  color: var(--color-ink);
  text-transform: uppercase;
}

.modal__intro {
  width: 100%;
  margin: -8px 0 0;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
  color: rgba(0, 0, 0, 0.6);
}

.modal__form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.modal__field input,
.modal__field select,
.modal__field textarea {
  width: 100%;
  height: 56px;
  padding: 16px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  background: #fff;
  font-family: var(--font-form);
  font-size: 18px;
  color: var(--color-ink);
  transition: border-color var(--t-fast);
}
.modal__field textarea {
  height: 110px;
  resize: vertical;
  padding-top: 14px;
}
.modal__field input::placeholder,
.modal__field textarea::placeholder {
  color: rgba(0, 0, 0, 0.45);
}
.modal__field input:focus,
.modal__field select:focus,
.modal__field textarea:focus {
  outline: none;
  border-color: var(--color-brand-primary);
}
.modal__submit {
  width: 100%;
  height: 56px;
  font-size: 22px;
  margin-top: 8px;
}

.modal__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
}
.modal__close svg { width: 100%; height: 100%; }
.modal__close--inline {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 28px;
  height: 28px;
}

/* Price modal panel */
.modal__panel--price {
  position: relative;
  max-width: 420px;
  padding: 36px 36px 32px;
  gap: 18px;
}
.modal__panel--price .modal__close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  color: var(--color-ink);
  cursor: pointer;
}
.modal__panel--price .modal__close:hover { color: var(--color-brand-primary); }
.price-list {
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 16px 22px;
  background: #fff;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--color-ink);
}
.price-list__time { letter-spacing: 1px; }
.price-list__amount {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--color-brand-accent, #d4a857);
}
.modal__panel--price .modal__book {
  width: 100%;
  height: 52px;
  font-size: 18px;
  margin-top: 4px;
}

/* IM modal panel */
.modal__panel--im {
  position: relative;
  max-width: 720px;
  height: min(720px, 92vh);
  padding: 24px 24px 16px;
  background: #EFEFEF;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: stretch;
}
.im__header {
  display: flex;
  align-items: center;
  gap: 16px;
}
.im__logo {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-circle);
  background: var(--color-brand-primary);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.im__logo img { width: 68%; height: 68%; object-fit: contain; filter: brightness(0) invert(1); }
.im__name {
  font-family: var(--font-form);
  font-size: 22px;
  font-weight: 500;
  color: var(--color-ink);
}

.im__messages {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow-y: auto;
}
.im__msg--system {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}
.im__msg p {
  background: #fff;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-family: var(--font-form);
  font-size: 16px;
  color: var(--color-ink);
  max-width: 90%;
}
.im__suggestion {
  background: var(--color-surface);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  font-family: var(--font-form);
  font-size: 14px;
  color: var(--color-brand-primary);
  transition: background var(--t-fast), color var(--t-fast);
}
.im__suggestion:hover { background: var(--color-brand-primary); color: #fff; }

.im__compose {
  display: flex;
  gap: 12px;
  align-items: center;
  padding-top: 8px;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.im__input-wrap {
  flex: 1;
  background: #fff;
  border-radius: var(--radius-sm);
  border: 2px solid #fff;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.im__input-wrap:focus-within {
  border-color: var(--color-brand-primary);
  box-shadow: var(--shadow-modal);
}
.im__input {
  width: 100%;
  padding: 14px 20px;
  border: 0;
  background: transparent;
  font-family: var(--font-form);
  font-size: 16px;
}
.im__input:focus { outline: none; }
.im__send {
  background: var(--color-brand-primary);
  color: #fff;
  padding: 12px 26px;
  border-radius: var(--radius-sm);
  font-family: var(--font-form);
  font-size: 20px;
  font-weight: 500;
  transition: transform var(--t-fast);
}
.im__send:hover { transform: translateY(-2px); }
.im__send:active { transform: scale(0.96); }

/* ================================================================ */
/*  Responsive                                                       */
/* ================================================================ */
@media (max-width: 1100px) {
  .stores__slide,
  .services__card { flex-basis: calc((100% - 48px) / 3); }
  .technicians__list { grid-template-columns: repeat(2, 1fr); }
  .partners__list { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 820px) {
  :root { --header-height: 72px; }

  .site-header { padding: 14px 16px; }
  .site-nav__list { gap: 14px; padding: 0; font-size: 15px; }
  .site-nav__link { height: 36px; gap: 6px; }
  .site-nav__link svg { width: 20px; height: 20px; }
  .site-nav__link span { display: inline; }
  .site-nav__contact .site-nav__link span:not(.site-nav__bubble) { display: none; }
  .site-nav__bubble { font-size: 13px; padding: 8px 12px; }

  /* Hero — image keeps its native aspect on tablets */
  .hero {
    height: auto;
    min-height: 0;
    padding: calc(var(--header-height) + 16px) 0 40px;
    justify-content: flex-start;
    background: #1a0030;
  }
  .hero__slider {
    position: relative;
    inset: auto;
    width: 100%;
    aspect-ratio: 24 / 10;
    margin-bottom: 24px;
    z-index: 0;
  }
  .hero__slide { background-size: cover; background-position: center; }
  .hero::after { display: none; }
  .hero__logo,
  .hero__title,
  .hero__subtitle { padding-inline: 16px; }
  .hero__title { font-size: clamp(26px, 7vw, 44px); line-height: 1.1; }
  .hero__subtitle { font-size: 14px; }
  .hero__logo { width: 60px; margin-bottom: 12px; }

  .advantages { padding: 56px 16px; }
  .advantages__list { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .advantages__title { margin-bottom: 32px; }

  .contact { grid-template-columns: 1fr; padding: 56px 24px; gap: 32px; }
  .contact__bg--desktop { display: none; }
  .contact__bg--mobile { display: block; }
  .contact__stats { grid-template-columns: 1fr 1fr; }
  .contact__stats > :nth-child(3) { grid-column: span 2; }
  .contact__hours { grid-template-columns: 1fr 1fr; }

  .location-map { grid-template-columns: 1fr; gap: 24px; padding: 56px 24px; }

  .stores__slide,
  .services__card { flex-basis: calc((100% - 24px) / 2); }

  .services__tabs { gap: 0; }
  .services__tab { padding: 8px 18px; }

  .technicians { padding: 56px 16px; }
  .technicians__list { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .technicians__list--services { grid-template-columns: 1fr; gap: 24px; max-width: 480px; }

  .comments { padding: 56px 16px; }
  .comments__bg--desktop { display: none; }
  .comments__bg--mobile { display: block; }
  .comments__main { grid-template-columns: 1fr; gap: 24px; }
  .comments__avatars { flex-direction: row; justify-content: center; }
  .comments__content { padding: 24px 24px; min-height: 180px; }

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

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

  .site-floating__top { bottom: 90px; right: 12px; }
  .site-floating__right { display: none; }
}

@media (max-width: 600px) {
  /* Header / nav — compact phone layout */
  :root { --header-height: 64px; }
  .site-header { padding: 10px 12px; }
  .site-nav__list { gap: 10px; font-size: 13px; }
  .site-nav__list--left { gap: 8px; }
  .site-nav__list--left li:nth-child(4) { display: none; } /* hide Service item, About Us covers it */
  .site-nav__link { height: 32px; gap: 4px; }
  .site-nav__link svg { width: 18px; height: 18px; }
  .site-nav__list--right .site-nav__link span:not(.site-nav__bubble) { display: none; }
  .site-nav__bubble { font-size: 12px; padding: 6px 10px; right: -4px; top: calc(100% + 6px); }

  /* Hero — phone: image keeps native ratio, text below */
  .hero { padding: calc(var(--header-height) + 12px) 0 28px; }
  .hero__slider { aspect-ratio: 16 / 11; margin-bottom: 18px; }
  .hero__logo { width: 52px; margin-bottom: 10px; }
  .hero__title { font-size: clamp(22px, 7vw, 38px); }
  .hero__subtitle { font-size: 13px; letter-spacing: 2px; }

  /* Stores banner */
  .stores { padding: 60px 0 0; }
  .stores__title { font-size: clamp(22px, 6vw, 32px); margin: 0 16px 28px; }

  /* Tech / services lists */
  .technicians { padding: 48px 16px; }
  .technicians__title { font-size: clamp(32px, 9vw, 48px); margin-bottom: 32px; }
  .technicians__list--services { gap: 18px; max-width: 360px; }
  .technicians__list--services .technicians__info { padding: 18px 20px 22px; }
  .technicians__name { font-size: 20px; margin-bottom: 8px; }

  /* Service Staff */
  .service-staff { padding: 56px 16px; }
  .service-staff__title { font-size: clamp(34px, 10vw, 52px); margin-bottom: 32px; }
  .service-staff__list { grid-template-columns: 1fr; gap: 18px; max-width: 360px; }
  .service-staff__info { padding: 18px 20px 22px; }
  .service-staff__name { font-size: 22px; margin-bottom: 10px; }

  /* Stats */
  .contact__stats { grid-template-columns: 1fr; gap: 20px; text-align: center; }
  .contact__stats > :nth-child(3) { grid-column: auto; }
  .contact__stat-value { font-size: 44px; }
  .contact__cta { font-size: 18px; padding: 18px 24px; }
  .contact__hours--single li { padding: 12px 14px; gap: 8px 16px; }

  /* Stores hero banner overlay */
  .stores__banner__tag { font-size: 12px; padding: 5px 14px; }
  .stores__banner__title { font-size: clamp(28px, 10vw, 44px); }
  .stores__banner__cta { font-size: 15px; padding: 6px 6px 6px 18px; gap: 8px; }
  .stores__banner__cta-arrow { width: 34px; height: 34px; }
  .stores__banner__cta-arrow svg { width: 16px; height: 11px; }

  /* Location */
  .location-map__title { font-size: clamp(28px, 7vw, 40px); }
  .location-map__address { font-size: 16px; }
  .location-map__right iframe { min-height: 260px; }

  /* Comments */
  .comments__avatar { width: 52px; height: 52px; }
  .comments__name { font-size: 22px; }
  .comments__msg { font-size: 15px; }

  /* Footer */
  .site-footer { padding: 48px 20px 24px; gap: 16px; }
  .site-footer__logo img { width: 110px; }
  .site-footer__address { font-size: 14px; }
  .site-footer__tel { font-size: 20px; }
  .site-footer__copyright { font-size: 11px; }

  /* Floating */
  .site-floating__bottom { gap: 6px; padding: 8px; }
  .site-floating__bottom .btn { font-size: 13px; padding: 10px 12px; }
  .site-floating__top { width: 44px; height: 44px; }

  /* Modal */
  .modal { padding: 12px; }
  .modal__panel { padding: 28px 22px; }
  .modal__title { font-size: 22px; }
  .modal__panel--price { padding: 28px 22px 24px; }
  .price-list li { padding: 12px 16px; font-size: 16px; }
  .price-list__amount { font-size: 22px; }

  /* About / Contact subpages compact */
  .page-hero { min-height: 240px; padding-top: calc(var(--header-height) + 24px); padding-bottom: 40px; }
  .page-hero__title { font-size: clamp(36px, 10vw, 56px); }
  .page-hero__eyebrow { letter-spacing: 2px; font-size: 12px; }
  .page-hero__subtitle { font-size: 14px; }

  .about-story { padding: 56px 16px; gap: 28px; }
  .about-story__title { font-size: clamp(26px, 7vw, 36px); }
  .about-story__copy p { font-size: 15px; }

  .about-values, .contact-info { padding: 56px 16px; }
  .about-values__title { font-size: clamp(28px, 8vw, 40px); margin-bottom: 32px; }
  .about-values__item { padding: 28px 24px 26px; }

  .about-cta { padding: 48px 18px; }
  .about-cta h2 { font-size: clamp(24px, 7vw, 34px); }
  .about-cta p { font-size: 15px; }

  .contact-form-row { padding: 0 16px 56px; gap: 28px; }
  .contact-form-row__title { font-size: clamp(24px, 7vw, 32px); }
  .contact-form-row__map { min-height: 280px; }
}

@media (max-width: 480px) {
  .stores__slide,
  .services__card { flex-basis: calc(100% - 8px); }
  .services__tab { font-size: 18px; padding: 6px 12px; letter-spacing: 1px; }

  /* Push floating right column out of the way on tiny screens */
  .site-floating__top { bottom: 88px; right: 10px; }
}

/* ================================================================ */
/*  About / Contact subpages — shared page hero + content layouts    */
/* ================================================================ */
.site-nav__link--current { color: var(--color-brand-accent, #d4a857); }
.site-nav__link--current::after {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: currentColor;
  margin: 4px auto 0;
  border-radius: 2px;
}

/* Page hero (banner shared by about/contact) */
.page-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--header-height) + 56px) 24px 80px;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(135deg, rgba(48, 12, 80, 0.85) 0%, rgba(20, 4, 40, 0.70) 100%),
    url('../images/hero-slide-2.jpg');
  background-size: cover;
  background-position: center;
  z-index: -1;
}
.page-hero__inner {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.page-hero__eyebrow {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  opacity: 0.85;
  margin: 0;
}
.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 700;
  letter-spacing: -1px;
  margin: 0;
  text-shadow: 0 6px 28px rgba(0, 0, 0, 0.4);
}
.page-hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 400;
  margin: 0;
  opacity: 0.9;
  font-style: italic;
}

/* About: Story */
.about-story {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 24px;
}
.about-story__media {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.18);
  aspect-ratio: 16 / 10;
  width: 100%;
}
.about-story__media img { width: 100%; height: 100%; object-fit: cover; }
.about-story__copy { display: flex; flex-direction: column; gap: 18px; }
.about-story__eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-brand-accent, #d4a857);
  margin: 0;
}
.about-story__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin: 0;
  color: var(--color-ink, #1a1a1a);
}
.about-story__copy p {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-ink-soft, #555);
  margin: 0;
}
.about-story__cta { align-self: flex-start; margin-top: 8px; padding: 14px 32px; }

/* About: Values */
.about-values {
  background: #f7f2ec;
  padding: 96px 24px;
}
.about-values__title {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 600;
  letter-spacing: -0.5px;
  margin: 0 0 56px;
  color: var(--color-ink, #1a1a1a);
}
.about-values__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}
.about-values__item {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 36px 28px 32px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.about-values__item:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.12);
}
.about-values__icon {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--color-brand-accent, #d4a857);
  letter-spacing: -1px;
  margin-bottom: 18px;
}
.about-values__item h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 12px;
  color: var(--color-ink, #1a1a1a);
}
.about-values__item p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-ink-soft, #555);
  margin: 0;
}

/* Shared CTA band */
.about-cta {
  background: linear-gradient(135deg, #2a0e54 0%, #4a1f7a 100%);
  padding: 80px 24px;
  color: #fff;
  text-align: center;
}
.about-cta__inner { max-width: 720px; margin: 0 auto; }
.about-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 600;
  margin: 0 0 12px;
  letter-spacing: -0.5px;
}
.about-cta p {
  font-family: var(--font-body);
  font-size: 17px;
  margin: 0 0 28px;
  opacity: 0.9;
}
.about-cta .btn { padding: 16px 40px; font-size: 18px; }

/* Contact info cards */
.contact-info {
  padding: 96px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.contact-info__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-info__card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  text-align: center;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
  transition: transform var(--t-base);
}
.contact-info__card:hover { transform: translateY(-4px); }
.contact-info__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(212, 168, 87, 0.15);
  color: var(--color-brand-accent, #d4a857);
}
.contact-info__icon svg { width: 28px; height: 28px; }
.contact-info__card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-ink, #1a1a1a);
}
.contact-info__card p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-ink-soft, #555);
  margin: 0;
}
.contact-info__card a { color: inherit; text-decoration: none; }
.contact-info__card a:hover { color: var(--color-brand-accent, #d4a857); }

/* Contact form + map row */
.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 96px;
}
.contact-form-row__form { display: flex; flex-direction: column; gap: 14px; }
.contact-form-row__eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-brand-accent, #d4a857);
  margin: 0;
}
.contact-form-row__title {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 600;
  letter-spacing: -0.5px;
  margin: 0;
  color: var(--color-ink, #1a1a1a);
}
.contact-form-row__lead {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-ink-soft, #555);
  margin: 0 0 12px;
}
.contact-form-row__fields {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-form-row__fields .modal__field input,
.contact-form-row__fields .modal__field select,
.contact-form-row__fields .modal__field textarea {
  background: #f5f5f5;
}
.contact-form-row__map {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.10);
  min-height: 460px;
}
.contact-form-row__map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* Subpage responsive */
@media (max-width: 1024px) {
  .about-values__list { grid-template-columns: repeat(2, 1fr); }
  .contact-info__list { grid-template-columns: repeat(2, 1fr); }
  .about-story { grid-template-columns: 1fr; gap: 40px; padding: 72px 24px; }
  .about-story__media { max-width: 100%; aspect-ratio: 16 / 10; }
  .contact-form-row { grid-template-columns: 1fr; gap: 40px; }
  .contact-form-row__map { min-height: 360px; }
}
@media (max-width: 600px) {
  .about-values__list { grid-template-columns: 1fr; }
  .contact-info__list { grid-template-columns: 1fr; }
  .page-hero { min-height: 280px; padding-top: calc(var(--header-height) + 36px); padding-bottom: 56px; }
  .about-values, .contact-info { padding: 64px 20px; }
  .about-cta { padding: 56px 20px; }
}
