/* ==========================================
   WILLOW — UK Funeral Director Directory
   Design: Clean, dignified, trustworthy
   Palette: Sage green, warm cream, slate
   ========================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,400&family=General+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --sage: #5B7B6A;
  --sage-light: #7A9B89;
  --sage-dark: #3D5A4B;
  --sage-pale: #E8F0EB;
  --cream: #FAF7F2;
  --cream-dark: #F0EBE3;
  --slate: #2C3E3A;
  --slate-light: #4A5F5A;
  --slate-muted: #6B7F7A;
  --charcoal: #1A2A26;
  --white: #FFFFFF;
  --warm-white: #FDFCFA;
  --border: #D4DDD8;
  --border-light: #E8EDEA;
  --gold: #C4A35A;
  --gold-light: #F5EFE0;
  --amber: #D4915E;
  --error: #C05746;
  --success: #5B7B6A;
  --font-display: 'Fraunces', serif;
  --font-body: 'General Sans', -apple-system, sans-serif;
  --shadow-sm: 0 1px 3px rgba(44, 62, 58, 0.06);
  --shadow-md: 0 4px 12px rgba(44, 62, 58, 0.08);
  --shadow-lg: 0 8px 30px rgba(44, 62, 58, 0.12);
  --shadow-xl: 0 16px 50px rgba(44, 62, 58, 0.15);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --max-width: 1200px;
  --transition: 0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  color: var(--slate);
  background: var(--cream);
  line-height: 1.65;
  font-size: 16px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
img { max-width: 100%; display: block; }
a { color: var(--sage-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--sage); }
ul, ol { list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--charcoal);
  line-height: 1.2;
  font-weight: 500;
}

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 800px; }

/* ===== NAVIGATION ===== */
.nav {
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
}
.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--sage-dark);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__logo-icon {
  width: 32px;
  height: 32px;
  background: var(--sage);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav__logo-icon svg { width: 20px; height: 20px; color: white; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--slate-muted);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav__link:hover { color: var(--sage-dark); background: var(--sage-pale); }
.nav__link--active { color: var(--sage-dark); font-weight: 600; }
.nav__link--cta {
  background: var(--sage);
  color: var(--white) !important;
  font-weight: 600;
  padding: 8px 18px;
  margin-left: 8px;
}
.nav__link--cta:hover { background: var(--sage-dark); }
.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--slate);
}
@media (max-width: 768px) {
  .nav__toggle { display: flex; align-items: center; justify-content: center; }
  .nav__links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-light);
    flex-direction: column;
    padding: 16px 24px;
    gap: 4px;
    box-shadow: var(--shadow-md);
  }
  .nav__links.active { display: flex; }
  .nav__link { width: 100%; text-align: left; padding: 12px 14px; }
  .nav__link--cta { margin-left: 0; text-align: center; }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1.4;
}
.btn--primary {
  background: var(--sage);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(91, 123, 106, 0.25);
}
.btn--primary:hover {
  background: var(--sage-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(91, 123, 106, 0.3);
}
.btn--secondary {
  background: var(--white);
  color: var(--sage-dark);
  border: 1.5px solid var(--border);
}
.btn--secondary:hover { border-color: var(--sage); background: var(--sage-pale); color: var(--sage-dark); }
.btn--outline {
  background: transparent;
  color: var(--sage-dark);
  border: 1.5px solid var(--sage);
}
.btn--outline:hover { background: var(--sage); color: var(--white); }
.btn--gold { background: var(--gold); color: var(--white); }
.btn--gold:hover { background: #B8953F; color: var(--white); transform: translateY(-1px); }
.btn--large { padding: 16px 36px; font-size: 1.05rem; border-radius: var(--radius-lg); }
.btn--small { padding: 8px 18px; font-size: 0.85rem; }
.btn--full { width: 100%; }
.btn svg { width: 18px; height: 18px; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(170deg, var(--charcoal) 0%, #243530 50%, var(--sage-dark) 100%);
  color: var(--white);
  padding: 80px 0 110px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(91,123,106,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--cream), transparent);
  pointer-events: none;
}
.hero__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
  backdrop-filter: blur(4px);
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 500;
  color: var(--white);
  max-width: 720px;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.hero__title em { font-style: italic; color: var(--sage-light); }
.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.7);
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.65;
  font-weight: 300;
}
.search-bar {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 6px;
  display: flex;
  max-width: 580px;
  box-shadow: var(--shadow-xl);
}
.search-bar__input {
  flex: 1;
  border: none;
  padding: 14px 20px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--slate);
  background: transparent;
  outline: none;
}
.search-bar__input::placeholder { color: var(--slate-muted); }
.search-bar__btn {
  background: var(--sage);
  color: var(--white);
  border: none;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.search-bar__btn:hover { background: var(--sage-dark); }
.search-bar__btn svg { width: 18px; height: 18px; }
@media (max-width: 580px) {
  .search-bar { flex-direction: column; gap: 4px; }
  .search-bar__btn { justify-content: center; }
}
.trust-bar {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}
.trust-bar__item svg { width: 16px; height: 16px; color: var(--sage-light); }

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: -50px;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-lg);
}
@media (max-width: 700px) { .stats-bar { grid-template-columns: repeat(2, 1fr); } }
.stat { text-align: center; }
.stat__number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--sage-dark);
  line-height: 1;
  margin-bottom: 4px;
}
.stat__label { font-size: 0.82rem; color: var(--slate-muted); }

