/* ===== LORIE'S AFRICAN HAIR BRAIDING — STYLESHEET ===== */

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

:root {
  --earth:   #3B2314;
  --warm:    #7C3F1E;
  --gold:    #C8893A;
  --blush:   #F0D9C0;
  --cream:   #FAF4EE;
  --white:   #FFFFFF;
  --text:    #2A1A0E;
  --muted:   #7A6150;
  --radius:  14px;
}

html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--text); overflow-x: hidden; }

/* ── TYPOGRAPHY ── */
.eyebrow {
  display: inline-block;
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  color: var(--earth); line-height: 1.2;
}
.section-sub {
  font-size: 1rem; color: var(--muted);
  margin-top: 12px; max-width: 520px;
  margin-inline: auto; line-height: 1.75;
}
.body-text {
  font-size: 1rem; line-height: 1.8;
  color: var(--muted); margin-bottom: 16px;
}
.section-header { text-align: center; margin-bottom: 52px; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--earth); color: var(--white);
  padding: 14px 30px; border-radius: 50px;
  font-size: 0.95rem; font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--warm); transform: translateY(-2px); }

.btn-outline {
  display: inline-block;
  border: 2px solid var(--gold); color: var(--warm);
  padding: 12px 26px; border-radius: 50px;
  font-size: 0.95rem; font-weight: 500;
  text-decoration: none; transition: all 0.2s;
}
.btn-outline:hover { background: var(--gold); color: var(--white); }

