@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400&family=DM+Sans:wght@300;400;500;600;700&display=swap');

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

:root {
  --navy: #1a2744;
  --navy-deep: #0f1a2e;
  --navy-light: #243656;
  --gold: #c8973e;
  --gold-light: #dbb76a;
  --gold-dark: #a67b2e;
  --cream: #faf8f4;
  --cream-dark: #f0ece4;
  --text: #2c2c2c;
  --text-muted: #6b6b6b;
  --text-light: #999;
  --white: #ffffff;
  --error: #b84242;
  --success: #3a7d5a;
  --border: #e2ddd4;
  --shadow-sm: 0 1px 3px rgba(26,39,68,0.06);
  --shadow-md: 0 4px 16px rgba(26,39,68,0.08);
  --shadow-lg: 0 8px 32px rgba(26,39,68,0.12);
  --shadow-xl: 0 16px 48px rgba(26,39,68,0.16);
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-w: 1200px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }

a { color: var(--gold-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }

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

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }

/* ─── NAVIGATION ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(26, 39, 68, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 151, 62, 0.15);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex; align-items: center; gap: 0.6rem;
  color: var(--white); font-family: var(--font-heading);
  font-size: 1.2rem; font-weight: 700; text-decoration: none;
}
.nav-logo svg { color: var(--gold); }
.nav-links {
  display: flex; align-items: center; gap: 0.25rem;
  list-style: none;
}
.nav-links a {
  padding: 0.5rem 0.85rem; border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.7); font-size: 0.88rem; font-weight: 500;
  text-decoration: none; transition: all var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(255,255,255,0.08); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.55rem 1.2rem; border-radius: var(--radius);
  background: var(--gold); color: var(--navy-deep);
  font-size: 0.88rem; font-weight: 600; text-decoration: none;
  transition: all var(--transition);
}
.nav-cta:hover { background: var(--gold-light); color: var(--navy-deep); transform: translateY(-1px); }
.nav-mobile-btn {
  display: none; background: none; border: none; color: var(--white);
  cursor: pointer; padding: 0.5rem;
}
.nav-mobile-menu {
  display: none; position: absolute; top: 72px; left: 0; right: 0;
  background: var(--navy-deep); border-bottom: 1px solid rgba(200,151,62,0.15);
  padding: 1rem 1.5rem;
}
.nav-mobile-menu.open { display: block; }
.nav-mobile-menu a {
  display: block; padding: 0.75rem 0; color: rgba(255,255,255,0.8);
  font-size: 0.95rem; border-bottom: 1px solid rgba(255,255,255,0.06);
  text-decoration: none;
}
.nav-mobile-menu a:last-child { border-bottom: none; }

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-mobile-btn { display: block; }
}

/* ─── HERO ─── */
.hero {
  padding: 10rem 1.5rem 5rem;
  background: linear-gradient(165deg, var(--navy-deep) 0%, var(--navy) 40%, var(--navy-light) 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 80%; height: 200%; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(200,151,62,0.06) 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-content { max-width: 720px; position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 1rem; border-radius: 100px;
  background: rgba(200,151,62,0.12); border: 1px solid rgba(200,151,62,0.25);
  color: var(--gold-light); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero h1 em {
  font-style: normal; color: var(--gold);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p { color: rgba(255,255,255,0.7); font-size: 1.1rem; line-height: 1.7; margin-bottom: 2rem; max-width: 600px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.8rem 1.8rem; border-radius: var(--radius);
  background: var(--gold); color: var(--navy-deep);
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 600;
  text-decoration: none; border: none; cursor: pointer;
  transition: all var(--transition); box-shadow: 0 2px 8px rgba(200,151,62,0.3);
}
.btn-primary:hover {
  background: var(--gold-light); color: var(--navy-deep);
  transform: translateY(-2px); box-shadow: 0 4px 16px rgba(200,151,62,0.4);
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.8rem 1.8rem; border-radius: var(--radius);
  background: var(--navy); color: var(--white);
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 600;
  text-decoration: none; border: none; cursor: pointer;
  transition: all var(--transition);
}
.btn-secondary:hover { background: var(--navy-light); transform: translateY(-2px); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.8rem; border-radius: var(--radius);
  background: transparent; color: var(--white);
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 600;
  text-decoration: none; cursor: pointer;
  border: 1.5px solid rgba(255,255,255,0.25);
  transition: all var(--transition);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-outline-dark {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.8rem; border-radius: var(--radius);
  background: transparent; color: var(--navy);
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 600;
  text-decoration: none; cursor: pointer;
  border: 1.5px solid var(--border);
  transition: all var(--transition);
}
.btn-outline-dark:hover { border-color: var(--gold); color: var(--gold-dark); }
.btn-sm { padding: 0.55rem 1.2rem; font-size: 0.85rem; }
.btn-lg { padding: 1rem 2.2rem; font-size: 1.05rem; }
.btn-block { width: 100%; justify-content: center; }

/* ─── STATS STRIP ─── */
.stats {
  padding: 3rem 1.5rem;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
  text-align: center;
}
.stats-grid .stat-num {
  display: block; font-family: var(--font-heading);
  font-size: 2.2rem; font-weight: 800; color: var(--navy);
}
.stats-grid .stat-label { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; }

@media (max-width: 640px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; } }

/* ─── SECTION HELPERS ─── */
.section { padding: 5rem 1.5rem; }
.section--cream { background: var(--cream); }
.section--white { background: var(--white); }
.section--navy { background: var(--navy); }
.section-header { max-width: 640px; margin-bottom: 3rem; }
.section-header.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p { color: var(--text-muted); font-size: 1.05rem; }

/* ─── FEATURE GRID ─── */
.feature-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  max-width: var(--max-w); margin: 0 auto;
}
.feature-card {
  padding: 2rem; border-radius: var(--radius-lg);
  background: var(--white); border: 1px solid var(--border);
  transition: all var(--transition);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.feature-card .icon {
  width: 48px; height: 48px; border-radius: var(--radius);
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); margin-bottom: 1.25rem;
}
.feature-card h3 { margin-bottom: 0.5rem; font-size: 1.1rem; }
.feature-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }

@media (max-width: 900px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .feature-grid { grid-template-columns: 1fr; } }

/* ─── PRICING CARDS ─── */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  max-width: var(--max-w); margin: 0 auto;
  align-items: start;
}
.pricing-card {
  padding: 2.5rem 2rem; border-radius: var(--radius-xl);
  background: var(--white); border: 1.5px solid var(--border);
  position: relative; transition: all var(--transition);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.pricing-card.featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold), var(--shadow-lg);
}
.pricing-card.featured::before {
  content: 'Most Popular'; position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  padding: 0.3rem 1.2rem; border-radius: 100px;
  background: var(--gold); color: var(--navy-deep);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.03em; text-transform: uppercase;
  white-space: nowrap;
}
.pricing-tier { font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gold-dark); margin-bottom: 0.5rem; }
.pricing-name { font-family: var(--font-heading); font-size: 1.35rem; font-weight: 700; margin-bottom: 0.5rem; }
.pricing-price { margin-bottom: 1.25rem; }
.pricing-price .amount { font-family: var(--font-heading); font-size: 2.8rem; font-weight: 800; color: var(--navy); }
.pricing-price .period { font-size: 0.9rem; color: var(--text-muted); }
.pricing-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
.pricing-features { list-style: none; margin-bottom: 2rem; }
.pricing-features li {
  display: flex; align-items: flex-start; gap: 0.6rem;
  padding: 0.4rem 0; font-size: 0.9rem; color: var(--text);
}
.pricing-features li svg { flex-shrink: 0; color: var(--success); margin-top: 2px; }

