/* ==========================================================================
   Hair Illusions — Shared Stylesheet (v3)
   Palette sampled directly from the official logo artwork.
   ========================================================================== */

/* ---------- Variables ---------- */
:root {
  --rose-gold: #af7979;
  --light-rose: #dcaea9;
  --pale-rose: #f8ece9;
  --dark-rose: #85625e;
  --off-white: #fdf8f6;
  --near-black: #362524;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-lg: 2rem;
  --radius-md: 1rem;
  --radius-sm: 0.5rem;

  --shadow-sm: 0 2px 10px rgba(54, 37, 36, 0.08);
  --shadow-md: 0 8px 30px rgba(54, 37, 36, 0.12);
  --shadow-lg: 0 20px 50px rgba(54, 37, 36, 0.18);

  --transition: all 0.3s ease;
  --header-height: 78px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--near-black);
  background-color: var(--off-white);
  line-height: 1.65;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--near-black);
  line-height: 1.2;
  font-weight: 700;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

.italic-accent {
  font-style: normal;
  color: var(--rose-gold);
}

/* ---------- Section spacing / helpers ---------- */
section {
  padding: 5.5rem 0;
}

.section-alt {
  background-color: var(--pale-rose);
}

.wig-intro:has(+ .eligibility) {
  padding-bottom: 1rem;
}

.wig-intro + .eligibility {
  padding-top: 1rem;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

.section-header .eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--rose-gold);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.section-header h2 {
  color: var(--rose-gold);
  font-size: 2.4rem;
  margin-bottom: 0.75rem;
}

.section-header p {
  color: #6b5350;
  font-size: 1.05rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary,
.btn-outline,
.btn-light,
.btn-outline-light {
  background: #fff;
  color: var(--rose-gold);
  border: 2px solid var(--rose-gold);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover,
.btn-outline:hover,
.btn-light:hover,
.btn-outline-light:hover {
  background: var(--rose-gold);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 248, 246, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  height: var(--header-height);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.logo-word {
  font-family: var(--font-heading);
  font-style: normal;
  font-weight: 700;
  font-size: 1.7rem;
  color: var(--rose-gold);
  letter-spacing: 0.01em;
}

.logo img {
  height: 62px;
  width: auto;
  display: block;
  border-radius: 50%;
}

.header-logo-mark {
  background: #fff;
  padding: 4px;
  box-shadow: var(--shadow-sm);
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav-links a {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--near-black);
  position: relative;
  padding: 0.4rem 0;
  transition: var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--rose-gold);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--rose-gold);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  z-index: 1100;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--near-black);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   Hero (Home)
   ========================================================================== */
.hero {
  padding: 0;
  background: linear-gradient(160deg, var(--off-white) 55%, var(--pale-rose) 100%);
}

.hero-banner {
  width: 100%;
  line-height: 0;
}

.hero-banner-img {
  display: block;
  width: 100%;
  height: clamp(220px, 34vw, 560px);
  object-fit: cover;
  object-position: 62% center;
}

@media (max-width: 640px) {
  .hero-banner-img {
    object-position: 38% center;
  }
}


.hero-grid {
  display: block;
  max-width: 720px;
  margin: 0 auto;
  padding-top: 3rem;
  text-align: center;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 1.3rem;
  color: var(--rose-gold);
}

.hero-text p {
  font-size: 1.1rem;
  color: #6b5350;
  margin: 0 auto 2rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.75rem;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 1.75rem;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--near-black);
}

.trust-badge i {
  color: var(--rose-gold);
  font-size: 1.2rem;
}

/* ---------- Image placeholder ---------- */
.img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--light-rose) 0%, var(--rose-gold) 100%);
  color: #fff;
  text-align: center;
  padding: 2rem;
  width: 100%;
}

.img-placeholder i {
  font-size: 3rem;
  opacity: 0.9;
}

