/* Prima Beauty Lounge — real brand system */

:root {
  --white: #FFFFFF;
  --paper: #FAFAF8;
  --ink: #111111;
  --gold: #C5A059;
  --gold-deep: #8A6A32;
  --gold-light: #E0C788;
  --pink: #E83E8C;
  --muted: #5A5348;
  --line: rgba(138, 106, 50, 0.28);
  --gold-bar: linear-gradient(90deg, #8A6A32 0%, #C5A059 32%, #E8D5A3 50%, #C5A059 68%, #8A6A32 100%);
  --display: "Playfair Display", "Times New Roman", serif;
  --script: "Great Vibes", "Allura", cursive;
  --sans: "Outfit", "Montserrat", "Helvetica Neue", sans-serif;
  --header-h: 5.25rem;
  --wrap: 72rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.7;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

a:hover {
  color: var(--gold-deep);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

::selection {
  background: var(--ink);
  color: var(--white);
}

.skip {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 80;
  background: var(--ink);
  color: var(--white);
  padding: 0.6rem 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.skip:focus {
  top: 1rem;
  color: var(--white);
}

.wrap {
  width: min(var(--wrap), calc(100% - 2.5rem));
  margin-inline: auto;
}

.script-label {
  margin: 0 0 0.85rem;
  font-family: var(--script);
  font-size: 1.85rem;
  font-weight: 400;
  line-height: 1;
  color: var(--gold-deep);
}

.script-label::after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-left: 0.45rem;
  border-radius: 50%;
  background: var(--pink);
  vertical-align: 0.28em;
}

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0;
  color: var(--ink);
}

h1 {
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  font-weight: 400;
}

h1 em {
  font-style: italic;
  font-weight: 400;
}

h2 {
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  max-width: 16ch;
}

h3 {
  font-size: clamp(1.7rem, 2.4vw, 2.15rem);
  margin-bottom: 0.85rem;
}

.lede {
  max-width: 38rem;
  color: var(--muted);
  font-size: 1.0625rem;
}

.section-head {
  max-width: 40rem;
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
}

.section-head h2 {
  margin-bottom: 1.25rem;
}

/* Gold bars — letterhead / cover motif */

.gold-bar {
  display: flex;
  height: 11px;
  width: 100%;
}

.gold-bar i {
  flex: 1;
  display: block;
  background: var(--gold-bar);
}

.gold-bar-down i:first-child {
  clip-path: polygon(0 0, 100% 42%, 100% 100%, 0 100%);
}

.gold-bar-down i:last-child {
  clip-path: polygon(0 42%, 100% 0, 100% 100%, 0 100%);
}

.gold-bar-up i:first-child {
  clip-path: polygon(0 0, 100% 0, 100% 58%, 0 100%);
}

.gold-bar-up i:last-child {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 58%);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.7rem 1.45rem;
  border: 1px solid transparent;
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
}

.btn-gold {
  background: var(--gold-bar);
  color: var(--ink);
  border-color: var(--gold-deep);
}

.btn-gold:hover {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.btn-line {
  background: transparent;
  color: var(--ink);
  border-color: var(--gold-deep);
}

.btn-line:hover {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.btn-nav {
  min-height: 2.4rem;
  padding-inline: 1.1rem;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  width: min(var(--wrap), calc(100% - 2rem));
  margin-inline: auto;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  min-width: 0;
}

.brand:hover {
  color: inherit;
}

.brand-logo {
  height: 4.4rem;
  width: auto;
  object-fit: contain;
}

.nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav a {
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
}

.nav a:hover {
  color: var(--gold-deep);
}

.nav-book {
  display: none;
}

.nav-end {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.menu-btn {
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: transparent;
  padding: 0;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
}

.menu-btn span {
  display: block;
  width: 1.25rem;
  height: 1px;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.menu-btn[aria-expanded="true"] span:first-child {
  transform: translateY(0.22rem) rotate(40deg);
}

.menu-btn[aria-expanded="true"] span:last-child {
  transform: translateY(-0.22rem) rotate(-40deg);
}

/* Hero — logo + type on white, framed by gold bars */

.hero {
  background: var(--white);
  display: flex;
  flex-direction: column;
}

.hero-inner {
  width: min(var(--wrap), calc(100% - 2.5rem));
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 5.5rem) 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-logo {
  width: min(18rem, 68vw);
  height: auto;
  margin-bottom: 1.75rem;
}

.hero-inner h1 {
  max-width: 14ch;
}

.hero-lead {
  max-width: 32rem;
  margin: 1.25rem 0 2rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

/* Services */

.services {
  padding: clamp(4.5rem, 10vw, 8rem) 0;
  background: var(--paper);
}

.service-cards {
  display: grid;
  gap: 1.25rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 2rem 1.6rem 2.1rem;
  position: relative;
}

.card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: var(--gold-bar);
}

.card-index {
  margin: 0 0 1.4rem;
  font-size: 0.6875rem;
  letter-spacing: 0.28em;
  color: var(--gold-deep);
}

.card-aka {
  margin: -0.45rem 0 0.9rem;
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.card p:last-child {
  margin: 0;
  color: var(--muted);
}

.services-note {
  margin: 2.25rem 0 0;
  max-width: none;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Work / Gallery — four film strips */

.work {
  padding: 0 0 clamp(4.5rem, 10vw, 8rem);
  background: var(--paper);
}

.film {
  margin: 0 0 2.25rem;
}

.film:last-child {
  margin-bottom: 0;
}

.film-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 0 0.7rem;
}

.film-title h3 {
  margin: 0.1rem 0 0;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
}

.film-nav {
  display: flex;
  gap: 0.4rem;
  flex-shrink: 0;
}

.film-prev,
.film-next {
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.film-prev:hover,
.film-next:hover {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.film-prev:disabled,
.film-next:disabled {
  opacity: 0.28;
  cursor: default;
}

.film-prev:disabled:hover,
.film-next:disabled:hover {
  background: var(--white);
  color: var(--ink);
  border-color: var(--line);
}

.film-strip {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  background: var(--ink);
}

.film-strip::-webkit-scrollbar {
  height: 6px;
}

.film-strip::-webkit-scrollbar-thumb {
  background: var(--gold);
}

.film-track {
  position: relative;
  display: flex;
  gap: 0.55rem;
  padding: 1.15rem 0.85rem 1.2rem;
  width: max-content;
  min-width: 100%;
  box-sizing: border-box;
}

.film-track::before,
.film-track::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 0.7rem;
  pointer-events: none;
  background-image: radial-gradient(circle, var(--ink) 0.16rem, transparent 0.18rem);
  background-size: 1.05rem 0.7rem;
  background-color: var(--gold);
  background-position: center;
}

.film-track::before {
  top: 0;
}

.film-track::after {
  bottom: 0;
}

.film-frame {
  margin: 0;
  flex: 0 0 auto;
  scroll-snap-align: start;
  width: min(78vw, 16.5rem);
}

.work-open {
  display: block;
  width: 100%;
  padding: 0;
  border: 1px solid rgba(197, 160, 89, 0.45);
  background: #1a1a1a;
  cursor: zoom-in;
}

.work-open img {
  width: 100%;
  height: 13.5rem;
  object-fit: contain;
  object-position: center;
  background: #1a1a1a;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(17, 17, 17, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3.5rem 1.25rem 1.25rem;
}

.lightbox[hidden] {
  display: none;
}

.lightbox-img {
  max-width: min(92vw, 56rem);
  max-height: 86vh;
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: 0 0 0 1px rgba(197, 160, 89, 0.45);
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: 0;
  background: transparent;
  color: #fff;
  font-family: var(--sans);
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
}

/* About */

.about {
  padding: clamp(4.5rem, 10vw, 8rem) 0;
  background: var(--white);
  border-block: 1px solid var(--line);
}

.about-layout {
  display: grid;
  gap: 2.5rem;
}

.about-copy h2 {
  max-width: 16ch;
  margin-bottom: 1.5rem;
}

.about-copy p {
  max-width: 38rem;
  color: var(--muted);
}

.about-copy p + p {
  margin-top: 1rem;
}

.training {
  margin-top: 2.75rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.training .script-label {
  margin-bottom: 0.85rem;
}

.credentials {
  margin-top: 1.15rem;
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
}

.full-name {
  margin-top: 0.35rem;
  font-family: var(--display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink);
}

.about-mark {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-mark img {
  width: min(26rem, 100%);
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 15%;
  border: 1px solid var(--line);
  box-shadow: 0 0 0 8px var(--white), 0 0 0 9px var(--gold);
}

/* Cover band — her gold-bar banner */

.cover-band {
  background: var(--white);
  border-top: 1px solid var(--line);
}

.cover-band img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

/* Visit */

.visit {
  padding: clamp(4.5rem, 10vw, 8rem) 0;
  background: var(--paper);
}

.visit-layout {
  display: grid;
  gap: 2.5rem;
}

.visit-copy h2 {
  margin-bottom: 1.1rem;
}

.vcard {
  font-style: normal;
  margin: 2rem 0 0;
}

.address-link {
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  line-height: 1.25;
  text-decoration: none;
  color: var(--ink);
}

.address-link:hover {
  color: var(--gold-deep);
}

.suite {
  margin: 0.55rem 0 0;
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.studio-note {
  margin: 0.35rem 0 0;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: var(--muted);
}

.hours {
  margin: 2rem 0 0;
  padding: 0;
}

.hours div {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: 22rem;
  padding: 0.7rem 0;
  border-top: 1px solid var(--line);
}

.hours div:last-child {
  border-bottom: 1px solid var(--line);
}

.hours dt,
.hours dd {
  margin: 0;
}

.hours dt {
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.hours dd {
  font-family: var(--display);
  font-size: 1.15rem;
}

.visit-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.95rem;
  margin-top: 2rem;
}

.text-link {
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.15rem;
}

.text-link:hover {
  color: var(--gold-deep);
  border-color: var(--gold);
}

.map-frame {
  position: relative;
  min-height: 22rem;
  background: var(--white);
  border: 1px solid var(--line);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 22rem;
  border: 0;
  filter: grayscale(0.4) contrast(0.98);
}

.map-fallback {
  display: inline-block;
  margin: 0.85rem 1rem 1rem;
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Footer — dark, gold lockup */

.site-footer {
  background: var(--ink);
  color: var(--white);
  text-align: center;
  padding-bottom: 2.75rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
  padding-top: 3rem;
}

.footer-logo {
  width: min(16rem, 70vw);
  height: auto;
}

.footer-meta,
.footer-social {
  margin: 0;
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
}

.footer-social a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.62);
}

.footer-social a:hover {
  color: var(--gold);
}

/* Mobile nav panel */

@media (max-width: 767px) {
  .nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem 1.25rem 1.5rem;
    gap: 0;
    transform: translateY(-0.5rem);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
  }

  .nav.is-open {
    opacity: 1;
    transform: none;
    pointer-events: auto;
    visibility: visible;
  }

  .nav a {
    width: 100%;
    padding: 0.95rem 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-book {
    display: block;
    border-bottom: 0;
    margin-top: 0.4rem;
    color: var(--gold-deep);
  }

  body.nav-open {
    overflow: hidden;
  }

  .brand-logo {
    height: 3.6rem;
  }
}

/* Desktop */

@media (min-width: 768px) {
  .menu-btn {
    display: none;
  }

  .nav {
    display: flex;
  }

  .nav-book {
    display: none;
  }

  .service-cards {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
  }

  .film-frame {
    width: min(28vw, 18rem);
  }

  .work-open img {
    height: 16rem;
  }

  .about-layout,
  .visit-layout {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4.5rem;
    align-items: center;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 34rem;
  }

  .card {
    padding: 2.4rem 2.1rem 2.5rem;
  }

}

@media (min-width: 1100px) {
  .wrap,
  .hero-inner,
  .nav-inner {
    width: min(var(--wrap), calc(100% - 5rem));
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}


/* FAQ */

.faq {
  padding: clamp(4.5rem, 10vw, 8rem) 0;
  background: var(--paper);
}

.faq-groups {
  display: grid;
  gap: 2.75rem;
}

.faq-group h3 {
  margin-bottom: 1rem;
}

.faq details {
  border-top: 1px solid var(--line);
  background: var(--white);
  padding: 0 1.25rem;
}

.faq details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 1.15rem 0;
  font-family: var(--display);
  font-size: 1.2rem;
  line-height: 1.3;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq details p {
  margin: 0 0 1.2rem;
  max-width: 40rem;
  color: var(--muted);
}

@media (min-width: 900px) {
  .faq-groups {
    grid-template-columns: 1.1fr 0.95fr 0.85fr;
    gap: 2.5rem;
    align-items: start;
  }
}
