/* =========================================================
   Dilvaan Roofing — Design System
   Charcoal navy + silver/steel + gold, premium/trustworthy
   ========================================================= */

:root {
  --charcoal: #2B3440;
  --charcoal-light: #3A4553;
  --charcoal-dark: #1E252E;
  --silver-light: #C9CED6;
  --silver-dark: #8E959F;
  --gold: #C6A15B;
  --gold-light: #D9BC80;
  --gold-dark: #A9843F;
  --bg: #F7F6F3;
  --white: #FFFFFF;
  --text: #2B3440;
  --text-light: #5C6572;
  --border: #E3E0D9;
  --success: #3E7B4F;
  --font-head: 'Montserrat', 'Arial Black', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius: 6px;
  --shadow-sm: 0 1px 3px rgba(43,52,64,.08);
  --shadow-md: 0 6px 24px rgba(43,52,64,.12);
  --shadow-lg: 0 20px 50px rgba(43,52,64,.18);
  --container: 1180px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin: 0 0 .5em;
  color: var(--charcoal);
  font-weight: 800;
}
p { margin: 0 0 1em; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
.section { padding: 64px 0; }
.section-sm { padding: 40px 0; }
.section-dark { background: var(--charcoal); color: var(--silver-light); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-alt { background: var(--white); }

.eyebrow {
  display: inline-block;
  color: var(--gold-dark);
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-dark .eyebrow { color: var(--gold-light); }

h1 { font-size: clamp(1.9rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3.4vw, 2.2rem); }
h3 { font-size: 1.15rem; }
.lede { font-size: 1.15rem; color: var(--text-light); max-width: 62ch; }
.section-dark .lede { color: var(--silver-light); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: .9rem;
  padding: 15px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: var(--charcoal-dark);
  box-shadow: var(--shadow-sm);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline {
  background: transparent;
  border-color: var(--silver-light);
  color: var(--white);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); }
.btn-dark {
  background: var(--charcoal);
  color: var(--white);
}
.btn-dark:hover { background: var(--charcoal-light); transform: translateY(-2px); }
.btn-block { width: 100%; }
.btn-lg { padding: 18px 34px; font-size: 1rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  max-width: var(--container);
  margin: 0 auto;
  gap: 16px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-logo { width: 46px; height: 46px; flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--charcoal);
  letter-spacing: .02em;
}
.brand-tag {
  font-size: .65rem;
  color: var(--gold-dark);
  letter-spacing: .1em;
  font-weight: 700;
  text-transform: uppercase;
}

.main-nav { display: none; }
.main-nav ul { display: flex; align-items: center; gap: 28px; }
.main-nav a {
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--charcoal);
  padding: 10px 0;
  position: relative;
}
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--gold-dark); }
.has-dropdown { position: relative; }
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius);
  min-width: 240px;
  padding: 10px;
  border: 1px solid var(--border);
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { display: block; }
.dropdown a {
  display: block;
  padding: 10px 12px;
  font-size: .78rem;
  border-radius: 4px;
}
.dropdown a:hover { background: var(--bg); }

.header-cta { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
@media (max-width: 399px) {
  .header-cta .btn-gold { display: none; }
}
.header-phone {
  display: none;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .95rem;
  color: var(--charcoal);
}
.header-phone svg { width: 18px; height: 18px; color: var(--gold-dark); }

.nav-toggle {
  background: none;
  border: none;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--charcoal); display: block; }

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--charcoal);
  z-index: 1100;
  padding: 24px;
  overflow-y: auto;
}
.mobile-nav.is-open { display: block; }
.mobile-nav-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
.mobile-nav-close { background: none; border: none; color: var(--white); font-size: 2rem; line-height: 1; }
.mobile-nav ul { display: flex; flex-direction: column; }
.mobile-nav li { border-bottom: 1px solid rgba(255,255,255,.1); }
.mobile-nav a {
  display: block;
  padding: 16px 4px;
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  font-size: 1rem;
}
.mobile-nav .btn { margin-top: 24px; }
.mobile-sub { padding-left: 16px; }
.mobile-sub a { color: var(--silver-light); font-size: .85rem; padding: 12px 4px; }

@media (min-width: 960px) {
  .main-nav { display: block; }
  .header-phone { display: inline-flex; }
  .nav-toggle { display: none; }
}

