/* ═══════════════════════════════════════════════════
   HairByNB — hairbynb.com
   Shared stylesheet · All pages
═══════════════════════════════════════════════════ */

:root {
  --gold:       #C9A84C;
  --gold-light: #E8C97A;
  --blush:      #F2DEDA;
  --deep:       #1A1009;
  --warm:       #2C1A0E;
  --cream:      #FAF6F0;
  --text:       #3B2A1A;
  --muted:      #8A7060;
  --white:      #FFFFFF;
  --success:    #2D7A4F;
  --error:      #B84040;
  --cashapp:    #00D632;
  --venmo:      #3396CD;
  --zelle:      #6D1ED4;
  --font-d:     'Cormorant Garamond', Georgia, serif;
  --font-b:     'DM Sans', sans-serif;
  --r:          12px;
  --sh:         0 4px 24px rgba(44,26,14,0.09);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-b); background: var(--cream); color: var(--text); line-height: 1.7; }

/* ── TYPOGRAPHY ─────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-d); line-height: 1.2; color: var(--deep); }
h2 em { color: var(--gold); font-style: italic; }
p { line-height: 1.75; }
a { color: var(--gold); }

/* ── CONTAINER ──────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── NAVIGATION ─────────────────────────────────── */
header {
  background: var(--deep);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between; height: 68px;
}
.logo a {
  text-decoration: none;
  font-family: var(--font-d);
  font-size: 1.7rem; font-weight: 700;
}
.logo .lh { color: var(--gold); }
.logo .ln { color: var(--white); }
.nav-links {
  list-style: none;
  display: flex; gap: 2px; align-items: center;
}
.nav-links li a {
  text-decoration: none;
  color: rgba(255,255,255,0.72);
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 6px 9px; border-radius: 4px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-links li a:hover,
.nav-links li a.active { color: var(--gold); background: rgba(201,168,76,0.1); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--deep) !important;
  font-weight: 700 !important;
  padding: 8px 14px !important;
  border-radius: 6px !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }
.hamburger {
  display: none; background: none; border: none;
  color: var(--white); font-size: 1.4rem; cursor: pointer;
}

/* ── BREADCRUMB ─────────────────────────────────── */
.breadcrumb {
  background: var(--blush);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 10px 24px;
  font-size: 0.82rem; color: var(--muted);
}
.breadcrumb a { color: var(--gold); text-decoration: none; }

/* ── PAGE HERO ──────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--deep) 0%, var(--warm) 55%, #3A1E0C 100%);
  padding: 70px 24px 60px; text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 70%, rgba(201,168,76,0.10) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 20%, rgba(242,222,218,0.06) 0%, transparent 45%);
}
.hero-eyebrow {
  position: relative;
  color: var(--gold); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  display: block; margin-bottom: 14px;
}
.page-hero h1 {
  position: relative;
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--white); line-height: 1.15;
}
.page-hero h1 em { color: var(--gold-light); font-style: italic; }
.page-hero > p {
  position: relative;
  color: rgba(255,255,255,0.62); max-width: 540px;
  margin: 14px auto 0; font-size: 0.95rem;
}

/* ── HOME HERO ──────────────────────────────────── */
.hero-home {
  position: relative; min-height: 88vh;
  display: flex; align-items: center;
  overflow: hidden; padding: 80px 24px;
}
.hero-home-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--deep) 0%, var(--warm) 50%, #3D2010 100%);
}
.hero-home-img {
  position: absolute; right: 0; top: 0; bottom: 0; width: 46%;
  overflow: hidden;
}
.hero-home-img img { width: 100%; height: 100%; object-fit: cover; opacity: 0.38; }
.hero-home-fade {
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--warm) 42%, transparent 72%);
}
.hero-home-content { position: relative; z-index: 2; max-width: 560px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--gold); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  border-bottom: 1px solid var(--gold); padding-bottom: 5px;
  margin-bottom: 18px; display: block;
}
.hero-home-content h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  color: var(--white); line-height: 1.1; margin-bottom: 18px;
}
.hero-home-content h1 em { color: var(--gold-light); font-style: italic; }
.hero-home-content p {
  color: rgba(255,255,255,0.72); font-size: 1rem;
  margin-bottom: 32px; max-width: 440px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── TRUST STRIP ────────────────────────────────── */
.trust-strip {
  background: var(--deep);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 18px 24px;
  display: flex; gap: 0; flex-wrap: wrap;
  justify-content: center;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.6); font-size: 0.82rem;
  padding: 8px 24px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.trust-item:last-child { border-right: none; }
.trust-item i { color: var(--gold); }

/* ── SECTION SHARED ─────────────────────────────── */
.home-section { padding: 72px 0; background: var(--cream); }
.section-hdr { text-align: center; margin-bottom: 44px; }
.section-hdr h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-top: 6px; }
.section-hdr p { color: var(--muted); max-width: 540px; margin: 10px auto 0; }
.section-label {
  color: var(--gold); font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
}

