/* ─────────────────────────────────────────────────────────
   Luxury Braids Studio — hair.css  v2 (ultra-premium)
   Warm editorial boutique luxury
   Books and Brews demo site
───────────────────────────────────────────────────────── */

:root {
  --accent:      #c8a06a;
  --accent-hi:   #e8d0a0;
  --accent-deep: #8c5a2e;
  --accent-glow: rgba(200, 160, 100, 0.22);
  --bg:          #110c08;
  --bg-panel:    rgba(30, 20, 12, 0.88);
  --bg-raised:   rgba(38, 26, 14, 0.65);
  --bg-warm:     rgba(200, 160, 100, 0.04);
  --text:        #f5eada;
  --muted:       #c0a47a;
  --faint:       #7a6040;
  --line:        rgba(200, 160, 100, 0.13);
  --line-s:      rgba(200, 160, 100, 0.28);
  --line-m:      rgba(200, 160, 100, 0.18);
  --radius:      16px;
  --shadow:      0 22px 64px rgba(0, 0, 0, 0.6);
  --c:           min(1140px, calc(100% - 44px));
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(ellipse at 88% 2%,  rgba(200, 160, 100, .16) 0%, transparent 34%),
    radial-gradient(ellipse at 6%  55%, rgba(140, 90,  46,  .12) 0%, transparent 28%),
    radial-gradient(ellipse at 50% 90%, rgba(90,  55,  20,  .08) 0%, transparent 40%),
    linear-gradient(170deg, #140f0a 0%, #0c0807 100%);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
}

/* Subtle grain overlay */
body::before {
  content: '';
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .022) 1px, transparent 1px);
  background-size: 4px 4px;
}

a { color: inherit; text-decoration: none; }
.wrap { width: var(--c); margin: 0 auto; position: relative; z-index: 1; }

/* ─── Brand Band ─── */
.h-brand-band {
  background: rgba(200, 160, 100, .06);
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
  overflow: hidden;
}
.h-brand-band .wrap {
  display: flex; align-items: center; justify-content: center;
  gap: 18px; flex-wrap: wrap;
  font-size: .68rem; letter-spacing: .22em; font-weight: 600;
  text-transform: uppercase; color: var(--muted);
}
.h-band-sep { color: var(--faint); }

/* ─── Nav ─── */
.h-nav {
  position: sticky; top: 0; z-index: 100;
  padding: 18px 0;
  background: rgba(14, 9, 5, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.h-nav .inner { display: flex; align-items: center; justify-content: space-between; }
.h-logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem; font-weight: 600;
  color: var(--accent); letter-spacing: .06em;
}
.h-nav-links { display: flex; gap: 30px; }
.h-nav-links a {
  font-size: .84rem; letter-spacing: .05em;
  color: var(--muted); transition: color .2s;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent; transition: color .2s, border-color .2s;
}
.h-nav-links a:hover { color: var(--text); border-color: var(--line-m); }
.h-nav-book {
  display: inline-flex; align-items: center;
  padding: 10px 24px; border-radius: 9px;
  font-size: .84rem; font-weight: 600; letter-spacing: .05em;
  border: 1px solid var(--line-s); color: var(--accent);
  background: rgba(200, 160, 100, .05);
  transition: background .2s, border-color .2s;
}
.h-nav-book:hover {
  background: rgba(200, 160, 100, .12);
  border-color: rgba(200, 160, 100, .4);
}
.h-mtoggle { display: none; }
.h-mnav   { display: none; }

/* ─── Buttons ─── */
.h-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 15px 36px; border-radius: 10px;
  font-weight: 700; font-size: .94rem; letter-spacing: .03em;
  position: relative; overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.h-btn:hover { transform: translateY(-2px); }
.h-btn-fill {
  background: linear-gradient(150deg, #e0ba80 0%, #c09040 55%, #a87030 100%);
  color: #22140a;
  box-shadow: 0 8px 28px rgba(176, 120, 56, .30);
}
.h-btn-fill::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(255,255,255,.12) 0%, transparent 50%);
  pointer-events: none;
}
.h-btn-fill:hover { box-shadow: 0 12px 38px rgba(176, 120, 56, .42); }
.h-btn-line {
  border: 1px solid var(--line-s); color: var(--muted);
  background: rgba(255, 255, 255, .025);
  transition: transform .2s, color .2s, border-color .2s;
}
.h-btn-line:hover { color: var(--text); border-color: var(--line-s); }

/* ─── Hero — 2-column split ─── */
.h-hero {
  display: grid; grid-template-columns: 1fr 440px;
  min-height: 90vh; position: relative;
}
.h-hero-left {
  display: flex; flex-direction: column;
  justify-content: center; padding: 96px 72px 96px 0;
}
.h-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 24px;
  font-size: .72rem; letter-spacing: .26em; font-weight: 700;
  text-transform: uppercase; color: var(--accent);
}
.h-eyebrow::before {
  content: '';
  display: block; width: 28px; height: 1px;
  background: var(--accent); flex-shrink: 0;
}
.h-hero-left h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(3.4rem, 6.2vw, 6.2rem);
  font-weight: 600; line-height: .9;
  letter-spacing: -.028em; color: var(--text);
  margin-bottom: 28px;
}
.h-hero-left h1 em { font-style: italic; color: var(--accent); }
.h-hero-left p {
  color: var(--muted); font-size: 1.1rem;
  line-height: 1.85; max-width: 440px; margin-bottom: 46px;
}
.h-hero-btns { display: flex; gap: 14px; align-items: center; }

