/* Griffin Fence — main.css */
:root {
  /* CONFIRMED BRAND COLORS from griffinfencehouston.com Elementor CSS */
  --navy: #0D151D;           /* e-global-color-primary: dark navy — headings, nav */
  --navy-2: #0a1016;          /* deeper navy for gradients */
  --charcoal: #1f2937;
  --green: #00663C;           /* e-global-color-secondary: BRAND GREEN — CTAs, accents, links */
  --green-2: #004d2e;         /* darker green for hover states */
  --gold: #EBB017;            /* e-global-color-d47a0af: gold/amber accent */
  --amber: #EBB017;           /* alias — used in breadcrumbs etc */
  --body-text: #515355;       /* e-global-color-text: body copy */
  --off-white: #F8F8F8;       /* e-global-color-5162f75: off-white bg */
  --cream: #F8F8F8;           /* alias */
  --white: #FFFFFF;
  --gray-100: #f4f5f7;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-600: #4b5563;
  --gray-800: #1f2937;
  --text: #1a2030;
  --muted: #515355;           /* matched to brand body-text */
  --radius: 10px;
  --radius-lg: 16px;
  --radius-pill: 100px;       /* pill button radius per brand */
  --shadow-sm: 0 1px 2px rgba(13,21,29,.06), 0 1px 3px rgba(13,21,29,.05);
  --shadow-md: 0 4px 12px rgba(13,21,29,.08), 0 2px 4px rgba(13,21,29,.06);
  --shadow-lg: 0 12px 36px rgba(13,21,29,.14);
  --container: 1320px;
  --header-h: 78px;
  --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;  /* headings, nav, buttons */
  --font-body: 'Manrope', system-ui, sans-serif;               /* body text */
}

/* ═══════════════════════════════════════════════════════════════
   SAFETY NET — forces white text on all hero/dark sections
   High specificity intentional — prevents any page-specific CSS
   from making text unreadable (Rule 6 from local-seo-site-builder)
═══════════════════════════════════════════════════════════════ */
.page-hero *, .hero *, .section-dark * { color: #fff; }
.page-hero .aeo-answer, .page-hero .aeo-answer *, .hero .aeo-answer, .hero .aeo-answer * { color: var(--body-text) !important; }
.page-hero h1, .hero h1, .section-dark h1 { color: #fff; opacity: 1; text-shadow: 0 2px 8px rgba(0,0,0,.35); }
.page-hero .breadcrumbs a, .hero .breadcrumbs a { color: var(--gold) !important; }
.page-hero .lede, .hero .lede { color: rgba(255,255,255,.88) !important; }


* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--body-text);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--green-2); }

