/* ============================================================
   Scheer Legal — Design System
   A single shared stylesheet for every page (EN + ES).
   Palette: deep navy + warm gold + cream/off-white.
   Typography: Playfair Display (headings) + Inter (body).
   ============================================================ */

:root {
  --navy: #0B1F3A;
  --navy-700: #0E2548;
  --navy-500: #14315F;
  --navy-50: #E7ECF3;
  --gold: #C19A3B;
  --gold-soft: #E0C97F;
  --cream: #FAF7F2;
  --cream-2: #F2EDE3;
  --ink: #1A1A1A;
  --ink-soft: #3F3F46;
  --muted: #6B7280;
  --line: #E5E1D7;
  --white: #FFFFFF;
  --shadow-sm: 0 1px 2px rgba(11,31,58,0.06), 0 1px 3px rgba(11,31,58,0.08);
  --shadow-md: 0 6px 20px rgba(11,31,58,0.08), 0 2px 6px rgba(11,31,58,0.06);
  --shadow-lg: 0 16px 40px rgba(11,31,58,0.14);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --max-w: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

/* ----- ADA / WCAG 2.1 AA helpers ----- */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--navy); color: var(--cream);
  padding: 14px 22px; border-radius: 0 0 10px 0;
  font-weight: 600; text-decoration: none;
}
.skip-link:focus { left: 0; outline: 3px solid var(--gold); outline-offset: -3px; }
.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;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--gold); }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  color: var(--navy);
  line-height: 1.15;
  margin: 0 0 0.6em;
  font-weight: 600;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p { margin: 0 0 1.1em; color: var(--ink-soft); }
.lead { font-size: 1.2rem; color: var(--ink); }

.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 84px 0; }
.section-sm { padding: 56px 0; }
.section-tight { padding: 40px 0; }
.bg-navy { background: var(--navy); color: var(--cream); }
.bg-navy h1, .bg-navy h2, .bg-navy h3, .bg-navy h4 { color: var(--cream); }
.bg-navy p { color: rgba(250,247,242,0.85); }
.bg-cream-2 { background: var(--cream-2); }
.bg-white { background: var(--white); }

.grid { display: grid; gap: 32px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,247,242,0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 18px 24px; max-width: var(--max-w); margin: 0 auto; }
.brand { display: flex; align-items: center; gap: 12px; font-family: 'Playfair Display', serif; font-size: 1.35rem; font-weight: 600; color: var(--navy); letter-spacing: 0.01em; }
.brand img { height: 64px; width: auto; display: block; }
.brand-logo { height: 64px; width: auto; max-width: 260px; }
.footer-logo { height: 80px !important; }
@media (max-width: 700px) {
  .brand-logo { height: 52px; max-width: 220px; }
}
.brand-mark {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-500));
  display: grid; place-items: center; color: var(--gold); font-weight: 700; font-family: 'Playfair Display', serif;
}
.profile-photo { background: var(--navy); }
.profile-photo img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: inherit; }
.profile-photo.has-photo::after { content: none; }
.hero-portrait { aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); position: relative; }
.hero-portrait img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-portrait::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, transparent 50%, rgba(11,31,58,0.25) 100%);
}
@media (max-width: 900px) { .hero-portrait { max-width: 340px; margin: 0 auto; aspect-ratio: 1/1; } }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 0.95rem; color: var(--ink); font-weight: 500; }
.nav-links a:hover { color: var(--gold); }
.nav-cta { background: var(--navy); color: var(--cream) !important; padding: 10px 18px; border-radius: 999px; font-weight: 600; font-size: 0.9rem; }
.nav-cta:hover { background: var(--gold); color: var(--navy) !important; }
.lang-switch { font-size: 0.85rem; color: var(--muted); border: 1px solid var(--line); padding: 6px 12px; border-radius: 999px; }
.lang-switch:hover { border-color: var(--gold); color: var(--navy); }
.nav-toggle { display: none; background: none; border: 0; font-size: 1.4rem; color: var(--navy); cursor: pointer; }
@media (max-width: 860px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--cream); padding: 16px 24px 24px; border-bottom: 1px solid var(--line); gap: 14px; align-items: stretch; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
}