@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; max-width: 480px; } }

/* ─── ADVOCACY AREAS ─── */
.areas-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
  max-width: var(--max-w); margin: 0 auto;
}
.area-card {
  display: flex; gap: 1.25rem; padding: 1.75rem; border-radius: var(--radius-lg);
  background: var(--white); border: 1px solid var(--border);
  text-decoration: none; color: inherit; transition: all var(--transition);
}
.area-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--gold); color: inherit; }
.area-card .area-icon {
  width: 52px; height: 52px; border-radius: var(--radius); flex-shrink: 0;
  background: var(--cream); display: flex; align-items: center; justify-content: center; color: var(--navy);
}
.area-card h3 { font-size: 1.05rem; margin-bottom: 0.35rem; }
.area-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.55; margin: 0; }

@media (max-width: 640px) { .areas-grid { grid-template-columns: 1fr; } }

/* ─── CTA SECTION ─── */
.cta-section {
  padding: 5rem 1.5rem; text-align: center;
  background: linear-gradient(165deg, var(--navy-deep), var(--navy));
}
.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.65); font-size: 1.05rem; margin-bottom: 2rem; max-width: 540px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─── PORTFOLIO / CASE CARDS ─── */
.case-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
  max-width: var(--max-w); margin: 0 auto;
}
.case-card {
  border-radius: var(--radius-lg); background: var(--white);
  border: 1px solid var(--border); overflow: hidden;
  transition: all var(--transition);
}
.case-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.case-header {
  padding: 1.5rem 1.75rem; background: var(--navy);
  border-bottom: 3px solid var(--gold);
}
.case-header .case-type {
  font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--gold); margin-bottom: 0.35rem;
}
.case-header h3 { color: var(--white); font-size: 1.15rem; }
.case-body { padding: 1.75rem; }
.case-meta {
  display: flex; gap: 1.5rem; margin-bottom: 1.25rem; flex-wrap: wrap;
}
.case-meta-item { font-size: 0.82rem; }
.case-meta-item .label { color: var(--text-muted); display: block; margin-bottom: 0.15rem; }
.case-meta-item .value { font-weight: 600; color: var(--navy); }
.case-body p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 1rem; }

