* {
  box-sizing: border-box;
}

:root {
  --milk: #fff8f3;
  --paper: #f6ebe5;
  --ink: #221719;
  --muted: #766164;
  --berry: #7c2e43;
  --rose: #be6674;
  --petal: #edd0c8;
  --sage: #73846d;
  --line: rgba(124, 46, 67, 0.18);
  --shadow: 0 24px 60px rgba(56, 31, 36, 0.18);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--milk);
  color: var(--ink);
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

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

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 0 clamp(16px, 5vw, 64px);
  color: white;
  background: linear-gradient(180deg, rgba(34, 23, 25, 0.58), rgba(34, 23, 25, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.brand span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  font-size: 12px;
}

.nav-links {
  display: flex;
  gap: 20px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
}

.hero {
  position: relative;
  display: grid;
  min-height: 88vh;
  align-items: end;
  padding: 120px clamp(16px, 8vw, 96px) 54px;
  background-image: url("hero-beauty.png");
  background-position: center;
  background-size: cover;
  color: white;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(34, 23, 25, 0.78), rgba(34, 23, 25, 0.35) 48%, rgba(34, 23, 25, 0.08)),
    linear-gradient(0deg, rgba(34, 23, 25, 0.62), rgba(34, 23, 25, 0.1) 48%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
}

.kicker,
.eyebrow {
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.kicker {
  color: #f8d9d0;
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(46px, 7vw, 92px);
  line-height: 0.96;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4.5vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h3 {
  margin-bottom: 12px;
  font-size: 26px;
  line-height: 1.12;
}

.hero-content p {
  width: min(620px, 100%);
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 19px;
}

.hero-actions,
.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--berry);
  border-radius: 8px;
  background: var(--berry);
  color: white;
  font-weight: 900;
}

.button.light {
  border-color: white;
  background: white;
  color: var(--berry);
}

.button.glass {
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.12);
  color: white;
  backdrop-filter: blur(10px);
}

.hero-status {
  position: absolute;
  right: clamp(16px, 6vw, 82px);
  bottom: 54px;
  z-index: 1;
  width: 250px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 248, 243, 0.16);
  padding: 18px;
  color: white;
  backdrop-filter: blur(16px);
}

.hero-status span,
.hero-status strong {
  display: block;
}

.hero-status span {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 900;
}

.hero-status strong {
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

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

.intro-strip div {
  min-height: 132px;
  padding: 28px clamp(16px, 6vw, 72px);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.intro-strip strong,
.intro-strip span {
  display: block;
}

.intro-strip strong {
  margin-bottom: 8px;
  font-size: 25px;
}

.intro-strip span {
  color: rgba(255, 255, 255, 0.65);
}

.section {
  padding: 82px clamp(16px, 8vw, 96px);
}

.section-title {
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(0, 1fr);
  gap: 42px;
  align-items: start;
  margin-bottom: 32px;
}

.section-title > *,
.menu-section > *,
.atelier > *,
.reviews > * {
  min-width: 0;
}

.eyebrow {
  color: var(--berry);
}

.section-note {
  display: grid;
  gap: 18px;
}

.section-note .eyebrow,
.section-note p {
  margin-bottom: 0;
}

.section-note p {
  max-width: 430px;
  color: var(--muted);
}

.ritual-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 4px;
}

.ritual-points span {
  min-height: 82px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdfb;
  padding: 12px;
  color: var(--muted);
  font-size: 14px;
}

.ritual-points strong {
  display: block;
  margin-bottom: 6px;
  color: var(--berry);
  font-size: 21px;
  line-height: 1;
}

.ritual-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
}

.ritual {
  position: relative;
  min-height: 280px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdfb;
  padding: 26px;
  box-shadow: 0 14px 34px rgba(56, 31, 36, 0.06);
  overflow: hidden;
}

.ritual::before {
  content: "";
  display: block;
  height: 160px;
  margin: -26px -26px 22px;
  background-image: var(--ritual-image);
  background-position: center;
  background-size: cover;
}

.ritual-brows {
  --ritual-image: url("assets/procedure-brows.png");
}

.ritual-nails {
  --ritual-image: url("assets/mood-palette.png");
}

.ritual-combo {
  --ritual-image: url("assets/mood-mirror-look.png");
}

.ritual-design {
  --ritual-image: url("assets/procedure-design.png");
}

.ritual.big {
  grid-row: span 2;
  min-height: 580px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(124, 46, 67, 0), rgba(124, 46, 67, 0.92)),
    var(--ritual-image);
  background-position: center;
  background-size: cover;
  color: white;
}

.ritual.big::before {
  display: none;
}

.ritual.big p {
  color: rgba(255, 255, 255, 0.78);
}

.ritual.big a {
  margin-top: 10px;
  color: #ffe8df;
  font-weight: 900;
}

.number {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--rose);
  font-weight: 900;
}

.ritual.big .number {
  color: #ffe8df;
}

.ritual p,
.atelier-copy p,
.menu-heading p,
.price-line p,
.review-list p,
.booking p {
  color: var(--muted);
}

.atelier {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: start;
  gap: 54px;
  background: var(--paper);
}

.atelier-board {
  display: grid;
  gap: 14px;
  justify-self: stretch;
  margin-right: calc(-1 * clamp(16px, 8vw, 96px));
}

.board-item {
  display: grid;
  grid-template-columns: clamp(130px, 15vw, 176px) minmax(0, 1fr);
  gap: 22px;
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}