/* ===== SECTIONS ===== */
.section { padding: 80px 0; }
.section--cream { background: var(--cream); }
.section--white { background: var(--white); }
.section--sage { background: var(--sage-pale); }
.section--dark { background: var(--charcoal); color: var(--white); }
.section__header { text-align: center; margin-bottom: 48px; }
.section__label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--sage);
  margin-bottom: 12px;
}
.section__title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.section__subtitle {
  font-size: 1.02rem;
  color: var(--slate-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===== FEATURE CARDS ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
}
.feature-card:hover { border-color: var(--sage-light); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.feature-card__number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--sage-light);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 14px;
}
.feature-card__icon {
  width: 48px;
  height: 48px;
  background: var(--sage-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--sage);
}
.feature-card__icon svg { width: 24px; height: 24px; }
.feature-card__title {
  font-size: 1.1rem;
  margin-bottom: 8px;
  font-weight: 600;
  font-family: var(--font-body);
  color: var(--charcoal);
}
.feature-card__text { font-size: 0.9rem; color: var(--slate-muted); line-height: 1.6; }

/* ===== REGION CARDS ===== */
.regions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
}
.region-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
  color: var(--slate);
}
.region-card:hover { border-color: var(--sage); box-shadow: var(--shadow-sm); transform: translateY(-1px); color: var(--sage-dark); }
.region-card__info { display: flex; flex-direction: column; }
.region-card__name { font-weight: 600; font-size: 1rem; }
.region-card__count { font-size: 0.8rem; color: var(--slate-muted); margin-top: 2px; }
.region-card svg { width: 18px; height: 18px; color: var(--sage-light); transition: transform var(--transition); flex-shrink: 0; }
.region-card:hover svg { transform: translateX(3px); }

/* ===== DIRECTOR CARDS ===== */
.directors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 20px;
}
@media (max-width: 480px) { .directors-grid { grid-template-columns: 1fr; } }
.director-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all var(--transition);
  text-decoration: none;
  color: var(--slate);
  display: block;
}
.director-card:hover { border-color: var(--sage-light); box-shadow: var(--shadow-md); transform: translateY(-2px); color: var(--slate); }
.director-card--featured { border-color: var(--gold); background: linear-gradient(145deg, var(--white) 0%, var(--gold-light) 100%); }
.director-card__header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 10px; gap: 8px; }
.director-card__badges { display: flex; gap: 5px; flex-wrap: wrap; flex-shrink: 0; }
.director-card__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 2px;
}
.director-card__branch { font-size: 0.82rem; color: var(--slate-muted); margin-bottom: 10px; }
.director-card__location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  color: var(--slate-muted);
  margin-bottom: 14px;
}
.director-card__location svg { width: 15px; height: 15px; color: var(--sage); flex-shrink: 0; }
.director-card__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.director-card__stars { color: var(--gold); font-size: 0.88rem; letter-spacing: 1px; }
.director-card__rating-text { font-size: 0.82rem; color: var(--slate-muted); }
.director-card__services { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 14px; }
.director-card__pricing {
  display: flex;
  gap: 20px;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
  font-size: 0.85rem;
}
.director-card__price-item { display: flex; flex-direction: column; }
.director-card__price-label { color: var(--slate-muted); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.05em; }
.director-card__price-value { font-weight: 700; color: var(--sage-dark); font-size: 0.95rem; }