.img-placeholder span {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

/* ==========================================================================
   Services / Cards
   ========================================================================== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 2.25rem 2rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(175, 121, 121, 0.12);
  border-top: 3px solid var(--rose-gold);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.card p {
  color: #6b5350;
  font-size: 0.98rem;
  margin-bottom: 1rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  color: var(--rose-gold);
  font-size: 0.92rem;
  transition: var(--transition);
}

.card-link:hover {
  gap: 0.7rem;
  color: var(--dark-rose);
}

/* ==========================================================================
   Feel Like Yourself Again (intro banner)
   ========================================================================== */
.feel-yourself {
  background: var(--off-white);
  padding: 3.5rem 0 4rem;
  text-align: center;
}

.feel-yourself-content {
  max-width: 620px;
  margin: 0 auto;
}

.feel-yourself h2 {
  color: var(--rose-gold);
  font-size: 2.3rem;
  margin-bottom: 1rem;
}

.feel-yourself p {
  color: #5c4340;
  font-size: 1.08rem;
  margin-bottom: 2rem;
}

/* ==========================================================================
   Why Choose Us / two-column feature
   ========================================================================== */
.feature-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.feature-grid .img-placeholder {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1 / 1;
  height: auto;
  margin: 0 auto;
  border-radius: 50%;
  box-shadow: none;
}

.feature-photo {
  width: 100%;
  max-width: 640px;
  aspect-ratio: 3 / 2;
  height: auto;
  margin: 0 auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  object-fit: cover;
  object-position: center center;
  display: block;
}

.feature-text h2 {
  color: var(--rose-gold);
  font-size: 2.3rem;
  margin-bottom: 1.25rem;
}

.feature-text > p {
  color: #6b5350;
  margin-bottom: 2rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  margin-bottom: 2.25rem;
}

.feature-item {
  border-left: 3px solid var(--rose-gold);
  padding-left: 1.1rem;
}

.feature-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.feature-item p {
  color: #6b5350;
  font-size: 0.95rem;
}

/* ==========================================================================
   HSE Wig Scheme promo (Home)
   ========================================================================== */
.hse-promo {
  text-align: center;
}

.hse-promo-content {
  max-width: 680px;
  margin: 0 auto;
}

.hse-promo-content h2 {
  color: var(--rose-gold);
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.hse-promo-content p {
  color: #5c4340;
  font-size: 1.08rem;
  margin-bottom: 2rem;
}

/* ---------- Wig service carousel ---------- */
.wig-carousel {
  position: relative;
  max-width: 340px;
  margin: 0 auto 2.5rem;
}

.wig-carousel-viewport {
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.wig-carousel-track {
  display: flex;
  transition: transform 0.4s ease;
  touch-action: pan-y;
}

.wig-carousel-slide {
  flex: 0 0 100%;
  width: 100%;
}

.wig-carousel-slide .img-placeholder {
  aspect-ratio: 575 / 900;
  height: auto;
  padding: 1.5rem;
}

.wig-carousel-slide .wig-carousel-photo {
  display: block;
  width: 100%;
  aspect-ratio: 575 / 900;
  height: auto;
  object-fit: cover;
  object-position: center center;
}

.wig-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  color: var(--rose-gold);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 2;
}

.wig-carousel-arrow:hover {
  background: var(--rose-gold);
  color: #fff;
}

.wig-carousel-prev {
  left: 0.75rem;
}

.wig-carousel-next {
  right: 0.75rem;
}

.wig-carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.1rem;
}

.wig-carousel-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--light-rose);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: var(--transition);
}

.wig-carousel-dot.active {
  background: var(--rose-gold);
  width: 22px;
  border-radius: 5px;
}

/* ---------- Before / after client grid ---------- */
.wig-before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.wig-ba-label {
  text-align: center;
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--rose-gold);
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 0.9rem;
}

.wig-ba-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.wig-ba-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 1rem;
}

.wig-ba-placeholder i {
  font-size: 2rem;
}

.wig-ba-placeholder span {
  font-size: 0.95rem;
}

.wig-ba-photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  object-fit: cover;
  object-position: center top;
}

/* ==========================================================================
   Customer Reviews (Home)
   ========================================================================== */
.review-stars {
  color: var(--rose-gold);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  letter-spacing: 0.15em;
}

.review-quote {
  font-style: italic;
  color: #4a3634;
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

.review-name {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--rose-gold);
}

/* ==========================================================================
   CTA Banner
   ========================================================================== */
.cta-banner {
  background: linear-gradient(120deg, var(--rose-gold) 0%, var(--dark-rose) 100%);
  color: #fff;
  text-align: center;
  padding: 4.5rem 0;
}

