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

:root {
  --navy: #1a2332;
  --navy-light: #243044;
  --slate: #3d4f5f;
  --gold: #c9a84c;
  --gold-light: #dfc06a;
  --gold-dim: rgba(201, 168, 76, 0.15);
  --cream: #f8f6f1;
  --white: #ffffff;
  --text: #2c3e50;
  --text-light: #6b7c8d;
  --border: #e2ddd5;
  --shadow: 0 2px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}
.header.scrolled { box-shadow: var(--shadow); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.logo span { color: var(--gold); }

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--navy);
  transition: all 0.3s ease;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav {
  display: none;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.nav.open { display: block; }

.nav a {
  display: block;
  padding: 14px 24px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.nav a:hover, .nav a.active { background: var(--cream); color: var(--gold); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-items { display: none; }
.nav-dropdown.open .nav-dropdown-items { display: block; }
.nav-dropdown-items a { padding-left: 40px; font-size: 0.88rem; color: var(--text-light); }

.header-cta { display: none; }

@media (min-width: 960px) {
  .nav-toggle { display: none; }
  .nav {
    display: flex;
    position: static;
    background: none;
    border: none;
    box-shadow: none;
    gap: 0;
    align-items: center;
  }
  .nav a {
    display: inline-block;
    padding: 8px 14px;
    border: none;
    font-size: 0.85rem;
    letter-spacing: 0.01em;
  }
  .nav-dropdown { position: relative; }
  .nav-dropdown-items {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    min-width: 200px;
    z-index: 100;
    padding: 8px 0;
  }
  .nav-dropdown:hover .nav-dropdown-items { display: block; }
  .nav-dropdown-items a {
    display: block;
    padding: 10px 20px;
    font-size: 0.85rem;
    white-space: nowrap;
  }
  .header-cta {
    display: inline-block;
    background: var(--gold);
    color: var(--white);
    padding: 10px 22px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: background 0.2s;
    white-space: nowrap;
    margin-left: 8px;
  }
  .header-cta:hover { background: var(--gold-light); }
}

/* ===== HERO (standard page) ===== */
.page-hero {
  padding: 120px 20px 60px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--slate) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.page-hero .container { position: relative; z-index: 1; }

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--white);
  margin-bottom: 12px;
}
.page-hero h1 em { font-style: normal; color: var(--gold); }
.page-hero p {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  line-height: 1.7;
}

/* ===== HOME HERO (special with photo) ===== */
.home-hero {
  padding: 0;
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.home-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  z-index: 0;
}
.home-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,35,50,0.92) 0%, rgba(36,48,68,0.85) 50%, rgba(61,79,95,0.75) 100%);
  z-index: 1;
}
.home-hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 20px 80px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-badge {
  display: inline-block;
  background: var(--gold-dim);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 20px;
}

.home-hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: var(--white);
  margin-bottom: 16px;
  max-width: 700px;
}
.home-hero h1 em { font-style: normal; color: var(--gold); }
.home-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 500px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}
.hero-stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
}
.btn-primary { background: var(--gold); color: var(--white); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.25); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-dark { background: var(--navy); color: var(--white); }
.btn-dark:hover { background: var(--navy-light); }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--cream);
  padding: 20px;
  border-bottom: 1px solid var(--border);
}
.trust-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--slate);
}
.trust-icon { width: 20px; height: 20px; fill: var(--gold); flex-shrink: 0; }

/* ===== SECTIONS ===== */
.section { padding: 64px 20px; }
.section-dark { background: var(--navy); color: var(--white); }
.section-cream { background: var(--cream); }
.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: 8px;
}
.section-subtitle {
  font-size: 0.95rem;
  color: var(--text-light);
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.section-dark .section-title { color: var(--white); }
.section-dark .section-subtitle { color: rgba(255,255,255,0.6); }

/* ===== COUNTY CARDS ===== */
.county-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 600px) { .county-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .county-grid { grid-template-columns: repeat(3, 1fr); } }

