/* ============================================================
   VIP BRAIDS BY YVONNE — Master Stylesheet
   Fonts: Cinzel (headings) + Poppins (body)
   Brand Colors: Gold #C89B3C | Burgundy #B01245
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables ───────────────────────────────────────── */
:root {
  --gold:        #C89B3C;
  --gold-dark:   #B8891F;
  --gold-light:  #E7C874;
  --gold-pale:   #F5E9C9;
  --burgundy:    #B01245;
  --burgundy-dk: #8C1238;
  --bg-cream:    #F7F0E8;
  --bg-ivory:    #FCFBF9;
  --bg-dark:     #1A0A14;
  --text-dark:   #1B1B1B;
  --text-gray:   #6E6E6E;
  --text-light:  #9A8B7C;
  --white:       #FFFFFF;
  --border:      rgba(200,155,60,.25);

  --shadow-soft:   0 8px 25px rgba(0,0,0,.08);
  --shadow-gold:   0 15px 40px rgba(200,155,60,.18);
  --shadow-card:   0 10px 30px rgba(0,0,0,.12);
  --shadow-hover:  0 20px 50px rgba(200,155,60,.28);

  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  18px;
  --radius-xl:  30px;
  --radius-pill: 999px;

  --transition: .3s ease;
  --font-head: 'Cinzel', serif;
  --font-body: 'Poppins', sans-serif;
}

/* ── Reset & Base ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }

/* ── Typography ──────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  line-height: 1.25;
  color: var(--text-dark);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); font-weight: 600; }
h4 { font-size: 1.2rem; font-weight: 600; }
p  { color: var(--text-gray); line-height: 1.85; margin-bottom: 1rem; }

.section-label {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: .6rem;
}
.section-title {
  font-family: var(--font-head);
  color: var(--text-dark);
  margin-bottom: 1rem;
}
.section-title span { color: var(--gold); }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-gray);
  max-width: 620px;
  margin: 0 auto 3rem;
}
.text-center { text-align: center; }
.text-gold   { color: var(--gold); }
.text-burg   { color: var(--burgundy); }

/* ── Layout ──────────────────────────────────────────────── */
.container { width: 92%; max-width: 1240px; margin: 0 auto; }
.section    { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-lg { padding: 7rem 0; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.flex   { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-1 { gap: 1rem; }
.gap-2 { gap: 2rem; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  padding: .85rem 2.2rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
  letter-spacing: .03em;
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(200,155,60,.35);
}
.btn-gold:hover {
  background: var(--burgundy);
  box-shadow: 0 6px 24px rgba(176,18,69,.35);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--burgundy);
  font-weight: 700;
}
.btn-white:hover { background: var(--gold-pale); }
.btn-burg {
  background: var(--burgundy);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(176,18,69,.35);
}
.btn-burg:hover { background: var(--burgundy-dk); transform: translateY(-2px); }
.btn-lg { padding: 1.1rem 3rem; font-size: 1.05rem; border-radius: var(--radius-md); }

/* ── Navigation ──────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background .4s ease, box-shadow .4s ease;
  padding: .8rem 0;
}
#navbar.scrolled {
  background: rgba(26,10,20,.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
}
#navbar.transparent { background: transparent; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo img { height: 56px; width: auto; }
.nav-menu { display: flex; align-items: center; gap: 2rem; }
.nav-menu a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: .04em;
  position: relative;
  padding-bottom: 4px;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-menu a:hover::after,
.nav-menu a.active::after { width: 100%; }
.nav-menu a:hover, .nav-menu a.active { color: var(--gold); }
.nav-cta { margin-left: 1rem; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 26px; height: 2px; background: var(--white); transition: var(--transition); border-radius: 2px; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Hero Slider ─────────────────────────────────────────── */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease, transform 1.2s ease;
  transform: scale(1.04);
}
.slide.active { opacity: 1; transform: scale(1); }
.slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
}
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,10,20,.78) 0%,
    rgba(176,18,69,.25) 50%,
    rgba(200,155,60,.15) 100%
  );
}
.slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 0 5%;
}
.slide-text {
  max-width: 680px;
  color: var(--white);
  animation: slideUp .9s ease .3s both;
}
.slide-text .tag {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.2rem;
}
.slide-text h1 {
  font-family: var(--font-head);
  color: var(--white);
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  line-height: 1.12;
  margin-bottom: 1.2rem;
  text-shadow: 0 4px 20px rgba(0,0,0,.4);
}
.slide-text h1 em {
  font-style: normal;
  color: var(--gold-light);
}
.slide-text p {
  color: rgba(255,255,255,.88);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 520px;
}
.slide-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.slider-dots {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .6rem;
  z-index: 10;
}
.slider-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.slider-dot.active { background: var(--gold); transform: scale(1.3); }
.slider-arrows {
  position: absolute;
  bottom: 2rem;
  right: 3rem;
  display: flex;
  gap: .6rem;
  z-index: 10;
}
.slider-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(200,155,60,.25);
  border: 1px solid rgba(200,155,60,.5);
  color: var(--white);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(6px);
}
.slider-arrow:hover { background: var(--gold); border-color: var(--gold); }
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.6);
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.scroll-indicator .line {
  width: 1px; height: 45px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

/* ── Announcement Bar ────────────────────────────────────── */
.announcement-bar {
  background: var(--bg-dark);
  color: var(--gold-light);
  text-align: center;
  padding: .55rem 1rem;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .06em;
  position: relative;
  z-index: 999;
}
.announcement-bar a { color: var(--white); text-decoration: underline; }

/* ── Section: Introduction ───────────────────────────────── */
.intro-section { background: var(--bg-ivory); }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.intro-img-wrap { position: relative; }
.intro-img-main {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-gold);
  aspect-ratio: 4/5;
  object-fit: cover;
}
.intro-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--burgundy);
  color: var(--white);
  padding: 1.2rem 1.5rem;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-card);
}
.intro-badge strong { font-size: 2rem; font-family: var(--font-head); display: block; color: var(--gold-light); }
.intro-badge span { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; }
.intro-content { padding: 1rem 0; }
.intro-stats { display: flex; gap: 2rem; margin-top: 2rem; }
.stat-item { text-align: center; }
.stat-item .num { font-family: var(--font-head); font-size: 2rem; font-weight: 700; color: var(--gold); display: block; }
.stat-item .lbl { font-size: .82rem; color: var(--text-gray); }

