:root {
  color-scheme: light;
  --rose: #d85f87;
  --berry: #74314f;
  --teal: #188f8a;
  --butter: #ffd166;
  --blush: #fff2f5;
  --paper: #ffffff;
  --ink: #2f2530;
  --muted: #766370;
  --line: rgba(47, 37, 48, 0.14);
  --shadow: 0 22px 46px rgba(116, 49, 79, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 209, 102, 0.26), transparent 32%),
    linear-gradient(315deg, rgba(24, 143, 138, 0.13), transparent 34%),
    var(--blush);
  font-family: "Avenir Next", "Segoe UI", ui-sans-serif, system-ui, sans-serif;
}

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

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

.layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  min-height: 100vh;
}

.salon-menu {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 28px 22px;
  border-right: 1px solid rgba(47, 37, 48, 0.12);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
}

.brand {
  display: grid;
  gap: 10px;
}

.brand-mark {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 8px;
  background: var(--berry);
  color: #ffffff;
  font-size: 28px;
  font-weight: 950;
}

.brand strong {
  display: block;
  color: var(--berry);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1;
}

.brand > span:not(.brand-mark) {
  display: grid;
  gap: 7px;
}

.brand > span:not(.brand-mark) > span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.menu-links {
  display: grid;
  gap: 8px;
}

.menu-links a,
.button,
.gallery-lock {
  display: inline-flex;
  min-height: 43px;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  border: 1px solid rgba(216, 95, 135, 0.24);
  border-radius: 8px;
  background: #ffffff;
  color: var(--berry);
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

.menu-links a {
  justify-content: flex-start;
}

.menu-links a[aria-current="page"] {
  background: var(--rose);
  color: #ffffff;
}

.nav-toggle {
  display: none;
  min-height: 43px;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(216, 95, 135, 0.24);
  border-radius: 8px;
  padding: 0 14px;
  background: #ffffff;
  color: var(--berry);
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: var(--rose);
}

.nav-toggle strong {
  font-size: 13px;
}

.menu-note {
  margin: auto 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.content {
  min-width: 0;
}

.mobile-top {
  display: none;
}

.gallery-lock {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  border-color: var(--berry);
  background: var(--berry);
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(116, 49, 79, 0.24);
}

.button {
  border-color: var(--rose);
  background: var(--rose);
  color: #ffffff;
  cursor: pointer;
}

.button.alt {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.18);
}

.button.soft {
  border-color: rgba(24, 143, 138, 0.25);
  background: #ffffff;
  color: var(--teal);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 620px;
  display: grid;
  align-items: end;
  padding: 90px max(24px, calc((100vw - 1120px) / 2)) 70px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(47, 37, 48, 0.82), rgba(116, 49, 79, 0.48) 48%, rgba(47, 37, 48, 0.08)),
    var(--hero-image, url("https://images.unsplash.com/photo-1516734212186-a967f81ad0d7?auto=format&fit=crop&w=1700&q=80")) center / cover;
  color: #ffffff;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 42%;
  background: linear-gradient(0deg, rgba(47, 37, 48, 0.76), transparent);
}

.hero-copy {
  width: min(760px, 100%);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--butter);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
}

h1 {
  max-width: 740px;
  font-size: 76px;
  line-height: 0.96;
}

h2 {
  color: var(--berry);
  font-size: 50px;
  line-height: 1.05;
}

h3 {
  font-size: 22px;
}

.hero p:not(.eyebrow),
.lead {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  line-height: 1.7;
}

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

.section {
  padding: 76px max(24px, calc((100vw - 1120px) / 2));
}

.section.white {
  background: #ffffff;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 30px;
}

.section-heading .eyebrow,
.card .eyebrow {
  color: var(--rose);
}

.section-heading p,
.card p,
.style-card p,
.form-card p,
.quote p,
.gallery-note p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 28px;
  align-items: center;
}