.hero {
  position: relative;
  padding: 110px 24px 96px;
  background:
    radial-gradient(1100px 600px at 80% -10%, rgba(193,154,59,0.18), transparent 60%),
    radial-gradient(900px 500px at 0% 100%, rgba(11,31,58,0.08), transparent 60%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
  overflow: hidden;
}
.hero-inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: center; }
.hero-eyebrow { display: inline-block; font-size: 0.85rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 18px; }
.hero h1 { margin-bottom: 18px; }
.hero p.lead { color: var(--ink-soft); max-width: 540px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero-art {
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-500) 60%, var(--navy-700) 100%);
  border-radius: var(--radius-lg);
  position: relative; box-shadow: var(--shadow-lg); overflow: hidden;
}
.hero-art::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(400px 400px at 20% 20%, rgba(193,154,59,0.25), transparent 60%),
    radial-gradient(500px 500px at 80% 80%, rgba(193,154,59,0.18), transparent 60%);
}
.hero-art-monogram {
  position: absolute; inset: 0; display: grid; place-items: center;
  font-family: 'Playfair Display', serif; color: var(--gold); font-size: 12rem; line-height: 1;
  opacity: 0.92; letter-spacing: -0.04em;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-art { max-width: 340px; margin: 0 auto; aspect-ratio: 1/1; }
  .hero-art-monogram { font-size: 8rem; }
  .hero { padding: 70px 24px 56px; }
}

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 26px; border-radius: 999px; font-weight: 600; font-size: 0.98rem;
  cursor: pointer; transition: all .2s ease; border: 1px solid transparent;
  letter-spacing: 0.01em;
}
.btn-primary { background: var(--navy); color: var(--cream); }
.btn-primary:hover { background: var(--gold); color: var(--navy); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-secondary { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-secondary:hover { background: var(--navy); color: var(--cream); }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--navy); color: var(--gold); }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold-soft); }
.card-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-500) 100%);
  color: var(--gold); display: grid; place-items: center; font-size: 1.6rem; margin-bottom: 18px;
  font-family: 'Playfair Display', serif; font-weight: 700;
}
.card h3 { margin-bottom: 10px; }
.card p { flex-grow: 1; }
.card-link { color: var(--navy); font-weight: 600; margin-top: 8px; display: inline-flex; align-items: center; gap: 6px; }
.card-link::after { content: "→"; transition: transform .2s ease; }
.card-link:hover { color: var(--gold); }
.card-link:hover::after { transform: translateX(4px); }

.section-heading { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-heading .eyebrow { color: var(--gold); font-size: 0.85rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; }
.section-heading h2 { margin-top: 10px; }

.trust-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; padding: 40px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-row .stat { font-family: 'Playfair Display', serif; color: var(--navy); font-size: 2rem; font-weight: 600; }
.trust-row .label { font-size: 0.85rem; color: var(--muted); letter-spacing: 0.04em; }
@media (max-width: 700px) { .trust-row { grid-template-columns: repeat(2, 1fr); } }

.profile-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: center; }
.profile-photo {
  aspect-ratio: 4/5; border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--navy), var(--navy-500));
  position: relative; overflow: hidden; box-shadow: var(--shadow-lg);
}
.profile-photo::after {
  content: "DLS"; position: absolute; inset: 0; display: grid; place-items: center;
  font-family: 'Playfair Display', serif; color: var(--gold); font-size: 7rem; letter-spacing: -0.03em;
}
@media (max-width: 900px) { .profile-grid { grid-template-columns: 1fr; } .profile-photo { max-width: 320px; margin: 0 auto; } }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 36px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid var(--line); }
.contact-item:last-child { border-bottom: 0; }
.contact-item .icon { width: 40px; height: 40px; border-radius: 8px; background: var(--navy-50); color: var(--navy); display: grid; place-items: center; flex-shrink: 0; font-weight: 700; }
.contact-item .label { font-size: 0.8rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; }
.contact-item a, .contact-item span { font-size: 1.1rem; color: var(--navy); font-weight: 500; }

.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.9rem; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 13px 16px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  font-size: 1rem; font-family: inherit; background: var(--white); color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: 0; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(11,31,58,0.12);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-disclaimer { font-size: 0.82rem; color: var(--muted); margin-top: 10px; }

.faq-item { border-bottom: 1px solid var(--line); padding: 22px 0; }
.faq-item summary {
  font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--navy);
  font-weight: 600; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--gold); font-size: 1.6rem; transition: transform .2s ease; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin-top: 14px; }