.timeline { border-left: 2px solid var(--gold); padding-left: 1.25rem; margin: 1.25rem 0; }
.timeline-item { position: relative; padding-bottom: 1rem; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: ''; position: absolute; left: -1.55rem; top: 0.35rem;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--gold); border: 2px solid var(--white);
}
.timeline-date { font-size: 0.78rem; font-weight: 600; color: var(--gold-dark); margin-bottom: 0.15rem; }
.timeline-text { font-size: 0.85rem; color: var(--text); line-height: 1.5; }

.tag {
  display: inline-flex; padding: 0.2rem 0.6rem; border-radius: 100px;
  font-size: 0.75rem; font-weight: 600;
}
.tag--resolved { background: rgba(58,125,90,0.1); color: var(--success); }
.tag--pending { background: rgba(200,151,62,0.12); color: var(--gold-dark); }
.tag--filed { background: rgba(26,39,68,0.08); color: var(--navy); }

@media (max-width: 768px) { .case-grid { grid-template-columns: 1fr; } }

/* ─── FORMS ─── */
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block; font-size: 0.88rem; font-weight: 600;
  color: var(--navy); margin-bottom: 0.4rem;
}
.form-group small { display: block; font-size: 0.78rem; color: var(--text-muted); margin-top: 0.25rem; }
input[type="text"], input[type="email"], input[type="tel"], input[type="url"],
input[type="number"], select, textarea {
  width: 100%; padding: 0.7rem 1rem; border-radius: var(--radius);
  border: 1.5px solid var(--border); background: var(--white);
  font-family: var(--font-body); font-size: 0.92rem; color: var(--text);
  transition: all var(--transition); outline: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,151,62,0.1); }
textarea { min-height: 120px; resize: vertical; }
select { appearance: none; background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b6b6b' stroke-width='2'%3e%3cpath d='m6 9 6 6 6-6'/%3e%3c/svg%3e"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

.form-card {
  max-width: 680px; margin: 0 auto; padding: 2.5rem;
  background: var(--white); border-radius: var(--radius-xl);
  border: 1px solid var(--border); box-shadow: var(--shadow-md);
}

/* ─── AI TOOLS ─── */
.tool-card {
  padding: 2rem; border-radius: var(--radius-lg);
  background: var(--white); border: 1px solid var(--border);
  margin-bottom: 1.5rem;
}
.tool-card h3 { margin-bottom: 0.5rem; }
.tool-card p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.25rem; }

