/* ==========================================================================
   FELLA MOBILE BARBER — styles.css
   Palette pulled from the brand flyer:
     Navy      #0B1424  (primary brand)
     Navy deep #070E1A  (footer / darkest)
     Gold      #C9A24B  (restrained accent)
     Gold soft #E3C57E  (highlights on dark)
     Cream     #F8F5EF  (warm neutral background)
     White     #FFFFFF
     Leather   #6E4B2E  (chocolate-brown details)
     Ink       #1C2433  (body text on light)
   ========================================================================== */

:root {
  --navy: #0B1424;
  --navy-deep: #070E1A;
  --navy-soft: #14213A;
  --gold: #C9A24B;
  --gold-soft: #E3C57E;
  --cream: #F8F5EF;
  --white: #FFFFFF;
  --leather: #6E4B2E;
  --brown: #4A331F;
  --brown-deep: #33220F;
  --ink: #1C2433;
  --muted: #5C6470;
  --muted-on-dark: #A8B0BF;
  --line-light: #E5DFD2;
  --line-dark: rgba(201, 162, 75, 0.25);

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-caps: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Jost", "Helvetica Neue", Arial, sans-serif;

  --wrap: 1180px;
  --pad: clamp(1.25rem, 5vw, 3rem);
  --section-y: clamp(4rem, 10vw, 7.5rem);
  --radius: 2px;
}

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

html { scroll-behavior: smooth; }

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

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 64px; /* room for sticky mobile bar */
}

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

a { color: inherit; }

/* ---------- Type helpers ---------- */

.eyebrow {
  font-family: var(--font-caps);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}

.eyebrow--num::before {
  content: "— ";
  letter-spacing: 0;
}

h1, h2, h3 { font-weight: 500; line-height: 1.12; }

.display-xl {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7.5vw, 5rem);
  letter-spacing: 0.01em;
}

.display-lg {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
}

.display-md {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}

.lede {
  font-size: clamp(1rem, 2vw, 1.15rem);
  max-width: 34em;
  color: var(--muted);
}

.on-dark .lede { color: var(--muted-on-dark); }

/* ---------- Layout ---------- */

.wrap {
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--pad);
}

section { padding-block: var(--section-y); }

.section-head {
  display: grid;
  gap: 0.9rem;
  margin-bottom: clamp(2.2rem, 5vw, 3.5rem);
  max-width: 40em;
}

.bg-cream { background: var(--cream); }
.bg-navy { background: var(--navy); color: var(--white); }
.bg-navy-deep { background: var(--navy-deep); color: var(--white); }
.bg-brown {
  background: linear-gradient(150deg, var(--brown) 0%, var(--brown-deep) 100%);
  color: var(--white);
}

/* ---------- Flyer trust band (brown leather section) ---------- */

.trust-band { padding-block: clamp(3rem, 7vw, 4.5rem); }

.trust-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 860px) {
  .trust-grid { grid-template-columns: repeat(3, 1fr); gap: 3rem; }
}

.trust-item {
  display: grid;
  gap: 0.5rem;
  justify-items: center;
  text-align: center;
  padding: 0 1rem;
}

.trust-item .trust-ico {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--gold-soft);
  line-height: 1;
}

.trust-item h3 {
  font-family: var(--font-caps);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.trust-item p {
  font-size: 0.9rem;
  color: #D9CDBC;
  max-width: 24em;
}

/* ---------- Flyer tagline / signature ---------- */

.byline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  color: var(--gold-soft);
  letter-spacing: 0.03em;
}

.byline .by-name { color: var(--white); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-caps);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.05rem 2.1rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn--gold {
  background: var(--gold);
  color: var(--navy-deep);
}
.btn--gold:hover { background: var(--gold-soft); }

.btn--outline-light {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
  background: transparent;
}
.btn--outline-light:hover { border-color: var(--gold-soft); color: var(--gold-soft); }

.btn--outline-dark {
  border-color: var(--navy);
  color: var(--navy);
  background: transparent;
}
.btn--outline-dark:hover { background: var(--navy); color: var(--white); }

