:root {
  --burgundy: #3b0718;
  --plum: #170813;
  --rose: #c65b79;
  --blush: #f9d9df;
  --pearl: #fff7ed;
  --champagne: #efd18a;
  --gold: #d9aa4f;
  --ink: #241018;
  --muted: #7c5b64;
  --line: rgba(59, 7, 24, 0.16);
  --glass: rgba(255, 247, 237, 0.76);
  --shadow: 0 30px 90px rgba(34, 5, 16, 0.23);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: linear-gradient(135deg, #fff7ed 0%, #f7d8df 42%, #eebfc9 100%);
  min-width: 0;
  overflow-x: hidden;
}
body.js-ready .ambient { animation: floatGlow 13s ease-in-out infinite alternate; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }
.skip {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 40;
  background: var(--pearl);
  color: var(--burgundy);
  padding: 10px 16px;
  border-radius: 999px;
  transform: translateY(-80px);
  transition: transform .2s ease;
}
.skip:focus { transform: translateY(0); }

.label-scene {
  position: relative;
  min-height: 100svh;
  padding: clamp(20px, 4vw, 52px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 760px) minmax(0, 1fr);
  grid-template-rows: 1fr auto;
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 17% 20%, rgba(255,255,255,.25), transparent 22%),
    radial-gradient(circle at 81% 16%, rgba(239,209,138,.32), transparent 23%),
    linear-gradient(135deg, #451022 0%, #1b0710 50%, #6d1832 100%);
  color: var(--pearl);
}
.label-scene::before {
  content: "";
  position: absolute;
  inset: clamp(14px, 2.5vw, 34px);
  border: 1px solid rgba(255, 247, 237, .26);
  border-radius: clamp(28px, 6vw, 72px);
  pointer-events: none;
  z-index: -1;
}
.ambient {
  position: absolute;
  border-radius: 999px;
  filter: blur(28px);
  opacity: .62;
  pointer-events: none;
  z-index: -2;
}
.ambient-one { width: min(46vw, 520px); height: min(46vw, 520px); left: -12vw; bottom: 4%; background: #f3a8b9; }
.ambient-two { width: min(38vw, 430px); height: min(38vw, 430px); right: -8vw; top: 9%; background: #e8c772; animation-delay: -4s; }
.facts {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: rgba(255, 247, 237, .78);
  font-size: clamp(13px, 1.35vw, 15px);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.facts-left { align-self: end; }
.facts-right { align-self: start; text-align: right; }
.facts span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.facts span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--champagne);
  box-shadow: 0 0 0 6px rgba(239,209,138,.13);
}
.facts-right span { justify-content: flex-end; }
.facts-right span::before { order: 2; }
.brand-label {
  position: relative;
  grid-column: 2;
  min-height: min(78svh, 760px);
  padding: clamp(34px, 7vw, 82px) clamp(24px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 46% 46% 38% 38% / 18% 18% 12% 12%;
  background:
    linear-gradient(180deg, rgba(255,247,237,.96), rgba(248,223,218,.91)),
    radial-gradient(circle at center, #fff, #f4c5cf 65%);
  color: var(--burgundy);
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255,255,255,.72), inset 0 0 0 18px rgba(217,170,79,.12);
  overflow: hidden;
}
.brand-label::before, .brand-label::after {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: inherit;
  border: 1px solid rgba(59,7,24,.12);
  pointer-events: none;
}
.brand-label::after {
  inset: auto 12% 9%;
  height: 34px;
  border-radius: 50%;
  border-color: rgba(59,7,24,.08);
  background: rgba(217,170,79,.09);
}
.kicker, .section-title p, .rail-heading p, .desk-intro > p:first-child, .fine-label {
  margin: 0 0 12px;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #8b394d;
  font-weight: 800;
}
h1, h2, h3 { margin: 0; }
h1, h2 {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: -.045em;
}
h1 {
  max-width: 11ch;
  font-size: clamp(48px, 9vw, 118px);
  line-height: .86;
}
.lead {
  margin: clamp(18px, 3vw, 30px) auto 0;
  max-width: 560px;
  font-size: clamp(17px, 2vw, 24px);
  line-height: 1.45;
  color: #5d2436;
}
.label-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: clamp(22px, 4vw, 42px);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  padding: 12px 22px;
  border: 1px solid rgba(59,7,24,.18);
  text-decoration: none;
  font-weight: 850;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--burgundy); color: var(--pearl); border-color: var(--burgundy); box-shadow: 0 16px 34px rgba(59, 7, 24, .23); }
.button.secondary { background: rgba(255,255,255,.64); color: var(--burgundy); }
.button.wide { width: 100%; margin-top: 16px; }
.lounge-menu {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  width: min(100%, 1040px);
  justify-self: center;
  padding: 10px;
  border: 1px solid rgba(255, 247, 237, .2);
  border-radius: 28px;
  background: rgba(255, 247, 237, .08);
  backdrop-filter: blur(16px);
}
.lounge-menu a {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 11px 14px;
  border-radius: 20px;
  text-decoration: none;
  color: rgba(255,247,237,.92);
  background: rgba(255,255,255,.08);
  font-weight: 800;
}
.lounge-menu a:hover { background: rgba(255,255,255,.18); }
.lounge-menu span { color: var(--champagne); font-size: 12px; letter-spacing: .12em; }

.section-pad { padding: clamp(56px, 9vw, 116px) clamp(18px, 5vw, 72px); }
.section-title { max-width: 780px; }
.section-title h2, .rail-heading h2, .desk-intro h2 {
  font-size: clamp(34px, 6vw, 74px);
  line-height: .96;
  color: var(--burgundy);
}
.folded-menu {
  background:
    linear-gradient(120deg, rgba(255,255,255,.7), rgba(255,247,237,.54)),
    radial-gradient(circle at 85% 12%, rgba(198,91,121,.18), transparent 28%);
}
.diagonal-title { transform: rotate(-1.2deg); transform-origin: left center; }
.menu-layout {
  margin-top: clamp(30px, 5vw, 60px);
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, .78fr) minmax(260px, .82fr);
  gap: clamp(16px, 2.2vw, 28px);
  align-items: stretch;
}
.signature-panel, .selected-card, .slat, .proof-strip, .ritual-card, .visit-panels article, .appointment-form, .contact-card {
  border: 1px solid var(--line);
  background: rgba(255,247,237,.72);
  box-shadow: 0 18px 70px rgba(59,7,24,.11);
}
.signature-panel {
  min-width: 0;
  border-radius: 46px;
  overflow: hidden;
  display: grid;
  grid-template-rows: minmax(260px, 1fr) auto;
}
.panel-art {
  min-height: 290px;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 40% 35%, #fff3e4, #f0a9ba 52%, #82213d 100%);
}
.panel-art svg { width: min(92%, 560px); height: auto; display: block; }
.signature-copy { padding: clamp(22px, 4vw, 38px); }
.signature-copy h3, .selected-card h3, .slat h3, .visit-panels h3, .contact-card h3 {
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.02;
  color: var(--burgundy);
}
p { line-height: 1.65; }
.signature-copy p, .selected-card p, .slat p, .visit-panels p, .desk-copy, .contact-card p { color: #65414b; }
.choice-stack {
  display: grid;
  gap: 12px;
  min-width: 0;
}
.treatment {
  min-width: 0;
  min-height: 82px;
  padding: 18px 18px;
  border: 1px solid rgba(59,7,24,.13);
  border-radius: 24px;
  background: rgba(255,255,255,.56);
  color: var(--burgundy);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.treatment:hover, .treatment.active { transform: translateX(4px); background: var(--burgundy); color: var(--pearl); border-color: var(--burgundy); }
.treatment span { font-weight: 900; font-size: 18px; }
.treatment small { color: inherit; opacity: .76; line-height: 1.35; }
.selected-card {
  min-width: 0;
  border-radius: 34px;
  padding: clamp(24px, 4vw, 36px);
  background: linear-gradient(180deg, rgba(59,7,24,.95), rgba(108,25,52,.92));
  color: var(--pearl);
  align-self: stretch;
}
.selected-card .fine-label, .selected-card h3 { color: var(--pearl); }
.selected-card p { color: rgba(255,247,237,.82); }
.question-card {
  margin-top: 22px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.16);
}
.question-card strong { display: block; margin-bottom: 8px; color: var(--champagne); }
.selected-card .button.primary { background: var(--champagne); color: var(--burgundy); border-color: var(--champagne); }

.beauty-rail {
  background: var(--pearl);
  display: grid;
  grid-template-columns: minmax(220px, .65fr) minmax(0, 1.35fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: start;
}
.rail-heading { position: sticky; top: 28px; }
.rail-content {
  min-width: 0;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  grid-template-rows: auto auto;
  gap: 16px;
}
.slat {
  min-width: 0;
  border-radius: 38px;
  padding: clamp(24px, 4vw, 42px);
}
.slat.tall { min-height: 420px; background: linear-gradient(160deg, #f9e2e6, #fff9f0); }
.slat.short { margin-top: 74px; min-height: 320px; background: linear-gradient(160deg, #fff6e7, #fad3dc); }
.line-icon {
  display: block;
  width: 94px;
  height: 94px;
  margin-bottom: 28px;
  border-radius: 42% 58% 46% 54%;
  background:
    radial-gradient(circle at 50% 20%, #fff 0 12%, transparent 13%),
    conic-gradient(from 90deg, #3b0718, #c65b79, #efd18a, #3b0718);
  opacity: .88;
}
.line-icon.lash { border-radius: 999px 999px 24px 24px; transform: rotate(-8deg); }
.proof-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border-radius: 30px;
  overflow: hidden;
  background: var(--line);
}
.proof-strip div {
  min-width: 0;
  padding: 24px;
  background: #fff9f0;
}
.proof-strip strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(34px, 5vw, 58px);
  line-height: .9;
  color: var(--burgundy);
}
.proof-strip span { display: block; margin-top: 8px; color: #684650; line-height: 1.4; }

.visit-ritual {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
  gap: clamp(18px, 4vw, 46px);
  background:
    linear-gradient(135deg, rgba(59,7,24,.95), rgba(93,21,45,.9)),
    radial-gradient(circle at 20% 30%, rgba(239,209,138,.28), transparent 26%);
  color: var(--pearl);
}
.visit-ritual .section-title p, .visit-ritual .section-title h2 { color: var(--pearl); }
.ritual-card {
  border-radius: 44px;
  padding: clamp(26px, 5vw, 52px);
  background: rgba(255,247,237,.09);
  border-color: rgba(255,247,237,.18);
  backdrop-filter: blur(14px);
}
.occasion-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}
.occasion {
  min-height: 46px;
  border-radius: 999px;
  padding: 11px 18px;
  border: 1px solid rgba(255,247,237,.26);
  background: rgba(255,255,255,.08);
  color: var(--pearl);
  font-weight: 850;
}
.occasion.active, .occasion:hover { background: var(--champagne); color: var(--burgundy); border-color: var(--champagne); }
.occasion-note {
  margin-top: 26px;
  font-size: clamp(18px, 2.5vw, 26px);
  color: rgba(255,247,237,.86);
}
.visit-panels {
  display: grid;
  gap: 14px;
  min-width: 0;
}
.visit-panels article {
  border-radius: 28px;
  padding: clamp(20px, 4vw, 30px);
  background: rgba(255,247,237,.92);
}
.visit-panels h3 { font-size: clamp(22px, 3vw, 30px); }

.text-desk {
  background:
    radial-gradient(circle at 14% 8%, rgba(198,91,121,.2), transparent 24%),
    linear-gradient(180deg, #fff8ee, #f8d9df);
}
.desk-intro { max-width: 850px; }
.desk-copy { max-width: 600px; font-size: 18px; }
.desk-grid {
  margin-top: clamp(28px, 5vw, 54px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: clamp(18px, 3vw, 30px);
  align-items: stretch;
}
.appointment-form {
  min-width: 0;
  border-radius: 42px;
  padding: clamp(22px, 4vw, 42px);
  background: rgba(255,247,237,.86);
}
fieldset { border: 0; padding: 0; margin: 0 0 22px; min-width: 0; }
legend, label {
  display: block;
  color: var(--burgundy);
  font-weight: 900;
  margin: 0 0 10px;
}
.topic-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.topic {
  min-height: 44px;
  border-radius: 999px;
  padding: 10px 16px;
  border: 1px solid rgba(59,7,24,.14);
  background: #fff;
  color: var(--burgundy);
  font-weight: 850;
}
.topic.active, .topic:hover { background: var(--burgundy); color: var(--pearl); }
input, textarea {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  border: 1px solid rgba(59,7,24,.16);
  border-radius: 20px;
  padding: 14px 16px;
  margin: 0 0 18px;
  background: #fffaf2;
  color: var(--ink);
  line-height: 1.45;
}
textarea { resize: vertical; min-height: 142px; }
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
  margin-top: 4px;
}
.form-status {
  margin: 18px 0 0;
  color: #684650;
  font-weight: 700;
}
.contact-card {
  min-width: 0;
  border-radius: 42px;
  padding: clamp(22px, 4vw, 36px);
  background: linear-gradient(180deg, #481124, #230711);
  color: var(--pearl);
  display: flex;
  flex-direction: column;
}
.contact-card h3 { color: var(--pearl); }
.contact-card p { color: rgba(255,247,237,.78); }
.contact-art {
  height: 220px;
  border-radius: 34px;
  margin-bottom: 24px;
  background:
    radial-gradient(circle at 52% 42%, rgba(255,255,255,.82) 0 8%, transparent 9%),
    linear-gradient(115deg, transparent 0 30%, rgba(239,209,138,.72) 31% 36%, transparent 37%),
    radial-gradient(circle at 45% 44%, #f8d4db, #b84c69 44%, #5e1830 72%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.18);
}
.sms-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 12px 18px;
  background: var(--champagne);
  color: var(--burgundy);
  text-decoration: none;
  font-weight: 900;
}
.footer-card {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 26px clamp(18px, 5vw, 72px);
  background: var(--plum);
  color: rgba(255,247,237,.78);
}
.back-top { color: var(--champagne); font-weight: 900; text-decoration: none; }
.footer-card p { margin: 0; }

@keyframes floatGlow {
  from { transform: translate3d(0,0,0) scale(1); }
  to { transform: translate3d(3vw,-2vw,0) scale(1.06); }
}

@media (max-width: 1120px) {
  .label-scene { grid-template-columns: 1fr; }
  .facts { position: static; flex-direction: row; flex-wrap: wrap; justify-content: center; text-align: center; }
  .facts-right span::before { order: 0; }
  .brand-label { grid-column: 1; min-height: 62svh; }
  .menu-layout { grid-template-columns: minmax(0, 1fr) minmax(260px, .8fr); }
  .signature-panel { grid-column: 1 / -1; grid-template-columns: minmax(260px, .85fr) minmax(280px, 1fr); grid-template-rows: auto; }
  .beauty-rail, .visit-ritual, .desk-grid { grid-template-columns: 1fr; }
  .rail-heading { position: static; }
}

@media (max-width: 760px) {
  .label-scene { padding: 16px; gap: 14px; }
  .label-scene::before { inset: 10px; border-radius: 28px; }
  .brand-label { min-height: auto; border-radius: 34px; padding: 48px 20px 42px; }
  .brand-label::before { inset: 12px; }
  h1 { font-size: clamp(44px, 15vw, 70px); }
  .lead { font-size: 17px; }
  .label-actions, .form-actions { width: 100%; }
  .button, .label-actions a, .form-actions a, .form-actions button { width: 100%; white-space: normal; text-align: center; }
  .lounge-menu { grid-template-columns: 1fr 1fr; border-radius: 22px; }
  .lounge-menu a { min-height: 50px; flex-direction: column; gap: 2px; }
  .section-pad { padding: 54px 16px; }
  .diagonal-title { transform: none; }
  .menu-layout, .signature-panel, .rail-content { grid-template-columns: 1fr; }
  .selected-card { order: 3; }
  .panel-art { min-height: 230px; }
  .slat.short { margin-top: 0; }
  .slat.tall, .slat.short { min-height: 0; }
  .proof-strip { grid-template-columns: 1fr; }
  .occasion-controls, .topic-pills { display: grid; grid-template-columns: 1fr; }
  .appointment-form, .contact-card, .ritual-card, .signature-panel { border-radius: 28px; }
  .contact-art { height: 170px; }
  .footer-card { display: block; }
  .footer-card p { margin-top: 12px; }
}

@media (max-width: 390px) {
  .facts { font-size: 11px; letter-spacing: .08em; }
  .lounge-menu { grid-template-columns: 1fr; }
  .treatment { min-height: 76px; padding: 16px; }
  .proof-strip div { padding: 20px; }
  input, textarea { border-radius: 16px; padding: 13px 14px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}