.ai-output {
  padding: 1.5rem; border-radius: var(--radius);
  background: var(--cream); border: 1px solid var(--border);
  min-height: 150px; font-size: 0.9rem; line-height: 1.7;
  white-space: pre-wrap; word-wrap: break-word;
}
.ai-output.loading {
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-style: italic;
}

.ai-output h4 { font-family: var(--font-heading); margin-bottom: 0.5rem; color: var(--navy); font-size: 1rem; }
.ai-output ul { padding-left: 1.25rem; margin: 0.5rem 0; }
.ai-output li { margin-bottom: 0.35rem; }

/* ─── LINK IN BIO ─── */
.linkinbio {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(165deg, var(--navy-deep) 0%, var(--navy) 60%, var(--navy-light) 100%);
  padding: 3rem 1.5rem; margin-top: 0;
}
.linkinbio-card {
  max-width: 420px; width: 100%; text-align: center;
}
.linkinbio-avatar {
  width: 96px; height: 96px; border-radius: 50%; margin: 0 auto 1.25rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
  color: var(--navy-deep); font-family: var(--font-heading); font-size: 2rem; font-weight: 800;
  border: 3px solid rgba(255,255,255,0.15);
}
.linkinbio-card h1 { color: var(--white); font-size: 1.6rem; margin-bottom: 0.35rem; }
.linkinbio-card .subtitle { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-bottom: 2rem; }
.linkinbio-links { display: flex; flex-direction: column; gap: 0.75rem; }
.linkinbio-link {
  display: flex; align-items: center; justify-content: center; gap: 0.6rem;
  padding: 0.9rem 1.5rem; border-radius: var(--radius);
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  color: var(--white); font-weight: 500; font-size: 0.92rem;
  text-decoration: none; transition: all var(--transition);
}
.linkinbio-link:hover {
  background: rgba(200,151,62,0.15); border-color: var(--gold);
  color: var(--gold-light); transform: translateY(-2px);
}
.linkinbio-link.featured {
  background: var(--gold); color: var(--navy-deep); font-weight: 600;
  border-color: var(--gold);
}
.linkinbio-link.featured:hover { background: var(--gold-light); color: var(--navy-deep); }