/* Hero right — premium editorial art panel */
.h-hero-right {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg,
    rgba(200, 160, 100, .06) 0%,
    rgba(140, 90, 46, .025) 100%);
  border-left: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
}
/* Radial glow behind rings */
.h-hero-right::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 46%,
    rgba(200, 160, 100, .26) 0%, transparent 55%);
}
/* Fine cross-hatch grid pattern */
.h-hero-right::after {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(circle at 50% 50%, black 30%, transparent 70%);
}
.h-art-rings { position: relative; z-index: 1; text-align: center; }
/* Outermost decorative ring */
.h-ring-outermost {
  width: 340px; height: 340px; border-radius: 50%;
  border: 1px dashed rgba(200, 160, 100, .12);
  display: flex; align-items: center; justify-content: center;
  position: relative; margin: 0 auto 20px;
}
.h-ring-outer {
  width: 266px; height: 266px; border-radius: 50%;
  border: 1px solid var(--line-s);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.h-ring-inner {
  width: 180px; height: 180px; border-radius: 50%;
  border: 1px solid var(--line-m);
  background: radial-gradient(circle,
    rgba(200, 160, 100, .28) 0%, transparent 68%);
  display: flex; align-items: center; justify-content: center;
}
.h-ring-text {
  text-align: center;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.08rem; font-weight: 600;
  color: var(--accent); letter-spacing: .12em; line-height: 1.6;
}
.h-art-label {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: .86rem; color: var(--muted); letter-spacing: .12em;
}
.h-art-label strong {
  display: block; font-style: italic;
  color: var(--accent-hi); font-size: 1.5rem;
  font-weight: 500; letter-spacing: 0; line-height: 1;
}

/* ─── Divider — centered fade ─── */
.h-divider {
  border: none; height: 1px;
  background: linear-gradient(90deg,
    transparent 0%, var(--line-s) 25%, var(--line-s) 75%, transparent 100%);
}

/* ─── Section base ─── */
.h-section { padding: 96px 0; }
.h-label {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 14px;
  font-size: .72rem; letter-spacing: .26em; font-weight: 700;
  text-transform: uppercase; color: var(--accent);
}
.h-label::before {
  content: '';
  display: block; width: 18px; height: 1px; background: var(--accent);
}
.h-section h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 600; letter-spacing: -.028em;
  line-height: .92; margin-bottom: 12px;
}
/* Decorative rule below section h2 */
.h-section-rule {
  display: block; width: 44px; height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
  margin: 16px 0 44px;
}
.h-sub {
  color: var(--muted); font-size: 1rem;
  line-height: 1.8; max-width: 520px; margin-bottom: 54px;
}

/* ─── Services — editorial menu rows ─── */
.h-menu { display: flex; flex-direction: column; }
.h-menu-row {
  display: grid; grid-template-columns: 52px 1fr auto;
  align-items: start; gap: 32px;
  padding: 30px 16px 30px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: background .22s ease, border-color .22s;
}
/* Left accent reveal on hover */
.h-menu-row::before {
  content: '';
  position: absolute; left: -16px; top: 0; bottom: 0;
  width: 3px; border-radius: 2px;
  background: var(--accent);
  transform: scaleY(0); transform-origin: bottom;
  transition: transform .25s ease;
}
.h-menu-row:hover::before { transform: scaleY(1); }
.h-menu-row:hover {
  border-bottom-color: var(--line-m);
  background: rgba(200, 160, 100, .025);
}
.h-menu-row:first-child { border-top: 1px solid var(--line); }
.h-menu-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.6rem; font-weight: 600; line-height: 1;
  color: rgba(200, 160, 100, .22);
  transition: color .22s;
}
.h-menu-row:hover .h-menu-num { color: rgba(200, 160, 100, .5); }
.h-menu-body h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.65rem; font-weight: 600;
  color: var(--text); margin-bottom: 7px;
}
.h-menu-body p {
  font-size: .88rem; color: var(--muted);
  line-height: 1.7; max-width: 560px;
}
.h-menu-price {
  font-size: 1.18rem; font-weight: 700;
  color: var(--accent); white-space: nowrap;
  padding-top: 6px; letter-spacing: .01em;
}