.btn-ghost-light {
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.5); color: var(--white);
  padding: 12px 26px; border-radius: 50px;
  font-size: 0.95rem; font-weight: 500;
  text-decoration: none; transition: all 0.2s;
}
.btn-ghost-light:hover { border-color: #fff; background: rgba(255,255,255,0.12); }

.btn-gold {
  display: inline-block;
  background: var(--gold); color: var(--white);
  padding: 16px 40px; border-radius: 50px;
  font-size: 1.05rem; font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 6px 24px rgba(200,137,58,0.35);
}
.btn-gold:hover { background: #b57829; transform: translateY(-2px); }

.btn-nav {
  background: var(--gold); color: var(--white);
  padding: 9px 22px; border-radius: 50px;
  font-size: 0.88rem; font-weight: 500;
  text-decoration: none; white-space: nowrap;
  transition: background 0.2s;
}
.btn-nav:hover { background: var(--warm); }

/* ── NAVBAR ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 5%;
  background: rgba(250,244,238,0.98);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 16px rgba(59,35,20,0.08);
  transition: box-shadow 0.3s;
}
nav.scrolled {
  box-shadow: 0 2px 24px rgba(59,35,20,0.15);
}
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.nav-logo-img { width: 40px; height: 40px; object-fit: contain; }
.nav-brand-text {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; color: var(--earth); line-height: 1.2;
}
.nav-brand-text em { font-style: italic; color: var(--gold); display:block; font-size:0.85rem; }
.nav-links { display: flex; gap: 26px; list-style: none; }
.nav-links a {
  text-decoration: none; font-size: 0.88rem;
  font-weight: 500; color: var(--muted);
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--warm); }

.hamburger {
  display: none; background: none; border: none;
  font-size: 1.6rem; color: var(--earth); cursor: pointer;
}
.mobile-menu {
  display: none; flex-direction: column;
  position: fixed; top: 70px; left: 0; right: 0; z-index: 190;
  background: var(--cream);
  padding: 20px 5%; gap: 4px;
  box-shadow: 0 8px 32px rgba(59,35,20,0.12);
  border-bottom: 3px solid var(--gold);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  text-decoration: none; padding: 12px 0;
  font-size: 1rem; font-weight: 500; color: var(--text);
  border-bottom: 1px solid rgba(200,137,58,0.1);
}
.mobile-menu .mobile-cta {
  margin-top: 12px; text-align: center;
  background: var(--gold); color: #fff;
  padding: 14px; border-radius: 50px;
  border: none; font-weight: 600;
}

/* ── HERO ── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding: 0 5%;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg-img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(30,12,4,0.82) 0%, rgba(59,35,20,0.55) 60%, rgba(30,12,4,0.3) 100%);
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 640px; color: var(--white);
}
.hero-eyebrow {
  display: inline-block;
  background: rgba(200,137,58,0.2);
  border: 1px solid rgba(200,137,58,0.4);
  color: var(--gold);
  padding: 7px 16px; border-radius: 50px;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 22px;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  line-height: 1.1; color: var(--white); margin-bottom: 20px;
}
.hero-title em { color: var(--gold); font-style: italic; }
.hero-sub {
  font-size: 1.1rem; line-height: 1.75;
  color: rgba(255,255,255,0.8); margin-bottom: 36px;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust {
  display: flex; align-items: center; gap: 16px;
  flex-wrap: wrap; font-size: 0.85rem; color: rgba(255,255,255,0.7);
}
.trust-star { color: var(--gold); }
.trust-divider { width: 1px; height: 16px; background: rgba(255,255,255,0.25); }

/* PAGE HERO (inner pages) */
.page-hero {
  position: relative; min-height: 50vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 80px 5% 60px;
}
.page-hero-bg { position: absolute; inset: 0; z-index: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-content { position: relative; z-index: 1; color: var(--white); }

/* ── STRIP ── */
.strip {
  background: var(--earth); color: var(--gold);
  padding: 14px 5%; display: flex; gap: 28px;
  overflow-x: auto; white-space: nowrap;
  font-size: 0.85rem; font-weight: 500;
  letter-spacing: 0.06em; scrollbar-width: none;
}
.strip::-webkit-scrollbar { display: none; }

/* ── ABOUT ── */
.about {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  padding: 100px 5%; background: var(--cream);
}
.about-images { position: relative; }
.about-img-main {
  border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4/5;
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-accent {
  position: absolute; bottom: -24px; right: -24px;
  width: 45%; border-radius: var(--radius); overflow: hidden;
  border: 4px solid var(--cream);
  aspect-ratio: 1;
  box-shadow: 0 12px 40px rgba(59,35,20,0.2);
}
.about-img-accent img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
  position: absolute; top: 24px; left: -24px;
  background: var(--gold); color: var(--white);
  border-radius: var(--radius); padding: 16px 20px;
  box-shadow: 0 8px 28px rgba(200,137,58,0.4);
  text-align: center;
}
.about-badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700; line-height: 1;
}
.about-badge-label { font-size: 0.72rem; font-weight: 500; margin-top: 4px; line-height: 1.4; }
.about-text { padding-left: 20px; }
.about-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 28px 0; }
.pillar {
  background: var(--white); border-radius: 10px;
  padding: 16px; display: flex; align-items: center; gap: 12px;
  border: 1px solid rgba(200,137,58,0.15);
}
.pillar-icon { font-size: 1.4rem; }
.pillar-label { font-size: 0.88rem; font-weight: 500; color: var(--earth); }

/* ── SERVICES PREVIEW ── */
.services-preview { padding: 100px 5%; background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.svc-card {
  border-radius: var(--radius); overflow: hidden;
  background: var(--cream);
  border: 1px solid rgba(200,137,58,0.12);
  transition: transform 0.2s, box-shadow 0.2s;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(59,35,20,0.12); }
.svc-card img { width: 100%; height: 220px; object-fit: cover; }
.svc-info { padding: 22px; }
.svc-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; color: var(--earth); margin-bottom: 8px;
}
.svc-info p { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }
.svc-price { display: block; margin-top: 14px; font-weight: 600; color: var(--warm); font-size: 0.9rem; }

/* ── HOW TO BOOK ── */
.how-book {
  background: linear-gradient(135deg, var(--earth) 0%, var(--warm) 100%);
  padding: 100px 5%; text-align: center;
}
.steps-row {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; flex-wrap: wrap; margin-top: 52px;
}
.step-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius); padding: 32px 24px;
  max-width: 220px; color: var(--white); text-align: center;
  position: relative;
}
.step-num {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  width: 32px; height: 32px; background: var(--gold);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem; color: var(--white);
}
.step-icon { font-size: 2.2rem; margin-bottom: 14px; }
.step-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 10px; }
.step-card p { font-size: 0.85rem; color: rgba(255,255,255,0.65); line-height: 1.65; }
.step-arrow { color: rgba(255,255,255,0.3); font-size: 2rem; }

