/*
  globals.css — Faciallash Lounge
  Brand: Cormorant Garamond (heading) + Work Sans (body)
  Primary: #B0D8E8 (powder blue) | Dark: #7AADCA | Text: #334047 | BG: #FFF9F5
*/

/* ============================================================
   0. GOOGLE FONTS IMPORT
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Work+Sans:wght@300;400;500;600;700&display=swap');


/* ============================================================
   1. CSS VARIABLES
   ============================================================ */
:root {
  /* --- Brand Colors --- */
  --brand:              #B0D8E8;       /* Powder blue — primary brand color */
  --brand-dark:         #7AADCA;       /* Deeper blue — hover/active */
  --brand-light:        rgba(176, 216, 232, 0.18); /* Brand at 18% opacity */
  --brand-secondary:    #C9A99A;       /* Dusty rose — accent/links */
  --brand-secondary-dk: #B08070;       /* Darker rose — hover */
  --brand-tertiary:     #D4B896;       /* Warm taupe — optional third */

  /* --- Text Colors --- */
  --text-primary:       #334047;       /* Dark charcoal — headlines, nav */
  --text-body:          #4A5B63;       /* Slightly lighter — body copy */
  --text-muted:         #7A9099;       /* Muted blue-gray — captions, labels */
  --text-light:         #F9F5F2;       /* Off-white — text on dark backgrounds */

  /* --- Backgrounds --- */
  --bg-primary:         #FFFFFF;       /* Main white surface */
  --bg-secondary:       #F5F0EB;       /* Light warm gray */
  --bg-warm:            #FFF9F5;       /* Cream — signature brand bg */
  --bg-dark:            #334047;       /* Dark charcoal — footer, CTA banners */

  /* --- UI --- */
  --border:             #E2DAD4;       /* Warm gray border */
  --radius:             6px;
  --radius-md:          12px;
  --radius-lg:          18px;
  --radius-pill:        9999px;

  /* --- Shadows (soft, never harsh) --- */
  --shadow-sm:          0 1px 3px 0 rgba(51, 64, 71, 0.06);
  --shadow:             0 4px 12px -2px rgba(51, 64, 71, 0.08);
  --shadow-lg:          0 10px 30px -6px rgba(51, 64, 71, 0.10);

  /* --- Typography --- */
  --font-heading:       'Cormorant Garamond', Georgia, serif;
  --font-body:          'Work Sans', system-ui, sans-serif;

  /* --- Spacing (8px grid) --- */
  --space-1:  0.5rem;
  --space-2:  1rem;
  --space-3:  1.5rem;
  --space-4:  2rem;
  --space-5:  2.5rem;
  --space-6:  3rem;
  --space-7:  3.5rem;
  --space-8:  4rem;
  --space-10: 5rem;
  --space-12: 6rem;
  --section-y: 5rem;
}


/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-body);
  background-color: var(--bg-warm);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--brand-secondary);
  text-decoration: none;
}

a:hover {
  color: var(--brand-secondary-dk);
}


/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  line-height: 1.2;
  font-weight: 600;
}

h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 600;
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  font-weight: 600;
}

h4 {
  font-size: 1.25rem;
  font-weight: 600;
}

p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-body);
}

.lead {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-body);
  font-weight: 300;
}

.text-sm  { font-size: 0.875rem; line-height: 1.6; }
.text-xs  { font-size: 0.8125rem; line-height: 1.5; }

.overline {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-secondary);
}

/* Cormorant italic — use for pull quotes, callouts */
.italic-serif {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
}


/* ============================================================
   4. LAYOUT
   ============================================================ */

.container {
  width: 90%;
  max-width: 1200px;
  margin-inline: auto;
}

.container-sm {
  width: 90%;
  max-width: 720px;
  margin-inline: auto;
}

.section {
  padding: var(--section-y) 0;
}

.section-sm {
  padding: calc(var(--section-y) * 0.6) 0;
}

.bg-white    { background-color: var(--bg-primary); }
.bg-gray     { background-color: var(--bg-secondary); }
.bg-warm     { background-color: var(--bg-warm); }
.bg-dark     { background-color: var(--bg-dark); color: var(--text-light); }
.bg-brand    { background-color: var(--brand); color: var(--text-primary); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-6); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-4); }

