:root {
  --bg: #f5f0e8;
  --paper: #fffaf2;
  --ink: #17120d;
  --muted: #6f6254;
  --card: #ffffff;
  --accent: #b58442;
  --accent-dark: #7b5527;
  --dark: #15110d;
  --light-line: rgba(23, 18, 13, 0.14);
  --dark-line: rgba(255, 255, 255, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 5vw, 70px);
  color: var(--ink);
  background: rgba(245, 240, 232, 0.94);
  border-bottom: 1px solid var(--light-line);
  backdrop-filter: blur(18px);
}

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

.brand-logo {
  width: 74px;
  height: 74px;
  object-fit: contain;
  padding: 6px;
  border: 0;
  border-radius: 999px;
  background: #000000;
}

.brand span {
  overflow-wrap: anywhere;
}

.nav {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-weight: 700;
}

.nav a:hover {
  color: var(--accent);
}

.nav-toggle,
.burger {
  display: none;
}

.burger {
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  border: 1px solid var(--light-line);
  border-radius: 8px;
  cursor: pointer;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
  position: relative;
  display: grid;
  min-height: 0;
  place-items: center;
  padding: 0;
  text-align: center;
  color: #fffaf2;
  background-color: var(--dark);
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(rgba(21, 17, 13, 0.5), rgba(21, 17, 13, 0.58));
}

.hero-image {
  display: block;
  width: 100%;
  height: auto;
}

.hero-content {
  position: absolute;
  z-index: 1;
  max-width: 820px;
  padding: clamp(28px, 6vw, 70px) 18px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(3.2rem, 9vw, 6.6rem);
  line-height: 0.96;
  font-weight: 800;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
  font-weight: 800;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.hero p {
  max-width: 620px;
  margin-right: auto;
  margin-left: auto;
  color: rgba(255, 250, 242, 0.86);
  font-size: 1.15rem;
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--light-line);
  background: var(--paper);
}

.intro-band p {
  margin: 0;
  padding: 24px 18px;
  color: var(--ink);
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  border-right: 1px solid var(--light-line);
}

.intro-band p:last-child {
  border-right: 0;
}

.section {
  padding: clamp(70px, 9vw, 128px) clamp(18px, 5vw, 70px);
}

.visual-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: center;
}

.visual-section.reverse {
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
}

.visual-section.reverse .section-copy {
  order: 2;
}

.section-copy {
  max-width: 520px;
}

.section-copy p {
  font-size: 1.05rem;
}

.section-copy.centered {
  max-width: none;
  text-align: center;
}

.schedule {
  background: var(--dark);
  color: var(--paper);
}

.schedule p {
  color: rgba(255, 250, 242, 0.72);
}

.section-image,
.schedule-image {
  width: 100%;
  height: auto;
  max-height: 760px;
  object-fit: contain;
  border: 1px solid var(--light-line);
  border-radius: 0;
  background: var(--card);
  box-shadow: 0 28px 80px rgba(23, 18, 13, 0.12);
}

.services-image {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

.hours-image {
  display: block;
  max-width: 100%;
  margin: 0 auto;
  border-color: var(--dark-line);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.salon {
  background: var(--paper);
}

.salon-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  margin: 36px auto;
  max-width: 860px;
}

.salon-gallery img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border: 1px solid var(--light-line);
  box-shadow: 0 24px 70px rgba(23, 18, 13, 0.12);
}

.salon-story {
  max-width: 920px;
  margin: 0 auto;
  columns: 2;
  column-gap: 48px;
}

.salon-story p {
  margin-bottom: 18px;
  break-inside: avoid;
}

.reviews {
  background: var(--bg);
}

.review-highlight {
  max-width: 520px;
  margin: 36px auto 0;
  padding: 40px 28px;
  text-align: center;
  background: var(--card);
  border: 1px solid var(--light-line);
  box-shadow: 0 24px 70px rgba(23, 18, 13, 0.1);
}

.review-score {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: clamp(3.4rem, 9vw, 5.8rem);
  font-weight: 800;
  line-height: 1;
}

.review-stars {
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 1.5rem;
  letter-spacing: 0;
}

.review-highlight a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--accent-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.review-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 860px;
  margin: 34px auto 0;
}

.review-images img {
  width: 100%;
  height: 360px;
  object-fit: contain;
  object-position: center;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.services-list,
.contact-grid,
.hours-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.services-list article,
.contact-grid p,
.hours-list p {
  margin: 0;
  padding: 26px;
  background: var(--card);
  border: 1px solid var(--light-line);
  border-radius: 0;
  overflow-wrap: anywhere;
  text-align: center;
}

.contact-grid strong,
.hours-list strong {
  color: var(--ink);
}

.site-footer {
  padding: 26px clamp(18px, 5vw, 70px);
  background: var(--dark);
  border-top: 1px solid var(--dark-line);
}

.site-footer p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 760px) {
  .site-header {
    flex-wrap: wrap;
    padding: 12px 18px;
  }

  .brand-logo {
    width: 62px;
    height: 62px;
  }

  .burger {
    display: flex;
  }

  .nav {
    display: none;
    width: 100%;
    padding-top: 12px;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--light-line);
  }

  .nav a {
    padding: 14px 0;
  }

  .nav-toggle:checked ~ .nav {
    display: flex;
  }

  .nav-toggle:checked + .burger span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .nav-toggle:checked + .burger span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle:checked + .burger span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero {
    min-height: 0;
  }

  .hero-content {
    position: relative;
    background: var(--dark);
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.6rem);
  }

  h2 {
    font-size: clamp(1.9rem, 11vw, 3rem);
  }

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

  .section {
    padding: 56px 18px;
  }

  .section-image,
  .schedule-image {
    max-height: none;
  }

  .intro-band,
  .visual-section,
  .visual-section.reverse {
    grid-template-columns: 1fr;
  }

  .salon-gallery {
    grid-template-columns: 1fr;
  }

  .salon-gallery img {
    height: auto;
  }

  .salon-story {
    columns: 1;
  }

  .review-images {
    grid-template-columns: 1fr;
  }

  .review-images img {
    height: 320px;
  }

  .intro-band p {
    border-right: 0;
    border-bottom: 1px solid var(--light-line);
  }

  .visual-section.reverse .section-copy {
    order: 0;
  }

  .services-list,
  .contact-grid,
  .hours-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .brand {
    font-size: 0.95rem;
  }

  .brand-logo {
    width: 54px;
    height: 54px;
  }

  .burger {
    width: 40px;
    height: 40px;
  }

  .contact-grid p {
    padding: 20px;
  }
}