/* ── Services Cards ──────────────────────────────────────── */
.services-section { background: var(--white); }
.service-card {
  background: var(--bg-ivory);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.service-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform .5s ease;
}
.service-card:hover img { transform: scale(1.05); }
.service-card-body { padding: 1.5rem; }
.service-card-body h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.service-card-body p { font-size: .9rem; margin-bottom: 1rem; }
.service-card .price-tag {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--gold);
  color: var(--white);
  padding: .3rem .8rem;
  border-radius: var(--radius-pill);
  font-size: .82rem;
  font-weight: 700;
}

/* ── Product Cards ───────────────────────────────────────── */
.products-section { background: var(--bg-cream); }
.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-gold); }
.product-img-wrap {
  width: 100%;
  aspect-ratio: 5 / 7;
  overflow: hidden;
  margin: 0 auto;
}
.product-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.06); }
.product-card-body { padding: 1.2rem 1.4rem; }
.product-card-body h4 { font-size: 1rem; color: var(--text-dark); margin-bottom: .3rem; }
.product-card-body .price { color: var(--gold); font-weight: 700; font-size: 1.1rem; font-family: var(--font-head); }
.product-card-body .inquiry-link {
  display: block;
  margin-top: .8rem;
  font-size: .82rem;
  color: var(--burgundy);
  font-weight: 600;
  text-decoration: underline;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
  gap: 2rem;
}