/* ===== BADGES & TAGS ===== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.68rem;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.badge--verified { background: var(--sage-pale); color: var(--sage-dark); }
.badge--nafd { background: #E8EDF5; color: #3D4F7A; }
.badge--saif { background: #F5E8EC; color: #7A3D4F; }
.badge--featured { background: var(--gold-light); color: var(--gold); }
.badge--premium { background: var(--gold-light); color: #8B6914; }
.tag {
  display: inline-flex;
  font-size: 0.75rem;
  padding: 3px 10px;
  border-radius: 100px;
  background: var(--sage-pale);
  color: var(--sage-dark);
  font-weight: 500;
}

/* ===== PRICING CARDS ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  align-items: start;
}
.pricing-card {
  background: var(--white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  position: relative;
  transition: all var(--transition);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-card--popular { border-color: var(--sage); box-shadow: var(--shadow-lg); }
.pricing-card--premium { border-color: var(--gold); background: linear-gradient(170deg, var(--white) 0%, var(--gold-light) 100%); }
.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sage);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.pricing-card__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.pricing-card__price { margin-bottom: 6px; }
.pricing-card__amount {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--sage-dark);
}
.pricing-card__period { font-size: 0.88rem; color: var(--slate-muted); }
.pricing-card__desc { font-size: 0.88rem; color: var(--slate-muted); margin-bottom: 24px; line-height: 1.5; }
.pricing-card__features { margin-bottom: 28px; }
.pricing-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 7px 0;
  font-size: 0.88rem;
  color: var(--slate);
}
.pricing-card__feature svg { width: 18px; height: 18px; color: var(--sage); flex-shrink: 0; margin-top: 2px; }

/* ===== FORMS ===== */
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 0.86rem; font-weight: 600; color: var(--slate); margin-bottom: 6px; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--slate);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  outline: none;
  transition: all var(--transition);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(91, 123, 106, 0.1);
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 580px) { .form-row { grid-template-columns: 1fr; } }
.form-hint { font-size: 0.78rem; color: var(--slate-muted); margin-top: 4px; }

/* ===== LISTING DETAIL ===== */
.listing-header {
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  padding: 40px 0;
}
.listing-header__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; flex-wrap: wrap; }
.listing-header__name { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 4px; }
.listing-header__branch { font-size: 1rem; color: var(--slate-muted); margin-bottom: 12px; }
.listing-header__badges { display: flex; gap: 8px; margin-bottom: 16px; flex-wrap: wrap; }
.listing-header__meta { display: flex; flex-wrap: wrap; gap: 20px; font-size: 0.9rem; color: var(--slate-muted); }
.listing-header__meta-item { display: flex; align-items: center; gap: 6px; }
.listing-header__meta-item svg { width: 16px; height: 16px; color: var(--sage); }
.listing-body { padding: 40px 0; }
.listing-grid { display: grid; grid-template-columns: 1fr 340px; gap: 40px; }
@media (max-width: 900px) { .listing-grid { grid-template-columns: 1fr; } }
.listing-sidebar { display: flex; flex-direction: column; gap: 20px; }
.listing-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.listing-card__title {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.listing-card__row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.88rem;
}
.listing-card__row:last-child { border-bottom: none; }
.listing-card__label { color: var(--slate-muted); }
.listing-card__value { font-weight: 600; color: var(--sage-dark); }

/* ===== REVIEWS ===== */
.review {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 14px;
}
.review__header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.review__author { font-weight: 600; color: var(--charcoal); font-size: 0.92rem; }
.review__stars { color: var(--gold); letter-spacing: 2px; font-size: 0.85rem; }
.review__title { font-weight: 600; margin-bottom: 6px; color: var(--charcoal); font-size: 0.95rem; }
.review__text { font-size: 0.9rem; color: var(--slate-muted); line-height: 1.65; }

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(170deg, var(--charcoal) 0%, var(--sage-dark) 100%);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}
.cta-section__title { font-size: clamp(1.6rem, 3vw, 2.4rem); color: var(--white); margin-bottom: 16px; }
.cta-section__text { font-size: 1.02rem; color: rgba(255,255,255,0.7); max-width: 500px; margin: 0 auto 32px; line-height: 1.6; }
.cta-section .btn--primary { background: var(--white); color: var(--sage-dark); }
.cta-section .btn--primary:hover { background: var(--cream); color: var(--sage-dark); }

/* ===== FOOTER ===== */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.6);
  padding: 56px 0 28px;
  margin-top: auto;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 768px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer__grid { grid-template-columns: 1fr; } }
.footer__brand-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}
.footer__brand-text { font-size: 0.85rem; line-height: 1.6; max-width: 280px; }
.footer__heading {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 14px;
}
.footer__link { display: block; font-size: 0.85rem; color: rgba(255,255,255,0.6); padding: 3px 0; transition: color var(--transition); }
.footer__link:hover { color: var(--white); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
}