.page-hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-700) 100%);
  color: var(--cream);
  padding: 100px 24px 70px;
  position: relative; overflow: hidden;
}
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(800px 400px at 80% 0%, rgba(193,154,59,0.18), transparent 60%); }
.page-hero h1, .page-hero p, .page-hero .breadcrumb { position: relative; }
.page-hero h1 { color: var(--cream); }
.page-hero p { color: rgba(250,247,242,0.85); max-width: 720px; font-size: 1.15rem; }
.breadcrumb { font-size: 0.85rem; color: var(--gold-soft); margin-bottom: 20px; letter-spacing: 0.04em; }
.breadcrumb a { color: var(--gold-soft); }
.breadcrumb a:hover { color: var(--gold); }

.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { margin-top: 1.6em; }
.prose h3 { margin-top: 1.4em; }
.prose ul { padding-left: 22px; color: var(--ink-soft); }
.prose li { margin-bottom: 8px; }
.prose blockquote {
  border-left: 4px solid var(--gold); padding: 12px 20px; margin: 28px 0;
  background: var(--cream-2); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic; color: var(--ink);
}

.cta-strip {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-500) 100%);
  color: var(--cream); padding: 64px 32px; border-radius: var(--radius-lg);
  text-align: center; margin: 56px auto; max-width: var(--max-w);
  position: relative; overflow: hidden;
}
.cta-strip::before { content: ""; position: absolute; inset: 0; background: radial-gradient(600px 300px at 50% 0%, rgba(193,154,59,0.2), transparent 60%); }
.cta-strip h2, .cta-strip p { position: relative; color: var(--cream); }
.cta-strip h2 { color: var(--cream); }
.cta-strip .btn { position: relative; }

.site-footer { background: var(--navy); color: rgba(250,247,242,0.8); padding: 64px 24px 32px; }
.footer-grid { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer-grid h4 { color: var(--cream); font-family: 'Inter', sans-serif; font-size: 0.95rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 16px; }
.footer-grid a { color: rgba(250,247,242,0.75); display: block; padding: 4px 0; font-size: 0.95rem; }
.footer-grid a:hover { color: var(--gold); }
.footer-brand { font-family: 'Playfair Display', serif; color: var(--cream); font-size: 1.4rem; margin-bottom: 12px; }
.footer-tag { font-size: 0.95rem; color: rgba(250,247,242,0.7); max-width: 320px; }
.footer-bottom {
  max-width: var(--max-w); margin: 40px auto 0; padding-top: 24px;
  border-top: 1px solid rgba(250,247,242,0.12);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 0.85rem; color: rgba(250,247,242,0.55);
}
.footer-bottom .disclaimer { max-width: 720px; }
.social-row { display: flex; gap: 14px; margin-top: 16px; }
.social-row a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.06); display: grid; place-items: center;
  color: var(--cream); font-size: 0.95rem; font-weight: 600; border: 1px solid rgba(255,255,255,0.08);
}
.social-row a:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* ----- Practice page hero image (above the dark page hero) ----- */
.page-hero-image { position: relative; height: 320px; overflow: hidden; }
.page-hero-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.page-hero-image::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,31,58,0.2) 0%, rgba(11,31,58,0.7) 100%);
}
@media (max-width: 700px) { .page-hero-image { height: 220px; } }

/* ----- About photo gallery ----- */
.photo-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.photo-gallery .photo { aspect-ratio: 4/5; overflow: hidden; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.photo-gallery .photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.photo-gallery .photo:hover img { transform: scale(1.04); }
@media (max-width: 700px) { .photo-gallery { grid-template-columns: 1fr 1fr; } }

/* ----- Image card variant for practice areas ----- */
.card-with-image { padding: 0; overflow: hidden; }
.card-with-image .card-image { aspect-ratio: 16/10; overflow: hidden; }
.card-with-image .card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.card-with-image:hover .card-image img { transform: scale(1.04); }
.card-with-image .card-body { padding: 28px 32px 32px; }

/* ----- Brand strip / quick context strip ----- */
.brand-strip {
  background: linear-gradient(160deg, var(--cream-2), var(--cream));
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 40px 0;
}

/* ----- Why-us pillars ----- */
.pillar-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
@media (max-width: 900px) { .pillar-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .pillar-grid { grid-template-columns: 1fr; } }
.pillar { padding: 28px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); position: relative; transition: all .2s ease; }
.pillar:hover { border-color: var(--gold-soft); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.pillar-num { font-family: 'Playfair Display', serif; color: var(--gold); font-size: 2.6rem; line-height: 1; font-weight: 600; margin-bottom: 12px; }
.pillar h3 { font-size: 1.2rem; margin-bottom: 10px; }
.pillar p { font-size: 0.97rem; margin: 0; color: var(--ink-soft); }

/* ----- Process timeline ----- */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.process-grid::before {
  content: ""; position: absolute; top: 40px; left: 8%; right: 8%; height: 2px;
  background: linear-gradient(90deg, var(--gold-soft), var(--gold), var(--gold-soft));
  z-index: 0;
}
@media (max-width: 900px) { .process-grid { grid-template-columns: 1fr; } .process-grid::before { display: none; } }
.process-step { position: relative; z-index: 1; text-align: center; padding: 0 8px; }
.process-step .step-circle {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--cream); border: 2px solid var(--gold);
  display: grid; place-items: center; margin: 0 auto 18px;
  font-family: 'Playfair Display', serif; color: var(--navy); font-size: 1.8rem; font-weight: 600;
  box-shadow: 0 0 0 6px rgba(193,154,59,0.12);
}
.process-step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.process-step p { font-size: 0.95rem; color: var(--ink-soft); }