/* ── LOYALTY ── */
.loyalty {
  background: var(--blush); padding: 100px 5%;
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center;
}
.loyalty-cards { display: flex; flex-direction: column; gap: 16px; }
.lcard {
  background: var(--white); border-radius: var(--radius);
  padding: 22px 24px; display: flex; gap: 16px; align-items: flex-start;
  border: 1px solid rgba(200,137,58,0.15);
  transition: box-shadow 0.2s;
}
.lcard:hover { box-shadow: 0 6px 24px rgba(59,35,20,0.08); }
.lcard-icon { font-size: 1.8rem; flex-shrink: 0; }
.lcard h4 { font-size: 0.95rem; font-weight: 600; color: var(--earth); margin-bottom: 6px; }
.lcard p { font-size: 0.85rem; color: var(--muted); line-height: 1.65; }

/* ── REVIEWS ── */
.reviews { padding: 100px 5%; background: var(--cream); }
.reviews-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; margin-bottom: 40px;
}
.review-card {
  background: var(--white); border-radius: var(--radius);
  padding: 28px; border: 1px solid rgba(200,137,58,0.12);
}
.review-card.featured {
  border-color: var(--gold);
  box-shadow: 0 4px 24px rgba(200,137,58,0.15);
}
.review-stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; margin-bottom: 14px; }
.review-text {
  font-size: 0.93rem; line-height: 1.75;
  color: var(--text); margin-bottom: 20px; font-style: italic;
}
.review-author { display: flex; align-items: center; gap: 12px; }
.review-av {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  background: var(--blush); display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--warm); font-weight: 700;
}
.review-name { font-weight: 600; font-size: 0.88rem; color: var(--earth); }
.review-src { font-size: 0.75rem; color: var(--muted); margin-top: 2px; }
.review-cta {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
  padding: 28px; background: var(--white); border-radius: var(--radius);
  border: 1px solid rgba(200,137,58,0.15);
}
.review-rating-big { display: flex; align-items: center; gap: 16px; }
.rating-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem; font-weight: 700; color: var(--earth); line-height: 1;
}
.rating-stars { color: var(--gold); font-size: 1.2rem; letter-spacing: 2px; }
.rating-count { font-size: 0.82rem; color: var(--muted); margin-top: 4px; }

/* ── CONTACT ── */
.contact {
  padding: 100px 5%; background: var(--white);
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
}
.contact-grid { display: flex; flex-direction: column; gap: 20px; margin: 28px 0; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.ci-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--blush); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.ci-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); font-weight: 600; margin-bottom: 4px; }
.ci-val { font-size: 0.93rem; color: var(--text); line-height: 1.6; }
.ci-val a { color: var(--warm); text-decoration: none; }
.ci-val a:hover { text-decoration: underline; }

.nfc-promo {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--blush); border-radius: var(--radius);
  padding: 20px; border-left: 4px solid var(--gold);
}
.nfc-icon { font-size: 1.8rem; flex-shrink: 0; }
.nfc-promo strong { display: block; font-size: 0.95rem; color: var(--earth); margin-bottom: 4px; }
.nfc-promo p { font-size: 0.84rem; color: var(--muted); line-height: 1.6; }

/* ── FINAL CTA ── */
.final-cta {
  background: var(--earth); padding: 80px 5%; text-align: center; color: var(--white);
}
.final-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem); margin-bottom: 14px;
}
.final-cta p { color: rgba(255,255,255,0.65); font-size: 1rem; margin-bottom: 36px; }
.final-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── SERVICES PAGE ── */
.svc-page { padding: 80px 5%; max-width: 1100px; margin: 0 auto; }
.svc-category { margin-bottom: 60px; }
.svc-cat-header {
  display: flex; gap: 20px; align-items: flex-start;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--blush);
}
.cat-icon { font-size: 2.2rem; flex-shrink: 0; }
.svc-cat-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; color: var(--earth); margin-bottom: 6px;
}
.svc-cat-header p { font-size: 0.9rem; color: var(--muted); line-height: 1.6; }
.svc-table { border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(200,137,58,0.15); }
.svc-row {
  display: grid; grid-template-columns: 1.4fr 2fr 0.6fr;
  padding: 14px 20px; gap: 16px;
  border-bottom: 1px solid rgba(200,137,58,0.1);
  font-size: 0.9rem;
}
.svc-row:last-child { border-bottom: none; }
.svc-row.header {
  background: var(--earth); color: rgba(255,255,255,0.6);
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em;
  font-weight: 600; padding: 12px 20px;
}
.svc-row:not(.header):nth-child(even) { background: var(--blush); }
.svc-row:not(.header) span:first-child { font-weight: 600; color: var(--earth); }
.svc-row:not(.header) span:last-child { font-weight: 700; color: var(--warm); text-align: right; }