/* ─── PAYMENT METHODS ─── */
.payment-methods {
  display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 1rem;
  justify-content: center;
}
.payment-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.65rem 1.3rem; border-radius: var(--radius);
  font-family: var(--font-body); font-size: 0.85rem; font-weight: 600;
  cursor: pointer; border: 1.5px solid; transition: all var(--transition);
  text-decoration: none;
}
.payment-btn:hover { transform: translateY(-2px); }
.payment-btn--stripe { background: #635bff; color: var(--white); border-color: #635bff; }
.payment-btn--stripe:hover { background: #7a73ff; color: var(--white); }
.payment-btn--paypal { background: #0070ba; color: var(--white); border-color: #0070ba; }
.payment-btn--paypal:hover { background: #1a8fe3; color: var(--white); }
.payment-btn--square { background: #121212; color: var(--white); border-color: #121212; }
.payment-btn--square:hover { background: #333; color: var(--white); }
.payment-btn--tiktok { background: #111; color: var(--white); border-color: #111; }
.payment-btn--tiktok:hover { background: #333; color: var(--white); }

/* ─── DISCLAIMER ─── */
.disclaimer-page { padding-top: 8rem; }
.disclaimer-content {
  max-width: 780px; margin: 0 auto; padding: 2.5rem;
  background: var(--white); border-radius: var(--radius-xl);
  border: 1px solid var(--border); box-shadow: var(--shadow-md);
}
.disclaimer-content h1 { font-size: 2rem; margin-bottom: 1.5rem; color: var(--navy); }
.disclaimer-content h2 { font-size: 1.2rem; margin-top: 2rem; margin-bottom: 0.75rem; color: var(--navy); }
.disclaimer-content p { font-size: 0.92rem; line-height: 1.75; margin-bottom: 1rem; color: var(--text); }
.disclaimer-content ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.disclaimer-content li { font-size: 0.92rem; line-height: 1.75; margin-bottom: 0.35rem; }
.disclaimer-alert {
  padding: 1.25rem 1.5rem; border-radius: var(--radius);
  background: rgba(200,151,62,0.08); border: 1px solid rgba(200,151,62,0.2);
  font-size: 0.9rem; line-height: 1.65; margin-bottom: 1.5rem;
}

/* ─── FOOTER ─── */
.footer {
  background: var(--navy-deep); padding: 4rem 1.5rem 2rem;
  border-top: 1px solid rgba(200,151,62,0.1);
}
.footer-grid {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 2fr; gap: 3rem;
  padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer h4 { color: var(--white); font-family: var(--font-heading); font-size: 1rem; margin-bottom: 1rem; }
.footer p { color: rgba(255,255,255,0.5); font-size: 0.85rem; line-height: 1.65; }
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { color: rgba(255,255,255,0.5); font-size: 0.85rem; text-decoration: none; transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  max-width: var(--max-w); margin: 0 auto; padding-top: 1.5rem;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom span { color: rgba(255,255,255,0.35); font-size: 0.82rem; }

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

/* ─── UTILITIES ─── */
.mt-1 { margin-top: 0.5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; } .mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; }
.text-center { text-align: center; }
.text-gold { color: var(--gold-dark); }
.text-muted { color: var(--text-muted); }
.text-sm { font-size: 0.85rem; }

/* ─── PAGE HEADER (inner pages) ─── */
.page-header {
  padding: 8rem 1.5rem 3rem;
  background: linear-gradient(165deg, var(--navy-deep), var(--navy));
  position: relative;
}
.page-header::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 80px;
  background: linear-gradient(to top, var(--cream), transparent);
}
.page-header h1 { color: var(--white); margin-bottom: 0.75rem; position: relative; z-index: 1; }
.page-header p { color: rgba(255,255,255,0.65); font-size: 1.05rem; max-width: 600px; position: relative; z-index: 1; }

/* ─── TABS ─── */
.tabs { display: flex; gap: 0.25rem; border-bottom: 2px solid var(--border); margin-bottom: 2rem; }
.tab-btn {
  padding: 0.75rem 1.25rem; background: none; border: none;
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 500;
  color: var(--text-muted); cursor: pointer; position: relative;
  transition: color var(--transition);
}
.tab-btn:hover { color: var(--navy); }
.tab-btn.active { color: var(--navy); font-weight: 600; }
.tab-btn.active::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 2px; background: var(--gold);
}
.tab-content { display: none; }
.tab-content.active { display: block; }

/* ─── SUCCESS/ERROR MESSAGES ─── */
.alert {
  padding: 1rem 1.25rem; border-radius: var(--radius); margin-bottom: 1.25rem;
  font-size: 0.9rem; display: none;
}
.alert.show { display: block; }
.alert--success { background: rgba(58,125,90,0.1); border: 1px solid rgba(58,125,90,0.2); color: var(--success); }
.alert--error { background: rgba(184,66,66,0.1); border: 1px solid rgba(184,66,66,0.2); color: var(--error); }

/* ─── SPINNER ─── */
@keyframes spin { to { transform: rotate(360deg); } }
.spinner {
  width: 20px; height: 20px; border: 2px solid var(--border);
  border-top-color: var(--gold); border-radius: 50%;
  animation: spin 0.6s linear infinite; display: inline-block;
}

/* ─── LOADING BAR ─── */
@keyframes pulse-bg { 0%, 100% { opacity: 0.5; } 50% { opacity: 1; } }
.loading-bar {
  height: 8px; border-radius: 4px; background: var(--cream-dark);
  overflow: hidden; margin-bottom: 0.75rem;
}
.loading-bar-fill {
  height: 100%; border-radius: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  animation: pulse-bg 1.5s ease-in-out infinite;
  width: 60%;
}

/* ─── Scroll animations ─── */
.fade-up {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ─── Services page responsive grids ─── */
@media (max-width: 768px) {
  [style*="grid-template-columns: 1fr 1.2fr"],
  [style*="grid-template-columns: 1.2fr 1fr"],
  [style*="grid-template-columns:1fr 1.2fr"],
  [style*="grid-template-columns:1.2fr 1fr"] {
    display: block !important;
  }
  [style*="grid-template-columns: repeat(4"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
