:root {
  --ink: #211915;
  --espresso: #54463a;
  --pine: #4f5f50;
  --moss: #a2ae9d;
  --ivory: #f8f4ef;
  --paper: #fffaf6;
  --copper: #8f5445;
  --rose: #c75f71;
  --rose-deep: #9f3f52;
  --blush: #f0b8b8;
  --blue: #54463a;
  --line: rgba(33, 25, 21, 0.14);
  --shadow: 0 24px 70px rgba(33, 25, 21, 0.22);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 86px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  overflow-x: hidden;
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid #f0b8b8;
  outline-offset: 4px;
}

button,
input,
textarea {
  font: inherit;
}

.visually-hidden {
  position: absolute;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0 !important;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--paper);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(248, 244, 239, 0.94);
  box-shadow: 0 14px 40px rgba(33, 25, 21, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.brand-mark {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

.brand-signature {
  display: block;
  width: clamp(118px, 12vw, 154px);
  max-height: 38px;
  object-fit: contain;
  filter: invert(1) brightness(1.55);
  transition: filter 180ms ease, opacity 180ms ease;
}

.site-header.is-scrolled .brand-signature,
.site-header.is-open .brand-signature,
.legal-header .brand-signature {
  filter: none;
}

.site-footer .brand-signature {
  filter: invert(1) brightness(1.55);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  font-size: 0.82rem;
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.site-nav a {
  opacity: 0.86;
}

.site-nav a:hover {
  opacity: 1;
}

.nav-cta {
  padding: 12px 16px;
  border: 1px solid currentColor;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid currentColor;
  color: inherit;
  background: transparent;
}

.nav-toggle svg,
.button svg,
.text-link svg,
.topic-grid svg,
.feature-list svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.8;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  padding: 130px clamp(18px, 5vw, 72px) 44px;
  color: var(--paper);
  background:
    radial-gradient(circle at 82% 20%, rgba(240, 184, 184, 0.16), transparent 32%),
    linear-gradient(135deg, #54463a 0%, #2c211c 58%, #211915 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  right: clamp(-120px, -8vw, -24px);
  bottom: clamp(8px, 4vw, 60px);
  width: min(78vw, 980px);
  height: clamp(120px, 22vw, 260px);
  background: url("assets/elle-majors-signature.png") center / contain no-repeat;
  opacity: 0.075;
  filter: invert(1) brightness(1.25);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 830px;
  padding-bottom: 8vh;
}

.section-copy,
.product-copy,
.booking-copy,
.intro-band > div,
.split > *,
.product-band > *,
.salon-section > *,
.booking > *,
.story-section > *,
.topic-grid article,
.story-grid article {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f0b8b8;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(4.4rem, 13vw, 10.6rem);
  line-height: 0.88;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 5vw, 5.3rem);
  line-height: 0.98;
}

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

p {
  line-height: 1.68;
  overflow-wrap: break-word;
}

.hero-copy {
  max-width: 720px;
  color: rgba(255, 250, 240, 0.88);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  padding: 14px 20px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

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

.button.primary {
  color: var(--paper);
  background: var(--rose-deep);
}

.button.secondary {
  color: var(--paper);
  border-color: rgba(255, 250, 240, 0.58);
  background: rgba(255, 250, 240, 0.08);
  backdrop-filter: blur(14px);
}

.hero-panel {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 22px;
  border: 1px solid rgba(255, 250, 240, 0.24);
  background: rgba(33, 25, 21, 0.34);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-panel span {
  color: #f0b8b8;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  margin: 10px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.12;
}

.hero-panel p {
  margin-bottom: 0;
  color: rgba(255, 250, 240, 0.76);
  font-size: 0.95rem;
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  border-bottom: 1px solid var(--line);
  background: var(--espresso);
  color: var(--paper);
}

.intro-band > div {
  min-height: 210px;
  padding: clamp(30px, 4vw, 54px);
  border-right: 1px solid rgba(255, 250, 240, 0.12);
  border-bottom: 1px solid rgba(255, 250, 240, 0.12);
}

.intro-band > div:nth-child(3n) {
  border-right: 0;
}

.stat {
  display: block;
  margin-bottom: 20px;
  color: #f0b8b8;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 2.7vw, 3.1rem);
  line-height: 1.04;
}

.intro-band p {
  max-width: 34ch;
  margin-bottom: 0;
  color: rgba(255, 250, 240, 0.72);
  overflow-wrap: break-word;
}

.section {
  padding: clamp(72px, 10vw, 140px) clamp(18px, 5vw, 72px);
}

.split,
.salon-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(36px, 6vw, 84px);
  align-items: center;
}

.section-copy > p:not(.eyebrow),
.product-copy > p,
.booking-copy > p {
  max-width: 690px;
  color: rgba(33, 25, 21, 0.72);
  font-size: 1.06rem;
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.topic-grid article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 240, 0.58);
}

.topic-grid svg {
  margin-bottom: 26px;
  color: var(--copper);
}

.topic-grid p {
  margin-bottom: 0;
  color: rgba(33, 25, 21, 0.66);
  font-size: 0.95rem;
}

.editorial-image {
  position: relative;
  margin: 0;
  min-height: 660px;
  overflow: hidden;
  padding: 10px;
  border: 1px solid rgba(33, 25, 21, 0.12);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.editorial-image img,
.salon-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-band {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
  background: var(--espresso);
  color: var(--paper);
}

.product-copy p {
  color: rgba(255, 250, 240, 0.74);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: #f0b8b8;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-visual {
  min-width: 0;
}

.app-frame {
  overflow: hidden;
  border: 1px solid rgba(255, 250, 240, 0.16);
  background: #211915;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.32);
}

.app-topbar {
  display: flex;
  gap: 8px;
  padding: 16px;
  border-bottom: 1px solid rgba(255, 250, 240, 0.1);
}

.app-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--rose);
}

.app-layout {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  min-height: 440px;
}

.app-sidebar {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px;
  border-right: 1px solid rgba(255, 250, 240, 0.1);
}

.app-sidebar b {
  margin-bottom: 18px;
  color: #f0b8b8;
  letter-spacing: 0.14em;
}

.app-sidebar span {
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.12);
}

