/* ===============================================================
   BROWS Studio & Beauty — core stylesheet
   Theme: deep charcoal + brushed gold (matches brand leaflet/logo)
   =============================================================== */

:root {
  --black:        #0c0b0a;
  --charcoal:     #141312;
  --charcoal-2:   #1c1a17;
  --panel:        #211e1a;
  --line:         #322d25;
  --gold:         #c9a24b;
  --gold-light:   #e9d49a;
  --gold-deep:    #a9781f;
  --cream:        #f4f0e6;
  --muted:        #a59f92;
  --gold-grad:    linear-gradient(135deg, #b8862f 0%, #f3e3a3 38%, #d8b452 62%, #a9781f 100%);
  --shadow:       0 24px 60px -24px rgba(0,0,0,.85);
  --ease:         cubic-bezier(.22,.61,.36,1);
  --maxw:         1200px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Jost', 'Segoe UI', system-ui, sans-serif;
  background: var(--black);
  color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .display {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: .01em;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
ul { list-style: none; }

/* ---------- layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(64px, 9vw, 130px) 0; }
.section--tight { padding: clamp(48px, 6vw, 80px) 0; }
.center { text-align: center; }

.eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: .72rem;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 18px;
}

.section-title {
  font-size: clamp(2.1rem, 4.6vw, 3.6rem);
  margin-bottom: 18px;
}
.section-title em { font-style: italic; color: var(--gold-light); }

.lead {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 620px;
}
.center .lead { margin-left: auto; margin-right: auto; }

/* ---------- gold trefoil divider ---------- */
.trefoil {
  width: 46px; height: 30px; margin: 22px auto 0;
  fill: var(--gold);
  opacity: .9;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Jost', sans-serif;
  font-size: .78rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  padding: 16px 34px;
  border-radius: 2px;
  cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background-position .5s var(--ease);
  border: 1px solid transparent;
}
.btn--gold {
  color: #1a1408;
  background: var(--gold-grad);
  background-size: 200% 200%;
  box-shadow: 0 14px 30px -12px rgba(201,162,75,.6);
}
.btn--gold:hover { transform: translateY(-3px); background-position: 100% 100%; }
.btn--ghost {
  color: var(--gold-light);
  border-color: var(--gold);
  background: transparent;
}
.btn--ghost:hover { background: rgba(201,162,75,.12); transform: translateY(-3px); }

/* ===============================================================
   HEADER
   =============================================================== */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
  padding: 22px 0;
}
.site-header.scrolled {
  background: rgba(12,11,10,.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line), 0 16px 40px -28px #000;
  padding: 12px 0;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; }

.logo { display: inline-flex; align-items: center; }
.logo img { height: 46px; width: auto; display: block; transition: height .4s var(--ease); }
.scrolled .logo img { height: 38px; }

.nav { display: flex; align-items: center; gap: 38px; }
.nav a {
  font-size: .82rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--cream); position: relative; padding: 4px 0;
  transition: color .3s var(--ease);
}
.nav a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width .35s var(--ease);
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--gold-light); }
.nav a:hover::after, .nav a[aria-current="page"]::after { width: 100%; }

.nav-cta { margin-left: 6px; }