.svc-note {
  background: var(--blush); border-radius: var(--radius);
  padding: 22px 24px; display: flex; gap: 14px;
  border-left: 4px solid var(--gold); margin-bottom: 40px;
  font-size: 0.9rem; line-height: 1.7; color: var(--text);
}
.note-icon { font-size: 1.4rem; flex-shrink: 0; }

.why-us { padding: 80px 5%; background: var(--white); }
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.why-card {
  text-align: center; padding: 32px 20px;
  background: var(--cream); border-radius: var(--radius);
  border: 1px solid rgba(200,137,58,0.12);
}
.why-icon { font-size: 2.4rem; margin-bottom: 14px; }
.why-card h3 { font-size: 1rem; font-weight: 600; color: var(--earth); margin-bottom: 10px; }
.why-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.65; }

/* ── BOOKING PANEL ── */
.booking-panel {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 32px; max-width: 1000px; margin: 52px auto 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius); padding: 36px;
}
.cal-wrap {
  display: grid; grid-template-columns: repeat(7,1fr);
  gap: 6px;
}
.cal-day-name {
  text-align: center; font-size: 0.7rem; font-weight: 600;
  color: rgba(255,255,255,0.4); text-transform: uppercase;
  padding: 4px 0;
}
.cal-day {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  border-radius: 8px; font-size: 0.85rem; cursor: pointer;
  color: rgba(255,255,255,0.7); transition: all 0.15s;
  border: 1px solid transparent;
}
.cal-day:hover:not(.disabled):not(.empty) { background: rgba(200,137,58,0.3); color: #fff; }
.cal-day.selected { background: var(--gold); color: #fff; font-weight: 700; border-color: var(--gold); }
.cal-day.today { border-color: rgba(200,137,58,0.5); }
.cal-day.disabled { color: rgba(255,255,255,0.2); cursor: not-allowed; }
.cal-day.empty { cursor: default; }
.cal-header {
  grid-column: 1/-1; display: flex; justify-content: space-between;
  align-items: center; margin-bottom: 12px;
}
.cal-month { color: #fff; font-family: 'Playfair Display',serif; font-size: 1rem; }
.cal-nav {
  background: rgba(255,255,255,0.1); border: none; color: #fff;
  width: 30px; height: 30px; border-radius: 50%; cursor: pointer;
  font-size: 1rem; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.cal-nav:hover { background: rgba(200,137,58,0.4); }

.form-group { margin-bottom: 14px; }
.form-group label {
  display: block; font-size: 0.78rem; font-weight: 600;
  color: rgba(255,255,255,0.6); text-transform: uppercase;
  letter-spacing: 0.08em; margin-bottom: 6px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 11px 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px; color: #fff;
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem;
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--gold);
  background: rgba(255,255,255,0.1);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group select option { background: var(--earth); color: #fff; }
.form-group textarea { resize: vertical; min-height: 80px; }

.quick-contact {
  display: flex; gap: 16px; justify-content: center;
  flex-wrap: wrap; margin-top: 32px; max-width: 800px;
  margin-inline: auto; margin-top: 32px;
}
.qc-btn {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius); padding: 16px 24px;
  text-decoration: none; color: #fff;
  transition: background 0.2s, transform 0.2s; flex: 1; min-width: 220px;
}
.qc-btn:hover { background: rgba(200,137,58,0.2); transform: translateY(-2px); }
.qc-btn.walkin { cursor: default; }
.qc-btn > span { font-size: 1.8rem; flex-shrink: 0; }
.qc-btn > div { display: flex; flex-direction: column; }
.qc-btn strong { font-size: 0.9rem; color: #fff; }
.qc-btn span:last-child { font-size: 0.78rem; color: rgba(255,255,255,0.55); margin-top: 2px; }

/* ── Q&A TEASER ── */
.qa-teaser { padding: 100px 5%; background: var(--white); }
.qa-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; max-width: 1000px; margin: 0 auto;
}
.qa-item {
  background: var(--cream); border-radius: var(--radius);
  padding: 24px; border: 1px solid rgba(200,137,58,0.12);
  border-left: 4px solid var(--gold);
  transition: box-shadow 0.2s;
}
.qa-item:hover { box-shadow: 0 6px 24px rgba(59,35,20,0.08); }
.qa-q {
  font-weight: 700; font-size: 0.95rem; color: var(--earth);
  margin-bottom: 10px;
}
.qa-a { font-size: 0.88rem; color: var(--muted); line-height: 1.75; }

@media(max-width:768px) {
  .booking-panel { grid-template-columns: 1fr; }
  .qa-grid { grid-template-columns: 1fr; }
  .quick-contact { flex-direction: column; }
}

/* ── FAQ ACCORDION ── */
.faq-item {
  border: 1px solid rgba(200,137,58,0.15);
  border-radius: var(--radius);
  margin-bottom: 12px;
  background: var(--white);
  overflow: hidden;
}
.faq-q {
  width: 100%; text-align: left;
  background: none; border: none; cursor: pointer;
  padding: 20px 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.97rem; font-weight: 600; color: var(--earth);
  transition: background 0.2s;
}
.faq-q:hover { background: var(--blush); }
.faq-q .arrow {
  font-size: 1.4rem; color: var(--gold);
  transition: transform 0.3s; flex-shrink: 0;
  line-height: 1;
}
.faq-q.open .arrow { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.2s;
  padding: 0 24px;
  font-size: 0.93rem; line-height: 1.8; color: var(--muted);
}
.faq-a.open { max-height: 500px; padding: 4px 24px 20px; }
.faq-a ul { margin: 8px 0 0 18px; }
.faq-a li { margin-bottom: 6px; }
.faq-a a { color: var(--warm); }

/* ── FOOTER ── */
footer { background: var(--earth); color: rgba(255,255,255,0.6); }
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 40px; padding: 60px 5% 40px;
}
.footer-brand { display: flex; gap: 14px; align-items: flex-start; }
.footer-brand img { width: 50px; opacity: 0.9; }
.footer-brand strong { display: block; color: rgba(255,255,255,0.9); margin-bottom: 6px; font-size: 0.95rem; }
.footer-brand p { font-size: 0.82rem; margin-top: 2px; }
.footer-brand a { color: var(--gold); text-decoration: none; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links strong { color: rgba(255,255,255,0.7); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; }
.footer-links a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 5%; text-align: center; font-size: 0.8rem; }
.footer-bottom a { color: var(--gold); text-decoration: none; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: block; }
  .hero { padding-top: 80px; }
  .about { grid-template-columns: 1fr; gap: 60px; }
  .about-img-accent { right: 0; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .loyalty { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 30px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .steps-row { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .about-pillars { grid-template-columns: 1fr 1fr; }
  .svc-row { grid-template-columns: 1fr 1fr; }
  .svc-row span:nth-child(2) { display: none; }
  .svc-row.header span:nth-child(2) { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .review-cta { flex-direction: column; text-align: center; }
}

/* ── LOGO SIZE UPDATE ── */
.nav-logo-img { width: 70px !important; height: 70px !important; }
.nav-brand-text { font-size: 1.1rem !important; }

/* ── INNER PAGE HERO (cream version) ── */
.page-hero-cream {
  position: relative;
  min-height: 260px;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 120px 5% 60px;
  background: var(--cream);
  overflow: hidden;
}
.page-hero-cream::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(200,137,58,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-cream::after {
  content: '✦';
  position: absolute;
  font-size: 18rem; line-height: 1;
  color: rgba(200,137,58,0.06);
  top: -40px; right: -40px;
  pointer-events: none;
}
.page-hero-cream-content {
  position: relative; z-index: 1;
}
.page-hero-cream-content .eyebrow {
  color: var(--gold);
  margin-bottom: 12px;
}
.page-hero-cream-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--earth);
  line-height: 1.15;
  margin-bottom: 14px;
}
.page-hero-cream-content p {
  font-size: 1rem;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}
.page-hero-divider {
  width: 60px; height: 3px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin: 16px auto 0;
  border-radius: 2px;
}
