@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --ink: #20141f;
  --muted: #5f4e61;
  --line: #e6d7df;
  --cream: #fbf8f5;
  --panel: #ffffff;
  --champagne: #f0e3d8;
  --rosewood: #6f2f4f;
  --berry: #b04a79;
  --night: #1b0f20;
  --glow: rgba(176, 74, 121, 0.32);
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 12% 15%, rgba(176, 74, 121, 0.14), transparent 35%),
    radial-gradient(circle at 88% 20%, rgba(111, 47, 79, 0.12), transparent 38%),
    linear-gradient(180deg, #fffdfa 0%, #f8f1f5 45%, #fff 100%);
  color: var(--ink);
  line-height: 1.65;
}

a { color: inherit; text-decoration: none; }

.frame {
  display: grid;
  grid-template-columns: 295px 1fr;
  min-height: 100vh;
}

.sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background:
    linear-gradient(180deg, rgba(27, 15, 32, 0.98), rgba(60, 24, 44, 0.98)),
    radial-gradient(circle at 30% 0%, rgba(176, 74, 121, 0.28), transparent 30%);
  color: #fbeff5;
  border-right: 1px solid rgba(236, 180, 207, 0.2);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.55rem;
  letter-spacing: 0.04em;
  font-weight: 700;
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #f2d8e6, #b04a79);
  color: #2a1024;
  font-size: 1.05rem;
  font-weight: 800;
}

.demo-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(251, 224, 238, 0.34);
  background: rgba(84, 34, 62, 0.5);
  cursor: pointer;
  padding: 0;
}

.demo-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #ffeaf4;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.sidebar.nav-open .demo-menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.sidebar.nav-open .demo-menu-toggle span:nth-child(2) { opacity: 0; }
.sidebar.nav-open .demo-menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.side-nav {
  display: grid;
  gap: 6px;
}

.side-nav > a,
.side-nav .nav-parent {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 0.93rem;
  letter-spacing: 0.03em;
  font-weight: 700;
  color: #fdf3f8;
}

.side-nav > a.active,
.side-nav > a:hover,
.side-nav .nav-parent:hover {
  background: rgba(255, 222, 237, 0.18);
}

.nav-dropdown {
  position: relative;
}

.nav-parent {
  user-select: none;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 220px;
  display: grid;
  gap: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  background: rgba(36, 16, 33, 0.98);
  border: 1px solid rgba(242, 216, 230, 0.3);
  border-radius: 12px;
  padding: 10px;
  z-index: 30;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.35);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 0.86rem;
  color: #ffdced;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
  background: rgba(255, 222, 237, 0.16);
}

.call-now,
.back-yts {
  display: block;
  text-align: center;
  border-radius: 10px;
  padding: 10px 12px;
  font-weight: 700;
  font-size: 0.92rem;
}

.call-now {
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #ffb7d8, #ff6aa8 48%, #d24382);
  border: 1px solid rgba(255, 232, 244, 0.55);
  color: #2a1225;
  box-shadow: 0 10px 24px rgba(242, 84, 155, 0.45);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.call-now:hover,
.call-now:focus-visible {
  transform: translateY(-1px);
  filter: saturate(1.05);
  box-shadow: 0 14px 26px rgba(242, 84, 155, 0.52);
}

.call-now .call-icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
  color: #7a1c4c;
  font-size: 0.88rem;
  line-height: 1;
}

.back-yts {
  margin-top: 6px;
  border: 1px solid rgba(242, 216, 230, 0.28);
  background: rgba(255, 234, 244, 0.08);
}

.side-note {
  margin-top: auto;
  font-size: 0.86rem;
  color: #f3c6dc;
}

.main {
  padding: 0 26px 26px;
}

.hero {
  margin: 0 -26px;
  min-height: clamp(480px, 72vh, 780px);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: end;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(28, 11, 23, 0.2), rgba(28, 11, 23, 0.86) 74%),
    radial-gradient(circle at 18% 24%, rgba(176, 74, 121, 0.23), transparent 32%),
    radial-gradient(circle at 78% 20%, rgba(224, 165, 198, 0.18), transparent 30%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  color: #fff4fa;
  max-width: 760px;
  padding: clamp(96px, 11vw, 160px) 36px 42px;
  animation: rise 0.9s ease both;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-kicker {
  display: inline-block;
  margin-bottom: 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 221, 237, 0.42);
  padding: 6px 14px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-size: 0.77rem;
  font-weight: 700;
}