.burger {
  display: none; background: none; border: 0; cursor: pointer;
  width: 38px; height: 38px; position: relative;
}
.burger span {
  position: absolute; left: 7px; right: 7px; height: 1.6px;
  background: var(--gold-light); transition: transform .35s var(--ease), opacity .25s;
}
.burger span:nth-child(1) { top: 13px; }
.burger span:nth-child(2) { top: 19px; }
.burger span:nth-child(3) { top: 25px; }
.burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ===============================================================
   HERO
   =============================================================== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
  padding: 140px 24px 90px;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 50% 38%, rgba(201,162,75,.18), transparent 55%),
    radial-gradient(circle at 50% 120%, rgba(201,162,75,.10), transparent 60%),
    linear-gradient(180deg, #100f0d 0%, #0c0b0a 60%, #0c0b0a 100%);
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(201,162,75,.05) 1px, transparent 1px);
  background-size: 26px 26px; opacity: .5;
}
.hero-inner { position: relative; z-index: 2; max-width: 860px; }
.hero-mark { width: clamp(240px, 36vw, 400px); margin: 0 auto 18px; }
.hero h1 {
  font-size: clamp(2.7rem, 7vw, 5.4rem);
  margin-bottom: 20px;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero p {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--muted); max-width: 560px; margin: 0 auto 36px;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.scroll-cue {
  position: absolute; left: 50%; bottom: 30px; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: .62rem; letter-spacing: .3em; text-transform: uppercase; color: var(--muted);
}
.scroll-cue i {
  width: 1px; height: 46px;
  background: linear-gradient(var(--gold), transparent);
  animation: cue 1.9s var(--ease) infinite;
}
@keyframes cue { 0%,100% { opacity:.3; transform: scaleY(.6);} 50% { opacity:1; transform: scaleY(1);} }

/* ---------- marquee strip ---------- */
.strip {
  background: var(--charcoal);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.strip-track {
  display: flex; gap: 56px; white-space: nowrap;
  padding: 18px 0; width: max-content;
  animation: slide 28s linear infinite;
}
.strip span {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 1.25rem; color: var(--gold-light);
  display: flex; align-items: center; gap: 56px;
}
.strip span::after { content: '✦'; color: var(--gold); font-size: .8rem; }
@keyframes slide { to { transform: translateX(-50%); } }

/* ===============================================================
   SCROLL REVEAL
   =============================================================== */
.reveal { opacity: 0; transform: translateY(38px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .12s; }
.reveal[data-delay="2"] { transition-delay: .24s; }
.reveal[data-delay="3"] { transition-delay: .36s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  .strip-track, .scroll-cue i { animation: none; }
  html { scroll-behavior: auto; }
}

/* ===============================================================
   FEATURE SECTIONS (alternating)
   =============================================================== */
.feature {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 88px); align-items: center;
}
.feature--flip .feature-visual { order: 2; }
.feature-body h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); margin-bottom: 16px; }
.feature-body p { color: var(--muted); margin-bottom: 14px; }
.feature-list { margin-top: 22px; display: grid; gap: 12px; }
.feature-list li {
  display: flex; gap: 12px; align-items: flex-start; color: var(--cream);
}
.feature-list li::before {
  content: ''; flex: none; width: 7px; height: 7px; margin-top: 9px;
  background: var(--gold-grad); border-radius: 50%;
}

.feature-visual {
  position: relative; aspect-ratio: 4/5;
  border: 1px solid var(--line); border-radius: 4px;
  background:
    radial-gradient(circle at 50% 35%, rgba(201,162,75,.16), transparent 60%),
    linear-gradient(160deg, var(--charcoal-2), var(--black));
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.feature-visual::before {
  content: ''; position: absolute; inset: 14px;
  border: 1px solid rgba(201,162,75,.25);
}
.feature-visual svg { width: 46%; opacity: .9; }
.feature-visual .vtag {
  position: absolute; bottom: 32px; left: 14px; right: 14px;
  text-align: center;
  font-family: 'Cinzel', serif; font-size: .72rem;
  letter-spacing: .32em; text-transform: uppercase; color: var(--gold);
}

/* ===============================================================
   3-UP FEATURE CARDS
   =============================================================== */
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.card {
  background: linear-gradient(165deg, var(--charcoal-2), var(--charcoal));
  border: 1px solid var(--line); border-radius: 4px;
  padding: 40px 32px; transition: transform .4s var(--ease), border-color .4s var(--ease);
}
.card:hover { transform: translateY(-8px); border-color: rgba(201,162,75,.5); }
.card-ico {
  width: 54px; height: 54px; margin-bottom: 22px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--gold); border-radius: 50%;
}
.card-ico svg { width: 26px; stroke: var(--gold-light); }
.card h3 { font-size: 1.5rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: .96rem; }

/* ===============================================================
   SERVICE CATEGORIES + PRICE LISTS
   =============================================================== */
.cat-nav {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  margin-top: 34px;
}
.cat-nav a {
  font-size: .72rem; letter-spacing: .16em; text-transform: uppercase;
  padding: 9px 18px; border: 1px solid var(--line); border-radius: 40px;
  color: var(--muted); transition: all .3s var(--ease);
}
.cat-nav a:hover { color: var(--gold-light); border-color: var(--gold); }