@media (max-width: 479px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

@media (min-width: 480px) and (max-width: 767px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}


/* ============================================================
   5. BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
  min-height: 48px;
}

.btn:focus-visible {
  outline: 3px solid var(--brand-dark);
  outline-offset: 3px;
}

/* Primary — powder blue fill */
.btn-primary {
  background-color: var(--brand-dark);
  color: #ffffff;
  border-color: var(--brand-dark);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.32) 50%,
    transparent 100%
  );
  pointer-events: none;
  animation: btn-shimmer 4s ease-in-out infinite;
}
@keyframes btn-shimmer {
  0%, 55%  { left: -75%; opacity: 0; }
  60%      { opacity: 1; }
  75%      { left: 115%; opacity: 1; }
  80%, 100% { left: 115%; opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .btn-primary::after { animation: none; }
}
.btn-primary:hover {
  background-color: #5B91AF;
  border-color: #5B91AF;
  color: #ffffff;
  transform: translateY(-1px);
}

/* Secondary — rose accent */
.btn-secondary {
  background-color: var(--brand-secondary);
  color: #ffffff;
  border-color: var(--brand-secondary);
}
.btn-secondary:hover {
  background-color: var(--brand-secondary-dk);
  border-color: var(--brand-secondary-dk);
  color: #ffffff;
  transform: translateY(-1px);
}

/* Outline dark — on light backgrounds */
.btn-outline {
  background-color: transparent;
  color: var(--text-primary);
  border-color: var(--text-primary);
}
.btn-outline:hover {
  background-color: var(--text-primary);
  color: #ffffff;
}

/* Outline light — on dark/photo backgrounds */
.btn-outline-light {
  background-color: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.65);
}
.btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: #ffffff;
}

/* Outline brand — on cream backgrounds */
.btn-outline-brand {
  background-color: transparent;
  color: var(--brand-dark);
  border-color: var(--brand-dark);
}
.btn-outline-brand:hover {
  background-color: var(--brand-dark);
  color: #ffffff;
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}
.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  min-height: 40px;
}
.btn-block { width: 100%; }


/* ============================================================
   6. FORM ELEMENTS
   ============================================================ */

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

label {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}

input, textarea, select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
  min-height: 48px;
}

input::placeholder, textarea::placeholder {
  color: var(--text-muted);
  font-weight: 300;
}

input:focus, textarea:focus, select:focus {
  border-color: var(--brand-dark);
  box-shadow: 0 0 0 3px rgba(122, 173, 202, 0.2);
}

textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.form-helper { font-size: 0.75rem; color: var(--text-muted); }
.form-error  { font-size: 0.75rem; color: #DC2626; }


/* ============================================================
   7. CARDS
   ============================================================ */

.card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.card-flat {
  background-color: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-5);
}

.card-warm {
  background-color: var(--bg-warm);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-5);
}


/* ============================================================
   8. BADGES
   ============================================================ */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0.875rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
}

.badge-primary   { background: var(--brand); color: var(--text-primary); }
.badge-light     { background: var(--brand-light); color: var(--text-primary); }
.badge-secondary { background: var(--brand-secondary); color: #ffffff; }
.badge-outline   { background: transparent; border: 1.5px solid var(--border); color: var(--text-body); }
.badge-muted     { background: var(--bg-secondary); color: var(--text-muted); }


/* ============================================================
   9. FOCUS RING
   ============================================================ */

:focus-visible {
  outline: 3px solid var(--brand-dark);
  outline-offset: 2px;
  border-radius: 2px;
}


/* ============================================================
   10. UTILITY CLASSES
   ============================================================ */

.text-center   { text-align: center; }
.text-left     { text-align: left; }
.text-right    { text-align: right; }

.font-heading  { font-family: var(--font-heading); }
.font-body     { font-family: var(--font-body); }

.text-brand     { color: var(--brand-dark); }
.text-secondary { color: var(--brand-secondary); }
.text-muted     { color: var(--text-muted); }
.text-light     { color: var(--text-light); }
.text-dark      { color: var(--text-primary); }

.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;
}

.flex         { display: flex; }
.flex-center  { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col     { display: flex; flex-direction: column; }
.gap-2  { gap: var(--space-2); }
.gap-3  { gap: var(--space-3); }
.gap-4  { gap: var(--space-4); }

.w-full  { width: 100%; }
.h-full  { height: 100%; }

.divider {
  width: 100%;
  height: 1px;
  background-color: var(--border);
  margin: var(--space-6) 0;
}


/* ============================================================
   11. SITE HEADER
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background-color: rgba(255, 249, 245, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: var(--space-2) 0;
  transition: box-shadow 0.2s;
}

.site-header.header--scrolled {
  box-shadow: var(--shadow);
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: 0.01em;
  font-style: italic;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}

.logo-svg img {
  display: block;
  height: 28px;
  width: auto;
}

.logo-wordmark {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.02em;
  color: var(--text-primary);
  margin-left: 0.625rem;
  white-space: nowrap;
}

@media (max-width: 1199px) {
  .hours-badge { display: none; }
}

@media (max-width: 767px) {
  .logo-svg img { height: 22px; }
  .logo-wordmark { font-size: 1.1rem; }
}

.logo-primary { color: var(--brand-dark); }
.logo-light   { color: var(--text-light); }

body.nav-locked { overflow: hidden; }

.header-cta {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.hours-badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .logo { font-size: 1.15rem; }
}

.hours-badge--open      { background: #DCFCE7; color: #166534; }
.hours-badge--emergency { background: #FEF3C7; color: #92400E; }
.hours-badge--emergency a { color: inherit; text-decoration: none; }
.hours-badge--closed    { background: var(--bg-secondary); color: var(--text-muted); }

/* Desktop nav — only at 1200px+ */
.nav-desktop { display: none; }

@media (min-width: 1200px) {
  .nav-desktop { display: block; }
  .nav-toggle  { display: none; }
  .nav-mobile  { display: none !important; }
}

.nav-desktop ul {
  display: flex;
  list-style: none;
  gap: var(--space-4);
}

.nav-desktop a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.15s;
}

