/* =========================================================================
   Rae + Co — Solo Hair Stylist
   Theme: black & gold "members-only" luxury. Mobile-first, no frameworks.
   ========================================================================= */

:root {
  /* Black-card palette — gold sampled from the Rae + Co logo */
  --bg:         #e5e3d9;   /* page background — warm flat cream */
  --ink:        #2a2721;   /* page-level headings/text on cream */
  --ink-soft:   #5f5a50;   /* page-level secondary text on cream */
  --black:      #0a0a0b;   /* header, buttons, dark card accents */
  --black-2:    #101012;   /* (legacy dark tint) */
  --panel:      #151517;   /* card background */
  --panel-2:    #1c1c1f;   /* hover / raised card */
  --gold:       #d3b271;   /* primary gold */
  --gold-bright:#e8d09a;   /* gold highlight */
  --gold-dim:   #9c8352;   /* quiet gold */
  --gold-line:  rgba(211, 178, 113, 0.35);   /* strong hairline */
  --gold-line-soft: rgba(211, 178, 113, 0.16); /* subtle hairline */
  --ivory:      #f3eee3;   /* headings */
  --text:       #d8d3c7;   /* body text */
  --muted:      #9d978a;   /* secondary text */
  --copper:     #c08b5e;   /* "away" calendar accent */
  --white:      #fffdf8;

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Karla", -apple-system, "Segoe UI", Roboto, sans-serif;

  --radius: 6px;
  --radius-lg: 10px;
  --shadow: 0 18px 40px rgba(40, 34, 22, 0.2);
  --shadow-soft: 0 8px 20px rgba(40, 34, 22, 0.14);
  --maxw: 1100px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.18;
  margin: 0 0 0.5rem;
}

h2 {
  font-size: clamp(1.7rem, 4.5vw, 2.4rem);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

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

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

::selection { background: var(--gold); color: var(--black); }

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

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

/* ---------- Fixed background wash (pans with scroll) ---------- */
/* Flat cream page with a barely-there warm gradient that main.js slides
   as you scroll — keeps the page feeling alive without any texture. */
.site-textures { pointer-events: none; }
.texture {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.texture.is-active { opacity: 1; }

.texture--pan {
  background: linear-gradient(180deg,
    #eae8df 0%, #e0ded3 22%, #e8e6dc 45%,
    #dcdacf 68%, #e9e7de 88%, #e1dfd4 100%);
  background-size: 100% 300%;
  background-position: center 0%;
}

/* ---------- Brand mark (framed gold wordmark, echoes the logo) ---------- */
.brand-enso { display: none; }

.brand-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  border: 1px solid var(--gold);
  padding: 0.5em 0.95em 0.42em 1.15em; /* extra left pads the tracking gap */
  white-space: nowrap;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 11, 0.86);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gold-line-soft);
}