/* ── SERVICES GRID ──────────────────────────────── */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.svc-card {
  background: var(--white); border: 1.5px solid rgba(201,168,76,0.15);
  border-radius: 10px; padding: 20px;
  text-decoration: none; display: flex; align-items: center; gap: 14px;
  transition: all 0.25s;
}
.svc-card:hover {
  border-color: var(--gold); transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.12);
}
.svc-icon {
  width: 40px; height: 40px; border-radius: 9px;
  background: var(--blush); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.svc-icon i { color: var(--gold); font-size: 0.9rem; }
.svc-card:hover .svc-icon { background: var(--gold); }
.svc-card:hover .svc-icon i { color: var(--deep); }
.svc-name { font-weight: 600; font-size: 0.88rem; color: var(--deep); }
.svc-desc { font-size: 0.74rem; color: var(--muted); margin-top: 2px; }
.svc-price { font-family: var(--font-d); font-size: 1rem; font-weight: 700; color: var(--gold); margin-left: auto; white-space: nowrap; flex-shrink: 0; }
.section-cta { text-align: center; margin-top: 36px; }

/* ── MENU GRID (service pages) ──────────────────── */
.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 18px; }
.menu-card {
  background: var(--white); border-radius: 12px; padding: 22px;
  box-shadow: var(--sh); display: flex; flex-direction: column; gap: 14px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.menu-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(44,26,14,0.12); }