.nav-desktop a:hover { color: var(--brand-dark); }

/* Mobile nav toggle */
.nav-toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-primary);
  padding: 0.25rem;
}

/* Mobile nav menu */
.nav-mobile {
  display: none;
  background: var(--bg-warm);
  border-top: 1px solid var(--border);
  padding: var(--space-3);
}

.nav-mobile.nav-open { display: block; }

.nav-mobile ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nav-mobile a {
  display: block;
  padding: 0.875rem 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  letter-spacing: 0.02em;
}

.nav-mobile-cta {
  display: flex;
  flex-direction: row;
  gap: var(--space-2);
  margin-top: var(--space-4);
}
.nav-mobile-cta .btn {
  flex: 1;
  justify-content: center;
  text-align: center;
}

/* Hide Book Now from header on mobile — sticky bar + nav menu handle it */
@media (max-width: 1199px) {
  .header-cta .btn { display: none; }
}


/* ============================================================
   12. STICKY MOBILE CTA
   ============================================================ */

.sticky-mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 56px;
}

@media (min-width: 768px) {
  .sticky-mobile-cta { display: none; }
}

.sticky-call, .sticky-quote {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 700;
  text-decoration: none;
  min-height: 56px;
  letter-spacing: 0.02em;
}

.sticky-call  { background-color: var(--brand-dark); color: #ffffff; }
.sticky-quote { background-color: var(--brand-secondary); color: #ffffff; }

@media (max-width: 767px) {
  body { padding-bottom: 56px; }
}


/* ============================================================
   13. MODALS (Callback, Exit Intent)
   ============================================================ */

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-3);
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(51, 64, 71, 0.55);
  backdrop-filter: blur(3px);
}

.modal-card {
  position: relative;
  z-index: 1;
  background: var(--bg-warm);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  width: 100%;
  max-width: 400px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.modal-card h3 { margin-bottom: var(--space-1); }

.modal-card p {
  color: var(--text-muted);
  margin-bottom: var(--space-3);
  font-size: 0.9375rem;
}

.modal-card .form-group { margin-bottom: var(--space-2); }
.modal-card .btn-block  { margin-top: var(--space-2); }

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  padding: 0.25rem;
  border-radius: var(--radius);
  transition: color 0.15s, background 0.15s;
}

.modal-close:hover {
  color: var(--text-primary);
  background: var(--bg-secondary);
}

@media (max-width: 479px) {
  .modal-overlay {
    align-items: flex-end;
    padding: 0;
  }
  .modal-card {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    max-width: 100%;
    padding-bottom: calc(var(--space-5) + 56px);
  }
}


/* ============================================================
   14. FOOTER
   ============================================================ */

.site-footer {
  padding: var(--space-10) 0 var(--space-6);
  background-color: var(--bg-dark);
}

.site-footer h4 {
  color: var(--text-light);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-2);
  font-family: var(--font-body);
}

.site-footer ul  { list-style: none; }
.site-footer li  { margin-bottom: 0.4rem; }

.site-footer a {
  color: rgba(249, 245, 242, 0.6);
  font-size: 0.9375rem;
  transition: color 0.15s;
  text-decoration: none;
}

.site-footer a:hover { color: #ffffff; }

.footer-phone {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff !important;
  font-family: var(--font-heading);
}

.footer-brand p {
  color: rgba(249, 245, 242, 0.6);
  font-size: 0.9375rem;
  margin-bottom: var(--space-1);
}

.footer-bottom {
  border-top: 1px solid rgba(249, 245, 242, 0.12);
  margin-top: var(--space-8);
  padding-top: var(--space-4);
  flex-wrap: wrap;
  gap: var(--space-2);
}

.footer-bottom p  { color: rgba(249, 245, 242, 0.4); font-size: 0.8125rem; }
.footer-bottom a  { color: rgba(249, 245, 242, 0.4); }
.footer-bottom a:hover { color: rgba(249, 245, 242, 0.75); }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: var(--space-8);
}