.nav {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0.8rem 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 10px;
  cursor: pointer;
}
.nav-toggle span {
  width: 24px; height: 1.5px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: var(--black);
  border-bottom: 1px solid var(--gold-line-soft);
  box-shadow: var(--shadow);
  flex-direction: column;
}
.nav-menu.is-open { display: flex; }
.nav-menu a {
  display: block;
  padding: 0.95rem 1.4rem;
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.nav-menu a:hover { background: var(--panel); color: var(--gold-bright); }

.nav-cta {
  color: var(--black) !important;
  background: var(--gold);
  text-align: center;
}
.nav-cta:hover { background: var(--gold-bright) !important; color: var(--black) !important; }

@media (min-width: 820px) {
  .nav-toggle { display: none; }
  .nav-menu {
    display: flex;
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 0.2rem;
    background: none;
    border: 0;
    box-shadow: none;
  }
  .nav-menu a { padding: 0.5rem 0.85rem; border-radius: 3px; font-size: 0.78rem; }
  .nav-menu a:hover { background: var(--panel-2); }
  .nav-cta { padding: 0.5rem 1.2rem !important; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.9rem 1.8rem;
  border-radius: 3px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-align: center;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease,
              background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn:active { transform: scale(0.98); }
.btn-primary {
  background: var(--gold);
  color: var(--black);
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover { background: var(--gold-bright); }
.btn-ghost {
  border-color: var(--gold-line);
  color: var(--gold);
  background: transparent;
}
.btn-ghost:hover { border-color: var(--gold); background: rgba(211, 178, 113, 0.08); }
.btn-block { display: block; width: 100%; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 88svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4.5rem 1.25rem 5rem;
  overflow: hidden;
}

/* Faint gold glow rising off black — kept barely-there */
.hero-bg {
  position: absolute;
  inset: -20%;
  z-index: -1;
  background:
    radial-gradient(42% 34% at 50% 30%, rgba(211, 178, 113, 0.10) 0%, transparent 70%),
    radial-gradient(30% 36% at 85% 80%, rgba(211, 178, 113, 0.05) 0%, transparent 70%),
    radial-gradient(34% 30% at 12% 78%, rgba(192, 139, 94, 0.05) 0%, transparent 70%);
  filter: blur(2px);
  animation: drift 26s ease-in-out infinite alternate;
}
@keyframes drift {
  from { transform: translate3d(-1.5%, -1%, 0) scale(1); }
  to   { transform: translate3d(1.5%, 1.5%, 0) scale(1.05); }
}

.hero-inner { max-width: 720px; }

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.34em;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--ink-soft);
  margin: 0 0 1.6rem;
}

/* Framed wordmark — the logo, rebuilt in type */
.hero-wordmark {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 8.5vw, 4.6rem);
  font-weight: 500;
  color: var(--gold);
  background: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  line-height: 1;
  border: 2px solid var(--gold);
  box-shadow: 0 0 0 3.5px var(--black);   /* second black band outside the gold frame */
  padding: 0.42em 0.7em 0.36em 0.84em;
  margin: 4px 4px calc(1.4rem + 4px);     /* keep the outer band clear of neighbors */
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.6vw, 1.9rem);
  color: var(--ink);
  margin: 0 0 1rem;
}
.hero-tagline em { color: var(--gold-dim); }

.hero-sub {
  font-size: clamp(0.98rem, 2.5vw, 1.1rem);
  color: var(--ink-soft);
  max-width: 540px;
  margin: 0 auto 2.2rem;
}

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

/* ---------- Sections ---------- */
.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 4.5rem 1.25rem;
}

.section-tinted {
  max-width: none;
  background: rgba(42, 39, 33, 0.05);   /* whisper of a darker cream band */
  border-top: 1px solid var(--gold-line-soft);
  border-bottom: 1px solid var(--gold-line-soft);
}
.section-tinted > * {
  max-width: var(--maxw);
  margin-left: auto;
  margin-right: auto;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.4rem;
}
.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold-dim);
  margin: 0 0 0.5rem;
}
/* Short gold rule under every section heading */
.section-head h2::after {
  content: "";
  display: block;
  width: 54px;
  height: 1px;
  background: var(--gold);
  margin: 1rem auto 0;
}
.section-sub { color: var(--ink-soft); margin: 0.9rem 0 0; }