.menu-icon { width: 44px; height: 44px; background: var(--blush); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.menu-icon i { color: var(--gold); font-size: 1.1rem; }
.menu-body h3 { font-size: 1.1rem; color: var(--deep); margin-bottom: 6px; }
.menu-body p { font-size: 0.85rem; color: var(--muted); }
.menu-meta { display: flex; justify-content: space-between; align-items: center; margin-top: 10px; }
.menu-price { font-family: var(--font-d); font-size: 1.1rem; font-weight: 700; color: var(--gold); }
.menu-time { font-size: 0.76rem; color: var(--muted); display: flex; align-items: center; gap: 4px; }
.menu-cta { display: inline-flex; align-items: center; gap: 6px; color: var(--gold); font-weight: 700; font-size: 0.82rem; text-decoration: none; border-bottom: 1px solid rgba(201,168,76,0.3); padding-bottom: 2px; align-self: flex-start; transition: border-color 0.2s; }
.menu-cta:hover { border-color: var(--gold); }

/* ── BENEFITS (knotless page) ───────────────────── */
.why-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: center; }
.benefit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.benefit-card { background: var(--white); border: 1px solid rgba(201,168,76,0.15); border-radius: 10px; padding: 18px; display: flex; align-items: flex-start; gap: 12px; transition: border-color 0.2s; }
.benefit-card:hover { border-color: var(--gold); }
.benefit-icon { width: 38px; height: 38px; background: var(--blush); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.benefit-icon i { color: var(--gold); }
.benefit-card strong { display: block; font-size: 0.88rem; font-weight: 700; color: var(--deep); margin-bottom: 4px; }
.benefit-card p { font-size: 0.8rem; color: var(--muted); margin: 0; }

/* ── PROCESS STEPS ──────────────────────────────── */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step { background: var(--white); border-radius: 12px; padding: 24px; box-shadow: var(--sh); border-top: 3px solid var(--gold); }
.step-num { font-family: var(--font-d); font-size: 2.5rem; font-weight: 900; color: rgba(201,168,76,0.2); line-height: 1; margin-bottom: 8px; }
.step strong { display: block; font-size: 0.95rem; font-weight: 700; color: var(--deep); margin-bottom: 6px; }
.step p { font-size: 0.84rem; color: var(--muted); }

/* ── MAKEUP CLASS PROMO ─────────────────────────── */
.mkp-promo { margin: 48px 0; }
.mkp-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  background: linear-gradient(135deg, #0A0703, #1C1408);
  border: 1px solid rgba(201,150,42,0.25);
  border-radius: 16px; overflow: hidden;
}
.mkp-content { padding: 44px 40px; }
.eyebrow-dark {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(201,150,42,0.12); border: 1px solid rgba(201,150,42,0.3);
  border-radius: 50px; padding: 5px 14px;
  color: #E8B84B; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 18px;
}
.mkp-content h2 { color: #fff; font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 12px; }
.mkp-content h2 em { color: #E8B84B; font-style: italic; }
.mkp-content p { color: rgba(255,255,255,0.58); font-size: 0.9rem; margin-bottom: 22px; }
.mkp-sched { display: flex; align-items: center; gap: 10px; background: rgba(201,150,42,0.08); border: 1px solid rgba(201,150,42,0.22); border-radius: 8px; padding: 11px 16px; margin-bottom: 24px; width: fit-content; }
.mkp-sched i { color: #C9962A; }
.mkp-day { color: #E8B84B; font-weight: 700; font-size: 0.85rem; }
.mkp-loc { color: rgba(255,255,255,0.45); font-size: 0.76rem; }
.mkp-ctas { display: flex; gap: 12px; align-items: center; }
.btn-enroll { display: inline-flex; align-items: center; gap: 8px; padding: 13px 26px; border-radius: 8px; background: linear-gradient(135deg, #E8B84B, #C9962A); color: #0A0703; font-weight: 800; font-size: 0.85rem; letter-spacing: 0.05em; text-transform: uppercase; text-decoration: none; transition: all 0.25s; }
.btn-enroll:hover { transform: translateY(-2px); filter: brightness(1.08); }
.mkp-price-badge { font-family: var(--font-d); font-size: 1.4rem; font-weight: 700; color: #E8B84B; padding: 10px 16px; border: 1.5px solid rgba(201,150,42,0.3); border-radius: 8px; }
.mkp-visual { position: relative; overflow: hidden; min-height: 280px; display: flex; align-items: center; justify-content: center; border-left: 1px solid rgba(201,150,42,0.12); }
.mkp-visual img { width: 100%; height: 100%; object-fit: cover; opacity: 0.55; position: absolute; inset: 0; }

/* ── IMAGE PLACEHOLDERS ─────────────────────────── */
.img-ph {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; background: linear-gradient(135deg, var(--blush), #E8D5D0);
  color: var(--muted); text-align: center; padding: 20px;
}
.img-ph i { font-size: 2.5rem; color: var(--gold); opacity: 0.6; }
.img-ph span { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; }
.img-ph.dark {
  background: rgba(201,150,42,0.06); color: rgba(201,150,42,0.35);
  width: 100%; min-height: 280px;
}
.img-ph.dark i { color: rgba(201,150,42,0.35); }

/* ── AREAS ──────────────────────────────────────── */
.areas-section { padding: 72px 0; background: var(--blush); }
.areas-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.areas-grid h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin: 8px 0; }
.areas-grid > div > p { color: var(--muted); }
.area-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.area-tag { background: var(--white); border: 1px solid rgba(201,168,76,0.3); color: var(--text); padding: 7px 16px; border-radius: 50px; font-size: 0.84rem; font-weight: 500; display: flex; align-items: center; gap: 6px; }
.area-tag i { color: var(--gold); font-size: 0.72rem; }
.hours-card { background: var(--white); border-radius: 12px; padding: 30px; box-shadow: var(--sh); }
.hours-card h3 { font-size: 1.3rem; margin-bottom: 18px; }
.hours-row { display: flex; justify-content: space-between; font-size: 0.85rem; padding: 9px 0; border-bottom: 1px solid var(--blush); }
.h-open { color: var(--gold); font-weight: 600; }
.h-closed { color: var(--muted); }
.hours-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }

/* ── CTA BAND ───────────────────────────────────── */
.cta-band { background: var(--gold); padding: 50px 24px; text-align: center; }
.cta-band h2 { font-size: clamp(1.7rem, 4vw, 2.2rem); color: var(--deep); margin-bottom: 10px; }
.cta-band p { color: rgba(44,26,14,0.72); margin-bottom: 24px; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-cta { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; border-radius: 8px; background: var(--deep); color: var(--gold); font-weight: 700; font-size: 0.85rem; text-decoration: none; transition: all 0.22s; }
.btn-cta:hover { background: var(--warm); transform: translateY(-1px); }
.btn-cta-outline { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; border-radius: 8px; border: 1.5px solid rgba(44,26,14,0.3); color: var(--deep); font-weight: 600; font-size: 0.85rem; text-decoration: none; transition: all 0.22s; }
.btn-cta-outline:hover { background: rgba(44,26,14,0.08); }

/* ── SHARED BUTTONS ─────────────────────────────── */
.btn-gold { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; border-radius: 6px; background: var(--gold); color: var(--deep); font-weight: 700; font-size: 0.85rem; text-decoration: none; transition: all 0.25s; }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(201,168,76,0.35); }
.btn-gold-lg { display: inline-flex; align-items: center; gap: 9px; padding: 15px 36px; border-radius: 6px; background: var(--gold); color: var(--deep); font-weight: 700; font-size: 0.95rem; text-decoration: none; transition: all 0.25s; }
.btn-gold-lg:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(201,168,76,0.4); }
.btn-outline { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; border-radius: 6px; background: transparent; border: 1.5px solid rgba(255,255,255,0.5); color: var(--white); font-weight: 600; font-size: 0.85rem; text-decoration: none; transition: all 0.25s; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-dark { display: inline-flex; align-items: center; gap: 8px; padding: 13px 24px; border-radius: 6px; background: var(--deep); color: var(--gold); font-weight: 600; font-size: 0.85rem; text-decoration: none; transition: all 0.25s; }
.btn-dark:hover { background: var(--warm); }

/* ── FOOTER ─────────────────────────────────────── */
.site-footer { background: var(--deep); padding: 56px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; padding-bottom: 48px; }
.footer-brand .footer-logo { font-family: var(--font-d); font-size: 2rem; font-weight: 700; margin-bottom: 14px; }
.footer-logo .lh { color: var(--gold); }
.footer-logo .ln { color: var(--white); }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.875rem; line-height: 1.7; margin-bottom: 20px; }
.social-links { display: flex; gap: 10px; }
.social-links a { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); text-decoration: none; transition: all 0.2s; }
.social-links a:hover { background: var(--gold); border-color: var(--gold); color: var(--deep); }
.footer-col h4 { font-family: var(--font-d); font-size: 1.05rem; font-weight: 700; color: var(--gold); margin-bottom: 16px; padding-bottom: 8px; border-bottom: 1px solid rgba(201,168,76,0.2); }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.875rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact { gap: 12px !important; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; color: rgba(255,255,255,0.55); font-size: 0.84rem; }
.footer-contact li i { color: var(--gold); width: 14px; flex-shrink: 0; margin-top: 3px; }
.footer-contact li a { color: rgba(255,255,255,0.55); text-decoration: none; }
.footer-contact li a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 18px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-bottom span { color: rgba(255,255,255,0.35); font-size: 0.78rem; }

/* ── MOBILE NAV ─────────────────────────────────── */
@media (max-width: 1060px) {
  .hamburger { display: block; }
  .nav-links {
    display: none; position: absolute;
    top: 68px; left: 0; right: 0;
    background: var(--deep);
    flex-direction: column; align-items: stretch;
    padding: 12px 0; gap: 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links li a { padding: 12px 24px; border-radius: 0; font-size: 0.85rem; }
  .nav-cta { margin: 8px 24px 4px !important; border-radius: 6px !important; text-align: center; justify-content: center; }
  header { position: sticky; }
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 32px; }
  .areas-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-home-img { display: none; }
  .hero-home-fade { display: none; }
  .mkp-inner { grid-template-columns: 1fr; }
  .mkp-visual { display: none; }
}

@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .benefit-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .trust-item { border-right: none; padding: 6px 14px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .page-hero { padding: 50px 20px 44px; }
  .home-section { padding: 52px 0; }
}

@media (max-width: 480px) {
  .process-steps { grid-template-columns: 1fr; }
  .hero-home { min-height: 70vh; padding: 60px 20px; }
  .cta-btns { flex-direction: column; align-items: center; }
  .hero-ctas { flex-direction: column; }
}

/* ═══════════════════════════════════════════════════
   LOGO IMAGE SYSTEM
═══════════════════════════════════════════════════ */
.logo-img-wrap {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.logo-img {
  width: 42px; height: 42px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 1.5px solid rgba(201,168,76,0.35);
}
.logo-text { font-family: var(--font-d); font-size: 1.55rem; font-weight: 700; }
.logo-text .lh { color: var(--gold); }
.logo-text .ln { color: var(--white); }

/* Footer logo image */
.footer-logo-wrap { display: inline-block; margin-bottom: 16px; }
.footer-logo-img  {
  width: 110px; height: 110px;
  object-fit: contain;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.25);
}

/* Footer brand line — NewsBeauty, LLC */
.nb-parent { color: rgba(255,255,255,0.45); font-size: 0.78rem; }
.nb-parent strong { color: var(--gold); }

/* ═══════════════════════════════════════════════════
   HERO ENHANCEMENTS
═══════════════════════════════════════════════════ */
.hero-meta {
  display: flex; align-items: center; gap: 10px;
  flex-wrap: wrap; margin-top: 22px;
  font-size: 0.82rem; color: rgba(255,255,255,0.6);
}
.hero-meta i { color: var(--gold); }
.hero-phone { color: var(--gold); text-decoration: none; font-weight: 600; }
.hero-phone:hover { color: var(--gold-light); }
.hero-sep { color: rgba(255,255,255,0.25); }

/* ═══════════════════════════════════════════════════
   PROOF / SOCIAL PROOF SECTION
═══════════════════════════════════════════════════ */
.proof-section { padding: 80px 0; background: var(--blush); }
.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px; align-items: start;
}

/* Owner block */
.owner-block { display: flex; flex-direction: column; gap: 24px; }
.owner-img-wrap {
  position: relative;
  width: 100%; max-width: 380px;
}
.owner-img-wrap img {
  width: 100%; aspect-ratio: 1/1;
  object-fit: cover; object-position: center top;
  border-radius: 16px;
  border: 3px solid var(--gold);
  display: block;
}
.owner-badge {
  position: absolute; bottom: -14px; right: -14px;
  background: var(--deep); border: 2px solid var(--gold);
  color: var(--gold); border-radius: 50px;
  padding: 8px 18px; font-size: 0.78rem; font-weight: 700;
  display: flex; align-items: center; gap: 6px;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.owner-info { padding-top: 20px; }
.owner-info h2 { font-size: clamp(1.8rem,4vw,2.4rem); margin: 6px 0; }
.owner-title { color: var(--gold); font-weight: 600; font-size: 0.88rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 14px; }
.owner-bio { color: var(--muted); line-height: 1.8; font-size: 0.92rem; }
.owner-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 24px; }
.stat { background: var(--white); border-radius: 10px; padding: 14px 12px; text-align: center; border: 1px solid rgba(201,168,76,0.2); }
.stat-num  { font-family: var(--font-d); font-size: 1.8rem; font-weight: 700; color: var(--gold); line-height: 1; }
.stat-label { font-size: 0.72rem; color: var(--muted); margin-top: 4px; }

/* Testimonials block */
.testimonials-block { display: flex; flex-direction: column; gap: 20px; }
.testimonials-block h2 { font-size: clamp(1.8rem,3vw,2.2rem); margin: 6px 0 20px; }

.testimonial-card {
  background: var(--white); border-radius: 12px; padding: 22px 24px;
  box-shadow: var(--sh); border-left: 4px solid var(--gold);
  transition: transform 0.2s;
}
.testimonial-card:hover { transform: translateY(-2px); }
.t-stars { color: var(--gold); font-size: 0.95rem; letter-spacing: 2px; margin-bottom: 10px; }
.t-text  { color: var(--muted); font-size: 0.88rem; line-height: 1.75; margin-bottom: 14px; font-style: italic; }
.t-author { display: flex; align-items: center; gap: 10px; }
.t-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--blush); border: 1.5px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.t-avatar i { color: var(--gold); font-size: 0.85rem; }
.t-name  { font-weight: 700; font-size: 0.84rem; color: var(--deep); }
.t-loc   { font-size: 0.74rem; color: var(--muted); }

.google-cta {
  display: flex; align-items: center; gap: 8px;
  background: rgba(66,133,244,0.07); border: 1px solid rgba(66,133,244,0.2);
  border-radius: 8px; padding: 12px 16px;
  font-size: 0.82rem; color: var(--muted); flex-wrap: wrap;
}
.google-cta i { color: #4285F4; font-size: 1rem; }
.google-cta a { color: #4285F4; font-weight: 700; text-decoration: none; margin-left: auto; }
.google-cta a:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════════════
   GALLERY SALES ENGINE
═══════════════════════════════════════════════════ */
.gallery-section { padding: 64px 0; background: var(--cream); }
.gallery-filters {
  display: flex; gap: 10px; flex-wrap: wrap;
  justify-content: center; margin-bottom: 40px;
}
.g-filter {
  padding: 9px 22px; border-radius: 50px;
  border: 1.5px solid rgba(201,168,76,0.35);
  background: transparent; color: var(--text);
  font-size: 0.82rem; font-weight: 500; cursor: pointer;
  font-family: var(--font-b); transition: all 0.22s;
}
.g-filter:hover, .g-filter.active {
  background: var(--gold); border-color: var(--gold); color: var(--deep);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
.g-item {
  background: var(--white); border-radius: 12px;
  overflow: hidden; box-shadow: var(--sh);
  transition: transform 0.3s, box-shadow 0.3s;
}
.g-item:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(44,26,14,0.14); }
.g-img-wrap {
  width: 100%; aspect-ratio: 4/3;
  background: var(--blush); position: relative; overflow: hidden;
}
.g-img-wrap img { width:100%; height:100%; object-fit:cover; display:block; transition: transform 0.4s; }
.g-item:hover .g-img-wrap img { transform: scale(1.05); }
.g-ph {
  width:100%; height:100%;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:8px; color:var(--muted); text-align:center; padding:16px;
}
.g-ph i { font-size:2rem; color:var(--gold); opacity:0.7; }
.g-ph span { font-size:0.8rem; font-weight:600; color:var(--deep); }
.g-ph em { font-size:0.62rem; color:var(--muted); opacity:0.6; font-style:normal; }

.g-info { padding: 16px 18px 18px; }
.g-name { font-weight: 700; font-size: 0.9rem; color: var(--deep); margin-bottom: 8px; }
.g-meta { display:flex; justify-content:space-between; align-items:center; margin-bottom:12px; }
.g-price { font-family:var(--font-d); font-size:1.05rem; font-weight:700; color:var(--gold); }
.g-dur   { font-size:0.74rem; color:var(--muted); display:flex; align-items:center; gap:4px; }
.g-book-btn {
  display:flex; align-items:center; justify-content:center; gap:7px;
  width:100%; padding:10px;
  background:var(--deep); color:var(--gold);
  border-radius:7px; text-decoration:none;
  font-size:0.8rem; font-weight:700; letter-spacing:0.04em;
  transition:all 0.22s;
}
.g-book-btn:hover { background:var(--warm); transform:translateY(-1px); }

/* ═══════════════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════════════ */
.about-owner-grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start;
}
.about-photo-col { position: sticky; top: 90px; }
.about-photo-frame { position: relative; }
.about-photo-frame img {
  width: 100%; border-radius: 16px;
  border: 3px solid var(--gold); display: block;
  object-fit: cover; object-position: center top;
  aspect-ratio: 1/1;
}
.about-photo-badge {
  position: absolute; bottom: -18px; left: 18px; right: 18px;
  background: var(--deep); border: 1.5px solid rgba(201,168,76,0.4);
  border-radius: 10px; padding: 14px 16px;
  display: flex; align-items: center; gap: 12px;
}
.about-photo-badge img { width:44px; height:44px; border-radius:50%; object-fit:contain; border:1px solid rgba(201,168,76,0.3); }
.about-photo-badge strong { display:block; color:var(--white); font-size:0.88rem; font-weight:700; }
.about-photo-badge span   { color:var(--gold); font-size:0.74rem; }

.about-social { display:flex; flex-direction:column; gap:10px; margin-top:36px; }
.about-social-btn {
  display:flex; align-items:center; gap:9px;
  padding:11px 16px; border-radius:8px;
  text-decoration:none; font-size:0.84rem; font-weight:600;
  transition:all 0.22s; color:#fff;
}
.about-social-btn i { font-size:1rem; }
.about-social-btn.tk { background:#000; }
.about-social-btn.ig { background:linear-gradient(135deg,#833ab4,#fd1d1d,#fcb045); }
.about-social-btn:hover { transform:translateY(-1px); filter:brightness(1.1); }

.about-bio-col { padding-top: 8px; }
.about-bio-col h2 { font-size:clamp(1.8rem,4vw,2.8rem); margin:6px 0 20px; }
.about-bio p { color:var(--muted); line-height:1.85; font-size:0.92rem; margin-bottom:16px; }

.about-quote {
  background:var(--blush); border-left:4px solid var(--gold);
  border-radius:0 10px 10px 0; padding:18px 22px; margin:24px 0;
  position:relative;
}
.about-quote i { color:var(--gold); font-size:1.4rem; margin-bottom:8px; display:block; }
.about-quote cite { display:block; margin-top:10px; color:var(--gold); font-size:0.82rem; font-weight:600; font-style:normal; }

.about-credentials { display:flex; flex-direction:column; gap:14px; margin-top:28px; }
.cred-item { display:flex; align-items:flex-start; gap:14px; padding:14px 16px; background:var(--white); border-radius:10px; border:1px solid rgba(201,168,76,0.15); transition:border-color 0.2s; }
.cred-item:hover { border-color:var(--gold); }
.cred-icon { width:40px; height:40px; border-radius:9px; background:var(--blush); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.cred-icon i { color:var(--gold); font-size:0.95rem; }
.cred-item strong { display:block; font-size:0.88rem; font-weight:700; color:var(--deep); margin-bottom:3px; }
.cred-item p { font-size:0.8rem; color:var(--muted); margin:0; line-height:1.5; }

/* Brand hierarchy */
.brand-hier-grid { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
.brand-hier      { display:flex; flex-direction:column; gap:12px; }
.bh-parent { display:flex; align-items:center; gap:14px; background:rgba(201,150,42,0.1); border:1px solid rgba(201,150,42,0.3); border-radius:10px; padding:14px 18px; }
.bh-parent img { border-radius:50%; width:56px; height:56px; object-fit:contain; }
.bh-arrow  { text-align:center; font-size:1rem; }
.bh-children { display:flex; flex-direction:column; gap:10px; }
.bh-child  { display:flex; align-items:center; gap:10px; padding:10px 16px; background:rgba(255,255,255,0.05); border:1px solid rgba(201,150,42,0.15); border-radius:8px; font-size:0.85rem; }
.brand-visual { text-align:center; }

/* Blog author with real photo */
.awAvatar-img {
  width: 68px; height: 68px;
  border-radius: 50%; object-fit: cover; object-position: center top;
  border: 2.5px solid var(--gold); display: block; margin: 0 auto 10px;
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE ADDITIONS
═══════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .proof-grid         { grid-template-columns: 1fr; }
  .about-owner-grid   { grid-template-columns: 1fr; }
  .about-photo-col    { position: static; max-width: 400px; margin: 0 auto; }
  .brand-hier-grid    { grid-template-columns: 1fr; gap: 32px; }
  .brand-visual       { display: none; }
  .gallery-grid       { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 580px) {
  .gallery-grid   { grid-template-columns: 1fr; }
  .owner-stats    { grid-template-columns: repeat(3,1fr); }
  .logo-img       { width: 36px; height: 36px; }
  .logo-text      { font-size: 1.35rem; }
}

/* ═══════════════════════════════════════════════════
   BEAUTY SUPPLY PAGE
═══════════════════════════════════════════════════ */
.supply-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.supply-card {
  background: var(--white);
  border-radius: 14px;
  padding: 26px;
  box-shadow: var(--sh);
  border-top: 3px solid var(--gold);
  transition: transform 0.25s, box-shadow 0.25s;
}
.supply-card:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(44,26,14,0.12); }
.supply-card-header {
  display: flex; align-items: center; gap: 14px; margin-bottom: 12px;
}
.supply-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--blush);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.supply-icon i { color: var(--gold); font-size: 1.1rem; }
.supply-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--deep); }
.supply-card > p { color: var(--muted); font-size: 0.86rem; margin-bottom: 16px; line-height: 1.65; }
.supply-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.supply-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.84rem; color: var(--text); }
.supply-list li i { color: var(--gold); font-size: 0.72rem; margin-top: 4px; flex-shrink: 0; }
.supply-list li strong { color: var(--deep); }

/* Why supply grid */
.why-supply-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 8px;
}
.why-card {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--white); border-radius: 12px; padding: 18px 16px;
  border: 1px solid rgba(201,168,76,0.15); transition: border-color 0.2s;
}
.why-card:hover { border-color: var(--gold); }
.why-icon {
  width: 40px; height: 40px; border-radius: 9px;
  background: var(--blush); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.why-icon i { color: var(--gold); }
.why-card strong { display: block; font-size: 0.88rem; font-weight: 700; color: var(--deep); margin-bottom: 4px; }
.why-card p { font-size: 0.8rem; color: var(--muted); margin: 0; line-height: 1.55; }

@media (max-width: 860px) { .why-supply-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .why-supply-grid { grid-template-columns: 1fr; } }