.btn--navy {
  background: var(--navy);
  color: var(--white);
}
.btn--navy:hover { background: var(--navy-soft); }

.text-link {
  font-family: var(--font-caps);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--leather);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 0.3rem;
  transition: color 0.25s ease;
}
.text-link:hover { color: var(--gold); }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 20, 36, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-dark);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--white);
}

.brand img { height: 54px; width: auto; }

/* Text lockup fallback (used until assets/logo.png is added) */
.brand-lockup {
  display: grid;
  line-height: 1;
  text-align: left;
}
.brand-lockup .brand-fella {
  font-family: var(--font-caps);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--gold);
}
.brand-lockup .brand-sub {
  font-family: var(--font-caps);
  font-size: 0.52rem;
  font-weight: 400;
  letter-spacing: 0.52em;
  color: var(--gold-soft);
  margin-top: 0.32rem;
  border-top: 1px solid var(--line-dark);
  padding-top: 0.3rem;
}

.main-nav {
  display: none;
}

.main-nav a {
  font-family: var(--font-caps);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--muted-on-dark);
  transition: color 0.2s ease;
}
.main-nav a:hover { color: var(--gold-soft); }

.header-cta { display: none; }

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 0.6rem;
  cursor: pointer;
}
.nav-toggle span {
  width: 26px;
  height: 1.5px;
  background: var(--gold);
  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); }

.mobile-nav {
  position: fixed;
  inset: 72px 0 0 0;
  background: var(--navy-deep);
  z-index: 99;
  display: none;
  flex-direction: column;
  padding: 2.5rem var(--pad);
  gap: 0.4rem;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-caps);
  font-size: 1rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.mobile-nav a:hover { color: var(--gold-soft); }
.mobile-nav .btn { margin-top: 1.6rem; border-bottom: none; }

@media (min-width: 980px) {
  .main-nav { display: flex; gap: 1.7rem; }
  .header-cta { display: inline-flex; padding: 0.8rem 1.5rem; }
  .nav-toggle, .mobile-nav { display: none !important; }
}

/* ---------- Hero ---------- */

.hero {
  background:
    linear-gradient(160deg, rgba(7, 14, 26, 0.55) 0%, rgba(11, 20, 36, 0.92) 62%, var(--navy) 100%),
    radial-gradient(120% 90% at 80% 10%, #1B2A47 0%, var(--navy) 55%, var(--navy-deep) 100%);
  color: var(--white);
  padding-block: clamp(4.5rem, 11vw, 8.5rem);
  position: relative;
  overflow: hidden;
}

.hero .wrap {
  display: grid;
  gap: clamp(2.5rem, 6vw, 4.5rem);
  align-items: center;
}

@media (min-width: 900px) {
  .hero .wrap { grid-template-columns: 1.1fr 0.9fr; }
}

.hero-copy { display: grid; gap: 1.4rem; justify-items: start; }

.hero h1 { color: var(--white); }
.hero h1 em {
  font-style: italic;
  color: var(--gold-soft);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--muted-on-dark);
  max-width: 30em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-top: 0.4rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-caps);
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-top: 0.8rem;
}
.hero-trust .dot { color: var(--gold); }

.hero-locations {
  font-family: var(--font-caps);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted-on-dark);
  border-top: 1px solid var(--line-dark);
  padding-top: 1.1rem;
  margin-top: 0.6rem;
}

/* ---------- Photo frames (real-photo slots with graceful placeholders) ---------- */

.photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(150deg, var(--navy-soft), var(--navy-deep));
  border: 1px solid var(--line-dark);
}

.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0; /* hidden until the real file exists — prevents broken-image alt text */
}
.photo.has-img img { opacity: 1; }

.photo--tall { aspect-ratio: 4 / 5; }
.photo--natural { aspect-ratio: auto; min-height: 280px; }
.photo--natural img { height: auto; }
.photo--wide { aspect-ratio: 16 / 10; }
.photo--square { aspect-ratio: 1; }