/* Placeholder art for photos not added yet — charcoal + gold linework */
.ph {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ph svg { width: 46%; height: auto; opacity: 0.6; }
.ph-1 { background: linear-gradient(150deg, #232019, #131211); }
.ph-2 { background: linear-gradient(150deg, #1d1d21, #101012); }
.ph-3 { background: linear-gradient(150deg, #282219, #16130e); }
.ph-4 { background: linear-gradient(150deg, #1a181c, #0e0e10); }

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}
@media (min-width: 640px)  { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px)  { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: var(--panel);
  border: 1px solid var(--gold-line-soft);
  border-top: 2px solid var(--gold-dim);
  border-radius: var(--radius);
  padding: 1.3rem 1.4rem;
  box-shadow: var(--shadow-soft);
}
.service-card h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ivory);
  margin: 0;
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  align-items: baseline;
}
.service-price {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--gold);
  white-space: nowrap;
}
.service-card p {
  margin: 0.45rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}

/* Service seals — one notary-style stamp per menu category. The strip
   itself reuses the specialties grid; only the seal is new. */
.seal-cell { padding: 1.6rem 0.8rem 1.5rem; }
.seal {
  display: block;
  width: min(100%, 176px);
  height: auto;
  margin: 0 auto 0.8rem;
  overflow: visible;
}
.seal-title {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  fill: var(--ink);
}
.seal-brand {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  fill: var(--gold-dim);
}
.seal-price {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.02em;
  fill: var(--ink);
}
.seal-cell p {
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 22ch;
  margin: 0 auto;
}

.services-note {
  text-align: center;
  font-size: 0.88rem;
  color: var(--ink-soft);
  max-width: 560px;
  margin: 1.8rem auto 0;
}
.services-menu-link {
  text-align: center;
  margin: 1rem auto 0;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.services-menu-link a {
  color: var(--gold-dim);
  text-decoration: none;
  border-bottom: 1px solid var(--gold-line);
  padding-bottom: 2px;
}
.services-menu-link a:hover { color: var(--ink); border-color: var(--gold); }

.services-note {
  text-align: center;
  font-size: 0.88rem;
  color: var(--ink-soft);
  max-width: 560px;
  margin: 1.8rem auto 0;
}

/* ---------- Calendar ---------- */
.calendar-card {
  background: var(--panel);
  border: 1px solid var(--gold-line-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 1.2rem;
  max-width: 560px;
  margin: 0 auto;
}
@media (min-width: 640px) { .calendar-card { padding: 1.8rem 2rem; } }

.calendar-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.8rem;
}
.cal-title {
  font-size: 1.45rem;
  margin: 0;
}
.cal-nav {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--gold-line);
  background: transparent;
  color: var(--gold);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.cal-nav:hover:not(:disabled) { background: rgba(211, 178, 113, 0.1); color: var(--gold-bright); }
.cal-nav:disabled { opacity: 0.3; cursor: default; }

.cal-weekdays, .cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.cal-weekdays span {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  padding-bottom: 0.4rem;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.88rem;
  position: relative;
}
.cal-day.is-pad { visibility: hidden; }
.cal-day.is-open   { background: rgba(211, 178, 113, 0.18); color: var(--gold-bright); font-weight: 600; }
.cal-day.is-closed { color: rgba(157, 151, 138, 0.45); }
.cal-day.is-away   { background: rgba(192, 139, 94, 0.2); color: var(--copper); font-weight: 600; }
.cal-day.is-past   { opacity: 0.35; background: transparent; font-weight: 400; }
.cal-day.is-today::after {
  content: "";
  position: absolute;
  bottom: 4px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.cal-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.2rem;
  margin-top: 1.1rem;
  font-size: 0.82rem;
  color: var(--muted);
}
.legend-item { display: inline-flex; align-items: center; gap: 0.4rem; }
.dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  display: inline-block;
}
.dot-open   { background: rgba(211, 178, 113, 0.65); }
.dot-closed { background: rgba(157, 151, 138, 0.3); }
.dot-away   { background: rgba(192, 139, 94, 0.6); }

.cal-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--copper);
  margin: 0.9rem 0 0;
  min-height: 1.2em;
}

.hours-strip {
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--gold-line-soft);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.3rem 1.1rem;
  font-size: 0.82rem;
  color: var(--muted);
}
.hours-strip b { color: var(--gold); font-weight: 600; }

/* ---------- Awards ---------- */
.awards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 600px)  { .awards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 920px)  { .awards-grid { grid-template-columns: repeat(3, 1fr); } }

.award-card {
  background: var(--panel);
  border: 1px solid var(--gold-line-soft);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}
.award-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold-dim);
}
.award-card.is-award::before { background: var(--gold); }

.award-badge {
  flex: 0 0 auto;
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(211, 178, 113, 0.1);
  border: 1px solid var(--gold-line-soft);
}
.award-card.is-award .award-badge { background: rgba(211, 178, 113, 0.18); }
.award-badge svg { width: 28px; height: 28px; }

.award-body h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ivory);
  margin: 0;
}
.award-body p {
  margin: 0.2rem 0 0;
  font-size: 0.88rem;
  color: var(--muted);
}
.award-year {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
}
.award-photo {
  margin-top: 0.8rem;
  border-radius: 4px;
  overflow: hidden;
}

/* ---------- Testimonials ---------- */
.quotes-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 800px) { .quotes-row { grid-template-columns: repeat(3, 1fr); } }