/* ── Pricing Tables ──────────────────────────────────────── */
.pricing-section { background: var(--white); }
.price-tier {
  background: var(--bg-ivory);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.price-tier::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gold);
}
.price-tier.featured {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.price-tier.featured::before { background: var(--burgundy); }
.price-tier:hover { transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.tier-name { font-family: var(--font-head); font-size: 1.3rem; color: var(--burgundy); margin-bottom: 1rem; }
.tier-list li {
  display: flex;
  justify-content: space-between;
  padding: .5rem 0;
  border-bottom: 1px solid var(--border);
  font-size: .9rem;
}
.tier-list li:last-child { border-bottom: none; }
.tier-list li .length { color: var(--text-gray); }
.tier-list li .amount { color: var(--gold); font-weight: 700; }
.tier-extras { margin-top: 1rem; padding-top: 1rem; border-top: 1px dashed var(--border); }
.tier-extras li { font-size: .82rem; color: var(--text-gray); padding: .2rem 0; }
.tier-extras li::before { content: '+ '; color: var(--gold); font-weight: 700; }
.tier-req { font-size: .78rem; color: var(--burgundy); font-weight: 600; margin-top: .8rem; }

/* ── Pricing Quick-Nav ───────────────────────────────────── */
.pricing-quicknav {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  justify-content: center;
  margin: 2rem 0 0;
  padding: 1.2rem;
  background: var(--bg-ivory);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.pqn-btn {
  display: inline-block;
  padding: .5rem 1.1rem;
  border-radius: var(--radius-pill);
  font-size: .82rem;
  font-weight: 600;
  background: var(--white);
  color: var(--text-dark);
  border: 1.5px solid var(--border);
  transition: var(--transition);
  text-decoration: none;
  letter-spacing: .02em;
}
.pqn-btn:hover { background: var(--gold); color: var(--white); border-color: var(--gold); transform: translateY(-2px); }
.pqn-btn.pqn-featured { background: var(--gold-pale); color: var(--burgundy); border-color: var(--gold); }
.pqn-btn.pqn-premium  { background: var(--burgundy); color: var(--white);     border-color: var(--burgundy-dk); }
.pqn-btn.pqn-premium:hover { background: var(--burgundy-dk); border-color: var(--burgundy-dk); }

/* ── Gallery ─────────────────────────────────────────────── */
.gallery-section { background: var(--bg-dark); }
.gallery-section .section-title { color: var(--white); }
.gallery-section .section-label { color: var(--gold-light); }
.gallery-section .section-subtitle { color: rgba(255,255,255,.6); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.2rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 2/3;
  cursor: pointer;
}
.gallery-item.square { aspect-ratio: 1/1; }
.gallery-item.wide { aspect-ratio: 16/9; grid-column: span 2; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(176,18,69,.75), transparent);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay p { color: var(--white); font-size: .9rem; font-weight: 500; }

/* ── Testimonials ────────────────────────────────────────── */
.testimonials-section { background: var(--bg-cream); }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  border-left: 4px solid var(--gold);
  transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; margin-bottom: .8rem; }
.testimonial-text { font-style: italic; color: var(--text-gray); margin-bottom: 1.2rem; font-size: .95rem; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.author-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.author-name { font-weight: 700; font-size: .95rem; color: var(--text-dark); }
.author-loc { font-size: .8rem; color: var(--text-gray); }

/* ── Video Embeds ────────────────────────────────────────── */
.video-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.video-wrap iframe { display: block; width: 100%; border: none; }
.video-short-wrap {
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-gold);
}
.video-short-wrap iframe { width: 100%; height: 540px; border: none; display: block; aspect-ratio: 9/16; }
.tiktok-embed-wrap {
  display: flex;
  justify-content: center;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

/* ── Appointment / Cal.com ───────────────────────────────── */
.appointment-section { background: var(--bg-ivory); }
.cal-wrapper {
  width: 100%;
  min-height: 700px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-gold);
  border: 1px solid var(--border);
}
.cal-wrapper > div { min-height: 700px; }

/* ── Contact / Inquiry Form ──────────────────────────────── */
.contact-section { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: start; }
.contact-info-card {
  background: var(--bg-dark);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-gold);
}
.contact-info-card h3 { color: var(--gold-light); margin-bottom: 1.5rem; font-size: 1.4rem; }
.contact-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
.contact-icon {
  width: 44px; height: 44px;
  background: rgba(200,155,60,.15);
  border: 1px solid rgba(200,155,60,.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-item-text strong { font-size: .85rem; color: var(--gold-light); display: block; margin-bottom: .2rem; }
.contact-item-text span, .contact-item-text a { font-size: .95rem; color: rgba(255,255,255,.8); }
.contact-item-text a:hover { color: var(--gold); }
.social-links { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 2rem; }
.social-link {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(200,155,60,.15);
  border: 1px solid rgba(200,155,60,.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: .9rem;
  transition: var(--transition);
}
.social-link:hover { background: var(--gold); color: var(--white); transform: translateY(-3px); }

/* ── Forms ───────────────────────────────────────────────── */
.form-card {
  background: var(--bg-ivory);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { margin-bottom: 1.4rem; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: .45rem;
  letter-spacing: .02em;
}
.form-group label .req { color: var(--burgundy); margin-left: .2rem; }
.form-control {
  width: 100%;
  padding: .8rem 1.1rem;
  border: 1.5px solid rgba(180,155,100,.3);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-family: var(--font-body);
  font-size: .93rem;
  color: var(--text-dark);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,155,60,.12);
}
.form-control::placeholder { color: rgba(110,110,110,.5); }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23C89B3C' d='M6 8L0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; }
textarea.form-control { resize: vertical; min-height: 130px; }
.form-note { font-size: .78rem; color: var(--text-gray); margin-top: .3rem; }
.cf-turnstile { margin: 1rem 0; }
.form-success {
  background: rgba(200,155,60,.1);
  border: 1px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 1rem 1.4rem;
  color: var(--text-dark);
  font-size: .9rem;
  display: none;
}
.form-error { border-color: var(--burgundy); background: rgba(176,18,69,.05); color: var(--burgundy); }

/* ── Policy Page ─────────────────────────────────────────── */
.policy-section { background: var(--bg-ivory); }
.policy-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-soft);
  border-top: 4px solid var(--gold);
}
.policy-card h3 { font-size: 1.3rem; color: var(--burgundy); margin-bottom: 1rem; display: flex; align-items: center; gap: .6rem; }
.policy-card h3 .icon { color: var(--gold); }
.policy-list li {
  padding: .5rem 0;
  padding-left: 1.4rem;
  position: relative;
  color: var(--text-gray);
  font-size: .95rem;
  border-bottom: 1px solid var(--border);
}
.policy-list li:last-child { border-bottom: none; }
.policy-list li::before { content: '✦'; position: absolute; left: 0; color: var(--gold); font-size: .65rem; top: .65rem; }
.policy-highlight {
  background: linear-gradient(135deg, var(--gold-pale), var(--bg-cream));
  border-radius: var(--radius-md);
  padding: 1.2rem 1.5rem;
  border-left: 4px solid var(--burgundy);
  margin: 1rem 0;
}
.policy-highlight p { color: var(--text-dark); font-size: .9rem; margin: 0; }

/* ── Braids Cloud Tag ────────────────────────────────────── */
.braids-cloud { display: flex; flex-wrap: wrap; gap: .7rem; justify-content: center; margin: 2rem 0; }
.braid-tag {
  display: inline-block;
  padding: .45rem 1.1rem;
  border-radius: var(--radius-pill);
  font-size: .82rem;
  font-weight: 500;
  transition: var(--transition);
  cursor: default;
}
.braid-tag.size-lg { background: var(--burgundy); color: var(--white); font-size: 1rem; padding: .55rem 1.4rem; }
.braid-tag.size-md { background: var(--gold); color: var(--white); }
.braid-tag.size-sm { background: var(--bg-cream); color: var(--text-dark); border: 1px solid var(--border); }
.braid-tag.size-xs { background: var(--white); color: var(--text-gray); border: 1px solid rgba(180,155,100,.2); font-size: .76rem; }
.braid-tag:hover { transform: scale(1.08); box-shadow: var(--shadow-soft); }

/* ── Banner ──────────────────────────────────────────────── */
.banner-section { padding: 0; }
.banner-img { width: 100%; display: block; }

/* ── Image Cards (400x600) ───────────────────────────────── */
.image-cards-section { background: var(--white); }
.img-card {
  position: relative;
  width: 400px;
  height: 600px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-gold);
  flex-shrink: 0;
}
.img-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.img-card:hover img { transform: scale(1.06); }
.img-card-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(26,10,20,.88), transparent);
  color: var(--white);
  padding: 1.5rem;
}
.img-card-caption h4 { font-size: 1rem; margin-bottom: .3rem; color: var(--gold-light); }
.img-card-caption p { font-size: .8rem; color: rgba(255,255,255,.75); margin: 0; }
.img-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(200,155,60,.2);
  z-index: 2;
  pointer-events: none;
}
.img-cards-scroll {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding: 1rem .5rem 2rem;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}

