/* =========================================================
   BOWIE BEAUTY — brand tokens
   Palette pulled from the studio itself: charcoal styling
   chairs, warm walnut floors, soft cream walls, brass vanity
   light glow.
========================================================= */
:root {
  --charcoal: #17140f;
  --charcoal-2: #211d17;
  --walnut: #6b4226;
  --walnut-deep: #4a2c19;
  --cream: #f7f2e9;
  --cream-2: #efe7d8;
  --ink: #23201b;
  --ink-soft: #56504a;
  --brass: #c8a15c;
  --brass-light: #f0d9a0;
  --brass-dim: #9c7c46;
  --menu-bg: #34200f;
  --line: rgba(35, 32, 27, 0.12);
  --line-on-dark: rgba(240, 217, 160, 0.25);

  --font-display: "Big Shoulders Display", "Arial Narrow", sans-serif;
  --font-body: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-eyebrow: "Big Shoulders Text", var(--font-body);

  --max: 1180px;
  --radius: 2px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}

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

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

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 0.98;
  margin: 0 0 0.5em;
  color: var(--charcoal);
  text-transform: uppercase;
}

h1 { font-size: clamp(2.6rem, 6.5vw, 5.2rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); text-transform: none; letter-spacing: 0; }

p { margin: 0 0 1em; }

.eyebrow {
  font-family: var(--font-eyebrow);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.78rem;
  color: var(--brass-dim);
  font-weight: 600;
  display: inline-block;
  margin-bottom: 0.9rem;
}

.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.section--tight { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.section--dark { background: var(--charcoal); color: var(--cream-2); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--cream); }
.section--cream2 { background: var(--cream-2); }

/* ---------- signature: vanity-light rule ----------
   A row of small glowing bulbs, echoing the LED mirror
   lights above every styling chair in the studio photos.
------------------------------------------------------ */
.vanity-rule {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 1.75rem;
}
.vanity-rule span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brass-light);
  box-shadow: 0 0 6px 2px rgba(240, 217, 160, 0.55);
  animation: bulb-glow 3.2s ease-in-out infinite;
}
.vanity-rule span:nth-child(2) { animation-delay: 0.4s; }
.vanity-rule span:nth-child(3) { animation-delay: 0.8s; }
.vanity-rule span:nth-child(4) { animation-delay: 1.2s; }
.vanity-rule span:nth-child(5) { animation-delay: 1.6s; }
.vanity-rule::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--brass-dim), transparent);
}
@keyframes bulb-glow {
  0%, 100% { opacity: 0.45; box-shadow: 0 0 4px 1px rgba(240,217,160,0.35); }
  50% { opacity: 1; box-shadow: 0 0 10px 4px rgba(240,217,160,0.65); }
}
@media (prefers-reduced-motion: reduce) {
  .vanity-rule span { animation: none; opacity: 0.85; }
}

/* ---------- header / nav ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 1.1rem 0;
  background: var(--menu-bg);
  transition: padding 0.35s ease, box-shadow 0.35s ease;
}
.site-header.is-scrolled {
  padding: 0.7rem 0;
  box-shadow: 0 6px 24px rgba(0,0,0,0.25);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  color: var(--cream);
  text-transform: uppercase;
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}
.brand small {
  font-family: var(--font-eyebrow);
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  color: var(--brass);
  font-weight: 600;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  font-family: var(--font-eyebrow);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-2);
  font-weight: 600;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
.nav-links a:hover,
.nav-links a.is-active { color: var(--brass-light); border-color: var(--brass); }
.nav-cta {
  font-family: var(--font-eyebrow);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
  background: var(--brass);
  color: var(--charcoal);
  padding: 0.65rem 1.2rem;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: var(--brass-light); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line-on-dark);
  color: var(--cream);
  width: 42px; height: 42px;
  border-radius: var(--radius);
  font-size: 1.1rem;
  cursor: pointer;
}

@media (max-width: 880px) {
  .nav-links { position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
    background: rgba(23,20,15,0.98); flex-direction: column; justify-content: flex-start;
    padding: 2.5rem 1.5rem; gap: 1.6rem; transform: translateX(100%);
    transition: transform 0.35s ease; }
  .nav-links.is-open { transform: translateX(0); }
  .nav-links a { font-size: 1.1rem; }
  .nav-toggle { display: block; }
  .nav-cta { display: none; }
  .nav-links .nav-cta-mobile { display: inline-block; }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  color: var(--cream);
  background-size: cover;
  background-position: center;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(23,20,15,0.35) 0%, rgba(23,20,15,0.55) 55%, rgba(23,20,15,0.92) 100%);
  z-index: -1;
}
.hero-content { padding: 8rem 0 4.5rem; }
.hero h1 { color: var(--cream); max-width: 14ch; }
.hero .lede { font-size: 1.15rem; max-width: 46ch; color: var(--cream-2); }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.8rem; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-eyebrow);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.95rem 1.7rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn--brass { background: var(--brass); color: var(--charcoal); }
.btn--brass:hover { background: var(--brass-light); transform: translateY(-2px); }
.btn--ghost { border-color: var(--line-on-dark); color: var(--cream); }
.btn--ghost:hover { border-color: var(--brass); color: var(--brass-light); }
.btn--dark { background: var(--charcoal); color: var(--cream); }
.btn--dark:hover { background: var(--walnut-deep); }

/* ---------- feature grid ---------- */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.75rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.75rem; }
@media (max-width: 980px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-4, .grid-2 { grid-template-columns: 1fr; } }