.county-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.county-card:hover { transform: translateY(-4px); }

.county-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}
.county-card:hover .county-card-bg { transform: scale(1.05); }

.county-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,35,50,0.9) 0%, rgba(26,35,50,0.3) 60%, transparent 100%);
}

.county-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
  z-index: 1;
}
.county-card h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 4px;
}
.county-card p {
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
}

.county-card-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  z-index: 2;
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 600px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  transition: all 0.25s ease;
}
.service-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.service-icon {
  width: 44px; height: 44px;
  background: var(--gold-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.service-icon svg {
  width: 22px; height: 22px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.service-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.6; }

/* Featured services */
.featured-services {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 768px) { .featured-services { grid-template-columns: repeat(3, 1fr); } }

.featured-card {
  background: var(--white);
  border-radius: 14px;
  padding: 36px 28px;
  border: 1px solid var(--border);
  text-align: center;
  transition: all 0.3s ease;
}
.featured-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.featured-icon {
  width: 64px; height: 64px;
  background: var(--gold-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.featured-icon svg { width: 28px; height: 28px; stroke: var(--gold); fill: none; stroke-width: 1.8; }
.featured-card h3 { font-size: 1.35rem; margin-bottom: 12px; }
.featured-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; margin-bottom: 20px; }

/* ===== COVERAGE ===== */
.coverage { max-width: 1200px; margin: 0 auto; }
.coverage-primary { margin-bottom: 48px; }
.coverage-heading { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; flex-wrap: wrap; }
.coverage-heading h3 { font-size: 1.5rem; }
.coverage-badge {
  background: var(--gold);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}

.town-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px 20px;
}
@media (min-width: 600px) { .town-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .town-grid { grid-template-columns: repeat(4, 1fr); } }

.town-grid a, .town-grid span {
  font-size: 0.9rem;
  color: var(--text);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  display: block;
  transition: color 0.2s;
}
.town-grid a:hover { color: var(--gold); }

.coverage-secondary {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
@media (min-width: 600px) { .coverage-secondary { grid-template-columns: repeat(2, 1fr); } }

.coverage-other h3 { font-size: 1.15rem; margin-bottom: 12px; color: var(--slate); }
.coverage-other-list { font-size: 0.88rem; color: var(--text-light); line-height: 2; }

/* ===== TAX GRIEVANCE ===== */
.deadline-group {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 28px;
  margin-bottom: 20px;
}
.section-cream .deadline-group {
  background: var(--white);
  border: 1px solid var(--border);
}
.deadline-date {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
}
.deadline-towns { display: flex; flex-wrap: wrap; gap: 8px; }
.deadline-town {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.8);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 500;
}
.section-cream .deadline-town {
  background: var(--cream);
  color: var(--text);
}

/* ===== ABOUT ===== */
.about-layout {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 768px) { .about-layout { grid-template-columns: 1fr 1.3fr; } }

.about-photo {
  width: 100%; max-width: 400px;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--navy-light), var(--slate));
  border-radius: 16px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.about-photo::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(to top, var(--navy), transparent);
}
.about-photo-text {
  position: relative;
  z-index: 1;
  padding: 24px;
}
.about-photo-text h3 { color: var(--white); font-size: 1.6rem; }
.about-photo-text p { color: var(--gold); font-size: 0.85rem; font-weight: 500; }

.about-content h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 16px; }
.about-content p { font-size: 0.95rem; color: var(--text-light); line-height: 1.8; margin-bottom: 16px; }

.credentials { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.credential {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--cream);
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--slate);
}
.credential svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 2; }

/* ===== REVIEWS ===== */
.reviews-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }

.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
}
.review-stars { color: var(--gold); font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.review-text { font-size: 0.9rem; color: var(--text); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.review-author { font-size: 0.82rem; font-weight: 600; color: var(--navy); }
.review-date { font-size: 0.75rem; color: var(--text-light); margin-top: 2px; }

/* ===== CONTENT BLOCK (for service detail pages) ===== */
.content-block {
  max-width: 800px;
  margin: 0 auto;
}
.content-block h2 {
  font-size: 1.6rem;
  margin-bottom: 16px;
  margin-top: 40px;
}
.content-block h2:first-child { margin-top: 0; }
.content-block p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}
.content-block p strong { color: var(--text); }

/* ===== CONTACT / CTA ===== */
.cta-section {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  padding: 64px 20px;
  text-align: center;
}
.cta-section h2 { color: var(--white); font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: 12px; }
.cta-section p { color: rgba(255,255,255,0.6); font-size: 0.95rem; margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }

.cta-contacts {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
@media (min-width: 600px) { .cta-contacts { flex-direction: row; justify-content: center; } }

.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 500;
}
.cta-contact-item svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 2; }

.contact-form {
  max-width: 560px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.contact-form .full-width { grid-column: 1 / -1; }

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  transition: border-color 0.2s;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,0.4); }
.contact-form input:focus,
.contact-form textarea:focus { outline: none; border-color: var(--gold); }
.contact-form textarea { resize: vertical; min-height: 100px; }
.contact-form select option { color: var(--navy); background: var(--white); }
.contact-form .btn { width: 100%; justify-content: center; padding: 16px; font-size: 1rem; }

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 48px 20px 24px;
  color: rgba(255,255,255,0.5);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) { .footer-inner { grid-template-columns: 2fr 1fr 1fr; } }

.footer h4 { color: var(--white); font-size: 1.1rem; margin-bottom: 16px; }
.footer p { font-size: 0.85rem; line-height: 1.7; }

.footer-links a {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  padding: 4px 0;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  max-width: 1200px;
  margin: 32px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.78rem;
  text-align: center;
  color: rgba(255,255,255,0.35);
}

/* ===== STICKY PHONE (mobile) ===== */
.sticky-phone {
  display: flex;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: var(--gold);
  color: var(--white);
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 14px;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 -2px 20px rgba(0,0,0,0.15);
}
.sticky-phone svg { width: 20px; height: 20px; fill: var(--white); }
@media (min-width: 900px) { .sticky-phone { display: none; } }
@media (max-width: 899px) { .footer { padding-bottom: 80px; } }

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== UTILITIES ===== */
.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.mb-sm { margin-bottom: 12px; }
.mb-md { margin-bottom: 24px; }
.mb-lg { margin-bottom: 40px; }

/* Content block for city pages */
.content-block{max-width:800px;margin:0 auto}
.content-block h2{font-size:1.6rem;margin-bottom:16px;margin-top:40px}
.content-block h2:first-child{margin-top:0}
.content-block h3{font-size:1.3rem;margin-bottom:12px;margin-top:32px}
.content-block p{font-size:.95rem;color:var(--text-light);line-height:1.8;margin-bottom:16px}
.content-block p strong{color:var(--text)}
.content-block a{color:var(--gold);text-decoration:underline;text-underline-offset:2px}
.content-block a:hover{color:var(--gold-light)}

/* Page hero */
.page-hero{padding:120px 20px 60px;background:linear-gradient(135deg,var(--navy) 0%,var(--navy-light) 50%,var(--slate) 100%);color:var(--white);position:relative;overflow:hidden}
.page-hero::before{content:'';position:absolute;top:-50%;right:-20%;width:600px;height:600px;background:radial-gradient(circle,rgba(201,168,76,.08) 0%,transparent 70%);border-radius:50%}
.page-hero .container{position:relative;z-index:1}
.page-hero h1{font-size:clamp(2rem,5vw,3rem);color:var(--white);margin-bottom:12px}
.page-hero h1 em{font-style:normal;color:var(--gold)}
.page-hero p{font-size:1rem;color:rgba(255,255,255,.7);max-width:600px;line-height:1.7}