.menu-block { scroll-margin-top: 110px; }
.menu-block + .menu-block { margin-top: 64px; }
.menu-head {
  display: flex; align-items: baseline; gap: 18px;
  padding-bottom: 18px; border-bottom: 1px solid var(--line); margin-bottom: 8px;
}
.menu-head h2 { font-size: clamp(1.8rem, 3.4vw, 2.7rem); }
.menu-head .num {
  font-family: 'Cinzel', serif; color: var(--gold);
  font-size: .8rem; letter-spacing: .2em;
}
.menu-intro { color: var(--muted); max-width: 720px; margin: 14px 0 26px; }

.price-list { display: grid; gap: 4px; }
.price-row {
  display: grid; grid-template-columns: 1fr auto;
  gap: 18px; align-items: baseline;
  padding: 18px 4px; border-bottom: 1px dashed var(--line);
}
.price-row:last-child { border-bottom: 0; }
.price-name { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: var(--cream); }
.price-desc { display: block; font-family: 'Jost', sans-serif; font-size: .9rem; color: var(--muted); margin-top: 3px; }
.price-tag {
  font-family: 'Cinzel', serif; font-size: 1.05rem; color: var(--gold-light);
  white-space: nowrap;
}
.price-tag::before { content: '£'; font-size: .8em; opacity: .8; margin-right: 1px; }

/* ===============================================================
   STATS / CTA BAND
   =============================================================== */
.band {
  position: relative; text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(201,162,75,.16), transparent 60%),
    linear-gradient(var(--charcoal), var(--black));
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.band h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); margin-bottom: 16px; }
.band p { color: var(--muted); margin: 0 auto 32px; max-width: 540px; }

.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.stat .n {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(2.4rem,5vw,3.4rem);
  color: var(--gold-light); line-height: 1;
}
.stat .l {
  font-size: .72rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--muted); margin-top: 8px;
}

/* ===============================================================
   TESTIMONIALS
   =============================================================== */
.quotes { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.quote {
  background: linear-gradient(165deg, var(--charcoal-2), var(--charcoal));
  border: 1px solid var(--line); border-radius: 4px; padding: 36px 30px;
}
.quote .stars { color: var(--gold); letter-spacing: .2em; font-size: .9rem; margin-bottom: 14px; }
.quote p { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.2rem; color: var(--cream); }
.quote .who { margin-top: 18px; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); }

/* ===============================================================
   ABOUT / CONTACT SHARED
   =============================================================== */
.page-hero {
  position: relative; text-align: center;
  padding: 180px 24px 80px;
  background:
    radial-gradient(circle at 50% 0%, rgba(201,162,75,.16), transparent 62%),
    linear-gradient(180deg, #100f0d, #0c0b0a);
}
.page-hero h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); }
.page-hero h1 em { font-style: italic; color: var(--gold-light); }
.page-hero p { color: var(--muted); max-width: 600px; margin: 16px auto 0; }
.crumbs { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.crumbs a:hover { color: var(--gold-light); }

.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px,6vw,76px); align-items: center; }
.prose h2 { font-size: clamp(1.9rem,3.6vw,2.8rem); margin: 0 0 16px; }
.prose h3 { font-size: 1.4rem; color: var(--gold-light); margin: 28px 0 8px; }
.prose p { color: var(--muted); margin-bottom: 14px; }