/* ----- Testimonials ----- */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .testimonial-grid { grid-template-columns: 1fr; } }
.testimonial {
  background: var(--white); border-radius: var(--radius-md); padding: 32px; border: 1px solid var(--line);
  position: relative; display: flex; flex-direction: column; gap: 16px;
}
.testimonial::before {
  content: "\201C"; position: absolute; top: 8px; left: 22px;
  font-family: 'Playfair Display', serif; color: var(--gold);
  font-size: 4rem; line-height: 1; opacity: 0.4;
}
.testimonial p { font-style: italic; color: var(--ink); position: relative; z-index: 1; font-size: 1.02rem; line-height: 1.55; flex-grow: 1; }
.testimonial .attribution { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--line); }
.testimonial .attribution-name { font-weight: 600; color: var(--navy); font-size: 0.95rem; }
.testimonial .attribution-role { color: var(--muted); font-size: 0.85rem; }
.testimonial .avatar-dot {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-500));
  color: var(--gold); display: grid; place-items: center;
  font-family: 'Playfair Display', serif; font-weight: 600; font-size: 1.1rem; flex-shrink: 0;
}

/* ----- Recognition / credentials ----- */
.credentials-bar { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 32px; }
.credentials-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
@media (max-width: 700px) { .credentials-grid { grid-template-columns: 1fr 1fr; } }
.credential { padding: 8px; }
.credential .label { font-size: 0.78rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 6px; }
.credential .value { font-family: 'Playfair Display', serif; color: var(--navy); font-size: 1rem; font-weight: 500; line-height: 1.3; }

/* ----- Big homepage FAQ ----- */
.homepage-faq { max-width: 820px; margin: 0 auto; }
.homepage-faq .faq-item summary { font-size: 1.1rem; }

/* ----- City/Service Areas grid ----- */
.cities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 800px) { .cities-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .cities-grid { grid-template-columns: 1fr; } }
.city-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 22px 24px; transition: all .2s ease;
}
.city-card:hover { border-color: var(--gold-soft); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.city-card h3 { font-size: 1.1rem; margin-bottom: 6px; }
.city-card p { font-size: 0.92rem; color: var(--ink-soft); margin: 0; }
.county-block { padding: 32px 0; border-bottom: 1px solid var(--line); }
.county-block:last-child { border-bottom: 0; }
.county-title { display: flex; align-items: baseline; gap: 16px; margin-bottom: 20px; }
.county-title h2 { margin: 0; font-size: 1.6rem; }
.county-title .small { font-size: 0.95rem; color: var(--muted); font-family: 'Inter', sans-serif; font-weight: 500; }

.post-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 28px; transition: all .2s ease; }
.post-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.post-meta { font-size: 0.82rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 10px; }
.post-card h3 { margin-bottom: 10px; }
.post-card h3 a { color: var(--navy); }
.post-card h3 a:hover { color: var(--gold); }

.text-center { text-align: center; }
.mt-0 { margin-top: 0; } .mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; } .mt-4 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }
@media (max-width: 700px) { .hidden-mobile { display: none; } }
.show-mobile { display: none; }
@media (max-width: 700px) { .show-mobile { display: block; } }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--gold); color: var(--navy); }