.app-sidebar .active {
  background: var(--rose);
}

.app-main {
  min-width: 0;
  padding: clamp(18px, 4vw, 42px);
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.metric-row div {
  min-height: 122px;
  padding: 18px;
  background: rgba(255, 250, 240, 0.08);
}

.metric-row span {
  display: block;
  color: rgba(255, 250, 240, 0.56);
  font-size: 0.78rem;
}

.metric-row strong {
  display: block;
  margin-top: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4vw, 4rem);
  font-weight: 500;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.calendar-grid span {
  min-height: 62px;
  background: rgba(255, 250, 240, 0.1);
}

.calendar-grid span:nth-child(3n) {
  background: rgba(199, 95, 113, 0.42);
}

.salon-section {
  background: var(--paper);
  position: relative;
  overflow: hidden;
}

.salon-media {
  height: min(58vw, 620px);
  min-height: 360px;
  position: relative;
}

.salon-collage {
  overflow: hidden;
  box-shadow: var(--shadow);
}

.salon-collage img {
  box-shadow: none;
}

.salon-collage__main {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 52%;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.feature-list p {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  margin: 0;
  color: rgba(33, 25, 21, 0.72);
}

.feature-list svg {
  margin-top: 4px;
  color: var(--copper);
}

.story-section {
  background: #ede7e1;
}

.story-header {
  max-width: 900px;
  margin-bottom: 48px;
}

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

.story-grid article {
  display: grid;
  grid-template-rows: auto auto 1fr;
  background: var(--paper);
  overflow: hidden;
}

.story-grid img {
  width: 100%;
  height: clamp(230px, 22vw, 320px);
  object-fit: cover;
}

.story-grid .story-image--full {
  object-fit: cover;
  object-position: 50% 26%;
}

.story-grid h3,
.story-grid p {
  padding-right: 22px;
  padding-left: 22px;
}

.story-grid h3 {
  margin-top: 22px;
}

.story-grid p {
  margin-bottom: 0;
  padding-bottom: 24px;
  color: rgba(33, 25, 21, 0.66);
}

.booking {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 0.82fr);
  gap: clamp(36px, 7vw, 98px);
  align-items: start;
  background: var(--pine);
  color: var(--paper);
}

.booking-copy > p {
  color: rgba(255, 250, 240, 0.72);
}

.booking-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid rgba(255, 250, 240, 0.16);
  background: rgba(255, 250, 240, 0.06);
  box-shadow: var(--shadow);
}

.booking-form label {
  display: grid;
  gap: 8px;
}

.booking-form span {
  color: rgba(255, 250, 240, 0.78);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.booking-form input,
.booking-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 250, 240, 0.2);
  border-radius: 0;
  color: var(--paper);
  background: rgba(33, 25, 21, 0.22);
  padding: 14px;
  outline: none;
}

.booking-form input:focus,
.booking-form textarea:focus {
  border-color: #f0b8b8;
}

.booking-form .button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.booking-form .button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.form-note {
  margin: 0;
  color: rgba(255, 250, 240, 0.75);
  font-size: 0.9rem;
}

