@font-face {
  font-family: "Inter";
  src: url("../fonts/InterVariable.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --ink: #211b23;
  --plum: #51334d;
  --plum-dark: #382135;
  --rose: #d77b87;
  --green: #557a66;
  --paper: #fbf8f6;
  --soft: #f3e9e8;
  --line: #e3d6d3;
  --muted: #74676c;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 30px 80px rgba(81, 51, 77, .15);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(243,233,232,.72), transparent 380px),
    var(--paper);
  line-height: 1.6;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 70px);
  background: rgba(251,248,246,.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--plum);
  color: var(--white);
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: .84rem;
  font-weight: 700;
}

.site-nav {
  display: flex;
  gap: 8px;
  color: var(--muted);
  font-weight: 780;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 999px;
}

.site-nav a:hover {
  background: var(--soft);
  color: var(--plum);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(300px, .9fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 92px);
  align-items: center;
  padding: clamp(48px, 8vw, 112px) clamp(18px, 5vw, 80px) 44px;
}

.hero-image {
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-image img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
}

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

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.8rem, 6vw, 6.2rem);
  line-height: .94;
  letter-spacing: 0;
}

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

h3 {
  font-size: 1.16rem;
}

.hero-copy p:not(.eyebrow),
.section-head p,
.salon-copy p,
.contact-panel p {
  color: var(--muted);
  font-size: 1.08rem;
}

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

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--radius);
  padding: 13px 20px;
  font-weight: 900;
  cursor: pointer;
}

.btn.primary {
  background: var(--plum);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(81,51,77,.18);
}

.btn.secondary {
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--plum);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-tags span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.7);
  color: var(--plum);
  font-weight: 850;
}

.booking-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0 clamp(18px, 5vw, 80px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow);
}

.booking-strip a {
  min-height: 148px;
  padding: 24px;
  background: rgba(255,255,255,.92);
}

.booking-strip span,
.service-grid span,
.price-band span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--rose);
  font-size: .76rem;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.booking-strip strong {
  display: block;
  margin-bottom: 5px;
  font-size: 1.12rem;
}

.booking-strip small {
  color: var(--muted);
  line-height: 1.5;
}

.section {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 80px);
}

.section-head {
  max-width: 820px;
  margin-bottom: 32px;
}

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

.service-grid article {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 45px rgba(81,51,77,.07);
}

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

.salon {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1fr);
  gap: clamp(30px, 5vw, 74px);
  align-items: center;
  background: #f7efee;
}

.salon img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--white);
}

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

.check-list li {
  padding: 13px 15px;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--plum-dark);
  font-weight: 780;
}

.price-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0 clamp(18px, 5vw, 80px);
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--plum);
  color: var(--white);
}

.price-band div {
  padding: 32px;
  border-left: 1px solid rgba(255,255,255,.14);
}

.price-band span {
  color: #eec5ca;
}

.price-band strong {
  display: block;
  margin: 4px 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
}

.price-band p {
  color: #f3dde0;
  margin-bottom: 0;
}

.contact-panel {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 28px;
  align-items: start;
  margin: clamp(42px, 6vw, 72px) clamp(18px, 5vw, 80px) 64px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
}

.contact-panel h2 {
  color: var(--white);
}

.contact-panel p {
  color: #dacdd0;
  margin-bottom: 0;
}

.appointment-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  background: rgba(255,255,255,.08);
}

.appointment-form label {
  display: grid;
  gap: 7px;
  color: #f7eef0;
  font-weight: 780;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 4px rgba(215,123,135,.18);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 4vw, 70px);
  color: var(--muted);
}

.site-footer nav {
  display: flex;
  gap: 18px;
}

@media (max-width: 940px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    position: absolute;
    inset: 78px 16px auto;
    flex-direction: column;
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero,
  .salon,
  .service-grid,
  .price-band,
  .booking-strip,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .contact-panel,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .brand small {
    display: none;
  }

  .actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .appointment-form {
    padding: 18px;
  }
}