h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); color: var(--navy); line-height: 1.2; font-weight: 800; letter-spacing: -0.01em; }
h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); margin: 0 0 1rem; }
h3 { font-size: 1.35rem; margin-bottom: .75rem; }
h4 { font-size: 1.1rem; margin-bottom: .5rem; }
p { margin-bottom: 1rem; color: var(--text); }
ul, ol { padding-left: 1.25rem; margin-bottom: 1rem; }
li { margin-bottom: .4rem; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1320px; margin: 0 auto; padding: 0 24px; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; padding: 14px 26px; border-radius: var(--radius-pill); font-weight: 700; font-size: .95rem; text-decoration: none; cursor: pointer; border: 2px solid transparent; transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease; line-height: 1.2; font-family: var(--font-display); }
.btn-primary { background: var(--green); color: #fff; border-color: var(--green); }
.btn-primary:hover { background: var(--green-2); border-color: var(--green-2); color: #fff; transform: translateY(-1px); }
.btn-secondary { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-secondary:hover { background: var(--navy-2); color: #fff; }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-ghost:hover { background: var(--navy); color: #fff; }
.btn-white { background: #fff; color: var(--navy); border-color: #fff; }
.btn-white:hover { background: var(--green); color: #fff; border-color: var(--green); }
.btn-lg { padding: 18px 32px; font-size: 1.05rem; }

/* HEADER */
.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,0.98); backdrop-filter: blur(8px); border-bottom: 1px solid var(--gray-200); }
.topbar { background: var(--navy); color: #cdd4e0; font-size: .85rem; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; padding: 8px 24px; max-width: 1320px; margin: 0 auto; gap: 1rem; flex-wrap: wrap; }
.topbar a { color: #fff; }
.topbar-left, .topbar-right { display: flex; gap: 1.25rem; align-items: center; flex-wrap: wrap; }
.topbar .sep { color: #4a5468; }
@media (max-width: 640px) { .topbar { display: none; } }

.header-main { display: flex; align-items: center; justify-content: space-between; padding: 10px 24px; max-width: 1320px; margin: 0 auto; gap: 1rem; }
.logo-link { display: inline-flex; align-items: center; gap: .6rem; }
.logo-link img { height: 44px; width: auto; }

.primary-nav { display: flex; align-items: center; gap: 0; }
.primary-nav > ul { list-style: none; display: flex; gap: 1.1rem; padding: 0; margin: 0; }
.primary-nav > ul > li { position: relative; }
.primary-nav > ul > li > a, .primary-nav > ul > li > button { background: none; border: 0; cursor: pointer; font-family: inherit; font-size: .88rem; font-weight: 600; color: var(--navy); padding: 20px 2px; display: inline-flex; align-items: center; gap: .2rem; white-space: nowrap; }
.primary-nav > ul > li > a:hover, .primary-nav > ul > li > button:hover { color: var(--green); }
.primary-nav .dropdown-caret { font-size: .65rem; opacity: .6; }

.mega-menu { position: absolute; top: 100%; left: 0; background: #fff; box-shadow: var(--shadow-lg); border-radius: var(--radius-lg); padding: 24px; min-width: 720px; opacity: 0; visibility: hidden; transform: translateY(8px); transition: all .2s ease; z-index: 100; border: 1px solid var(--gray-200); }
.primary-nav li.has-mega:hover .mega-menu,
.primary-nav li.has-mega:focus-within .mega-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.mega-col h4 { font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: var(--gold); margin-bottom: .6rem; }
.mega-col ul { list-style: none; padding: 0; margin: 0; }
.mega-col li { margin: 0; }
.mega-col a { display: block; padding: 6px 0; font-size: .92rem; color: var(--navy); font-weight: 500; }
.mega-col a:hover { color: var(--green); }
.mega-col .see-all { font-weight: 700; color: var(--green); margin-top: .4rem; }

.dropdown { position: absolute; top: 100%; left: 0; background: #fff; box-shadow: var(--shadow-lg); border-radius: var(--radius-lg); padding: 14px 0; min-width: 240px; opacity: 0; visibility: hidden; transform: translateY(8px); transition: all .2s ease; z-index: 100; border: 1px solid var(--gray-200); }
.primary-nav li.has-dropdown:hover .dropdown,
.primary-nav li.has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; padding: 8px 18px; font-size: .92rem; color: var(--navy); font-weight: 500; }
.dropdown a:hover { background: var(--gray-100); color: var(--green); }
.dropdown.cols-2 { min-width: 460px; column-count: 2; column-gap: 0; }

.header-cta { display: flex; align-items: center; gap: .6rem; flex-shrink: 0; }
.phone-cta { display: inline-flex; align-items: center; gap: .4rem; font-weight: 700; color: var(--navy); font-size: .88rem; white-space: nowrap; }
.phone-cta span.icon { width: 36px; height: 36px; border-radius: 50%; background: var(--green); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: .9rem; }

.hamburger { display: none; background: none; border: 0; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 26px; height: 3px; background: var(--navy); border-radius: 2px; margin: 5px 0; transition: .2s; }

/* =============================================
   MOBILE NAV DRAWER — full-screen slide-in
   ============================================= */
@keyframes mnavSlide {
  from { transform: translateX(100%); }
  to   { transform: translateX(0); }
}

/* Backdrop */
.mobile-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13,21,29,.55);
  z-index: 9990;
}
.mobile-backdrop.open { display: block; }

/* Drawer shell — always in the DOM, hidden off-screen */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  width: 300px;
  max-width: 85vw;
  z-index: 9995;
  background: #fff;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  box-shadow: -4px 0 40px rgba(13,21,29,.22);
}
.mobile-nav.open {
  display: flex;
  animation: mnavSlide .22s ease forwards;
}

/* Prevent body scroll when drawer is open (iOS-safe) */
html.mnav-lock,
body.mnav-lock {
  overflow: hidden;
  position: fixed;
  width: 100%;
}
@media (max-width: 1024px) {
  .primary-nav { display: none; }
  .hamburger { display: block; }
  .header-cta .btn { display: none; }
  .header-cta .phone-cta span:not(.icon) { display: none; }

  /* Header bar (logo + close) */
  .mnav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px 14px 20px;
    border-bottom: 1px solid #e5e7eb;
    flex-shrink: 0;
  }
  .mnav-logo img { height: 36px; width: auto; display: block; }
  .mnav-close {
    background: none;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1.4rem;
    line-height: 1;
    color: var(--navy);
    padding: 4px 10px;
    transition: background .15s;
  }
  .mnav-close:hover { background: #f3f4f6; }

  /* Nav list */
  .mnav-list {
    list-style: none;
    padding: 8px 0 0;
    margin: 0;
    flex: 1;
  }
  .mnav-item {
    border-bottom: 1px solid #f0f1f3;
  }

  /* Plain top-level links */
  .mnav-link {
    display: block;
    padding: 11px 20px;
    color: var(--navy);
    font-weight: 600;
    font-size: .93rem;
    text-decoration: none;
    transition: color .15s, background .15s;
    border-left: 3px solid transparent;
  }
  .mnav-link:hover { color: var(--green); background: #f6faf8; border-left-color: var(--green); }

  /* Collapsible groups (details/summary) */
  .mnav-item details { display: block; }
  /* Sub-list hidden until details[open] — CSS safety net */
  .mnav-item details:not([open]) .mnav-sub { display: none; }
  .mnav-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 20px;
    color: var(--navy);
    font-weight: 600;
    font-size: .93rem;
    font-family: inherit;
    cursor: pointer;
    list-style: none;
    user-select: none;
    transition: color .15s, background .15s;
    border-left: 3px solid transparent;
  }
  .mnav-summary:hover { color: var(--green); }
  /* Hide default marker in all browsers */
  .mnav-summary::-webkit-details-marker { display: none; }
  .mnav-summary::marker { display: none; }

  .mnav-caret {
    font-size: .65rem;
    color: var(--navy);
    transition: transform .2s;
    pointer-events: none;
  }
  .mnav-item details[open] .mnav-caret { transform: rotate(180deg); }

  /* Sub-list */
  .mnav-sub {
    list-style: none;
    padding: 4px 0 8px 20px;
    margin: 0;
    background: #f9fafb;
    border-top: 1px solid #f0f1f3;
  }
  .mnav-sub li a {
    display: block;
    padding: 9px 20px 9px 0;
    color: #374151;
    font-size: .88rem;
    font-weight: 500;
    text-decoration: none;
    transition: color .15s;
  }
  .mnav-sub li a:hover { color: var(--green); }

  /* See-all link in sub-list */
  .mnav-see-all {
    color: var(--green) !important;
    font-weight: 600 !important;
    font-size: .88rem !important;
    padding-top: 6px !important;
  }

  /* CTA buttons at the bottom */
  .mnav-cta {
    padding: 16px 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid #e5e7eb;
    flex-shrink: 0;
  }
  .mnav-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 13px 20px;
    border-radius: 6px;
    font-weight: 700;
    font-size: .95rem;
    text-decoration: none;
    transition: opacity .15s, background .15s;
    box-sizing: border-box;
  }
  .mnav-btn-green {
    background: var(--green);
    color: #fff;
    border: 2px solid var(--green);
  }
  .mnav-btn-green:hover { background: var(--green-2); border-color: var(--green-2); color: #fff; }
  .mnav-btn-outline {
    background: #fff;
    color: var(--navy);
    border: 2px solid var(--navy);
    animation: mnavPhoneGlow 2s ease-in-out infinite;
  }
  .mnav-btn-outline:hover { background: #f3f4f6; color: var(--navy); animation: none; }
  @keyframes mnavPhoneGlow {
    0%,100% { box-shadow: 0 0 0 0 rgba(13,21,29,.0); }
    50%      { box-shadow: 0 0 0 6px rgba(13,21,29,.12), 0 0 16px 2px rgba(0,102,60,.18); }
  }
}

/* HERO */
.hero { position: relative; min-height: 620px; display: flex; align-items: center; color: #fff; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 1; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(15,26,43,.85) 0%, rgba(15,26,43,.55) 60%, rgba(15,26,43,.3) 100%); }
.hero-inner { position: relative; z-index: 2; padding: 96px 0; }
.hero-eyebrow { display: inline-block; background: rgba(0,102,60,.18); color: var(--gold); padding: 8px 16px; border-radius: 100px; font-size: .82rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 1.25rem; border: 1px solid rgba(0,102,60,.35); }
.hero h1 { color: #fff; max-width: 900px; }
.hero p.lede { font-size: 1.2rem; max-width: 820px; margin: 1rem 0 2rem; color: #e5e7ef; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-trust { margin-top: 2.5rem; display: flex; gap: 2rem; flex-wrap: wrap; color: #cfd6e3; font-size: .9rem; }
.hero-trust strong { color: #fff; font-weight: 800; display: block; font-size: 1.4rem; }

/* SUB HERO */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
/* Dark overlay on top of bg photo — ensures text readability */
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,21,29,.88) 0%, rgba(13,21,29,.70) 60%, rgba(0,102,60,.30) 100%);
  z-index: 0;
}
/* Green accent glow */
.page-hero::after {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0,102,60,.22) 0%, transparent 70%);
  z-index: 0;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; max-width: 900px; position: relative; z-index: 1; font-size: clamp(2rem, 3.5vw, 3rem); }
.page-hero .breadcrumbs { color: #9aa6bc; font-size: .85rem; margin-bottom: 1rem; position: relative; z-index: 1; }
.page-hero .breadcrumbs a { color: var(--gold); }
.page-hero p.lede { font-size: 1.15rem; max-width: 820px; color: #cdd4e0; margin-top: 1rem; position: relative; z-index: 1; }

/* TRUST BAR */
.trust-bar { background: var(--navy); color: #fff; padding: 16px 0; font-size: .92rem; }
.trust-bar-inner { display: flex; justify-content: center; flex-wrap: wrap; gap: 1.25rem 2.4rem; text-align: center; align-items: center; }
.trust-bar-inner span { display: inline-flex; align-items: center; gap: .4rem; }
.trust-bar .star { color: var(--amber); }

/* SECTIONS */
section { padding: 80px 0; }
section.tight { padding: 56px 0; }
.section-head { text-align: center; max-width: 860px; margin: 0 auto 3rem; }
.section-head .eyebrow { color: var(--green); font-size: .85rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; display: block; margin-bottom: .8rem; }
.section-head p { color: var(--muted); font-size: 1.08rem; }

/* AEO answer block */
.aeo-answer { background: var(--off-white); border-left: 4px solid var(--green); padding: 22px 26px; border-radius: 8px; margin: 0 0 2rem; font-size: 1.05rem; color: var(--charcoal); }
.aeo-answer p { color: var(--charcoal); }
.aeo-answer a { color: var(--green); }
.aeo-answer strong { color: var(--navy); }

/* SERVICES GRID */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.service-card { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 28px 24px; transition: all .25s ease; text-align: left; position: relative; overflow: hidden; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--green); }
.service-card .icon-wrap { width: 64px; height: 64px; border-radius: 12px; background: linear-gradient(135deg, var(--cream) 0%, #fff 100%); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; border: 1px solid var(--gray-200); }
.service-card .icon-wrap img { width: 40px; height: 40px; object-fit: contain; }
.service-card h3 { font-size: 1.2rem; }
.service-card p { color: var(--muted); font-size: .95rem; margin-bottom: 1rem; }
.service-card .read-more { font-weight: 700; color: var(--green); font-size: .9rem; display: inline-flex; align-items: center; gap: .35rem; }
.service-card a.card-link { position: absolute; inset: 0; text-indent: -9999px; }

/* TYPE CARDS (sub-types in hub pages) */
.type-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; }
.type-card { background: #fff; border: 1px solid var(--gray-200); border-radius: 12px; overflow: hidden; transition: all .25s ease; display: block; color: inherit; text-decoration: none; }
.type-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--green); color: inherit; }
.type-card .thumb { aspect-ratio: 4 / 3; background: var(--gray-100); overflow: hidden; }
.type-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.type-card .body { padding: 18px 20px; }
.type-card h3 { font-size: 1.05rem; margin-bottom: .25rem; }
.type-card p { color: var(--muted); font-size: .88rem; margin: 0; }
.type-card .arrow { display: inline-block; margin-top: .6rem; color: var(--green); font-weight: 700; font-size: .85rem; }

/* WHY US */
.why-us { background: var(--cream); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.why-item { background: #fff; padding: 28px; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); }
.why-item .num { font-size: 2.2rem; font-weight: 800; color: var(--green); font-family: var(--font-display); line-height: 1; }
.why-item h4 { font-size: 1.05rem; margin: .6rem 0 .4rem; }
.why-item p { color: var(--muted); font-size: .92rem; margin: 0; }

/* SPLIT SECTION */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: 4rem; align-items: center; }
.split.reverse > div:first-child { order: 2; }
.split img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
@media (max-width: 860px) { .split, .split.reverse { grid-template-columns: 1fr; gap: 2rem; } .split.reverse > div:first-child { order: 0; } }

/* AREAS */
.areas-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 12px; }
.area-pill { background: #fff; border: 1px solid var(--gray-200); border-radius: 100px; padding: 12px 18px; text-align: center; font-weight: 600; color: var(--navy); transition: all .2s ease; font-size: .92rem; }
.area-pill:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

/* REVIEWS */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.review-card { background: #fff; padding: 28px; border-radius: var(--radius-lg); border: 1px solid var(--gray-200); }
.review-stars { color: var(--amber); margin-bottom: .8rem; font-size: 1.1rem; }
.review-card p { font-style: italic; color: var(--gray-800); }
.review-card .author { display: block; margin-top: 1rem; font-weight: 700; color: var(--navy); font-style: normal; font-size: .9rem; }

/* CTA BANNER */
.cta-banner { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 50%, #0a1322 100%); color: #fff; padding: 80px 0; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 20% 30%, rgba(0,102,60,.18) 0%, transparent 50%); }
.cta-banner h2 { color: #fff; max-width: 860px; margin: 0 auto 1rem; position: relative; }
.cta-banner p { color: #cdd4e0; max-width: 720px; margin: 0 auto 2rem; font-size: 1.1rem; position: relative; }
.cta-banner .btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }

/* FAQ */
.faq { max-width: 960px; margin: 0 auto; }
.faq-item { background: #fff; border: 1px solid var(--gray-200); border-radius: 10px; margin-bottom: 12px; overflow: hidden; }
.faq-item summary { padding: 18px 22px; cursor: pointer; font-weight: 700; color: var(--navy); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-size: 1.02rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.4rem; color: var(--green); font-weight: 400; transition: transform .2s ease; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .answer { padding: 0 22px 22px; color: var(--gray-600); }

/* PROSE */
.prose { max-width: 940px; margin: 0 auto; }
.prose-wide { max-width: 100%; }
.container

.prose h2 { margin-top: 2.5rem; }
.prose h3 { margin-top: 1.6rem; }
.prose ul, .prose ol { margin-bottom: 1.2rem; }
.prose img { margin: 1.5rem 0; border-radius: 10px; }

/* GALLERY */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 12px; }
.gallery-grid img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 10px; cursor: pointer; transition: transform .25s ease; }
.gallery-grid img:hover { transform: scale(1.02); }

/* FORMS */
.form-card { background: #fff; padding: 36px; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); border: 1px solid var(--gray-200); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-weight: 600; color: var(--navy); margin-bottom: .35rem; font-size: .92rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--gray-200); border-radius: 8px; font: inherit; background: #fff; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: 2px solid var(--green); border-color: var(--green); }

/* CONTACT INFO */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: flex-start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info { background: var(--cream); padding: 32px; border-radius: var(--radius-lg); }
.contact-info dl { display: grid; gap: 1rem; }
.contact-info dt { font-weight: 700; color: var(--navy); font-size: .85rem; text-transform: uppercase; letter-spacing: .06em; }
.contact-info dd { margin: .2rem 0 0; font-size: 1.05rem; }

/* FOOTER */
.site-footer { background: var(--navy); color: #cdd4e0; padding: 64px 0 28px; font-size: .92rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 3rem; margin-bottom: 3rem; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-col h5 { color: #fff; font-size: .95rem; margin-bottom: 1rem; letter-spacing: .04em; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: .5rem; }
.footer-col a { color: #cdd4e0; }
.footer-col a:hover { color: var(--amber); }
.footer-logo { height: 56px; width: auto; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.footer-bio { color: #9aa6bc; line-height: 1.7; margin-bottom: 1rem; }
.footer-contact { color: #cdd4e0; line-height: 1.8; }
.footer-contact strong { color: #fff; }
.socials { display: flex; gap: .8rem; margin-top: 1rem; }
.socials a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.06); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: .9rem; border: 1px solid rgba(255,255,255,.08); }
.socials a:hover { background: var(--green); border-color: var(--green); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; color: #7a85a0; font-size: .85rem; }
.footer-bottom a { color: #9aa6bc; }

/* MISC */
.bg-light { background: var(--gray-100); }
.bg-cream { background: var(--cream); }
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
.divider { height: 1px; background: var(--gray-200); margin: 3rem 0; border: 0; }

.pill-list { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.pill-list li { background: var(--gray-100); padding: 6px 14px; border-radius: 100px; font-size: .88rem; font-weight: 600; color: var(--navy); }

.iframe-wrap { background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.map-wrap iframe { width: 100%; height: 380px; border: 0; border-radius: var(--radius-lg); }

/* Responsive */
@media (max-width: 600px) {
  section { padding: 56px 0; }
  .hero { min-height: 520px; }
  .hero-inner { padding: 64px 0; }
}


/* ═══════════════════════════════════════════════════════════════
   MEGA FOOTER — full column layout
═══════════════════════════════════════════════════════════════ */
.mega-footer { background: var(--navy); color: #cdd4e0; font-size: .92rem; }
.mega-footer-cta { background: linear-gradient(135deg, var(--green) 0%, var(--navy) 100%); padding: 48px 0; text-align: center; }
.mega-footer-cta h2 { color: #fff; font-size: 2rem; margin-bottom: .75rem; }
.mega-footer-cta p { color: rgba(255,255,255,.85); max-width: 680px; margin: 0 auto 1.5rem; font-size: 1.05rem; }
.mega-footer-cta .cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.mega-footer-body { padding: 56px 0 32px; }
.mega-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 1100px) { .mega-footer-grid { grid-template-columns: 1fr 1fr 1fr; } }
@media (max-width: 680px) { .mega-footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 440px) { .mega-footer-grid { grid-template-columns: 1fr; } }
.mf-col h5 { color: #fff; font-size: .88rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: .9rem; padding-bottom: .5rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.mf-col ul { list-style: none; padding: 0; margin: 0; }
.mf-col li { margin-bottom: .45rem; }
.mf-col a { color: #9aa6bc; font-size: .88rem; transition: color .2s; }
.mf-col a:hover { color: var(--gold); }
.mf-col .footer-logo { height: 52px; width: auto; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.mf-col .footer-bio { color: #9aa6bc; line-height: 1.7; font-size: .88rem; margin-bottom: 1rem; }
.mf-col .footer-nap { line-height: 1.9; color: #9aa6bc; font-size: .88rem; }
.mf-col .footer-nap strong { color: #fff; }
.mf-col .footer-nap a { color: #cdd4e0; }
.mf-col .footer-nap a:hover { color: var(--gold); }
.mf-col .socials { display: flex; gap: .7rem; margin-top: 1rem; }
.mf-col .socials a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.06); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: .85rem; border: 1px solid rgba(255,255,255,.08); text-indent: 0; }
.mf-col .socials a:hover { background: var(--green); border-color: var(--green); color: #fff; }
.mega-footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; color: #7a85a0; font-size: .82rem; }
.mega-footer-bottom a { color: #9aa6bc; }
.mega-footer-bottom a:hover { color: var(--gold); }

/* ═══════════════════════════════════════════════════════════════
   MEGA MENU ENHANCEMENTS
═══════════════════════════════════════════════════════════════ */
.mega-menu-wide { min-width: 900px; }
.mega-cta-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--green-2) 100%);
  border-radius: var(--radius-lg);
  padding: 20px;
  color: #fff;
}
.mega-cta-card h5 { color: #fff; font-size: .95rem; margin-bottom: .5rem; }
.mega-cta-card p { color: rgba(255,255,255,.8); font-size: .85rem; margin-bottom: 1rem; }
.mega-cta-card .btn { width: 100%; justify-content: center; }
.nav-service-preview { display: flex; align-items: center; gap: .75rem; padding: 8px 0; }
.nav-service-preview img { width: 42px; height: 42px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.nav-service-preview-text strong { display: block; font-size: .88rem; color: var(--navy); }
.nav-service-preview-text span { font-size: .8rem; color: var(--muted); }
.nav-service-preview:hover .nav-service-preview-text strong { color: var(--green); }


/* ═══════════════════════════════════════════════════════════════
   MEGA MENU — hover bridge (JS adds .mega-open class with delay)
   Prevents menu closing when pointer moves trigger → panel
═══════════════════════════════════════════════════════════════ */
.has-mega.mega-open .mega-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-grid-4 { grid-template-columns: repeat(4, 1fr); }
.mega-bottom-bar {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid #eef0f4;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
}
.mega-bottom-bar a { font-size: .88rem; color: var(--navy); font-weight: 500; }
.mega-bottom-bar a:hover { color: var(--green); }
.mega-bottom-bar .see-all { font-weight: 700; color: var(--green); }

/* Nav trigger is an <a> so it navigates + opens dropdown */
.primary-nav > ul > li > a.nav-trigger {
  background: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: .88rem;
  font-weight: 600;
  color: var(--navy);
  padding: 20px 2px;
  display: inline-flex;
  align-items: center;
  gap: .2rem;
  text-decoration: none;
  white-space: nowrap;
}
.primary-nav > ul > li > a.nav-trigger:hover { color: var(--green); }

/* Mega menu: viewport-safe positioning */
.mega-menu {
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  /* Prevent horizontal overflow at smaller widths */
  max-width: calc(100vw - 32px);
}
@media (max-width: 1200px) {
  .mega-menu-wide { min-width: min(900px, calc(100vw - 32px)); }
}
@media (max-width: 1024px) {
  .mega-grid-4 { grid-template-columns: repeat(2, 1fr); }
}


/* HEADER CTA BUTTON — tighter, no text wrap, rounded not full pill */
.header-cta .btn-primary {
  padding: 10px 18px;
  font-size: .85rem;
  border-radius: 8px;
  white-space: nowrap;
  letter-spacing: 0;
}
.header-cta .phone-cta .icon {
  width: 32px;
  height: 32px;
  font-size: .85rem;
  flex-shrink: 0;
}

/* MEGA MENU CTA CARD — white CTA on dark bg, plain text secondary */
.mega-cta-card {
  background: linear-gradient(160deg, #0a3d24 0%, #0D151D 100%);
  border-radius: 12px;
  padding: 18px 16px;
  color: #fff;
}
.mega-cta-card h5 {
  font-size: .92rem;
  font-weight: 700;
  margin-bottom: .3rem;
  color: #fff;
}
.mega-cta-card p {
  font-size: .78rem;
  color: rgba(255,255,255,.68);
  margin-bottom: .9rem;
  line-height: 1.5;
}
/* PRIMARY: solid white button — maximum contrast on dark card */
.mega-cta-card .btn-cta-primary {
  display: block;
  width: 100%;
  padding: 11px 14px;
  background: #fff;
  color: var(--navy);
  border: none;
  border-radius: 8px;
  font-size: .84rem;
  font-weight: 700;
  font-family: var(--font-display);
  text-align: center;
  text-decoration: none;
  transition: background .15s, color .15s;
  cursor: pointer;
}
.mega-cta-card .btn-cta-primary:hover {
  background: var(--gold);
  color: var(--navy);
}
/* SECONDARY: plain text link — no box, no border */
.mega-cta-card .btn-cta-secondary {
  display: block;
  width: 100%;
  margin-top: .65rem;
  padding: 0;
  background: none;
  border: none;
  color: rgba(255,255,255,.60);
  font-size: .78rem;
  font-weight: 600;
  font-family: var(--font-display);
  text-align: center;
  text-decoration: none;
  transition: color .15s;
  cursor: pointer;
}
.mega-cta-card .btn-cta-secondary:hover { color: #fff; }
.mega-cta-card .card-trust {
  margin-top: .8rem;
  padding-top: .7rem;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .72rem;
  color: rgba(255,255,255,.45);
  line-height: 1.8;
}


/* MEGA MENU — secondary action button (outline on dark bg) */
.btn-mega-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 9px 14px;
  margin-top: .5rem;
  border-radius: 8px;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.88);
  font-size: .82rem;
  font-weight: 600;
  font-family: var(--font-display);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.2);
  transition: background .15s, border-color .15s;
  white-space: nowrap;
}
.btn-mega-secondary:hover {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.4);
  color: #fff;
}

/* MEGA MENU — text link style */
.btn-mega-link {
  display: block;
  margin-top: .6rem;
  font-size: .8rem;
  font-weight: 700;
  color: rgba(255,255,255,.7);
  text-decoration: none;
  transition: color .15s;
}
.btn-mega-link:hover { color: #fff; }

/* ═══════════════════════════════════════════════════════════════
   RESOURCE PAGE LAYOUT — article + sidebar design
═══════════════════════════════════════════════════════════════ */

/* Two-column layout: article + sticky sidebar */
.resource-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
  padding: 56px 0 72px;
}
@media (max-width: 1024px) {
  .resource-layout { grid-template-columns: 1fr; }
  .resource-sidebar { display: none; }
}

/* Article body */
.resource-article h2 {
  font-size: 1.6rem;
  color: var(--navy);
  margin: 2.5rem 0 .75rem;
  padding-top: 2rem;
  border-top: 2px solid var(--gray-100);
}
.resource-article h2:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.resource-article h3 {
  font-size: 1.15rem;
  color: var(--navy);
  margin: 1.75rem 0 .5rem;
}
.resource-article p { margin-bottom: 1.1rem; line-height: 1.75; color: var(--body-text); }
.resource-article ul, .resource-article ol { margin: 0 0 1.25rem 1.5rem; }
.resource-article li { margin-bottom: .45rem; line-height: 1.7; color: var(--body-text); }

/* AEO answer box — styled as a feature card */
.resource-article .aeo-answer {
  background: var(--navy);
  color: #fff !important;
  border-left: 4px solid var(--gold);
  padding: 1.25rem 1.5rem;
  border-radius: 0 8px 8px 0;
  margin-bottom: 2rem;
  font-size: 1.05rem;
  line-height: 1.7;
}
.resource-article .aeo-answer * { color: #fff !important; }
.resource-article .aeo-answer strong { color: var(--gold) !important; }

/* Callout / tip boxes */
.resource-callout {
  display: flex;
  gap: 1rem;
  background: #f0faf5;
  border: 1px solid rgba(0,102,60,.2);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  margin: 1.75rem 0;
}
.resource-callout .callout-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: .1rem;
}
.resource-callout p { margin: 0; color: var(--navy); font-size: .97rem; }
.resource-callout.warning { background: #fff8e1; border-color: rgba(235,176,23,.4); }
.resource-callout.warning p { color: #7a5a00; }

/* Stat highlight row */
.resource-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}
@media (max-width: 640px) { .resource-stats { grid-template-columns: 1fr 1fr; } }
.resource-stat-card {
  background: var(--navy);
  color: #fff;
  border-radius: 10px;
  padding: 1.25rem;
  text-align: center;
}
.resource-stat-card .stat-num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .25rem;
}
.resource-stat-card .stat-label {
  font-size: .82rem;
  color: #9aa6bc;
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* Checklist / step boxes */
.resource-steps {
  counter-reset: steps;
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
}
.resource-steps li {
  counter-increment: steps;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 1.25rem;
  background: var(--off-white);
  border-radius: 8px;
  margin-bottom: .75rem;
  border-left: 3px solid var(--green);
}
.resource-steps li::before {
  content: counter(steps);
  background: var(--green);
  color: #fff;
  font-weight: 700;
  font-size: .85rem;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Pull quote */
.resource-pullquote {
  border-left: 4px solid var(--gold);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: var(--off-white);
  border-radius: 0 8px 8px 0;
}
.resource-pullquote p {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--navy);
  margin: 0;
  font-weight: 500;
}

/* Section divider with eyebrow */
.resource-section-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2.5rem 0 1.5rem;
}
.resource-section-divider::before,
.resource-section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gray-200);
}
.resource-section-divider span {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--green);
  white-space: nowrap;
}

/* ── STICKY SIDEBAR ── */
.resource-sidebar {
  position: sticky;
  top: 90px;
}
.sidebar-toc {
  background: var(--navy);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.sidebar-toc h4 {
  color: var(--gold);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 1rem;
}
.sidebar-toc ol {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: toc;
}
.sidebar-toc li {
  counter-increment: toc;
  display: flex;
  gap: .6rem;
  align-items: baseline;
  margin-bottom: .6rem;
}
.sidebar-toc li::before {
  content: counter(toc);
  color: var(--gold);
  font-size: .75rem;
  font-weight: 700;
  flex-shrink: 0;
}
.sidebar-toc a {
  color: #9aa6bc;
  font-size: .88rem;
  line-height: 1.4;
  transition: color .2s;
}
.sidebar-toc a:hover { color: #fff; }

.sidebar-cta-card {
  background: linear-gradient(135deg, var(--green) 0%, var(--navy) 100%);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
}
.sidebar-cta-card h4 { color: #fff; font-size: 1rem; margin-bottom: .5rem; }
.sidebar-cta-card p { color: rgba(255,255,255,.8); font-size: .88rem; margin-bottom: 1rem; }
.sidebar-cta-card .btn { display: block; margin-bottom: .5rem; }

.sidebar-fact-box {
  background: var(--off-white);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin-top: 1.5rem;
  border: 1px solid var(--gray-200);
}
.sidebar-fact-box h4 {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--green);
  margin-bottom: .75rem;
}
.sidebar-fact-box ul { list-style: none; padding: 0; margin: 0; }
.sidebar-fact-box li {
  font-size: .88rem;
  color: var(--body-text);
  padding: .4rem 0;
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.sidebar-fact-box li:last-child { border-bottom: none; }
.sidebar-fact-box li::before { content: '✓'; color: var(--green); font-weight: 700; }

/* ═══════════════════════════════════════════════════════════════
   RESOURCE PAGE ADDITIONS
═══════════════════════════════════════════════════════════════ */

/* Resource section wrapper — full-width section with proper bg */
.resource-section { background: #fff; }
.resource-section .container { max-width: var(--container); margin: 0 auto; padding: 0 2rem; }

/* Gold button variant for sidebar CTA */
.btn-gold { background: var(--gold); color: var(--navy); border-color: var(--gold); font-weight: 800; }
.btn-gold:hover { background: #d4a012; border-color: #d4a012; color: var(--navy); transform: translateY(-1px); }

/* Sidebar button spacing */
.sidebar-cta-card .btn { display: block; text-align: center; margin-bottom: .65rem; }
.sidebar-cta-card .btn:last-child { margin-bottom: 0; }

/* ═══════════════════════════════════════════════════════
   BLOG POST CONTENT  (added Round 4 — 2026-05-31)
   ═══════════════════════════════════════════════════════ */
.blog-post-content { background: #fff; }
.blog-post-content .container { max-width: 820px; padding: 56px 24px; }
.blog-post-content h2 { font-size: 1.5rem; color: var(--navy); margin: 2.5rem 0 .85rem; line-height: 1.3; }
.blog-post-content h3 { font-size: 1.18rem; color: var(--navy); margin: 1.75rem 0 .6rem; }
.blog-post-content p  { color: var(--body-text); line-height: 1.78; margin-bottom: 1.1rem; }
.blog-post-content ul,
.blog-post-content ol  { margin: 0 0 1.25rem 1.4rem; }
.blog-post-content li  { color: var(--body-text); line-height: 1.7; margin-bottom: .4rem; }
.blog-post-content a   { color: var(--green); }
.blog-post-content a:hover { text-decoration: underline; }
.blog-post-content details summary { cursor: pointer; font-weight: 600; color: var(--navy); }

/* Quick Answer inside blog post */
.blog-post-content .aeo-answer {
  background: var(--off-white);
  border-left: 4px solid var(--green);
  border-radius: 8px;
  padding: 22px 26px;
  margin: 0 0 2rem;
  font-size: 1.03rem;
  color: var(--charcoal);
}
.blog-post-content .aeo-answer .aeo-label {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: .65rem;
}
.blog-post-content .aeo-answer p { color: var(--charcoal); margin-bottom: .5rem; }
.blog-post-content .aeo-answer strong { color: var(--navy); }
.blog-post-content .aeo-answer a { color: var(--green); }

/* Blog pagination */
.blog-pagination {
  display: flex; gap: .45rem; flex-wrap: wrap;
  justify-content: center; padding: 2rem 0 2.5rem;
}
.blog-pagination a,
.blog-pagination span {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 40px; height: 40px; padding: 0 12px;
  border-radius: 8px; font-weight: 600; font-size: .9rem;
  border: 1px solid var(--gray-200); text-decoration: none;
  color: var(--navy); background: #fff; transition: all .2s;
}
.blog-pagination a:hover { background: var(--green); color: #fff; border-color: var(--green); }
.blog-pagination .current { background: var(--green); color: #fff; border-color: var(--green); }
.blog-pagination .dots   { border: none; background: none; color: var(--muted); cursor: default; }

/* ── aeo-answer: ALWAYS light background on service/fence pages ──
   resource-pages.css sets dark bg — override it here with !important
   for all contexts EXCEPT .resource-article (handled separately)     */
.rp-section .aeo-answer,
.rp-white .aeo-answer,
.rp-light .aeo-answer,
.rp-offwhite .aeo-answer,
section .aeo-answer {
  background: var(--off-white) !important;
  color: var(--charcoal) !important;
  border-left: 4px solid var(--green) !important;
  box-shadow: none !important;
}
.rp-section .aeo-answer p,
.rp-white .aeo-answer p,
section .aeo-answer p,
.rp-section .aeo-answer *,
section .aeo-answer * {
  color: var(--charcoal) !important;
}
.rp-section .aeo-answer .aeo-label,
section .aeo-answer .aeo-label {
  color: var(--green) !important;
}
.rp-section .aeo-answer strong,
section .aeo-answer strong {
  color: var(--navy) !important;
}
.rp-section .aeo-answer a,
section .aeo-answer a {
  color: var(--green) !important;
}
/* Also fix the ::before pseudo-element that resource-pages adds */
.rp-section .aeo-answer::before,
section .aeo-answer::before {
  color: var(--green) !important;
}