/* ===== PAGE HEADER ===== */
.page-header {
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  padding: 48px 0;
  text-align: center;
}
.page-header__title { font-size: clamp(1.8rem, 3.5vw, 2.5rem); margin-bottom: 12px; }
.page-header__subtitle { font-size: 1.02rem; color: var(--slate-muted); max-width: 560px; margin: 0 auto; }

/* ===== FILTER BAR ===== */
.filter-bar {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  margin-bottom: 28px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.filter-bar .form-input, .filter-bar .form-select {
  flex: 1;
  min-width: 180px;
  padding: 10px 14px;
  font-size: 0.9rem;
}

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; } }
.about-visual {
  background: linear-gradient(145deg, var(--sage-pale) 0%, var(--cream-dark) 100%);
  border-radius: var(--radius-xl);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}
.about-visual__text {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--sage-dark);
  text-align: center;
  line-height: 1.35;
  font-style: italic;
}
.about-content h3 { font-size: 1.25rem; margin-bottom: 10px; }
.about-content p { font-size: 0.92rem; color: var(--slate-muted); margin-bottom: 14px; line-height: 1.7; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-info__item { display: flex; gap: 14px; }
.contact-info__icon {
  width: 44px;
  height: 44px;
  background: var(--sage-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--sage);
}
.contact-info__icon svg { width: 20px; height: 20px; }
.contact-info__label { font-weight: 600; color: var(--charcoal); margin-bottom: 2px; font-size: 0.92rem; }
.contact-info__text { font-size: 0.88rem; color: var(--slate-muted); }

/* ===== CLAIM BANNER ===== */
.claim-banner {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--cream-dark) 100%);
  border: 1.5px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.claim-banner__text { font-size: 0.92rem; color: var(--slate); }
.claim-banner__text strong { color: var(--charcoal); }

/* ===== VALUES ===== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.value-card {
  padding: 28px 24px;
  border-left: 3px solid var(--sage);
  background: var(--white);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.value-card h3 { font-family: var(--font-body); font-size: 1.05rem; font-weight: 600; margin-bottom: 6px; color: var(--charcoal); }
.value-card p { color: var(--slate-muted); font-size: 0.9rem; line-height: 1.6; }

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--sage-dark);
  color: var(--white);
  padding: 14px 22px;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  font-weight: 500;
  box-shadow: var(--shadow-xl);
  z-index: 9999;
  transform: translateY(120%);
  transition: transform 0.3s ease;
}
.toast.show { transform: translateY(0); }
.toast--error { background: var(--error); }

/* ===== SPINNER ===== */
.spinner {
  width: 32px;
  height: 32px;
  border: 3px solid var(--border);
  border-top-color: var(--sage);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 40px auto;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== EMPTY STATE ===== */
.empty-state { text-align: center; padding: 60px 24px; }
.empty-state__title { font-size: 1.15rem; margin-bottom: 8px; font-family: var(--font-body); font-weight: 600; }
.empty-state__text { color: var(--slate-muted); font-size: 0.92rem; }

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.text-muted { color: var(--slate-muted); }
.mt-4 { margin-top: 32px; }
.mt-2 { margin-top: 16px; }
.mb-4 { margin-bottom: 32px; }
.mb-2 { margin-bottom: 16px; }
.hidden { display: none !important; }

/* ===== PAYMENT BANNER ===== */
.payment-banner {
  background: var(--sage-pale);
  border: 1px solid var(--sage);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  text-align: center;
  margin-bottom: 24px;
  font-weight: 500;
  color: var(--sage-dark);
}
.payment-banner--error { background: #FEF2F2; border-color: var(--error); color: var(--error); }

/* ===== FAQ ACCORDION ===== */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  background: var(--white);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item:hover { border-color: var(--sage-light); }
.faq-item.open { border-color: var(--sage); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
  text-align: left;
  line-height: 1.4;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--sage-dark); }
.faq-question .faq-arrow,
.faq-question .faq-chevron {
  flex-shrink: 0;
  transition: transform 0.25s ease;
  color: var(--slate-muted);
}
.faq-item.open .faq-arrow,
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--sage); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-inner {
  padding: 0 22px 18px;
  font-size: 0.9rem;
  color: var(--slate-muted);
  line-height: 1.7;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeInUp 0.5s ease forwards; opacity: 0; }
.fade-in:nth-child(1) { animation-delay: 0s; }
.fade-in:nth-child(2) { animation-delay: 0.1s; }
.fade-in:nth-child(3) { animation-delay: 0.15s; }
.fade-in:nth-child(4) { animation-delay: 0.2s; }