.photo .photo-note {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 0.7rem;
  text-align: center;
  padding: 1.5rem;
  color: var(--muted-on-dark);
}
.photo .photo-note .ph-icon {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
}
.photo .photo-note .ph-label {
  font-family: var(--font-caps);
  font-size: 0.62rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.photo .photo-note .ph-file {
  font-size: 0.72rem;
  opacity: 0.65;
  letter-spacing: 0.06em;
}

/* When the real image loads, JS adds .has-img and the note hides */
.photo.has-img .photo-note { display: none; }

.photo-caption {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.7rem;
  letter-spacing: 0.04em;
}

/* ---------- Brand statement ---------- */

.statement .wrap {
  display: grid;
  gap: 1.6rem;
  max-width: 850px;
  text-align: center;
  justify-items: center;
}

.statement .display-lg { color: var(--navy); }

.statement .rule {
  width: 64px;
  height: 1px;
  background: var(--gold);
}

/* ---------- Services ---------- */

.services-grid {
  display: grid;
  gap: 1.2rem;
}

@media (min-width: 720px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1080px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

.service-card {
  background: var(--white);
  border: 1px solid var(--line-light);
  border-top: 2px solid var(--gold);
  padding: 1.8rem 1.6rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -24px rgba(11, 20, 36, 0.35);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--navy);
}

.service-card p {
  font-size: 0.92rem;
  color: var(--muted);
  flex-grow: 1;
}

.service-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--font-caps);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--leather);
  border-top: 1px solid var(--line-light);
  padding-top: 0.9rem;
}

.service-meta .price {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  color: var(--navy);
}

.service-card .text-link { align-self: flex-start; margin-top: 0.4rem; }

.services-note {
  margin-top: 2.4rem;
  max-width: 46em;
  font-size: 0.9rem;
  color: var(--muted);
  border-left: 2px solid var(--leather);
  padding-left: 1.2rem;
}

.services-cta { margin-top: 2.6rem; }

/* ---------- How it works ---------- */

.steps {
  display: grid;
  gap: 2.2rem;
}

@media (min-width: 860px) {
  .steps { grid-template-columns: repeat(3, 1fr); gap: 3rem; }
}

.step { display: grid; gap: 0.8rem; align-content: start; }

.step-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--gold);
  line-height: 1;
}

.step h3 {
  font-family: var(--font-caps);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
}

.step p { color: var(--muted-on-dark); font-size: 0.95rem; }

.steps-cta { margin-top: 3rem; text-align: center; }

/* ---------- Booking ---------- */

.booking-layout {
  display: grid;
  gap: 3rem;
}

@media (min-width: 980px) {
  .booking-layout { grid-template-columns: 0.9fr 1.1fr; align-items: start; }
}

.booking-info { display: grid; gap: 1.3rem; align-content: start; }

.no-deposit {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  background: var(--cream);
  border: 1px solid var(--line-light);
  border-left: 2px solid var(--gold);
  padding: 1.2rem 1.4rem;
  font-size: 0.95rem;
}
.no-deposit strong { color: var(--navy); font-weight: 500; }

.booking-list {
  list-style: none;
  display: grid;
  gap: 0.65rem;
  font-size: 0.95rem;
  color: var(--muted);
}
.booking-list li { padding-left: 1.5rem; position: relative; }
.booking-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* Availability calendar */
.avail-cal {
  background: var(--white);
  border: 1px solid var(--line-light);
  border-top: 2px solid var(--gold);
  padding: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 2rem;
  display: grid;
  gap: 1.3rem;
}

.avail-head { display: grid; gap: 0.5rem; }
.avail-note { font-size: 0.88rem; color: var(--muted); max-width: 40em; }

.avail-days {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(64px, 1fr);
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.4rem;
  -webkit-overflow-scrolling: touch;
}