/* ---------- Sticky mobile call bar ---------- */
.sticky-call-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  display: flex;
  background: var(--charcoal);
  box-shadow: 0 -4px 20px rgba(0,0,0,.2);
}
.sticky-call-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 10px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.sticky-call-bar .call-link { background: var(--gold); color: var(--charcoal-dark); }
.sticky-call-bar .quote-link { color: var(--white); border-left: 1px solid rgba(255,255,255,.15); }
.sticky-call-bar svg { width: 16px; height: 16px; }
body { padding-bottom: 64px; }
@media (min-width: 960px) {
  .sticky-call-bar { display: none; }
  body { padding-bottom: 0; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--charcoal) 0%, var(--charcoal-dark) 100%);
  color: var(--white);
  overflow: hidden;
  padding: 60px 0 70px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='60' viewBox='0 0 120 60'%3E%3Cpath d='M0 50 L30 15 L60 50 L90 15 L120 50' stroke='%238E959F' stroke-width='1' fill='none' opacity='0.15'/%3E%3C/svg%3E");
  background-size: 240px 120px;
  opacity: .5;
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; max-width: 720px; }
.hero h1 { color: var(--white); }
.hero .lede { color: var(--silver-light); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin: 28px 0; }
.trust-badges { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 30px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.15); }
.trust-badge { display: flex; align-items: center; gap: 10px; font-size: .85rem; color: var(--silver-light); font-weight: 600; }
.trust-badge svg { width: 26px; height: 26px; color: var(--gold); flex-shrink: 0; }

.hero-page {
  background: linear-gradient(160deg, var(--charcoal) 0%, var(--charcoal-dark) 100%);
  color: var(--white);
  padding: 46px 0 56px;
  position: relative;
  overflow: hidden;
}
.hero-page::before { content: ""; position: absolute; inset: 0; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='60' viewBox='0 0 120 60'%3E%3Cpath d='M0 50 L30 15 L60 50 L90 15 L120 50' stroke='%238E959F' stroke-width='1' fill='none' opacity='0.15'/%3E%3C/svg%3E"); background-size: 240px 120px; opacity:.5; }
.hero-page .container { position: relative; z-index: 1; }
.breadcrumbs { font-size: .78rem; color: var(--silver-dark); margin-bottom: 18px; }
.breadcrumbs a { color: var(--silver-light); }
.breadcrumbs a:hover { color: var(--gold); }
.hero-page h1 { color: var(--white); }
.hero-page .lede { color: var(--silver-light); max-width: 640px; }
@media (max-width: 859px) {
  .hero-page .form-card { order: -1; margin-bottom: 26px; }
}

/* ---------- Grids / Cards ---------- */
.grid { display: grid; gap: 26px; }
.grid > *, .two-col > *, .form-grid > * { min-width: 0; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid-2 { grid-template-columns: 1fr 1fr; } .grid-4 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } .grid-4 { grid-template-columns: repeat(4, 1fr); } }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 50%;
  margin-bottom: 18px;
  color: var(--gold-dark);
}
.card-icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--text-light); font-size: .93rem; margin-bottom: 14px; }
.card-link { font-family: var(--font-head); font-size: .78rem; font-weight: 800; color: var(--gold-dark); text-transform: uppercase; letter-spacing: .04em; display: inline-flex; align-items: center; gap: 6px; }
.card-link:hover { color: var(--charcoal); }

.service-card { display: flex; flex-direction: column; }

/* ---------- Why choose us ---------- */
.feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.feature-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--charcoal);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.feature-icon svg { width: 24px; height: 24px; }
.feature h3 { font-size: 1.02rem; margin-bottom: 6px; }
.feature p { font-size: .9rem; color: var(--text-light); margin: 0; }