.quote-card {
  background: var(--panel);
  border: 1px solid var(--gold-line-soft);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
  box-shadow: var(--shadow-soft);
}
.quote-card blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--ivory);
}
.quote-card cite {
  display: block;
  margin-top: 0.8rem;
  font-style: normal;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
}
.quote-card cite::before { content: "— "; }

/* ---------- About ---------- */
.about-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.8rem;
  align-items: center;
}
@media (min-width: 760px) {
  .about-card { grid-template-columns: 5fr 7fr; gap: 3rem; }
}

.about-photos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}
.about-photos.single { grid-template-columns: 1fr; max-width: 340px; }

.about-photo {
  border-radius: var(--radius);
  border: 1px solid var(--gold-line-soft);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow-soft);
  background: var(--panel);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-photos .about-photo:nth-child(2) { transform: translateY(1.2rem); }

.about-text h2 { margin-bottom: 0.7rem; }
.about-text p { color: var(--ink-soft); max-width: 48ch; margin: 0 0 0.9em; }
.about-text p:last-child { margin-bottom: 0; }

/* ---------- Our specialties ---------- */
/* Hairlines between cells come from each cell's box-shadow falling into the
   1px grid gap, so they work at every column count without nth-child math. */
.specialties-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  border-top: 1px solid var(--gold-line);
  border-left: 1px solid var(--gold-line);
}
@media (min-width: 640px)  { .specialties-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .specialties-grid { grid-template-columns: repeat(6, 1fr); } }
.specialty {
  text-align: center;
  padding: 1.8rem 1rem 1.7rem;
  box-shadow: 1px 0 0 var(--gold-line), 0 1px 0 var(--gold-line), 1px 1px 0 var(--gold-line);
}
.specialty-icon { width: 44px; height: 44px; margin: 0 auto 0.9rem; }
.specialty-icon svg { width: 100%; height: 100%; display: block; }
.specialty h3 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 0.5rem;
}
.specialty p {
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 21ch;
  margin: 0 auto;
}

/* ---------- Products I use ---------- */
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}
@media (min-width: 560px)  { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px)  { .products-grid { grid-template-columns: repeat(4, 1fr); } }

.product-card {
  background: var(--panel);
  border: 1px solid var(--gold-line-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.product-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--gold-line); }