.avail-day {
  display: grid;
  justify-items: center;
  gap: 0.15rem;
  padding: 0.7rem 0.4rem;
  background: var(--cream);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  cursor: pointer;
  font-family: var(--font-caps);
  transition: all 0.2s ease;
}
.avail-day:hover:not(:disabled) { border-color: var(--gold); }
.avail-day.active {
  background: var(--navy);
  border-color: var(--navy);
}
.avail-day.active .ad-dow, .avail-day.active .ad-mon { color: var(--gold-soft); }
.avail-day.active .ad-num { color: var(--white); }
.avail-day.closed { opacity: 0.35; cursor: not-allowed; }

.ad-dow { font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--leather); }
.ad-num { font-family: var(--font-display); font-size: 1.35rem; color: var(--navy); line-height: 1.1; }
.ad-mon { font-size: 0.55rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }

.avail-slots-label {
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 0.7rem;
}

.avail-slot-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.avail-slot {
  font-family: var(--font-caps);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  padding: 0.6rem 1rem;
  background: var(--cream);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  cursor: pointer;
  color: var(--ink);
  transition: all 0.2s ease;
}
.avail-slot:hover { border-color: var(--gold); }
.avail-slot.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-deep);
  font-weight: 500;
}

/* Price estimator */
.estimator {
  background: var(--white);
  border: 1px solid var(--line-light);
  border-top: 2px solid var(--gold);
  padding: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 2rem;
  display: grid;
  gap: 1.1rem;
}

.estimator-row {
  display: grid;
  gap: 1.1rem;
}
@media (min-width: 860px) {
  .estimator-row { grid-template-columns: 1.2fr 1.4fr auto; align-items: end; }
}

.est-total {
  display: grid;
  gap: 0.2rem;
  justify-items: start;
  padding: 0.4rem 0;
}
@media (min-width: 860px) {
  .est-total { justify-items: end; min-width: 130px; }
}

.est-label {
  font-family: var(--font-caps);
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--leather);
}

.est-amount {
  font-family: var(--font-display);
  font-size: 2.1rem;
  line-height: 1;
  color: var(--navy);
}

.est-amount.est-custom { font-size: 1.3rem; color: var(--leather); }

.est-note { font-size: 0.8rem; color: var(--muted); }

/* Booking platform embed slot */
.booking-embed {
  border: 1px dashed var(--gold);
  background: var(--cream);
  padding: 2rem;
  text-align: center;
  display: grid;
  gap: 0.8rem;
  justify-items: center;
  margin-bottom: 2rem;
}
.booking-embed p { font-size: 0.88rem; color: var(--muted); max-width: 36em; }
.booking-embed.hidden { display: none; }

/* Booking form */
.booking-form {
  background: var(--white);
  border: 1px solid var(--line-light);
  padding: clamp(1.5rem, 4vw, 2.4rem);
  display: grid;
  gap: 1.15rem;
}

.form-row { display: grid; gap: 1.15rem; }
@media (min-width: 640px) {
  .form-row--2 { grid-template-columns: 1fr 1fr; }
}

.field { display: grid; gap: 0.4rem; }

.field label {
  font-family: var(--font-caps);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
}

.field label .req { color: var(--gold); }

.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  width: 100%;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
}

.field textarea { resize: vertical; min-height: 90px; }

.field .hint { font-size: 0.78rem; color: var(--muted); }