.photo-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.photo-panel img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.card-grid,
.style-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.filter-button {
  min-height: 38px;
  border: 1px solid rgba(216, 95, 135, 0.24);
  border-radius: 8px;
  padding: 0 13px;
  background: #ffffff;
  color: var(--berry);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.filter-button.is-active {
  background: var(--rose);
  color: #ffffff;
}

.split + .card-grid {
  margin-top: 24px;
}

.card,
.style-card,
.form-card,
.quote,
.gallery-note {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 32px rgba(116, 49, 79, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.card:hover,
.style-card:hover,
.form-card:hover,
.quote:hover,
.gallery-note:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(116, 49, 79, 0.12);
}

.card strong,
.style-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--teal);
  font-size: 18px;
}

.style-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  margin-bottom: 16px;
  border-radius: 8px;
  object-fit: cover;
}

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

.service-list li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  line-height: 1.45;
}

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

.gallery-wall {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 16px;
}

.gallery-wall img {
  width: 100%;
  height: 320px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.gallery-wall img:nth-child(2) {
  height: 420px;
}

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

.review-grid .quote strong {
  display: block;
  margin-bottom: 12px;
  color: var(--berry);
  font-size: 19px;
  line-height: 1.35;
}

.review-grid .quote span {
  color: var(--rose);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

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

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  color: var(--berry);
  font-size: 13px;
  font-weight: 950;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 12px;
  background: #fffdfd;
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 118px;
  resize: vertical;
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--teal);
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px max(24px, calc((100vw - 1120px) / 2)) 92px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer a {
  color: var(--berry);
  font-weight: 950;
}

@media (max-width: 920px) {
  .layout {
    display: block;
  }

  .salon-menu {
    position: static;
    height: auto;
    padding: 18px 22px;
  }

  .brand {
    grid-template-columns: 58px minmax(0, 1fr);
    align-items: center;
  }

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

  .nav-toggle {
    display: inline-flex;
  }

  .menu-links {
    display: none;
  }

  .menu-links.is-open {
    display: grid;
  }

  .menu-note {
    display: none;
  }

  .hero {
    min-height: 540px;
  }

  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 34px;
  }

  .split,
  .card-grid,
  .style-grid,
  .process-grid,
  .form-grid,
  .gallery-wall,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .field.full {
    grid-column: auto;
  }

  .gallery-wall img,
  .gallery-wall img:nth-child(2) {
    height: 280px;
  }

  .footer {
    flex-direction: column;
  }
}

/* Client-ready interaction pass */
.menu-links {
  position: relative;
}

.menu-links a {
  position: relative;
  z-index: 1;
  transition: color 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.menu-links a:hover,
.menu-links a:focus-visible {
  transform: translateX(3px);
}

.menu-orbit {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  border: 1px solid rgba(216, 95, 135, 0.26);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(216, 95, 135, 0.18), rgba(24, 143, 138, 0.12));
  opacity: 0;
  transition: transform 260ms ease, width 260ms ease, height 260ms ease, opacity 180ms ease;
  pointer-events: none;
}

.nav-toggle span {
  transition: transform 220ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.interactive-surface {
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.interactive-surface::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255, 209, 102, 0.24), transparent 36%);
  opacity: 0;
  transition: opacity 180ms ease;
  pointer-events: none;
}

.interactive-surface > * {
  position: relative;
  z-index: 1;
}

.interactive-surface:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(116, 49, 79, 0.15);
}

.interactive-surface:hover::after {
  opacity: 1;
}

.form-card.is-success {
  border-color: rgba(24, 143, 138, 0.32);
  box-shadow: 0 18px 42px rgba(24, 143, 138, 0.12);
}

@media (max-width: 920px) {
  .menu-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: max-height 280ms ease, opacity 220ms ease, transform 220ms ease;
  }

  .menu-links.is-open {
    max-height: 420px;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .menu-links a {
    min-width: 0;
    justify-content: center;
    white-space: normal;
  }
}

@media (max-width: 560px) {
  .menu-links {
    grid-template-columns: 1fr;
  }

  .gallery-lock {
    position: fixed;
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    width: 42px;
    min-width: 42px;
    height: 42px;
    min-height: 42px;
    margin: 0;
    padding: 0;
    overflow: hidden;
    text-indent: -999px;
  }

  .gallery-lock::before {
    content: "<";
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-size: 20px;
    text-indent: 0;
  }
}