.cta-banner h2 {
  color: #fff;
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.cta-banner p {
  max-width: 560px;
  margin: 0 auto 2.25rem;
  font-size: 1.08rem;
  opacity: 0.95;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ==========================================================================
   Page Hero (About / Wigs / Contact)
   ========================================================================== */
.page-hero {
  background: linear-gradient(160deg, var(--pale-rose) 0%, var(--light-rose) 100%);
  padding: 3.5rem 0 3rem;
  text-align: center;
}

.breadcrumb {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark-rose);
  margin-bottom: 0.75rem;
}

.breadcrumb a {
  color: var(--near-black);
  opacity: 0.7;
}

.breadcrumb a:hover {
  opacity: 1;
}

.breadcrumb .sep {
  margin: 0 0.5rem;
  opacity: 0.6;
}

.page-hero h1 {
  font-size: 2.75rem;
}

.page-hero h1,
.page-hero h1 .italic-accent {
  color: var(--near-black);
}

.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(133, 98, 94, 0.25);
  color: var(--dark-rose);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
}

.wig-hero {
  padding: 4.5rem 0;
}

.wig-hero p {
  max-width: 620px;
  margin: 0 auto 2rem;
  color: #5c4340;
  font-size: 1.08rem;
}

/* ==========================================================================
   About page
   ========================================================================== */
.intro-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3.5rem;
}

.intro-image {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
  align-self: start;
}

.intro-image .img-placeholder {
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1 / 1;
  height: auto;
  margin: 0 auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.intro-photo {
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1 / 1;
  height: auto;
  margin: 0 auto;
  display: block;
  object-fit: cover;
  object-position: center center;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.intro-text h2 {
  color: var(--rose-gold);
  font-size: 2.2rem;
  margin-bottom: 1.25rem;
}

.intro-text p {
  color: #6b5350;
  margin-bottom: 1.25rem;
}

blockquote.pull-quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--rose-gold);
  margin: 2rem 0;
}

.signature {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--dark-rose);
  margin-top: 1.5rem;
}

/* ---------- Timeline ---------- */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: var(--light-rose);
}

.timeline-item {
  position: relative;
  padding-left: 50px;
  margin-bottom: 2.5rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-marker {
  position: absolute;
  left: 0;
  top: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--rose-gold);
  box-shadow: 0 0 0 4px var(--off-white), var(--shadow-sm);
  z-index: 1;
}

.timeline-content {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 1.5rem 1.75rem;
  box-shadow: var(--shadow-sm);
}

.timeline-content .timeline-date {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--rose-gold);
  font-weight: 700;
  margin-bottom: 0.35rem;
  display: block;
}

.timeline-content h4 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.timeline-content p {
  color: #6b5350;
  font-size: 0.95rem;
}

/* ==========================================================================
   Wigs page — info boxes, eligibility, process, promise, FAQ
   ========================================================================== */
.intro-copy {
  max-width: 780px;
  margin: 0 auto 3rem;
}

.intro-copy p {
  color: #6b5350;
  margin-bottom: 1.1rem;
}

.info-box-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.info-box {
  background: var(--pale-rose);
  border-radius: var(--radius-md);
  padding: 2.25rem;
}

.info-box h3 {
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
  color: var(--dark-rose);
}

.info-box ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
  color: #5c4340;
  font-size: 0.98rem;
}

.info-box ul li:last-child {
  margin-bottom: 0;
}

.info-box ul li::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rose-gold);
  margin-top: 0.55rem;
}

.eligibility-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.eligibility-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-top: 3px solid var(--rose-gold);
}