/* ---------- Projects strip ---------- */
.project-strip { display: flex; gap: 18px; overflow-x: auto; padding-bottom: 10px; scroll-snap-type: x mandatory; }
.project-strip::-webkit-scrollbar { height: 8px; }
.project-strip::-webkit-scrollbar-thumb { background: var(--silver-dark); border-radius: 4px; }
.project-card {
  flex: 0 0 260px;
  scroll-snap-align: start;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.project-thumb {
  height: 190px;
  display: flex; align-items: center; justify-content: center;
  color: var(--silver-light);
}
.project-card figcaption {
  background: var(--white);
  padding: 12px 14px;
  font-size: .85rem;
  font-weight: 700;
  color: var(--charcoal);
  border: 1px solid var(--border);
  border-top: none;
}

/* Roof-tone gradient placeholders (stand-in for on-site project photography) */
.tone-1 { background: linear-gradient(135deg, #3A4553, #1E252E); }
.tone-2 { background: linear-gradient(135deg, #8E959F, #5C6572); }
.tone-3 { background: linear-gradient(135deg, #C6A15B, #8E6E36); }
.tone-4 { background: linear-gradient(135deg, #2B3440, #495264); }
.tone-5 { background: linear-gradient(135deg, #C9CED6, #8E959F); }
.tone-6 { background: linear-gradient(135deg, #A9843F, #6E5628); }

/* ---------- Testimonials ---------- */
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
}
.stars { color: var(--gold-dark); font-size: 1rem; letter-spacing: 2px; margin-bottom: 12px; }
.review-quote { font-size: .95rem; color: var(--text); margin-bottom: 16px; font-style: italic; }
.review-author { font-family: var(--font-head); font-weight: 800; font-size: .82rem; text-transform: uppercase; color: var(--charcoal); }
.review-loc { font-size: .78rem; color: var(--text-light); }

/* ---------- Service area / map ---------- */
.area-list { display: flex; flex-wrap: wrap; gap: 12px; margin: 22px 0; }
.area-chip {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 10px 18px;
  border-radius: 30px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: var(--charcoal);
}
.area-chip:hover { border-color: var(--gold); color: var(--gold-dark); }
.map-frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.map-frame iframe { width: 100%; height: 340px; border: 0; display: block; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--gold-light), var(--gold-dark));
  color: var(--charcoal-dark);
  text-align: center;
  padding: 56px 0;
}
.cta-band h2 { color: var(--charcoal-dark); }
.cta-band .lede { color: var(--charcoal-dark); opacity: .85; margin: 0 auto 26px; }
.cta-band-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.cta-band .btn-dark:hover { background: var(--charcoal-dark); }
.cta-band .btn-outline { border-color: var(--charcoal-dark); color: var(--charcoal-dark); }
.cta-band .btn-outline:hover { background: var(--charcoal-dark); color: var(--white); }

/* ---------- Forms ---------- */
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-md);
}
.form-row { margin-bottom: 18px; }
.form-row label {
  display: block;
  font-family: var(--font-head);
  font-size: .74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 7px;
  color: var(--charcoal);
}
.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--bg);
  color: var(--text);
}
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}
.form-grid { display: grid; gap: 18px; }
@media (min-width: 560px) { .form-grid.two-col { grid-template-columns: 1fr 1fr; } }
.file-upload {
  border: 2px dashed var(--border);
  border-radius: 4px;
  padding: 22px;
  text-align: center;
  font-size: .85rem;
  color: var(--text-light);
  background: var(--bg);
  cursor: pointer;
}
.file-upload:hover { border-color: var(--gold); }
.file-upload-name { margin-top: 8px; font-weight: 700; color: var(--charcoal); font-size: .82rem; }
.form-note { font-size: .78rem; color: var(--text-light); margin-top: 14px; }
.form-success { display: none; background: #E9F3EB; border: 1px solid var(--success); color: var(--success); padding: 16px; border-radius: 4px; font-weight: 600; font-size: .9rem; }

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .98rem;
  color: var(--charcoal);
}
.faq-q .plus { font-size: 1.3rem; color: var(--gold-dark); transition: transform .2s ease; flex-shrink: 0; margin-left: 14px; }
.faq-item.is-open .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; font-size: .92rem; color: var(--text-light); }
.faq-item.is-open .faq-a { max-height: 400px; }
.faq-a-inner { padding: 0 4px 20px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--charcoal-dark); color: var(--silver-light); padding: 56px 0 0; font-size: .9rem; }
.footer-grid { display: grid; gap: 36px; grid-template-columns: 1fr; margin-bottom: 40px; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer-brand { display: flex; gap: 12px; align-items: center; margin-bottom: 16px; }
.footer-brand .brand-name { color: var(--white); font-size: 1.1rem; }
.footer-brand .brand-tag { color: var(--gold-light); }
.footer-col h4 { color: var(--white); font-size: .82rem; letter-spacing: .06em; margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a:hover { color: var(--gold-light); }
.footer-nap p { margin-bottom: 6px; font-size: .88rem; }
.footer-nap a:hover { color: var(--gold-light); }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-social svg { width: 16px; height: 16px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  font-size: .78rem;
  color: var(--silver-dark);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  justify-content: space-between;
}
.footer-bottom a:hover { color: var(--gold-light); }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; gap: 18px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 640px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
.gallery-item { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.gallery-photo { height: 200px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.85); font-family: var(--font-head); font-size: .74rem; letter-spacing: .05em; text-transform: uppercase; text-align: center; padding: 10px; }
.gallery-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.filter-btn { background: var(--white); border: 1px solid var(--border); padding: 9px 18px; border-radius: 30px; font-family: var(--font-head); font-size: .76rem; font-weight: 700; text-transform: uppercase; }
.filter-btn.is-active, .filter-btn:hover { background: var(--charcoal); color: var(--white); border-color: var(--charcoal); }

/* ---------- Blog ---------- */
.post-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.post-thumb { height: 170px; display: flex; align-items: center; justify-content: center; }
.post-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.post-meta { font-size: .74rem; color: var(--gold-dark); font-weight: 700; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 10px; }
.post-card h3 { font-size: 1.05rem; }
.post-card p { color: var(--text-light); font-size: .9rem; flex: 1; }
.post-body { max-width: 720px; margin: 0 auto; }
.post-body h2 { margin-top: 1.6em; font-size: 1.4rem; }
.post-body h3 { margin-top: 1.3em; font-size: 1.1rem; }
.post-body p, .post-body li { color: var(--text); font-size: 1.02rem; }
.post-body ul, .post-body ol { padding-left: 22px; margin-bottom: 1em; }
.post-body li { margin-bottom: 8px; }
.post-hero-meta { display: flex; gap: 16px; align-items: center; margin-bottom: 10px; font-size: .8rem; color: var(--silver-light); }

/* ---------- About ---------- */
.about-hero-figure { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.stat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; text-align: center; }
@media (min-width: 640px) { .stat-grid { grid-template-columns: repeat(4, 1fr); } }
.stat { padding: 20px 10px; }
.stat-num { font-family: var(--font-head); font-weight: 800; font-size: 2.2rem; color: var(--gold-dark); }
.stat-label { font-size: .78rem; text-transform: uppercase; letter-spacing: .04em; color: var(--text-light); font-weight: 700; }
.timeline { border-left: 2px solid var(--border); padding-left: 24px; display: flex; flex-direction: column; gap: 28px; }
.timeline-item .year { font-family: var(--font-head); color: var(--gold-dark); font-weight: 800; font-size: .85rem; }

/* ---------- Exit intent modal ---------- */
.exit-modal-overlay {
  display: none;
  position: fixed; inset: 0; background: rgba(30,37,46,.75);
  z-index: 1200; align-items: center; justify-content: center; padding: 20px;
}
.exit-modal-overlay.is-open { display: flex; }
.exit-modal {
  background: var(--white);
  border-radius: var(--radius);
  max-width: 440px;
  width: 100%;
  padding: 34px 30px;
  position: relative;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.exit-modal-close { position: absolute; top: 12px; right: 14px; background: none; border: none; font-size: 1.6rem; color: var(--text-light); }
.exit-modal .eyebrow { display: block; }
.exit-modal .btn { margin-top: 14px; }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mx-auto { margin-left: auto; margin-right: auto; }
.section-head { max-width: 640px; margin-bottom: 40px; }
.section-head.text-center { margin-left: auto; margin-right: auto; }
.two-col { display: grid; gap: 40px; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 860px) { .two-col { grid-template-columns: 1fr 1fr; } }
.badge-row { display: flex; flex-wrap: wrap; gap: 10px; }
.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;
}
.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--gold); color: var(--charcoal-dark);
  padding: 10px 16px; z-index: 2000; font-weight: 700;
}
.skip-link:focus { left: 10px; top: 10px; }