.value-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; margin-top: 12px; }
.value {
  border: 1px solid var(--line); border-radius: 4px; padding: 26px 24px;
  background: linear-gradient(165deg, var(--charcoal-2), var(--charcoal));
}
.value h4 { font-size: 1.3rem; margin-bottom: 8px; color: var(--cream); }
.value p { color: var(--muted); font-size: .92rem; }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px,5vw,60px); }
.info-card {
  background: linear-gradient(165deg, var(--charcoal-2), var(--charcoal));
  border: 1px solid var(--line); border-radius: 4px; padding: 38px 34px;
}
.info-row { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px dashed var(--line); }
.info-row:last-child { border-bottom: 0; }
.info-row svg { width: 22px; flex: none; stroke: var(--gold); margin-top: 3px; }
.info-row .k { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.info-row .v { color: var(--cream); }
.info-row .v a:hover { color: var(--gold-light); }

.hours { width: 100%; border-collapse: collapse; margin-top: 6px; }
.hours td { padding: 10px 0; border-bottom: 1px dashed var(--line); font-size: .96rem; }
.hours td:last-child { text-align: right; color: var(--gold-light); }
.hours tr:last-child td { border-bottom: 0; }

.map-frame {
  border: 1px solid var(--line); border-radius: 4px; overflow: hidden;
  min-height: 320px; height: 100%;
}
.map-frame iframe { width: 100%; height: 100%; min-height: 320px; border: 0; filter: grayscale(.3) contrast(1.05); }

.form { display: grid; gap: 16px; }
.field { display: grid; gap: 7px; }
.field label { font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); }
.field input, .field select, .field textarea {
  font-family: 'Jost', sans-serif; font-size: .98rem;
  background: var(--black); color: var(--cream);
  border: 1px solid var(--line); border-radius: 3px; padding: 13px 14px;
  transition: border-color .3s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold);
}
.field textarea { resize: vertical; min-height: 110px; }
.form .btn { justify-content: center; margin-top: 6px; }
.form-note { font-size: .82rem; color: var(--muted); }
.form-status {
  font-size: .92rem; line-height: 1.55;
  padding: 14px 16px; border-radius: 3px;
  border: 1px solid var(--line); background: var(--charcoal);
}
.form-status--pending { color: var(--muted); }
.form-status--success { color: #e9d49a; border-color: var(--gold); background: rgba(201,162,75,.08); }
.form-status--error   { color: #f4b3a8; border-color: #6b2f24; background: rgba(107,47,36,.18); }
.form button[disabled] { opacity: .65; cursor: progress; }

/* ===============================================================
   FOOTER
   =============================================================== */
.site-footer {
  background: var(--charcoal); border-top: 1px solid var(--line);
  padding: 70px 0 30px;
}
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.foot-brand .logo { margin-bottom: 18px; }
.foot-brand .logo img { height: 78px; }
.foot-brand p { color: var(--muted); font-size: .92rem; max-width: 280px; }
.foot-col h4 {
  font-family: 'Cinzel', serif; font-size: .82rem; letter-spacing: .2em;
  color: var(--gold); margin-bottom: 18px;
}
.foot-col a, .foot-col li { color: var(--muted); font-size: .92rem; padding: 5px 0; display: block; }
.foot-col a:hover { color: var(--gold-light); }
.socials { display: flex; gap: 12px; margin-top: 6px; }
.socials a {
  width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all .3s var(--ease);
}
.socials a:hover { border-color: var(--gold); background: rgba(201,162,75,.1); }
.socials svg { width: 17px; fill: var(--gold-light); }
.foot-bar {
  margin-top: 50px; padding-top: 24px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: .8rem; color: var(--muted);
}
.foot-bar a:hover { color: var(--gold-light); }

/* ===============================================================
   RESPONSIVE
   =============================================================== */
@media (max-width: 940px) {
  .grid-3, .quotes { grid-template-columns: 1fr; }
  .feature { grid-template-columns: 1fr; }
  .feature--flip .feature-visual { order: 0; }
  .feature-visual { aspect-ratio: 16/10; }
  .split, .contact-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2,1fr); }
  .value-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }

  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px);
    flex-direction: column; justify-content: center; gap: 30px;
    background: var(--charcoal); border-left: 1px solid var(--line);
    transform: translateX(100%); transition: transform .42s var(--ease);
    padding: 40px;
  }
  .nav.open { transform: translateX(0); }
  .nav a { font-size: 1rem; }
  .burger { display: block; z-index: 110; }
}
@media (max-width: 560px) {
  .stats, .foot-grid { grid-template-columns: 1fr; }
  .price-row { grid-template-columns: 1fr; gap: 4px; }
  .price-tag { justify-self: start; }
  .menu-head { flex-direction: column; gap: 4px; }
  .foot-bar { flex-direction: column; }
}