/* ── WhatsApp Float ──────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .6rem;
}
.whatsapp-btn {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 6px 24px rgba(37,211,102,.4);
  transition: var(--transition);
  cursor: pointer;
  border: 3px solid var(--white);
  text-decoration: none;
}
.whatsapp-btn:hover { transform: scale(1.1) rotate(-5deg); box-shadow: 0 10px 35px rgba(37,211,102,.5); color: var(--white); }
.whatsapp-tooltip {
  background: var(--bg-dark);
  color: var(--gold-light);
  padding: .4rem .9rem;
  border-radius: var(--radius-pill);
  font-size: .78rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: var(--shadow-soft);
  animation: pulse 2s infinite;
}
.whatsapp-pulse {
  position: absolute;
  top: 0; right: 0;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--burgundy);
  border: 2px solid var(--white);
}

/* ── Page Hero (inner pages) ─────────────────────────────── */
.page-hero {
  position: relative;
  height: 380px;
  display: flex;
  align-items: center;
  background: var(--bg-dark);
  overflow: hidden;
  margin-top: 0;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://braids-by-yvonne.s3.us-east-1.amazonaws.com/sliders/slider_1.jpg') center/cover;
  opacity: .25;
}
.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  width: 100%;
  color: var(--white);
  padding-top: 80px;
}
.page-hero-content h1 { color: var(--white); margin-bottom: .8rem; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  color: rgba(255,255,255,.6);
  font-size: .85rem;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,.4); }