/* ─── Why Section ─── */
.h-why { padding: 96px 0; }
.h-pullquote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.95rem, 3.6vw, 3rem);
  font-weight: 500; font-style: italic;
  color: var(--accent-hi); line-height: 1.45;
  text-align: center; max-width: 840px; margin: 0 auto 14px;
}
.h-pullquote::before { content: '\201C'; }
.h-pullquote::after  { content: '\201D'; }
.h-pullquote-attr {
  text-align: center; font-size: .83rem;
  color: var(--faint); margin-bottom: 64px;
  letter-spacing: .04em;
}
.h-why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.h-why-card {
  padding: 36px 28px;
  background: var(--bg-raised);
  border: 1px solid var(--line); border-radius: var(--radius);
  position: relative; overflow: hidden;
  transition: border-color .25s, transform .2s;
}
/* Accent gradient top bar */
.h-why-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
}
.h-why-card:hover {
  border-color: var(--line-m); transform: translateY(-3px);
}
.h-why-icon {
  font-size: 1.4rem; margin-bottom: 18px; display: block;
  filter: grayscale(.4);
}
.h-why-card h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem; margin-bottom: 10px; color: var(--text);
}
.h-why-card p {
  font-size: .875rem; color: var(--muted); line-height: 1.7;
}

/* ─── CTA — framed boutique box ─── */
.h-cta {
  padding: 90px 0 100px;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(200, 160, 100, .04) 40%,
    transparent 100%);
}
.h-cta-frame {
  max-width: 680px; margin: 0 auto;
  padding: 60px 52px;
  border: 1px solid var(--line-s); border-radius: 22px;
  background: rgba(28, 18, 10, .55);
  text-align: center;
  box-shadow: 0 0 0 1px var(--line) inset,
              0 30px 80px rgba(0,0,0,.4);
}
.h-cta-frame h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 600; letter-spacing: -.025em;
  line-height: .95; margin: 14px 0 20px;
}
.h-cta-frame p {
  color: var(--muted); font-size: 1.05rem;
  line-height: 1.75; max-width: 440px; margin: 0 auto 40px;
}
.h-cta-btns {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}

/* ─── Footer ─── */
.h-footer {
  padding: 28px 0 38px;
  border-top: 1px solid var(--line);
}
.h-footer-in {
  display: flex; justify-content: space-between;
  align-items: center; gap: 20px; flex-wrap: wrap;
}
.h-footer-logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.35rem; font-weight: 600; color: var(--accent);
}
.h-footer-sub { font-size: .8rem; color: var(--faint); margin-top: 5px; }
.h-footer-credit { font-size: .78rem; color: var(--faint); text-align: right; }
.h-footer-credit a { color: var(--muted); font-weight: 600; }
.h-footer-credit a:hover { color: var(--accent); text-decoration: underline; }

/* ─── Demo Banner ─── */
.h-demo-bar {
  background: rgba(200, 160, 100, .08);
  border-bottom: 1px solid var(--line-m);
  padding: 10px 0;
  text-align: center;
  font-size: .76rem;
  color: var(--muted);
  letter-spacing: .04em;
}
.h-demo-bar a {
  color: var(--accent); font-weight: 700;
  border-bottom: 1px solid rgba(200,160,100,.3);
  transition: border-color .2s;
}
.h-demo-bar a:hover { border-color: var(--accent); }

/* ─── Responsive ─── */
@media (max-width: 960px) {
  .h-hero { grid-template-columns: 1fr; min-height: auto; }
  .h-hero-left { padding: 72px 0 52px; }
  .h-hero-right { display: none; }
  .h-why-grid { grid-template-columns: repeat(2, 1fr); }
  .h-cta-frame { padding: 44px 32px; }
}
@media (max-width: 700px) {
  .h-nav-links, .h-nav-book { display: none; }
  .h-mtoggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px;
    border: 1px solid var(--line); background: rgba(255, 255, 255, .04);
    color: var(--text); border-radius: 10px; font-size: 1.2rem; cursor: pointer;
  }
  .h-mnav {
    display: none; flex-direction: column;
    padding: 12px 16px; background: rgba(14, 9, 5, .96);
    border-bottom: 1px solid var(--line);
  }
  .h-mnav.open { display: flex; }
  .h-mnav a {
    padding: 13px 0; border-bottom: 1px solid var(--line);
    font-size: .95rem; color: var(--muted);
  }
  .h-mnav .h-btn { margin-top: 10px; width: 100%; justify-content: center; }
  .h-menu-row { grid-template-columns: 1fr; gap: 6px; padding: 22px 0; }
  .h-menu-num { font-size: 1.6rem; }
  .h-why-grid { grid-template-columns: 1fr; }
  .h-hero-btns { flex-direction: column; }
  .h-hero-btns a { width: 100%; }
  .h-cta-btns { flex-direction: column; align-items: center; }
  .h-cta-btns a { width: 100%; max-width: 320px; }
  .h-cta-frame { padding: 36px 24px; }
  .h-footer-in { flex-direction: column; text-align: center; }
  .h-footer-credit { text-align: center; }
  .h-brand-band { display: none; }
  .h-section { padding: 64px 0; }
  .h-why { padding: 64px 0; }
  .h-cta { padding: 64px 0 72px; }
}
