:root {
  --ink: #101820;
  --muted: #647070;
  --paper: #fffdfa;
  --soft: #f4eee9;
  --iris: #bd168e;
  --iris-dark: #4b0035;
  --coral: #e85d5a;
  --mint: #7ab8a4;
  --gold: #f3c95f;
  --line: rgba(16, 24, 32, 0.14);
  --shadow: 0 22px 70px rgba(16, 24, 32, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 12px clamp(18px, 4vw, 54px);
  background: rgba(255, 253, 250, 0.91);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 104px;
  height: auto;
}

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

.nav-links a,
.social-links a,
.service-card a {
  text-decoration: none;
}

.nav-links a:hover,
.social-links a:hover,
.service-card a:hover {
  color: var(--iris);
}

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

.lang-switch {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 850;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}

.button.primary {
  background: var(--ink);
  color: #fff;
}

.button.ghost {
  background: #fff;
  border-color: var(--line);
  color: var(--ink);
}

.button.compact {
  min-height: 42px;
  background: var(--iris);
  color: #fff;
}

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

.section-band {
  min-height: calc(100vh - 72px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(340px, 0.84fr);
  align-items: stretch;
  background: var(--iris-dark);
}

.hero-media {
  min-height: 560px;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04) contrast(0.98);
}

.hero-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px, 6vw, 86px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(75, 0, 53, 0.94), rgba(189, 22, 142, 0.84)),
    radial-gradient(circle at 80% 20%, rgba(243, 201, 95, 0.25), transparent 36%);
}

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

.hero .eyebrow {
  color: var(--gold);
}

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

h1 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(3.4rem, 9vw, 7rem);
  line-height: 0.88;
  letter-spacing: 0;
}

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

h3 {
  margin: 0 0 8px;
  font-size: 1.18rem;
  line-height: 1.15;
}

.lead {
  max-width: 650px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.04rem, 1.5vw, 1.28rem);
}

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

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

.trust-strip div {
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.trust-strip dt {
  color: rgba(255, 255, 255, 0.58);
}

dd {
  margin: 4px 0 0;
  font-weight: 750;
}

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

.quick-info a {
  min-width: 0;
  padding: 22px clamp(18px, 3vw, 44px);
  text-decoration: none;
  border-right: 1px solid var(--line);
}

.quick-info a:last-child {
  border-right: 0;
}

.quick-info span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quick-info strong {
  display: block;
  margin-top: 4px;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

.section {
  padding: clamp(58px, 8vw, 112px) clamp(18px, 5vw, 70px);
  scroll-margin-top: 92px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(240px, 0.38fr);
  align-items: end;
  gap: 34px;
  margin-bottom: 32px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -18px;
}

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

.service-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

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

.service-card div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

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

.service-card a {
  margin-top: auto;
  padding-top: 18px;
  color: var(--iris);
  font-weight: 850;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(300px, 0.5fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
  background: var(--soft);
}

.split p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.05rem;
}

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

.price-list div {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.price-list span {
  min-width: 0;
  color: var(--muted);
}

.price-list strong {
  white-space: nowrap;
}

.gallery-section {
  background: #fff;
}

.gallery {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.9fr;
  grid-auto-rows: minmax(180px, 24vw);
  gap: 12px;
}

.gallery button {
  display: block;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: var(--soft);
  cursor: zoom-in;
}

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

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.gallery button:hover img {
  transform: scale(1.025);
}

.proof {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 80px);
  background: var(--ink);
  color: #fff;
}

.proof .eyebrow {
  color: var(--gold);
}

.proof-grid {
  display: grid;
  gap: 12px;
}

.proof-grid article {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.proof-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.55fr);
  gap: 18px;
}

.contact-panel {
  padding: clamp(28px, 5vw, 54px);
  border-radius: 8px;
  background: var(--soft);
}

.contact-panel dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 30px 0;
}

.contact-panel dd a {
  text-decoration: none;
}

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

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

.social-links a {
  color: var(--iris);
  font-weight: 850;
}

.map-block {
  display: grid;
  min-height: 420px;
  place-items: end start;
  padding: 28px;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  background:
    linear-gradient(180deg, rgba(16, 24, 32, 0.12), rgba(16, 24, 32, 0.72)),
    url("assets/images/salon-street.jpg") center / cover;
}

.map-block span {
  max-width: 13ch;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 900;
  line-height: 0.96;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 28px clamp(18px, 5vw, 70px) 92px;
  color: rgba(255, 255, 255, 0.76);
  background: var(--iris-dark);
}

.site-footer p {
  margin: 0;
}

.mobile-cta {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 30;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.mobile-cta a {
  min-height: 54px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 850;
  text-decoration: none;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.mobile-cta a:last-child {
  border-right: 0;
}

.lightbox {
  width: min(94vw, 1080px);
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: #000;
  box-shadow: var(--shadow);
}

.lightbox::backdrop {
  background: rgba(16, 24, 32, 0.72);
}

.lightbox img {
  width: 100%;
  max-height: 86vh;
  object-fit: contain;
}

.lightbox button {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font-size: 1.6rem;
  cursor: pointer;
}

@media (max-width: 1040px) {
  .nav-links {
    display: none;
  }

  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

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

  .hero {
    background: var(--iris-dark);
  }

  .hero-media {
    min-height: 46vh;
    order: 2;
  }

  .hero-copy {
    order: 1;
  }

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

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

  .brand img {
    width: 82px;
  }

  .button.compact {
    display: none;
  }

  .section-band {
    min-height: auto;
  }

  .hero-copy {
    padding: 34px 18px 96px;
    background:
      linear-gradient(180deg, rgba(75, 0, 53, 0.86), rgba(189, 22, 142, 0.92)),
      url("assets/images/salon-room-1.jpg") center / cover;
  }

  .hero-media {
    display: none;
  }

  h1 {
    font-size: clamp(3.05rem, 17vw, 4.6rem);
  }

  .trust-strip,
  .quick-info,
  .service-grid,
  .section-heading,
  .contact-panel dl {
    grid-template-columns: 1fr;
  }

  .quick-info a {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
  }

  .gallery button:first-child {
    grid-row: auto;
  }

  .mobile-cta {
    display: grid;
  }

  .site-footer {
    padding-bottom: 92px;
  }
}