/* ── Footer ──────────────────────────────────────────────── */
#footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,.75);
  padding-top: 5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(200,155,60,.15);
}
.footer-brand img { height: 52px; margin-bottom: 1.2rem; }
.footer-brand p { font-size: .88rem; line-height: 1.8; max-width: 280px; color: rgba(255,255,255,.6); }
.footer-col h4 {
  font-family: var(--font-head);
  font-size: .95rem;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
  letter-spacing: .08em;
}
.footer-col ul li { margin-bottom: .6rem; }
.footer-col ul li a { color: rgba(255,255,255,.6); font-size: .88rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact-item { display: flex; gap: .8rem; margin-bottom: .9rem; align-items: flex-start; }
.footer-contact-item .ico { color: var(--gold); font-size: .9rem; margin-top: .15rem; flex-shrink: 0; }
.footer-contact-item span, .footer-contact-item a { font-size: .85rem; color: rgba(255,255,255,.65); }
.footer-contact-item a:hover { color: var(--gold); }
.footer-socials { display: flex; gap: .8rem; margin-top: 1.2rem; }
.footer-social {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(200,155,60,.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: .85rem;
  transition: var(--transition);
}
.footer-social:hover { background: var(--gold); color: var(--white); }
.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .8rem;
}
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.4); margin: 0; }
.footer-bottom a { color: var(--gold); }
.footer-credit { font-size: .8rem; color: rgba(255,255,255,.35); }
.footer-credit a { color: var(--gold-light); }

/* ── Decorative ──────────────────────────────────────────── */
.divider-gold {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--burgundy), var(--gold));
  border-radius: 2px;
  margin: 1rem 0 1.5rem;
}
.divider-center { margin-left: auto; margin-right: auto; }
.gold-line { color: var(--gold); }
.bg-dark-section { background: var(--bg-dark); }
.bg-dark-section .section-title { color: var(--white); }
.bg-dark-section p { color: rgba(255,255,255,.7); }