.form-msg {
  font-size: 0.9rem;
  padding: 1rem 1.2rem;
  border-left: 2px solid var(--gold);
  background: var(--cream);
  display: none;
}
.form-msg.show { display: block; }
.form-msg.error { border-left-color: #B04A3A; }

/* ---------- Portfolio ---------- */

.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.filter-btn {
  font-family: var(--font-caps);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 0.55rem 1.1rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.filter-btn:hover { border-color: var(--gold); color: var(--navy); }
.filter-btn.active {
  background: var(--brown);
  color: var(--white);
  border-color: var(--brown);
}

.portfolio-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 860px) {
  .portfolio-grid { grid-template-columns: repeat(4, 1fr); }
}

.portfolio-item { cursor: pointer; border: 0; padding: 0; background: none; text-align: left; }
.portfolio-item .photo { transition: transform 0.3s ease; }
.portfolio-item:hover .photo { transform: scale(1.015); }
.portfolio-item[hidden] { display: none; }

.portfolio-label {
  font-family: var(--font-caps);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.55rem;
}

.portfolio-cta {
  margin-top: 3.5rem;
  text-align: center;
  display: grid;
  gap: 1.4rem;
  justify-items: center;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(7, 14, 26, 0.94);
  display: none;
  place-items: center;
  padding: 2rem;
}
.lightbox.open { display: grid; }
.lightbox img { max-height: 82vh; max-width: 100%; object-fit: contain; }
.lightbox-close {
  position: absolute;
  top: 1.2rem;
  right: 1.4rem;
  background: none;
  border: 0;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}
.lightbox-caption {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--muted-on-dark);
  font-family: var(--font-caps);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* ---------- Style inspiration ---------- */

.inspo-disclosure {
  font-size: 0.85rem;
  color: var(--muted);
  border: 1px solid var(--line-light);
  border-left: 2px solid var(--leather);
  padding: 1rem 1.3rem;
  max-width: 46em;
  margin-bottom: 2rem;
  background: var(--white);
}

/* ---------- About ---------- */

.about-layout {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 920px) {
  .about-layout { grid-template-columns: 0.85fr 1.15fr; gap: 4.5rem; }
}

.about-solo { max-width: 720px; margin-inline: auto; }

.music-player {
  width: 100%;
  max-width: 480px;
  border: 1px solid var(--line-light);
  border-left: 2px solid var(--gold);
  overflow: hidden;
  border-radius: var(--radius);
}
.music-player iframe { display: block; }

.about-copy { display: grid; gap: 1.2rem; justify-items: start; }

.about-copy .display-lg { color: var(--navy); }

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

.about-creds {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-block: 0.4rem;
}

.cred {
  font-family: var(--font-caps);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--leather);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 0.5rem 0.9rem;
}

/* ---------- Who it's for ---------- */

.audience-grid {
  display: grid;
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 860px) {
  .audience-grid { grid-template-columns: repeat(4, 1fr); }
}

.audience-cell {
  background: var(--navy);
  padding: 1.9rem 1.4rem;
  display: grid;
  gap: 0.45rem;
  align-content: start;
}

.audience-cell h3 {
  font-family: var(--font-caps);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.audience-cell p { font-size: 0.85rem; color: var(--muted-on-dark); }

/* ---------- Reviews ---------- */

.reviews-placeholder {
  border: 1px dashed var(--line-light);
  padding: 2.5rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  display: grid;
  gap: 1rem;
  justify-items: center;
}

.review-grid { display: grid; gap: 1.2rem; }
@media (min-width: 860px) { .review-grid { grid-template-columns: repeat(3, 1fr); } }

.review-card {
  background: var(--white);
  border: 1px solid var(--line-light);
  padding: 1.8rem 1.6rem;
  display: grid;
  gap: 0.9rem;
  align-content: start;
}
.review-card .stars { color: var(--gold); letter-spacing: 0.2em; }
.review-card blockquote {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-style: italic;
  color: var(--navy);
}
.review-card cite {
  font-family: var(--font-caps);
  font-size: 0.66rem;
  font-style: normal;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Service area ---------- */

.area-layout { display: grid; gap: 2.5rem; }
@media (min-width: 920px) {
  .area-layout { grid-template-columns: 1fr 1fr; align-items: start; gap: 4rem; }
}

.area-zones { display: grid; gap: 0; border-top: 1px solid var(--line-dark); }

.area-zone {
  display: grid;
  gap: 0.3rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line-dark);
}

.area-zone h3 {
  font-family: var(--font-caps);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.area-zone p { font-size: 0.95rem; color: var(--muted-on-dark); }

/* ---------- FAQ ---------- */

.faq-list { display: grid; border-top: 1px solid var(--line-light); max-width: 820px; }

.faq-item { border-bottom: 1px solid var(--line-light); }

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  background: none;
  border: 0;
  padding: 1.3rem 0;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--navy);
}

