/* Beauty Brow Bar — skill-e-house v1.18 build */

/* ---------- Fonts (self-hosted, versioned) ---------- */
@font-face {
  font-family: "Nunito";
  src: url("fonts/nunito-var.woff2?v=1") format("woff2");
  font-weight: 200 900;
  font-display: swap;
}
@font-face {
  font-family: "Rubik";
  src: url("fonts/rubik-var.woff2?v=1") format("woff2");
  font-weight: 300 900;
  font-display: swap;
}

/* ---------- Palette ----------
   ground  #fbf8f5  warm white (studio walls)
   ink     #1b1611  near-black (facade, chairs, frames) — the ONE dark hue
   tint    #f3eae2  rose-beige (marble floors, mall marble)
   gold    #7d5e30  deep brushed gold (storefront trim) — text-safe accent
   gold-lt #c9a25e  gold for dark band only
   muted   #5f574c  muted warm gray text
   berry   #a8305a  ACTION COLOR — CTAs only (entrance poster lips/nails)
------------------------------------------------------ */
:root {
  --ground: #fbf8f5;
  --ink: #1b1611;
  --tint: #f3eae2;
  --gold: #7d5e30;
  --gold-lt: #c9a25e;
  --muted: #5f574c;
  --berry: #a8305a;
  --berry-dark: #8f2749;
  --open-green: #15803d;
  --closed-red: #d92d20;
  --band-text: #f4ede5;
  --radius: 14px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Rubik", -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--ground);
  -webkit-text-size-adjust: 100%;
}

h1, h2, h3, .wordmark {
  font-family: "Nunito", -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 700;
  line-height: 1.15;
}

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

.container {
  max-width: 1060px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

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

:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 2px;
  border-radius: 4px;
}
.band :focus-visible { outline-color: var(--band-text); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 26px;
  border-radius: 10px;
  font-family: "Nunito", -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 700;
  font-size: 17px;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--berry);
  color: #ffffff;
}
.btn-primary:hover { background: var(--berry-dark); }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
}
.btn-outline:hover { background: rgba(27, 22, 17, 0.06); }
.btn-ghost {
  background: transparent;
  color: var(--band-text);
  border: 2px solid var(--band-text);
}
.btn-ghost:hover { background: rgba(244, 237, 229, 0.12); }
.btn-small {
  min-height: 44px;
  padding: 9px 20px;
  font-size: 16px;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ---------- Sticky header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--ground);
  border-bottom: 1px solid rgba(27, 22, 17, 0.1);
}
.header-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 10px;
  padding-bottom: 10px;
  flex-wrap: nowrap;
}
.wordmark {
  font-size: 21px;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}
.site-nav {
  display: flex;
  gap: 22px;
  margin-left: auto;
}
.site-nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 16px;
  padding: 12px 2px;
}
.site-nav a:hover { color: var(--gold); }
.btn-header { margin-left: auto; }
.site-nav + .btn-header { margin-left: 0; }

@media (max-width: 899px) {
  .site-nav { display: none; }
}
@media (max-width: 480px) {
  .wordmark { font-size: 18px; }
  .btn-header { padding: 10px 20px; min-height: 44px; font-size: 16px; }
}

/* ---------- Hero / first screen ---------- */
.hero { padding: 44px 0 0; }
.hero h1 {
  font-size: clamp(32px, 6vw, 52px);
  max-width: 21ch;
}
.subtitle {
  margin-top: 14px;
  font-size: 19px;
  color: var(--muted);
  max-width: 46ch;
}
.hero .cta-row { margin-top: 24px; }

.hours { margin-top: 22px; }
.status { font-size: 17px; }
.dot {
  display: none;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  margin-right: 4px;
  vertical-align: baseline;
}
.dot.open { display: inline-block; background: var(--open-green); }
.dot.closed { display: inline-block; background: var(--closed-red); }

.hours-table {
  margin-top: 6px;
  border-collapse: collapse;
  color: var(--muted);
  font-size: 16px;
}
.hours-table th {
  text-align: left;
  font-weight: 500;
  padding: 1px 14px 1px 0;
}
.hours-table td { padding: 1px 0; }

.hero-photo { margin-top: 34px; }
.hero-photo img {
  width: 100%;
  border-radius: var(--radius);
}