.eligibility-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.eligibility-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.eligibility-card p {
  color: #6b5350;
  font-size: 0.92rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.process-step {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 2.25rem 1.75rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.process-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.step-number {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--rose-gold);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.process-step h4 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

.process-step p {
  color: #6b5350;
  font-size: 0.92rem;
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.promise-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-top: 3px solid var(--rose-gold);
}

.promise-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.promise-card h4 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.promise-card p {
  color: #6b5350;
  font-size: 0.9rem;
}

/* ---------- Wig Gallery ---------- */
.gallery-filter {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.gallery-filter-select {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--near-black);
  background: #fff;
  border: 2px solid var(--rose-gold);
  border-radius: var(--radius-sm);
  padding: 0.7rem 2.5rem 0.7rem 1.25rem;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23af7979' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
  min-width: 220px;
  transition: var(--transition);
}

.gallery-filter-select:hover,
.gallery-filter-select:focus {
  border-color: var(--dark-rose);
  outline: none;
}

.gallery-carousel {
  position: relative;
  max-width: 420px;
  margin: 0 auto;
}

.gallery-carousel-viewport {
  overflow: hidden;
  border-radius: var(--radius-md);
}

.gallery-carousel-track {
  display: flex;
  transition: transform 0.4s ease;
  touch-action: pan-y;
  gap: 1.5rem;
}

.gallery-carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

@media (min-width: 860px) {
  .gallery-carousel {
    max-width: 1000px;
  }

  .gallery-carousel-slide {
    flex: 0 0 calc((100% - 3rem) / 3);
    width: calc((100% - 3rem) / 3);
  }
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, var(--pale-rose) 0%, var(--light-rose) 100%);
  color: var(--dark-rose);
}

.gallery-placeholder i {
  font-size: 1.8rem;
  opacity: 0.7;
}

.gallery-placeholder span {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 0.95rem;
}

.gallery-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.gallery-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  color: var(--rose-gold);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 2;
}

.gallery-carousel-arrow:hover {
  background: var(--rose-gold);
  color: #fff;
}

.gallery-carousel-prev {
  left: 0.75rem;
}

.gallery-carousel-next {
  right: 0.75rem;
}

@media (min-width: 860px) {
  .gallery-carousel-prev {
    left: -21px;
  }

  .gallery-carousel-next {
    right: -21px;
  }
}

.gallery-carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.gallery-carousel-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--light-rose);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: var(--transition);
}

.gallery-carousel-dot.active {
  background: var(--rose-gold);
  width: 22px;
  border-radius: 5px;
}

/* ---------- FAQ Accordion ---------- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 1.75rem;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--near-black);
}

.faq-question i {
  color: var(--rose-gold);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-question i {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.75rem;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 1.75rem 1.5rem;
}

.faq-answer p {
  color: #6b5350;
  font-size: 0.98rem;
}

.faq-answer p + p {
  margin-top: 0.75rem;
}

/* ---------- Rounded CTA box (Wigs page) ---------- */
.cta-box {
  background: linear-gradient(120deg, var(--rose-gold) 0%, var(--dark-rose) 100%);
  color: #fff;
  text-align: center;
  padding: 3.5rem 3rem;
  border-radius: var(--radius-lg);
  max-width: 900px;
  margin: 0 auto;
}

.cta-box h2 {
  color: #fff;
  font-size: 2.1rem;
  margin-bottom: 1rem;
}

.cta-box p {
  max-width: 520px;
  margin: 0 auto 2rem;
  opacity: 0.95;
}

/* Plain variant: blends into the page instead of standing out as a card */
.cta-box-plain {
  background: none;
  color: var(--near-black);
  padding: 0;
  border-radius: 0;
}

.cta-box-plain h2 {
  color: var(--rose-gold);
}

.cta-box-plain p {
  color: #6b5350;
  opacity: 1;
}

/* ==========================================================================
   Contact page
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-grid-single {
  grid-template-columns: 1fr;
  max-width: 480px;
  margin: 0 auto;
}

.contact-info h2 {
  color: var(--rose-gold);
  font-size: 1.6rem;
  margin-bottom: 1.75rem;
}

.contact-detail {
  padding-bottom: 1.4rem;
  margin-bottom: 1.4rem;
  border-bottom: 1px solid rgba(133, 98, 94, 0.18);
}

.contact-detail:last-of-type {
  border-bottom: none;
}

.contact-detail h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--rose-gold);
  margin-bottom: 0.35rem;
}

.contact-detail p {
  color: #6b5350;
  font-size: 0.98rem;
}

.contact-detail p a:hover {
  color: var(--rose-gold);
}

.phone-link {
  color: var(--near-black) !important;
  font-weight: 700;
  text-decoration: underline;
}

.phone-link:hover {
  color: var(--rose-gold) !important;
}

.text-highlight {
  color: var(--near-black);
  font-weight: 700;
}

.hours-list {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: #6b5350;
}

.hours-list strong {
  color: var(--near-black);
}

.social-row {
  display: flex;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.social-row a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--pale-rose);
  color: var(--rose-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-row a:hover {
  background: var(--rose-gold);
  color: #fff;
  transform: translateY(-3px);
}

/* ---------- Form ---------- */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 0.5rem;
  color: var(--near-black);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1.5px solid #ecdcd6;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--near-black);
  background: var(--off-white);
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--rose-gold);
  background: #fff;
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.privacy-note {
  font-size: 0.85rem;
  color: #8a7370;
  margin-top: 1rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--near-black);
  color: #f0e0dc;
  padding: 4.5rem 0 1.75rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo {
  margin-bottom: 1rem;
}