.product-media {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-media svg { width: 44px; height: 44px; opacity: 0.7; stroke: var(--gold); }
.product-media img { width: 100%; height: 100%; object-fit: cover; }

.product-body {
  padding: 1rem 1.15rem 1.2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-brand {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
}
.product-body h3 {
  font-family: var(--font-body);
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--ivory);
  margin: 0.25rem 0 0;
}
.product-blurb {
  margin: 0.45rem 0 0;
  font-size: 0.86rem;
  color: var(--muted);
  flex: 1;
}
.product-link {
  margin-top: 0.8rem;
  align-self: flex-start;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid var(--gold-line);
  padding-bottom: 2px;
}
.product-link:hover { color: var(--gold-bright); border-bottom-color: var(--gold); }

.products-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--ink-soft);
  max-width: 540px;
  margin: 1.8rem auto 0;
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 700px;
  margin: 0 auto;
}
.faq-item {
  background: var(--panel);
  border: 1px solid var(--gold-line-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  margin-bottom: 0.7rem;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.05rem 1.3rem;
  font-weight: 600;
  color: var(--ivory);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  flex: 0 0 auto;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-a {
  padding: 0 1.3rem 1.1rem;
  color: var(--muted);
  font-size: 0.94rem;
}

/* ---------- Booking ---------- */
.book { padding-bottom: 5.5rem; }

/* The "black card" — double gold frame, like a membership card */
.book-card {
  background: linear-gradient(135deg, #17171a 0%, #0d0d0e 60%, #121214 100%);
  color: var(--text);
  border: 1px solid var(--gold-line);
  border-radius: var(--radius-lg);
  padding: 2.8rem 1.7rem;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
@media (min-width: 640px) { .book-card { padding: 3.4rem 3rem; } }

.book-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(45% 55% at 88% 8%, rgba(211, 178, 113, 0.12) 0%, transparent 70%),
    radial-gradient(40% 55% at 8% 92%, rgba(211, 178, 113, 0.07) 0%, transparent 70%);
  pointer-events: none;
}
.book-card::after {
  content: "";
  position: absolute;
  inset: 9px;
  border: 1px solid var(--gold-line-soft);
  border-radius: calc(var(--radius-lg) - 5px);
  pointer-events: none;
}
.book-card > * { position: relative; z-index: 1; }

.book-card h2 { color: var(--gold); }
.book-card p { max-width: 520px; margin: 0.6rem auto 1.8rem; color: var(--text); }

.book-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}
.book-actions .btn-primary { background: var(--gold); color: var(--black); }
.book-actions .btn-primary:hover { background: var(--gold-bright); }
.book-actions .btn-ghost { border-color: var(--gold-line); color: var(--gold); }
.book-actions .btn-ghost:hover { border-color: var(--gold); background: rgba(211, 178, 113, 0.08); }

.book-meta {
  display: block;
  margin-top: 1.7rem;
  font-style: normal;
  font-size: 0.88rem;
  color: var(--muted);
}

/* ---------- Footer ---------- */
.site-footer {
  text-align: center;
  padding: 2.2rem 1.25rem 6.5rem;   /* bottom space for mobile book bar */
  color: var(--ink-soft);
  font-size: 0.88rem;
  border-top: 1px solid var(--gold-line-soft);
}
.site-footer p { margin: 0.5rem 0 0; }
.site-footer p:first-of-type {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.95rem;
  color: var(--gold-dim);
}
.footer-fine { font-size: 0.78rem; opacity: 0.75; }

@media (min-width: 820px) {
  .site-footer { padding-bottom: 2.2rem; }
}

/* ---------- Sticky mobile booking bar ---------- */
.mobile-book-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  padding: 0.7rem 1rem calc(0.7rem + env(safe-area-inset-bottom));
  background: rgba(10, 10, 11, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--gold-line-soft);
  z-index: 40;
  transform: translateY(110%);
  visibility: hidden;
  transition: transform 0.3s ease, visibility 0.3s;
}
.mobile-book-bar.is-visible { transform: translateY(0); visibility: visible; }

@media (min-width: 820px) {
  .mobile-book-bar { display: none; }
}

/* ---------- Reveal-on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- DRAFT: fridge-magnet collage ---------- */
.magnet-board {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: start;
}
.magnet {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--gold-line);
  border-radius: 4px;
  box-shadow: 0 16px 34px rgba(40, 34, 22, 0.22);
  padding: 10px 10px 12px;
  margin: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.magnet:hover {
  transform: rotate(0deg) translateY(-4px) !important;
  box-shadow: 0 24px 48px rgba(40, 34, 22, 0.28);
  z-index: 5;
}
.magnet img { width: 100%; display: block; border-radius: 2px; }
.magnet-photo figcaption {
  font-family: var(--font-display);
  font-style: italic;
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
  padding-top: 0.55rem;
}
.magnet-note { padding: 1.1rem 1.2rem 1.2rem; text-align: center; }
.magnet-note h3 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin: 0 0 0.35rem;
}
.magnet-note p { margin: 0; color: var(--text); font-size: 0.95rem; line-height: 1.75; }

@media (min-width: 860px) {
  .m-salon-wide    { grid-column: 1 / 7;  grid-row: 1; transform: rotate(-2.4deg); z-index: 2; }
  .m-salon-mirrors { grid-column: 7 / 13; grid-row: 1; transform: rotate(1.8deg) translateY(2.2rem); }
  .m-address       { grid-column: 1 / 4;  grid-row: 2; transform: rotate(2deg) translateY(1.2rem); align-self: start; }
  .m-hours         { grid-column: 4 / 7;  grid-row: 2; transform: rotate(-1.2deg) translateY(3.4rem); align-self: start; }
  .m-candle        { grid-column: 8 / 12; grid-row: 2; transform: rotate(-1.6deg) translateY(4rem); }
  .magnet-board { padding-bottom: 5rem; }
}
@media (max-width: 859px) {
  /* Phones: the three magnets stack straight, centred and edge-aligned. */
  .magnet-board { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; max-width: 420px; }
  .magnet-board .magnet { width: 100%; }
}