/* ---------- Proof strip (quiet) ---------- */
.proof { padding: 54px 0 10px; text-align: center; }
.proof blockquote p {
  font-family: "Nunito", -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 3vw, 26px);
  max-width: 34ch;
  margin: 0 auto;
}
.proof blockquote footer {
  margin-top: 12px;
  color: var(--muted);
  font-size: 16px;
}
.proof-more { margin-top: 4px; font-size: 16px; }
.proof-more a {
  color: var(--gold);
  display: inline-block;
  padding: 12px 8px;
}

/* ---------- Sections ---------- */
.section { padding: 64px 0; }
.section-tint { background: var(--tint); }
.section h2 {
  font-size: clamp(26px, 4vw, 34px);
  margin-bottom: 26px;
}
.kicker {
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 8px;
}

/* ---------- Cards ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  background: #ffffff;
  border: 1px solid rgba(27, 22, 17, 0.08);
  border-radius: var(--radius);
  padding: 24px;
}
.card h3 { font-size: 20px; margin: 12px 0 8px; }
.card p { color: var(--muted); font-size: 16px; }
.card-icon { display: inline-block; width: 44px; height: 44px; color: var(--gold); }
.card-icon svg { width: 44px; height: 44px; }

@media (max-width: 800px) {
  .cards { grid-template-columns: 1fr; }
}

/* ---------- Pricing ---------- */
.pricing-copy { max-width: 44ch; font-size: 18px; }
.pricing-cta { margin-top: 22px; }

/* ---------- Work gallery ---------- */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.work-grid img { border-radius: 10px; width: 100%; }
@media (max-width: 800px) { .work-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .work-grid { grid-template-columns: 1fr; } }

.work-quote { margin-top: 30px; text-align: center; }
.work-quote p {
  font-family: "Nunito", -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 700;
  font-size: 19px;
  max-width: 46ch;
  margin: 0 auto;
}
.work-quote footer { margin-top: 8px; color: var(--muted); font-size: 16px; }

/* ---------- Reviews ---------- */
.review-card p { color: var(--ink); font-size: 16px; }
.review-card footer { margin-top: 12px; color: var(--muted); font-size: 15px; }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: start;
}
.about-text p { max-width: 52ch; }
.about-photo img { border-radius: var(--radius); }
@media (max-width: 800px) { .about-grid { grid-template-columns: 1fr; } }

.wall-frame {
  margin-top: 26px;
  border: 10px solid #14100c;
  background: #ffffff;
  box-shadow: 0 3px 14px rgba(27, 22, 17, 0.16);
  padding: 26px 20px;
  max-width: 320px;
  text-align: center;
}
.wall-frame-quote {
  font-family: "Nunito", -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 20px;
  line-height: 1.35;
}
.wall-frame-caption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 15px;
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 680px; }
.faq-list details {
  border-bottom: 1px solid rgba(27, 22, 17, 0.12);
}
.faq-list summary {
  cursor: pointer;
  font-family: "Nunito", -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 700;
  font-size: 18px;
  padding: 15px 0;
  min-height: 44px;
  list-style: none;
  position: relative;
  padding-right: 34px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: var(--gold);
}
.faq-list details[open] summary::after { content: "\2212"; }
.faq-list details p {
  padding: 0 0 18px;
  color: var(--muted);
  max-width: 56ch;
}

/* ---------- Visit band (the ONE heavy band) ---------- */
.band {
  background: var(--ink);
  color: var(--band-text);
  padding: 64px 0;
  margin-top: 30px;
}
.band h2 { font-size: clamp(26px, 4vw, 34px); }
.band-line { margin-top: 10px; font-size: 18px; }
.band .cta-row { margin-top: 24px; }
.visit-info {
  margin-top: 44px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 620px;
}
.visit-col h3 {
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 10px;
}
.visit-col p { font-size: 16px; }
.visit-col .btn { margin-top: 14px; }
.hours-table-band { color: var(--band-text); margin-top: 0; }
@media (max-width: 560px) { .visit-info { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.site-footer {
  padding: 26px 0 34px;
  color: var(--muted);
  font-size: 14px;
}

/* ---------- Mobile CTA stacking ---------- */
@media (max-width: 599px) {
  .cta-row { flex-direction: column; }
  .cta-row .btn { width: 100%; }
  .hero { padding-top: 30px; }
  .section { padding: 52px 0; }
}

/* ---------- Reveal animations (gated behind html.js) ---------- */
html.js .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
html.js .reveal.in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.js .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