.board-item span {
  color: var(--berry);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.board-item strong {
  font-size: 24px;
  line-height: 1.14;
}

.mood-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-auto-rows: 230px;
  gap: 16px;
}

.mood {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.mood span {
  position: absolute;
  left: 16px;
  bottom: 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  padding: 7px 12px;
  color: var(--berry);
  font-size: 13px;
  font-weight: 900;
}

.mood-one {
  grid-row: span 2;
  background: url("assets/mood-brow-detail.png") center / cover;
}

.mood-two {
  background: url("assets/mood-tools-flatlay.png") center / cover;
}

.mood-three {
  background: url("assets/mood-palette.png") center / cover;
}

.mood-four {
  grid-column: span 2;
  background: url("assets/mood-mirror-look.png") center / cover;
}

.menu-section {
  display: grid;
  grid-template-columns: minmax(0, 360px) minmax(0, 1fr);
  gap: 54px;
  background: #fffdfb;
}

.price-menu {
  border-top: 1px solid var(--line);
}

.price-line {
  display: grid;
  grid-template-columns: 46px 86px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.procedure-thumb {
  width: 86px;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 8px;
  background-position: center;
  background-size: cover;
  box-shadow: 0 12px 24px rgba(56, 31, 36, 0.1);
}

.thumb-brows {
  background-image: url("assets/procedure-brows.png");
}

.thumb-nails {
  background-image: url("assets/mood-palette.png");
}

.thumb-combo {
  background-image: url("assets/mood-mirror-look.png");
}

.thumb-design {
  background-image: url("assets/procedure-design.png");
}

.price-line span {
  color: var(--rose);
  font-weight: 900;
}

.price-line strong {
  display: block;
  font-size: 21px;
}

.price-line p {
  margin-bottom: 0;
}

.price-line b {
  white-space: nowrap;
  font-size: 24px;
}

.price-line.featured {
  color: var(--berry);
}

.reviews {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 46px;
  background: var(--paper);
}

.quote p {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.06;
}

.quote span {
  color: var(--berry);
  font-weight: 900;
}

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

.review-list article {
  border-left: 4px solid var(--rose);
  padding: 4px 0 4px 18px;
}

.review-list strong {
  color: var(--berry);
}

.booking {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin: 82px clamp(16px, 8vw, 96px);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(34, 23, 25, 0.92), rgba(124, 46, 67, 0.72)),
    url("hero-beauty.png");
  background-position: center;
  background-size: cover;
  color: white;
  padding: 44px;
  box-shadow: var(--shadow);
}

.booking > div:first-child {
  max-width: 680px;
}

.booking .eyebrow,
.booking p {
  color: rgba(255, 255, 255, 0.78);
}

.booking h2 {
  color: white;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 30px clamp(16px, 8vw, 96px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

@media (max-width: 920px) {
  .hero {
    min-height: 820px;
  }

  .hero-status {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(280px, 100%);
    margin-top: 28px;
  }

  .section-title,
  .ritual-grid,
  .atelier,
  .menu-section,
  .reviews {
    grid-template-columns: 1fr;
  }

  .ritual.big {
    min-height: 420px;
  }

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

  .mood-one,
  .mood-four {
    grid-column: span 1;
    grid-row: span 1;
  }
}

@media (max-width: 680px) {
  .topbar {
    position: absolute;
    align-items: flex-start;
    flex-direction: column;
    min-height: auto;
    padding: 16px 12px;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero {
    min-height: 900px;
    padding: 150px 12px 34px;
    background-position: 58% center;
  }

  h1 {
    max-width: 360px;
    font-size: 38px;
    line-height: 1.06;
  }

  h2 {
    font-size: 28px;
    line-height: 1.12;
  }

  .hero-content p {
    max-width: 350px;
    font-size: 16px;
  }

  .hero-actions,
  .booking-actions,
  .booking,
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .button {
    max-width: 100%;
  }

  .intro-strip {
    grid-template-columns: 1fr;
  }

  .intro-strip div {
    min-height: 110px;
    padding: 22px 12px;
  }

  .section {
    width: 100%;
    max-width: 100vw;
    padding: 58px 12px;
  }

  .section > *,
  .atelier > *,
  .menu-section > *,
  .reviews > *,
  .price-line > *,
  .mood-grid > * {
    min-width: 0;
    max-width: 100%;
  }

  .atelier-copy,
  .atelier-board,
  .section-title,
  .mood-grid,
  .menu-heading,
  .price-menu {
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
  }

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

  .atelier {
    overflow: hidden;
  }

  .atelier-copy,
  .atelier-board {
    max-width: 100%;
  }

  .atelier-copy h2 {
    overflow-wrap: anywhere;
  }

  .ritual-points {
    grid-template-columns: 1fr;
  }

  .ritual,
  .ritual.big {
    min-height: 330px;
    padding: 22px;
  }

  .atelier-board {
    margin-right: 0;
    width: 100%;
  }

  .board-item {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .board-item strong {
    font-size: 21px;
  }

  .mood-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 230px;
  }

  .price-line {
    grid-template-columns: 36px 76px minmax(0, 1fr);
    align-items: start;
  }

  .procedure-thumb {
    width: 76px;
  }

  .price-line b {
    grid-column: 3;
  }

  .booking {
    margin: 58px 12px;
    padding: 28px;
  }
}