.hero h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.5rem, 5.2vw, 4.7rem);
  line-height: 0.95;
  margin: 0 0 14px;
  max-width: 10ch;
  text-wrap: balance;
}

.hero p {
  margin: 0;
  color: #ffe9f5;
  max-width: 56ch;
}

.hero-actions {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cta,
.ghost {
  display: inline-block;
  border-radius: 999px;
  padding: 11px 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.cta {
  background: linear-gradient(135deg, #f4c1dd, #d86da3);
  color: #2a1024;
}

.ghost {
  border: 1px solid rgba(255, 221, 237, 0.42);
  color: #fff7fb;
}

.section {
  padding: 34px 0;
}

.section-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin: 0 0 14px;
  letter-spacing: 0.02em;
}

.section-intro {
  margin: 0 0 20px;
  color: var(--muted);
  max-width: 70ch;
}

.selected-stylist-banner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  padding: 10px 14px;
  border: 1px solid rgba(176, 74, 121, 0.22);
  border-radius: 999px;
  background: linear-gradient(135deg, #fff6fb, #f9e5f0);
  color: #6f2f4f;
  font-size: 0.92rem;
  font-weight: 600;
}

.selected-stylist-banner strong {
  color: #4c1633;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 15px 34px rgba(39, 11, 33, 0.08);
}

.card h3 {
  margin: 0 0 8px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem;
}

.card p { margin: 0; color: var(--muted); }

.metrics {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.metric {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 14px;
  min-width: 130px;
}

.metric strong {
  display: block;
  font-size: 1.4rem;
  color: var(--rosewood);
}

.media-grid,
.service-grid,
.staff-grid,
.booking-grid,
.studio-grid {
  display: grid;
  gap: 16px;
}

.media-grid {
  grid-template-columns: 1.2fr 1fr;
}

.studio-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.staff-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.booking-grid {
  grid-template-columns: 1.1fr 1fr;
}

.photo,
.tile,
.staff-card,
.booking-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 34px rgba(39, 11, 33, 0.08);
}

.photo img,
.tile img,
.staff-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.staff-card img {
  height: 300px;
  object-position: center 22%;
}

.booking-card img {
  width: 100%;
  height: 250px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.tile img { height: 250px; }

.tile img.kids-headshot {
  object-fit: contain;
  object-position: center 30%;
  background: linear-gradient(180deg, #fdf5f9, #f7ecf3);
}

.tile img.kids-headshot-wide {
  object-fit: contain;
  object-position: center 34%;
  background: linear-gradient(180deg, #fdf5f9, #f7ecf3);
}

.photo.tall img { height: 520px; }
.photo.short img { height: 250px; }

.tile-copy,
.staff-copy,
.booking-copy {
  padding: 14px;
}

.staff-copy {
  display: grid;
  gap: 6px;
}

.tile-copy h3,
.staff-copy h3,
.booking-copy h3 {
  margin: 0 0 7px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem;
}

.tile-copy p,
.staff-copy p,
.booking-copy p { margin: 0; color: var(--muted); }

.badge {
  display: inline-block;
  margin-top: 10px;
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  background: var(--champagne);
  color: var(--rosewood);
}

.service-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
  font-weight: 700;
  color: #432436;
  font-size: 0.92rem;
}

.staff-tag {
  margin-top: 10px;
  color: var(--berry);
  font-weight: 700;
  font-size: 0.86rem;
}

.staff-note {
  margin-top: 8px !important;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #6a4c60 !important;
}

.staff-book-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f3c3dd, #d86da3);
  color: #311320;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 18px rgba(176, 74, 121, 0.2);
}

.staff-book-link:hover,
.staff-book-link:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 20px rgba(176, 74, 121, 0.24);
}

table.calendar {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.calendar-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.calendar-wrap .calendar {
  min-width: 640px;
}

.calendar th,
.calendar td {
  border: 1px solid #eddce5;
  text-align: center;
  padding: 10px 6px;
}

.calendar th {
  background: #fbf1f7;
  color: #5c2a45;
}

.calendar td.available {
  background: #f2fff8;
  color: #136038;
  font-weight: 700;
}

.calendar td.limited {
  background: #fff9eb;
  color: #8a5b00;
  font-weight: 700;
}

.calendar td.booked {
  background: #fff0f5;
  color: #934363;
}

.booking-controls {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 14px 0;
}

.booking-controls label {
  text-transform: uppercase;
}

.calendar td.slot {
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.calendar td.slot:hover,
.calendar td.slot:focus-visible {
  transform: translateY(-1px);
  box-shadow: inset 0 0 0 2px rgba(176, 74, 121, 0.26);
}

.calendar td.slot.active-slot {
  box-shadow: inset 0 0 0 2px #8e2957;
  background: #ffe8f3;
  color: #6d2044;
  font-weight: 800;
}

.openings-panel {
  margin-top: 14px;
  border: 1px solid #ead2dd;
  border-radius: 12px;
  padding: 12px;
  background: linear-gradient(180deg, #fff8fc, #fff);
}

.openings-panel h4 {
  margin: 0 0 5px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
}

.openings-panel p {
  margin: 0;
  color: #6f5b6d;
  font-size: 0.92rem;
}

.openings-list {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.slot-chip {
  border: 1px solid #dab5c8;
  border-radius: 999px;
  background: #fff;
  padding: 6px 10px;
  font-size: 0.84rem;
  color: #5b2e46;
  cursor: pointer;
}

.slot-chip:hover,
.slot-chip:focus-visible {
  background: #ffe7f2;
}

.booking-feedback {
  min-height: 1.25rem;
  margin: 2px 0 0;
  color: #7b2e58;
  font-weight: 700;
}

.booking-form-card {
  max-width: 920px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-grid .full { grid-column: 1 / -1; }

label {
  display: grid;
  gap: 6px;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #5f4e61;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #dec9d4;
  border-radius: 10px;
  padding: 10px 11px;
  font: inherit;
  color: #2c1a2b;
  background: #fff;
}

textarea { min-height: 100px; resize: vertical; }

.check-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 4px;
}

.check-row label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.84rem;
  text-transform: none;
  letter-spacing: 0;
}

.addon-group {
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
}

.addon-group legend {
  padding: 0;
  margin-bottom: 8px;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #5f4e61;
}

.check-option {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.check-option input {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  margin: 0;
}

.check-option span {
  line-height: 1.35;
}

button.primary {
  border: 0;
  border-radius: 999px;
  padding: 11px 18px;
  font-weight: 700;
  background: linear-gradient(135deg, #d86da3, #b04a79);
  color: #fff;
  cursor: pointer;
}

footer {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid #eadbe4;
  color: #6b566b;
  text-align: center;
}

footer a { font-weight: 700; color: #7b2e58; }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: reveal 0.65s ease forwards;
}

.reveal.delay-1 { animation-delay: 0.1s; }
.reveal.delay-2 { animation-delay: 0.2s; }
.reveal.delay-3 { animation-delay: 0.3s; }

@keyframes reveal {
  to { opacity: 1; transform: translateY(0); }
}

.scroll-top-button {
  position: fixed;
  left: 26px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(95, 34, 68, 0.26);
  border-radius: 999px;
  background: rgba(40, 15, 31, 0.88);
  color: #fff;
  padding: 12px 16px;
  font-weight: 700;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px) scale(0.97);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 1100;
}

.scroll-top-button.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.scroll-top-icon {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.17);
}

.scroll-top-icon svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

@media (max-width: 1080px) {
  .service-grid,
  .staff-grid,
  .studio-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .booking-grid,
  .media-grid { grid-template-columns: 1fr; }
  .photo.tall img { height: 380px; }
}

@media (max-width: 980px) {
  .frame { grid-template-columns: 1fr; }
  .sidebar { position: relative; height: auto; gap: 10px; }
  .demo-menu-toggle { display: inline-flex; }
  .side-nav,
  .call-now,
  .back-yts { display: none; }
  .sidebar.nav-open .side-nav {
    display: grid;
    gap: 6px;
  }
  .sidebar.nav-open .call-now,
  .sidebar.nav-open .back-yts { display: block; }
  .nav-dropdown { position: static; }
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(255, 222, 237, 0.12);
    border: 1px solid rgba(255, 222, 237, 0.2);
    box-shadow: none;
    margin-top: 6px;
  }
}

@media (max-width: 640px) {
  .main { padding: 0 14px 16px; }
  .hero { margin: 0 -14px; min-height: 360px; }
  .hero-copy { padding: 90px 20px 30px; }
  .cards,
  .service-grid,
  .staff-grid,
  .studio-grid,
  .form-grid,
  .booking-controls,
  .check-row { grid-template-columns: 1fr; }
  .tile img,
  .photo.short img,
  .photo.tall img,
  .booking-card img { height: 220px; }
  .calendar-wrap .calendar {
    min-width: 560px;
    font-size: 0.78rem;
  }
  .calendar th,
  .calendar td {
    padding: 8px 4px;
  }
  .scroll-top-button { left: 14px; bottom: 14px; }
}