/* ── CTA Banner Strip ────────────────────────────────────── */
.cta-strip {
  background: linear-gradient(135deg, var(--burgundy) 0%, #6B0A2B 100%);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C89B3C' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-strip h2 { color: var(--white); margin-bottom: .8rem; position: relative; }
.cta-strip p { color: rgba(255,255,255,.8); margin-bottom: 2rem; position: relative; }
.cta-strip .btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }

/* ── Animations ──────────────────────────────────────────── */
@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-8px); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: .6; }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }
.animate-delay-1 { transition-delay: .15s; }
.animate-delay-2 { transition-delay: .3s; }
.animate-delay-3 { transition-delay: .45s; }
.animate-delay-4 { transition-delay: .6s; }

/* ── Lightbox ────────────────────────────────────────────── */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 9998;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox-overlay.open { display: flex; }
.lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
}
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
  transition: color var(--transition);
}
.lightbox-close:hover { color: var(--gold); }

/* ── Utilities ───────────────────────────────────────────── */
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.hidden { display: none; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ── Responsive ──────────────────────────────────────────── */

/* ── 1024px: Tablet ──────────────────────────── */
@media (max-width: 1024px) {
  .grid-4   { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .intro-grid  { gap: 3rem; }
}

/* ── 900px: Small tablet / landscape phone ───── */
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }

  /* ── Mobile nav ── */
  .nav-menu { display: none; }
  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(20, 6, 16, .98);
    backdrop-filter: blur(16px);
    justify-content: center;
    align-items: center;
    gap: 1.6rem;
    z-index: 999;
    padding: 5rem 2rem 3rem;
    overflow-y: auto;
  }
  .nav-menu.open a {
    font-size: 1.25rem;
    font-weight: 500;
    color: rgba(255,255,255,.85);
    letter-spacing: .06em;
    padding: .3rem 0;
    border-bottom: 1px solid rgba(200,155,60,.1);
    width: 100%;
    text-align: center;
  }
  .nav-menu.open a:hover,
  .nav-menu.open a.active { color: var(--gold); border-bottom-color: var(--gold); }
  .hamburger      { display: flex; z-index: 1000; }
  .nav-cta        { display: none; }

  /* Close × button lives inside the open menu */
  .nav-close-btn {
    display: none;
    position: fixed;
    top: 1.2rem; right: 1.4rem;
    z-index: 1001;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(200,155,60,.15);
    border: 1px solid rgba(200,155,60,.4);
    color: var(--gold);
    font-size: 1.4rem;
    line-height: 1;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s;
  }
  .nav-close-btn:hover { background: var(--gold); color: #fff; }
  .nav-menu.open ~ .nav-close-wrapper .nav-close-btn,
  .nav-close-btn.visible { display: flex; }

  /* Book Now CTA inside mobile menu */
  .nav-mobile-book {
    margin-top: .8rem;
    font-size: 1rem !important;
    padding: .85rem 2.5rem !important;
    border-radius: var(--radius-pill) !important;
    border-bottom: none !important;
    width: auto !important;
    display: inline-flex !important;
    align-items: center;
    gap: .5rem;
  }

  .intro-grid  { grid-template-columns: 1fr; }
  .intro-img-wrap { max-width: 420px; margin: 0 auto; }
  .intro-badge { bottom: -.8rem; right: -.5rem; }
  .grid-2  { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ── 600px: Mobile portrait ──────────────────── */
@media (max-width: 600px) {
  /* Prevent any child from blowing out horizontal width */
  html { overflow-x: hidden; }
  body { overflow-x: hidden; max-width: 100vw; }

  /* Announcement bar — truncate so it doesn't cause horizontal scroll */
  .announcement-bar {
    font-size: .72rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: .45rem .8rem;
  }

  /* Section spacing */
  .section    { padding: 3rem 0; }
  .section-sm { padding: 2rem 0; }
  .section-lg { padding: 4rem 0; }

  /* Grid */
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* ── Hero Slider ── */
  .hero-slider {
    width: 100%;
    /* svh = small viewport height (excludes mobile browser chrome) */
    height: 100svh;
    height: 100vh; /* fallback */
    min-height: 500px;
    max-height: 860px;
    overflow: hidden;
  }
  .slide img { object-position: center center; }
  .slide-content {
    padding: 0 1.2rem 5rem;
    align-items: flex-end; /* text floats to bottom, above dots */
  }
  .slide-text { max-width: 100%; }
  .slide-text .tag { font-size: .65rem; margin-bottom: .8rem; }
  .slide-text h1 {
    font-size: clamp(1.55rem, 7.5vw, 2.4rem);
    line-height: 1.18;
    margin-bottom: .8rem;
  }
  .slide-text p { font-size: .88rem; margin-bottom: 1rem; }
  .slide-btns { gap: .5rem; }
  .slide-btns .btn { font-size: .8rem; padding: .6rem 1rem; }
  .slider-arrows { display: none; } /* hidden: use swipe instead */
  .slider-dots { bottom: 2.5rem; }

  /* ── Page hero ── */
  .page-hero { height: 250px; }
  .page-hero-content h1 { font-size: clamp(1.3rem, 6vw, 1.8rem); }

  /* ── Navbar logo ── */
  .nav-logo img { height: 40px; }

  /* ── Product grid ── */
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: .8rem; }
  .product-card-body { padding: .75rem .9rem; }
  .product-card-body h4 { font-size: .82rem; }
  .product-card-body .price { font-size: .92rem; }
  .product-card-body .inquiry-link { font-size: .72rem; margin-top: .5rem; }

  /* ── Gallery ── */
  .gallery-item.wide { grid-column: span 1; aspect-ratio: 4/3; }

  /* ── Image cards ── */
  .img-card { width: 230px; height: 345px; }

  /* ── YouTube Shorts ── */
  .video-short-wrap { max-width: 100%; }
  .video-short-wrap iframe { height: 380px; }

  /* ── Intro stats ── */
  .intro-stats { gap: 1rem; flex-wrap: wrap; justify-content: space-around; }
  .stat-item .num { font-size: 1.6rem; }
  .intro-badge { bottom: -.5rem; right: -.3rem; padding: .9rem 1.1rem; }
  .intro-badge strong { font-size: 1.5rem; }

  /* ── Buttons ── */
  .btn-lg { padding: .8rem 1.5rem; font-size: .92rem; }
  .slide-btns .btn-lg { padding: .7rem 1.2rem; font-size: .82rem; }

  /* ── Mini braids: force single col ── */
  #mini { grid-column: 1 !important; }
  #mini .grid-2 { grid-template-columns: 1fr; }

  /* ── Footer ── */
  .footer-brand img { height: 44px; }
  .footer-col h4 { margin-bottom: .8rem; }
  .footer-socials { flex-wrap: wrap; gap: .6rem; }

  /* ── CTA strip ── */
  .cta-strip { padding: 3rem 1rem; }
  .cta-strip .btns { flex-direction: column; align-items: center; }
  .cta-strip .btns .btn { width: 100%; max-width: 300px; justify-content: center; }

  /* ── WhatsApp float ── */
  .whatsapp-float { bottom: 1.2rem; right: 1rem; }
  .whatsapp-btn { width: 52px; height: 52px; font-size: 1.45rem; }

  /* ── Pricing quick-nav ── */
  .pricing-quicknav { gap: .45rem; padding: .9rem; }
  .pqn-btn { font-size: .75rem; padding: .4rem .85rem; }

  /* ── Pricing tiers ── */
  .price-tier { padding: 1.5rem 1.2rem; }
  .tier-name { font-size: 1.1rem; }
  .tier-list li { font-size: .85rem; }

  /* ── Policy cards ── */
  .policy-card { padding: 1.5rem 1.2rem; }
}

/* ── 380px: Very small phones ────────────────── */
@media (max-width: 380px) {
  .product-grid { grid-template-columns: 1fr; }
  .grid-4       { grid-template-columns: 1fr; }
  .slide-text h1 { font-size: 1.45rem; }
  .btn-lg { padding: .7rem 1.1rem; font-size: .82rem; }
  .img-card { width: 190px; height: 285px; }
  .announcement-bar { display: none; } /* too narrow — hide entirely */
  .video-short-wrap iframe { height: 320px; }
}