@media (max-width: 1023px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 479px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 800;
  color: rgba(249, 245, 242, 0.9);
  text-decoration: none;
  display: block;
  margin-bottom: 0.75rem;
}

.footer-logo span {
  color: var(--brand);
}

.footer-tagline {
  color: rgba(249, 245, 242, 0.45);
  font-size: 0.875rem;
  font-style: italic;
  font-family: var(--font-heading);
  margin-bottom: 1.25rem;
}

.hours-list {
  list-style: none;
  font-size: 0.8375rem;
  color: rgba(249, 245, 242, 0.5);
  line-height: 1.9;
}

.social-links { display: flex; gap: var(--space-2); margin-top: var(--space-2); }

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  background: rgba(249, 245, 242, 0.1);
  color: rgba(249, 245, 242, 0.6);
  transition: background 0.15s, color 0.15s;
}

.social-links a:hover {
  background: rgba(249, 245, 242, 0.2);
  color: #ffffff;
}


/* ============================================================
   15. SECTION TRANSITIONS
   ============================================================ */

/* 1. Angled divider */
.section-angle {
  clip-path: polygon(0 0, 100% 4%, 100% 100%, 0 96%);
  padding-top: calc(var(--section-y) + 3rem);
  padding-bottom: calc(var(--section-y) + 3rem);
}

/* 2. Gradient fade from brand-light to warm bg */
.section-fade {
  background: linear-gradient(to bottom, var(--brand-light) 0%, var(--bg-warm) 100%);
}

/* 3. Overlapping card */
.overlap-card {
  margin-top: -3rem;
  position: relative;
  z-index: 10;
}

/* 4. Diagonal split */
.section-split {
  background: linear-gradient(135deg, var(--bg-warm) 60%, var(--brand-light) 60%);
}

/* 5. Soft wave divider — place SVG between sections */
.wave-divider {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}


/* ============================================================
   16. HERO SECTION
   ============================================================ */

.hero {
  padding: calc(var(--section-y) * 1.4) 0;
}

.hero h1 {
  color: #ffffff;
  margin-bottom: var(--space-3);
}

.hero .lead {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: var(--space-4);
  max-width: 600px;
  margin-inline: auto;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  justify-content: center;
  margin-bottom: var(--space-5);
}

.trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3) var(--space-5);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: var(--space-4);
  letter-spacing: 0.02em;
}


/* ============================================================
   17. REVIEW FLOW (review.html)
   ============================================================ */

.review-flow {
  max-width: 560px;
  margin-inline: auto;
  padding: var(--space-8) var(--space-3);
}

.progress-bar-track {
  width: 100%;
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: var(--space-6);
}

#progress-bar {
  height: 100%;
  background: var(--brand-dark);
  border-radius: 2px;
  width: 0%;
  transition: width 0.3s ease;
}

.star-row {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
  margin: var(--space-5) 0;
}

.star-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 3rem;
  color: var(--border);
  transition: transform 0.15s, color 0.15s;
  line-height: 1;
  padding: 0.25rem;
}

.star-btn:hover, .star-btn.star--active {
  transform: scale(1.2);
}

.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: var(--space-3) 0;
}

.chip {
  padding: 0.5rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  background: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary);
  transition: all 0.15s;
}

.chip:hover {
  border-color: var(--brand-dark);
  color: var(--brand-dark);
}

.chip.chip--active {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  color: #ffffff;
}

.review-quote-display {
  background: var(--brand-light);
  border-left: 3px solid var(--brand-dark);
  border-radius: var(--radius);
  padding: var(--space-3) var(--space-4);
  margin: var(--space-3) 0;
  font-style: italic;
  font-family: var(--font-heading);
  color: var(--text-body);
  font-size: 1.125rem;
}


/* ============================================================
   18. FAQ ACCORDION
   ============================================================ */

.faq-list {
  max-width: 760px;
  margin: 2.5rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

details.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-warm);
  transition: border-color 0.18s;
}

details.faq-item summary {
  padding: 1.125rem 1.5rem;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--text-primary);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  user-select: none;
}

details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::-moz-list-bullet { display: none; }
details.faq-item summary:hover { background: rgba(122,173,202,0.07); }

details.faq-item summary::after {
  content: '';
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%237AADCA' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.22s ease;
}

details.faq-item[open] { border-color: var(--brand); }
details.faq-item[open] summary::after { transform: rotate(180deg); }

details.faq-item p {
  padding: 0 var(--space-4) var(--space-4);
  font-size: 0.975rem;
  line-height: 1.75;
  color: var(--text-body);
  margin: 0;
}
details.faq-item p a { color: var(--brand-dark); text-decoration: underline; }