.footer-brand p {
  color: #cbaea8;
  font-size: 0.95rem;
  max-width: 320px;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--rose-gold);
  transform: translateY(-3px);
}

.footer-col h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}

.footer-col ul li {
  margin-bottom: 0.85rem;
}

.footer-col ul li a {
  color: #cbaea8;
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--light-rose);
  padding-left: 4px;
}

.footer-contact li {
  color: #cbaea8;
  font-size: 0.92rem;
  margin-bottom: 0.85rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.75rem;
  text-align: center;
  font-size: 0.85rem;
  color: #a68a84;
}

/* ==========================================================================
   Scroll reveal (base — JS also injects, this ensures no-JS fallback shows content)
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   COLOR LAYOUT — Variant B: Bold Frame
   Header and footer now sit light, matching the home page background,
   with dark text for clear contrast. Interior accent boxes stay soft
   pale-rose so nothing on the page shouts louder than it needs to.
   ========================================================================== */
.site-header {
  background: rgba(253, 248, 246, 0.94);
  backdrop-filter: blur(10px);
}

.logo-word {
  color: var(--rose-gold);
}

.nav-links a {
  color: var(--near-black);
}

.nav-links a::after {
  background: var(--rose-gold);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--rose-gold);
}

.nav-toggle span {
  background: var(--near-black);
}

.site-footer {
  background: var(--off-white);
  color: var(--near-black);
}

.footer-brand p,
.footer-col ul li a,
.footer-contact li {
  color: #6b5350;
}

.footer-col h4 {
  color: var(--dark-rose);
}

.footer-col ul li a:hover {
  color: var(--rose-gold);
  padding-left: 6px;
}

.footer-social a {
  background: var(--pale-rose);
  color: var(--rose-gold);
}

.footer-social a:hover {
  background: var(--rose-gold);
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(175, 121, 121, 0.18);
  color: #8a7370;
}

/* Interior accent boxes stay soft so they don't fight the lighter frame */
.cta-banner {
  background: var(--pale-rose);
  color: var(--near-black);
}

.cta-banner h2 {
  color: var(--rose-gold);
}

.cta-banner p {
  color: #5c4340;
  opacity: 1;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .card-grid,
  .process-grid,
  .promise-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-grid,
  .feature-grid,
  .intro-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .intro-image {
    position: static;
  }

  .intro-image .img-placeholder,
  .intro-photo {
    max-width: 320px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .nav-links {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    max-height: calc(100vh - var(--header-height));
    background: var(--off-white);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 1.25rem;
    padding: 1.75rem 1.5rem;
    transform: translateY(-20px);
    transition: transform 0.35s ease, opacity 0.35s ease, visibility 0s linear 0.35s;
    overflow-y: auto;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: transform 0.35s ease, opacity 0.35s ease, visibility 0s linear 0s;
  }

  .nav-links a {
    font-size: 1.15rem;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-text h1 {
    font-size: 2.3rem;
  }

  .info-box-grid,
  .eligibility-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  section {
    padding: 3.5rem 0;
  }

  .card-grid,
  .process-grid,
  .promise-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-text h1 {
    font-size: 1.9rem;
  }

  .section-header h2 {
    font-size: 1.9rem;
  }

  .page-hero h1 {
    font-size: 2.1rem;
  }

  .trust-badges {
    gap: 1rem;
  }

  .cta-box {
    padding: 2.5rem 1.5rem;
  }

  .hours-list {
    flex-direction: column;
    gap: 0.25rem;
  }

  .logo-word {
    font-size: 1.4rem;
  }

  .wig-carousel {
    max-width: 280px;
  }

  .gallery-carousel {
    max-width: 300px;
  }

  .wig-before-after {
    gap: 1rem;
  }

  .wig-ba-grid {
    gap: 0.75rem;
  }

  .wig-carousel-arrow {
    width: 36px;
    height: 36px;
  }
}
