/* Shared styles for content/landing pages (location + subsidy).
   Mirrors the homepage design tokens so the feel matches; homepage keeps its
   own inline <style> and does NOT link this file. */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --purple: #5B2C8E;
  --purple-deep: #462170;
  --purple-light: #7B4DAE;
  --purple-wash: #F6F0FB;
  --purple-mist: #EDE4F5;
  --gold: #C9962B;
  --gold-bright: #DBAB3A;
  --gold-muted: #A67C1F;
  --gold-wash: #FBF5E6;
  --cream: #FFFAF2;
  --white: #FFFFFF;
  --charcoal: #1B1230;
  --slate: #4A4458;
  --muted: #7D7592;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; color: var(--charcoal); }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); letter-spacing: -0.015em; }
h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); letter-spacing: -0.01em; margin-bottom: 8px; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
p { color: var(--slate); font-size: 1rem; line-height: 1.75; }
a { color: var(--purple); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { width: 100%; max-width: 1000px; margin: 0 auto; padding: 0 24px; }
.wide { max-width: 1200px; }
section { padding: 72px 0; position: relative; }

.label {
  font-family: var(--font-body); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold);
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 14px;
}
.label::before { content: ''; width: 24px; height: 1.5px; background: var(--gold); display: block; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-weight: 700; font-size: 0.9rem;
  border-radius: 8px; padding: 13px 28px; transition: all 0.25s var(--ease-out);
  white-space: nowrap; cursor: pointer; text-decoration: none; border: none;
}
.btn:hover { text-decoration: none; }
.btn svg { width: 16px; height: 16px; }
.btn-primary { background: var(--purple); color: var(--white); box-shadow: 0 2px 12px rgba(91,44,142,0.2); }
.btn-primary:hover { background: var(--purple-deep); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(91,44,142,0.28); }
.btn-gold { background: var(--gold); color: var(--white); box-shadow: 0 2px 12px rgba(201,150,43,0.22); }
.btn-gold:hover { background: var(--gold-muted); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--purple); border: 2px solid var(--purple); }
.btn-outline:hover { background: var(--purple); color: var(--white); }
.btn-lg { padding: 16px 34px; font-size: 0.98rem; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px); border-bottom: 1px solid var(--purple-mist);
}
.site-header .inner {
  max-width: 1200px; margin: 0 auto; padding: 12px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.site-header .brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; color: var(--purple); font-size: 1.05rem; }
.site-header .brand img { height: 38px; width: auto; }
.site-header .h-actions { display: flex; align-items: center; gap: 10px; }
.site-header .h-phone { color: var(--purple); font-weight: 700; font-size: 0.9rem; }
@media (max-width: 640px) { .site-header .h-phone { display: none; } .site-header .brand span { display: none; } }

/* Hero */
.page-hero { background: linear-gradient(135deg, var(--purple) 0%, var(--purple-light) 100%); color: var(--white); padding: 64px 0 56px; }
.page-hero h1, .page-hero h2 { color: var(--white); }
.page-hero .label { color: var(--gold-bright); }
.page-hero .label::before { background: var(--gold-bright); }
.page-hero p { color: rgba(255,255,255,0.9); font-size: 1.12rem; max-width: 640px; margin-top: 12px; }
.page-hero .hero-btns { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 12px; }
.crumbs { font-size: 0.8rem; color: rgba(255,255,255,0.7); margin-bottom: 16px; }
.crumbs a { color: rgba(255,255,255,0.9); }

/* Content */
.prose p { margin-bottom: 16px; }
.prose h2 { margin-top: 36px; }
.prose ul { margin: 0 0 16px 22px; color: var(--slate); line-height: 1.8; }
.lead { font-size: 1.15rem; color: var(--slate); }

/* Cards / grid */
.grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.card { background: var(--cream); border: 1px solid var(--purple-mist); border-radius: 14px; padding: 24px; }
.card h3 { margin-bottom: 8px; }
.card p { font-size: 0.95rem; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.tag { background: var(--purple-wash); color: var(--purple); font-size: 0.76rem; font-weight: 600; padding: 5px 12px; border-radius: 20px; }
.info-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; color: var(--slate); }
.info-row svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }

.photo { width: 100%; height: 300px; border-radius: 16px; background-size: cover; background-position: center; box-shadow: 0 12px 40px rgba(91,44,142,0.18); }

/* FAQ */
.faq { border-bottom: 1px solid var(--purple-mist); padding: 20px 0; }
.faq h3 { font-size: 1.1rem; margin-bottom: 8px; color: var(--purple); }
.faq p { font-size: 0.97rem; }

/* Callout band */
.band { background: var(--gold-wash); border-top: 1px solid var(--purple-mist); border-bottom: 1px solid var(--purple-mist); }
.cta-band { background: linear-gradient(135deg, var(--purple) 0%, var(--purple-deep) 100%); color: var(--white); text-align: center; }
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(255,255,255,0.9); max-width: 560px; margin: 10px auto 0; }
.cta-band .hero-btns { justify-content: center; margin-top: 24px; }

/* Footer */
.site-footer { background: var(--charcoal); color: rgba(255,255,255,0.72); padding: 40px 0; font-size: 0.9rem; }
.site-footer a { color: var(--gold-bright); }
.site-footer .cols { display: flex; flex-wrap: wrap; gap: 32px; justify-content: space-between; }
.site-footer h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 8px; }
.site-footer .fnav a { color: rgba(255,255,255,0.72); display: block; margin-bottom: 6px; }
.site-footer .fbottom { border-top: 1px solid rgba(255,255,255,0.12); margin-top: 28px; padding-top: 18px; font-size: 0.82rem; color: rgba(255,255,255,0.5); }