.faq-q .faq-icon {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }

.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}
.faq-a p {
  padding-bottom: 1.4rem;
  font-size: 0.93rem;
  color: var(--muted);
  max-width: 44em;
}

/* ---------- Contact / final CTA ---------- */

.final-cta {
  text-align: center;
}

.final-cta .wrap { display: grid; gap: 1.6rem; justify-items: center; max-width: 860px; }

.final-cta .display-xl { color: var(--white); }
.final-cta .display-xl em { font-style: italic; color: var(--gold-soft); }

.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 0.6rem;
}

.contact-details {
  display: grid;
  gap: 0.5rem;
  margin-top: 1.8rem;
  font-size: 0.95rem;
  color: var(--muted-on-dark);
}
.contact-details a { color: var(--gold-soft); text-decoration: none; }
.contact-details a:hover { text-decoration: underline; }

.contact-hours {
  font-family: var(--font-caps);
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-top: 0.6rem;
  color: var(--muted-on-dark);
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--navy-deep);
  color: var(--muted-on-dark);
  padding: clamp(3rem, 7vw, 5rem) 0 7rem;
  border-top: 1px solid var(--line-dark);
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 860px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 3rem; }
}

.footer-brand { display: grid; gap: 1.1rem; justify-items: start; }
.footer-brand img { height: 72px; width: auto; }
.footer-brand p { font-size: 0.88rem; max-width: 26em; }

.footer-col h4 {
  font-family: var(--font-caps);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 1.1rem;
}

.footer-col ul { list-style: none; display: grid; gap: 0.55rem; }
.footer-col a {
  font-size: 0.88rem;
  text-decoration: none;
  color: var(--muted-on-dark);
}
.footer-col a:hover { color: var(--gold-soft); }

.footer-legal {
  margin-top: 3rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 2rem;
  justify-content: space-between;
  font-size: 0.78rem;
}

.footer-legal .license {
  font-family: var(--font-caps);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.64rem;
  color: var(--gold-soft);
}

/* ---------- Sticky mobile bar ---------- */

.mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 150;
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr;
  background: var(--navy-deep);
  border-top: 1px solid var(--line-dark);
}

.mobile-bar a {
  display: grid;
  place-items: center;
  gap: 0.15rem;
  padding: 0.7rem 0.4rem 0.85rem;
  text-decoration: none;
  font-family: var(--font-caps);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-on-dark);
}
.mobile-bar a .bar-ico { font-size: 1rem; color: var(--gold-soft); }
.mobile-bar a.bar-book {
  background: var(--gold);
  color: var(--navy-deep);
  font-weight: 500;
}
.mobile-bar a.bar-book .bar-ico { color: var(--navy-deep); }

@media (min-width: 980px) {
  .mobile-bar { display: none; }
  body { padding-bottom: 0; }
  .site-footer { padding-bottom: clamp(3rem, 7vw, 5rem); }
}

/* ---------- Reveal animation (subtle) ---------- */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ---------- Legal pages ---------- */

.legal-page {
  max-width: 780px;
  margin-inline: auto;
  padding: clamp(3rem, 8vw, 5rem) var(--pad);
}
.legal-page h1 { font-family: var(--font-display); color: var(--navy); margin-bottom: 1.5rem; font-size: 2.2rem; }
.legal-page h2 { font-family: var(--font-caps); font-size: 0.85rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--leather); margin: 2rem 0 0.7rem; }
.legal-page p, .legal-page li { font-size: 0.95rem; color: var(--muted); margin-bottom: 0.8rem; }
.legal-page ul { padding-left: 1.2rem; }
.legal-page .back-link { display: inline-block; margin-bottom: 2rem; }

/* ---------- Utility ---------- */

.placeholder-token {
  color: var(--leather);
  background: rgba(201, 162, 75, 0.12);
  padding: 0 0.3em;
  border-radius: 2px;
  font-style: normal;
}

[hidden] { display: none !important; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