.site-footer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 32px clamp(18px, 5vw, 72px);
  background:
    linear-gradient(135deg, rgba(84, 70, 58, 0.62), rgba(33, 25, 21, 0.86)),
    var(--ink);
  color: var(--paper);
  isolation: isolate;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url("assets/footer-leopard-print.png");
  background-size: 330px 330px;
  background-position: center;
  opacity: 0.28;
  pointer-events: none;
  transform: scale(1.02);
  transform-origin: center;
}

.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(33, 25, 21, 0.72), rgba(33, 25, 21, 0.36));
  pointer-events: none;
}

.site-footer > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  color: rgba(255, 250, 240, 0.66);
  font-size: 0.92rem;
}

.legal-page {
  min-height: 100vh;
  background: var(--ivory);
}

.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 24px clamp(18px, 5vw, 72px);
  color: var(--ink);
  background: var(--ivory);
  border-bottom: 1px solid var(--line);
}

.legal-header a:last-child {
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-content {
  width: min(860px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(58px, 8vw, 96px) 0;
}

.legal-content h1 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(3rem, 8vw, 6.4rem);
}

.legal-content h2 {
  margin: 42px 0 14px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.05rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-transform: uppercase;
}

.legal-content p,
.legal-content li {
  color: rgba(33, 25, 21, 0.72);
  line-height: 1.72;
}

.legal-content ul {
  padding-left: 20px;
}

.legal-content a {
  color: var(--copper);
  font-weight: 750;
}

.legal-updated {
  color: var(--moss);
  font-size: 0.92rem;
  font-weight: 750;
}

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

  .site-nav {
    position: absolute;
    top: 76px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    color: var(--ink);
    background: var(--paper);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 16px;
  }

  .nav-cta {
    margin-top: 8px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    align-items: start;
    padding-bottom: 54px;
  }

  .hero-content {
    padding-bottom: 0;
  }

  .split,
  .product-band,
  .salon-section,
  .booking,
  .story-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .editorial-image {
    min-height: 520px;
  }

  .salon-media {
    height: 560px;
  }

  .story-grid {
    gap: 16px;
  }

  .story-grid article {
    grid-template-columns: minmax(220px, 42%) 1fr;
    grid-template-rows: auto 1fr;
  }

  .story-grid img {
    grid-row: 1 / 3;
    width: 100%;
    height: 100%;
    min-height: 260px;
  }

  .story-grid h3,
  .story-grid p {
    grid-column: 2;
  }

  .story-grid h3 {
    align-self: end;
    margin-top: 0;
    padding-top: 28px;
  }
}

@media (min-width: 641px) and (max-width: 900px) {
  .intro-band > div:nth-child(2) {
    border-right: 0;
  }

  .intro-band > div:last-child {
    grid-column: 1 / -1;
  }
}

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

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-signature {
    width: 112px;
    max-height: 32px;
  }

  .hero {
    min-height: auto;
    padding: 112px 16px 22px;
  }

  .hero-content {
    width: 100%;
    max-width: 350px;
    padding-bottom: 0;
  }

  .hero .eyebrow {
    max-width: 340px;
    line-height: 1.55;
  }

  h1 {
    font-size: clamp(3.55rem, 16vw, 4.2rem);
    line-height: 0.94;
  }

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

  .hero-copy {
    width: 100%;
    max-width: 350px;
    font-size: 1.05rem;
    overflow-wrap: break-word;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-panel {
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: 350px;
    overflow: hidden;
  }

  .hero-panel strong,
  .hero-panel p {
    overflow-wrap: break-word;
  }

  .section {
    width: 100%;
    max-width: 100%;
    padding: 64px 16px;
    overflow: hidden;
  }

  .intro-band {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .intro-band > div {
    width: 100%;
    max-width: 100%;
    padding: 32px 28px;
    border-right: 0;
    overflow: hidden;
  }

  .intro-band p,
  .intro-band .stat {
    width: 100%;
    max-width: 100%;
  }

  .intro-band p {
    max-width: 28ch;
    overflow-wrap: anywhere;
  }

  .hero::before {
    right: -70px;
    bottom: 8px;
    width: 420px;
    max-width: 105vw;
    height: 132px;
    opacity: 0.055;
  }

  .topic-grid,
  .metric-row {
    grid-template-columns: 1fr;
  }

  .story-grid article {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }

  .story-grid img {
    grid-row: auto;
    height: 260px;
    min-height: 0;
  }

  .story-grid h3,
  .story-grid p {
    grid-column: auto;
  }

  .story-grid h3 {
    margin-top: 22px;
    padding-top: 0;
  }

  .app-layout {
    grid-template-columns: 1fr;
  }

  .app-sidebar {
    display: none;
  }

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

  .editorial-image,
  .salon-media {
    min-height: 380px;
  }

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

  .site-footer > div {
    justify-content: flex-start;
  }

  .legal-header {
    align-items: flex-start;
    flex-direction: column;
  }
}