.feature-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 1.9rem 1.6rem;
  border-radius: var(--radius);
}
.feature-card .num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--brass-dim);
  line-height: 1;
  margin-bottom: 0.6rem;
}
.feature-card h3 { margin-bottom: 0.4rem; }
.feature-card p { color: var(--ink-soft); margin-bottom: 0; font-size: 0.96rem; }

/* ---------- rates ---------- */
.rate-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--line);
}
.rate-table th, .rate-table td {
  text-align: left;
  padding: 1.1rem 1.3rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.rate-table thead th {
  font-family: var(--font-eyebrow);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  color: var(--brass-dim);
  background: var(--cream-2);
  border-bottom: 2px solid var(--brass);
}
.rate-table td.price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--charcoal);
  white-space: nowrap;
}
.rate-table tr:last-child td { border-bottom: none; }
.rate-table td .fine { display: block; color: var(--ink-soft); font-size: 0.85rem; margin-top: 0.2rem; }

.note-box {
  border-left: 3px solid var(--brass);
  background: var(--cream-2);
  padding: 1.3rem 1.5rem;
  margin-top: 2rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.note-box strong { color: var(--ink); }

/* ---------- gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gallery-grid { grid-template-columns: 1fr; } }

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: zoom-in;
  background: var(--charcoal);
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 0.9rem 1rem 0.7rem;
  background: linear-gradient(0deg, rgba(23,20,15,0.85), transparent);
  color: var(--cream);
  font-family: var(--font-eyebrow);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(15,13,10,0.94);
  display: none;
  align-items: center; justify-content: center;
  padding: 3rem 1.5rem;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 82vh; border-radius: var(--radius); }
.lightbox-cap { color: var(--cream-2); font-family: var(--font-eyebrow); margin-top: 1rem; text-align: center; letter-spacing: 0.06em; }
.lightbox-close {
  position: absolute; top: 1.4rem; right: 1.6rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line-on-dark);
  background: transparent; color: var(--cream);
  font-size: 1.3rem; cursor: pointer;
}
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: transparent; border: 1px solid var(--line-on-dark);
  color: var(--cream); width: 46px; height: 46px; border-radius: 50%;
  font-size: 1.3rem; cursor: pointer;
}
.lightbox-nav.prev { left: 1.4rem; }
.lightbox-nav.next { right: 1.4rem; }

/* ---------- location / map ---------- */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  align-items: stretch;
}
@media (max-width: 860px) { .location-grid { grid-template-columns: 1fr; } }
.map-frame {
  border: 0; width: 100%; height: 100%; min-height: 340px;
  filter: grayscale(0.25) contrast(1.05);
  border-radius: var(--radius);
}
.info-list { list-style: none; margin: 0; padding: 0; }
.info-list li {
  display: flex; gap: 0.9rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
}
.info-list li:last-child { border-bottom: none; }
.info-list .k {
  font-family: var(--font-eyebrow);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  color: var(--brass-dim);
  min-width: 90px;
}
.info-list .v a:hover { color: var(--brass-dim); }

/* ---------- contact form ---------- */
.form-grid { display: grid; gap: 1.1rem; }
.form-grid label {
  font-family: var(--font-eyebrow);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  display: block;
  margin-bottom: 0.35rem;
}
.form-grid input, .form-grid textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  background: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  border-radius: var(--radius);
}
.form-grid input:focus, .form-grid textarea:focus {
  outline: 2px solid var(--brass);
  outline-offset: 1px;
}
.form-note { font-size: 0.85rem; color: var(--ink-soft); margin-top: 0.6rem; }

/* ---------- footer ---------- */
.site-footer {
  background: var(--charcoal);
  color: var(--cream-2);
  padding: 3.5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.2rem;
  border-bottom: 1px solid var(--line-on-dark);
}
@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 {
  color: var(--brass-light);
  font-family: var(--font-eyebrow);
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 0.55rem; font-size: 0.94rem; }
.footer-grid a:hover { color: var(--brass-light); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 0.8rem;
  padding-top: 1.6rem;
  font-size: 0.82rem;
  color: var(--ink-soft);
}

/* ---------- utility ---------- */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--brass); color: var(--charcoal);
  padding: 0.8rem 1.2rem; z-index: 999;
}
.skip-link:focus { left: 1rem; top: 1rem; }
:focus-visible { outline: 2px solid var(--brass); outline-offset: 2px; }