.magnet-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.2rem 2.4rem;
  margin-top: 2.4rem;
  align-items: flex-start;
}
.magnet-stylist { width: 250px; }
.tilt-l  { transform: rotate(-2.2deg); }
.tilt-r  { transform: rotate(1.8deg) translateY(0.9rem); }
.tilt-l2 { transform: rotate(-1.4deg); }
.magnet-stylist figcaption { text-align: center; padding: 0.7rem 0.3rem 0.3rem; }
.magnet-stylist strong {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ivory);
  font-size: 1.05rem;
  display: block;
}
.magnet-role {
  display: block;
  color: var(--gold);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-top: 0.25rem;
}
.magnet-spec {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  margin-top: 0.45rem;
  line-height: 1.5;
}
.magnet-bio {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.55;
  text-align: left;
  margin: 0.7rem 0 0;
  padding: 0.7rem 0.2rem 0;
  border-top: 1px solid var(--gold-line-soft);
}
.magnet-stylist a {
  display: inline-block;
  margin-top: 0.6rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid var(--gold-line);
  padding-bottom: 2px;
}

/* ---------- DRAFT v2: dispersed magnets ---------- */
/* Studio board: three magnets, spread wide */
.m-salon-wide, .m-salon-mirrors { display: none; }
@media (min-width: 860px) {
  .m-address { grid-column: 1 / 4;   grid-row: 1; transform: rotate(2deg) translateY(1.6rem); }
  .m-candle  { grid-column: 5 / 9;   grid-row: 1; transform: rotate(-1.6deg) translateY(-0.4rem); }
  .m-hours   { grid-column: 10 / 13; grid-row: 1; transform: rotate(1.4deg) translateY(2.6rem); }
  .magnet-board { padding-bottom: 3rem; }
}

/* Team: more air */
.magnet-row { gap: 3.2rem 4.5rem; }
.tilt-r { transform: rotate(1.8deg) translateY(1.6rem); }
.tilt-l2 { transform: rotate(-1.4deg) translateY(0.5rem); }

/* DRAFT: floating placeholder magnet between sections */
.magnet-solo {
  display: flex;
  justify-content: center;
  padding: 1rem 1.25rem 3.5rem;
}
.m-solo { width: 250px; transform: rotate(-2deg); }
.magnet-ph {
  aspect-ratio: 4 / 5;
  border-radius: 2px;
}
.magnet-ph svg { width: 46%; height: auto; opacity: 0.6; }

/* Salon photo magnet between the menu and testimonials */
.m-inside { width: min(430px, 86vw); transform: rotate(1.8deg); }

/* The printed menu magnet: portrait artwork, wider than a photo magnet so
   the headings stay readable before tapping through to the full-size file. */
.menu-solo { flex-direction: column; align-items: center; padding-top: 0.5rem; }
.menu-eyebrow { text-align: center; margin: 0 0 1.4rem; }
.m-menu { width: min(560px, 92vw); transform: rotate(-1.2deg); }
.m-menu .menu-link {
  display: block;
  background: var(--white);
  border-radius: 2px;
  overflow: hidden;
}
.m-menu .menu-link:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.m-menu img { width: 100%; height: auto; display: block; }

/* Stylist silhouette placeholders (until real photos arrive) */
.stylist-ph {
  height: auto;              /* beat .ph's height:100% so the caption stays inside the card */
  aspect-ratio: 5 / 4;
  border-radius: 2px;
}
.stylist-ph svg { width: 42%; height: auto; opacity: 0.6; }

/* Salon-floor placeholder (landscape) */
.salon-ph {
  height: auto;
  aspect-ratio: 4 / 3;
  border-radius: 2px;
}
.salon-ph svg { width: 30%; height: auto; opacity: 0.6; }

/* Around the studio: a row of photo magnets between the team and the
   specialties. Placeholders until the store photos arrive — to add one, swap
   a .ph <div> for <img src="images/magnets/your-photo.jpg" alt="…">. */
.studio-photos { flex-direction: column; align-items: center; padding-top: 0.5rem; }
.studio-photo-row { margin-top: 0; gap: 2.4rem 2.8rem; }
.m-studio-photo { width: min(290px, 41vw); }   /* two-up from phones through tablets, three across on desktop */
@media (max-width: 600px) {
  .studio-photo-row { gap: 1.4rem 1.1rem; }
}

/* Neighbouring tinted bands share one hairline instead of doubling up. */
.section-tinted + .section-tinted { border-top: 0; }
