/* ============================================================
   TAMPA STUMPS — DESIGN SYSTEM
   Edit :root variables for brand colors and fonts
   ============================================================ */

:root {
  /* Brand Colors */
  --dark:       #0f1f0f;
  --dark-2:     #1a2e1a;
  --dark-3:     #243324;
  --green:      #2d7a2d;
  --green-light:#3a9a3a;
  --gold:       #e8a800;
  --gold-light: #f5c842;
  --white:      #ffffff;
  --off-white:  #f8f6f0;
  --gray-light: #e8e4dc;
  --gray:       #8a8a8a;
  --text:       #1a1a1a;
  --text-light: #555555;

  /* Typography */
  --font-display: 'Oswald', Impact, sans-serif;
  --font-body:    'Open Sans', system-ui, sans-serif;

  /* Spacing */
  --section-gap: 5rem;
  --card-radius: 12px;
  --btn-radius:  6px;

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(0,0,0,.08);
  --shadow-md:  0 4px 20px rgba(0,0,0,.12);
  --shadow-lg:  0 8px 40px rgba(0,0,0,.18);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); font-size: 16px; color: var(--text); background: var(--white); line-height: 1.65; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); text-decoration: none; transition: color .2s; }
a:hover { color: var(--green-light); }
ul { list-style: none; }
input, select, textarea, button { font-family: inherit; font-size: inherit; }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; } }

/* ── Container ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.5rem; border-radius: var(--btn-radius);
  font-family: var(--font-display); font-size: 1rem; letter-spacing: .03em;
  font-weight: 600; text-transform: uppercase; cursor: pointer;
  border: 2px solid transparent; transition: all .2s; min-height: 48px;
  white-space: nowrap;
}
.btn-phone { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.btn-phone:hover { background: var(--gold-light); color: var(--dark); border-color: var(--gold-light); }
.btn-quote { background: var(--green); color: var(--white); border-color: var(--green); }
.btn-quote:hover { background: var(--green-light); color: var(--white); border-color: var(--green-light); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--dark); }
.btn-submit { background: var(--gold); color: var(--dark); border-color: var(--gold); width: 100%; justify-content: center; font-size: 1.1rem; padding: 1rem; }
.btn-submit:hover { background: var(--gold-light); }
.btn-full { width: 100%; justify-content: center; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.2rem; }

/* ── Header ── */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--dark); border-bottom: 3px solid var(--gold);
  box-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.header-inner {
  display: flex; align-items: center; gap: 1.5rem;
  padding-top: .75rem; padding-bottom: .75rem;
}
.site-logo { flex-shrink: 0; }
.site-logo img { height: 54px; width: auto; background: #ffffff; border-radius: 6px; padding: 4px 8px; }

/* Desktop Nav */
.desktop-nav { flex: 1; display: none; }
@media (min-width: 900px) { .desktop-nav { display: flex; align-items: center; } }
.nav-list { display: flex; align-items: center; gap: .25rem; }
.nav-list > li > a {
  color: var(--white); font-family: var(--font-display); font-size: .95rem;
  letter-spacing: .04em; text-transform: uppercase; padding: .5rem .75rem;
  border-radius: 4px; transition: color .2s, background .2s;
}
.nav-list > li > a:hover { color: var(--gold); }
.caret { font-size: .7em; margin-left: .2rem; }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--dark-2); border: 1px solid var(--dark-3);
  border-top: 3px solid var(--gold); border-radius: 0 0 8px 8px;
  min-width: 220px; padding: .5rem 0; box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .2s, transform .2s, visibility .2s; z-index: 200;
}
.has-dropdown.open > .dropdown,
.has-dropdown:focus-within > .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown li a {
  display: block; color: var(--off-white); padding: .6rem 1.25rem;
  font-size: .9rem; transition: background .15s, color .15s;
}
.dropdown li a:hover { background: var(--dark-3); color: var(--gold); }

/* Header CTA */
.header-cta { display: none; gap: .75rem; flex-shrink: 0; }
@media (min-width: 900px) { .header-cta { display: flex; align-items: center; } }

/* Hamburger */
.hamburger {
  display: flex; flex-direction: column; gap: 5px; background: none;
  border: none; cursor: pointer; padding: .5rem; margin-left: auto;
}
@media (min-width: 900px) { .hamburger { display: none; } }
.hamburger span { display: block; width: 26px; height: 3px; background: var(--white); border-radius: 2px; transition: all .25s; }

/* ── Mobile Drawer ── */
.drawer-overlay {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,.55); z-index: 1100;
}
.mobile-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(320px, 90vw);
  background: var(--dark); transform: translateX(100%); z-index: 1200;
  overflow-y: auto; transition: transform .3s ease; padding: 1.5rem 1.25rem 6rem;
}
.drawer-close {
  background: none; border: none; color: var(--white); font-size: 1.5rem;
  cursor: pointer; display: block; margin-left: auto; margin-bottom: 1rem; padding: .25rem;
}
.drawer-list > li { border-bottom: 1px solid var(--dark-3); }
.drawer-list > li > a,
.drawer-toggle {
  display: flex; align-items: center; justify-content: space-between;
  color: var(--white); font-family: var(--font-display); font-size: 1.05rem;
  letter-spacing: .04em; text-transform: uppercase; padding: .9rem 0;
  background: none; border: none; width: 100%; cursor: pointer;
}
.drawer-toggle:hover { color: var(--gold); }
.drawer-sub {
  max-height: 0; overflow: hidden; transition: max-height .3s ease;
  padding-left: 1rem;
}
.drawer-sub li a { display: block; color: var(--gray); font-size: .9rem; padding: .5rem 0; }
.drawer-sub li a:hover { color: var(--gold); }
.drawer-cta { padding: 1.25rem 0; display: flex; flex-direction: column; gap: .75rem; }

/* ── Hero ── */
.hero {
  position: relative; min-height: 85vh; display: flex; align-items: center;
  overflow: hidden; background: var(--dark);
}
.hero-bg {
  position: absolute; inset: 0; object-fit: cover; width: 100%; height: 100%;
  opacity: .45;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,31,15,.85) 0%, rgba(15,31,15,.5) 100%);
}
.hero-content {
  position: relative; z-index: 2; padding: 5rem 0 4rem;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--gold); color: var(--dark);
  font-family: var(--font-display); font-size: .85rem; letter-spacing: .08em;
  text-transform: uppercase; padding: .35rem .9rem; border-radius: 20px;
  margin-bottom: 1.25rem;
}
.hero h1 {
  font-family: var(--font-display); font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--white); line-height: 1.05; text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.hero h1 .accent { color: var(--gold); }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem); color: rgba(255,255,255,.85);
  max-width: 580px; margin-bottom: 2rem; line-height: 1.6;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.25rem; margin-top: 2.5rem; }
.hero-trust-item {
  display: flex; align-items: center; gap: .4rem;
  color: rgba(255,255,255,.8); font-size: .9rem;
}
.hero-trust-item svg { fill: var(--gold); }

/* ── Section headers ── */
.section-tag {
  display: inline-block; background: var(--gold); color: var(--dark);
  font-family: var(--font-display); font-size: .8rem; letter-spacing: .1em;
  text-transform: uppercase; padding: .3rem .9rem; border-radius: 20px;
  margin-bottom: .75rem;
}
.section-title {
  font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.8rem);
  text-transform: uppercase; line-height: 1.1; margin-bottom: 1rem;
}
.section-title .accent { color: var(--green); }
.section-subtitle { color: var(--text-light); font-size: 1.05rem; max-width: 600px; }
.section-header { text-align: center; margin-bottom: 3rem; }

/* ── Services Grid ── */
.services-section { padding: var(--section-gap) 0; background: var(--off-white); }
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem;
}
.service-card {
  background: var(--white); border-radius: var(--card-radius);
  box-shadow: var(--shadow-sm); overflow: hidden;
  transition: transform .2s, box-shadow .2s; display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-card-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.service-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.service-card-body h3 { font-family: var(--font-display); font-size: 1.3rem; text-transform: uppercase; margin-bottom: .6rem; }
.service-card-body p { color: var(--text-light); font-size: .95rem; flex: 1; }
.service-card-link { display: inline-flex; align-items: center; gap: .3rem; color: var(--green); font-weight: 600; margin-top: 1rem; font-size: .95rem; }
.service-card-link:hover { color: var(--gold); }

/* ── Process Steps ── */
.process-section { padding: var(--section-gap) 0; background: var(--dark); }
.process-section .section-title { color: var(--white); }
.process-section .section-subtitle { color: rgba(255,255,255,.7); margin: 0 auto; }
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; margin-top: 3rem; }
.step { text-align: center; }
.step-number {
  width: 64px; height: 64px; border-radius: 50%; background: var(--gold);
  color: var(--dark); font-family: var(--font-display); font-size: 1.6rem;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem;
}
.step h3 { font-family: var(--font-display); color: var(--white); text-transform: uppercase; font-size: 1.1rem; margin-bottom: .5rem; }
.step p { color: rgba(255,255,255,.65); font-size: .9rem; }

/* ── Why Us ── */
.why-section { padding: var(--section-gap) 0; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
@media (max-width: 768px) { .why-grid { grid-template-columns: 1fr; gap: 2rem; } }
.why-image { border-radius: var(--card-radius); overflow: hidden; }
.why-image img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.why-features { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 1.5rem; }
.why-feature { display: flex; gap: 1rem; }
.why-icon { width: 44px; height: 44px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.why-icon svg { fill: var(--dark); }
.why-feature h4 { font-family: var(--font-display); text-transform: uppercase; font-size: 1rem; margin-bottom: .3rem; }
.why-feature p { font-size: .9rem; color: var(--text-light); }

/* ── Stats Band ── */
.stats-band { background: var(--green); padding: 3rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 2rem; text-align: center; }
.stat-number { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4rem); color: var(--white); line-height: 1; }
.stat-label { color: rgba(255,255,255,.8); font-size: .9rem; margin-top: .25rem; }

/* ── Testimonials ── */
.testimonials-section { padding: var(--section-gap) 0; background: var(--off-white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.testimonial-card { background: var(--white); border-radius: var(--card-radius); padding: 1.75rem; box-shadow: var(--shadow-sm); position: relative; }
.testimonial-card::before { content: '"'; font-family: Georgia, serif; font-size: 5rem; color: var(--gold); opacity: .2; position: absolute; top: -1rem; left: 1.25rem; line-height: 1; }
.stars { color: var(--gold); font-size: 1.1rem; margin-bottom: .75rem; }
.testimonial-card p { color: var(--text); font-size: .95rem; font-style: italic; line-height: 1.65; }
.testimonial-author { margin-top: 1rem; }
.testimonial-author strong { font-size: .9rem; display: block; }
.testimonial-source { font-size: .8rem; color: var(--gray); text-transform: uppercase; letter-spacing: .05em; }

/* ── Before/After ── */
.before-after-section { padding: var(--section-gap) 0; }
.before-after-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
@media (max-width: 600px) { .before-after-grid { grid-template-columns: 1fr; } }
.ba-card { border-radius: var(--card-radius); overflow: hidden; position: relative; }
.ba-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.ba-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.75) 0%, transparent 100%);
  color: var(--white); font-family: var(--font-display); font-size: 1rem;
  text-transform: uppercase; padding: 1.5rem 1rem .75rem; letter-spacing: .05em;
}

/* ── Service Area Map Visual ── */
.area-section { padding: var(--section-gap) 0; background: var(--dark); }
.area-section .section-title { color: var(--white); }
.area-section .section-subtitle { color: rgba(255,255,255,.7); margin: 0 auto; }
.area-chips { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; margin-top: 2rem; }
.area-chip {
  background: var(--dark-2); color: var(--white); border: 1px solid var(--dark-3);
  padding: .5rem 1.25rem; border-radius: 24px; font-size: .9rem;
  transition: background .2s, border-color .2s;
}
.area-chip:hover { background: var(--green); border-color: var(--green); color: var(--white); }

/* ── FAQ ── */
.faq-section { padding: var(--section-gap) 0; }
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: .75rem; }
.faq-item { border: 1px solid var(--gray-light); border-radius: var(--card-radius); overflow: hidden; }
.faq-question {
  background: none; border: none; width: 100%; text-align: left; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.1rem 1.25rem; font-size: 1rem; font-weight: 600; color: var(--text);
  transition: background .15s;
}
.faq-question:hover { background: var(--off-white); }
.faq-icon { font-size: 1.3rem; color: var(--green); transition: transform .25s; flex-shrink: 0; margin-left: 1rem; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-answer-inner { padding: 0 1.25rem 1.25rem; color: var(--text-light); font-size: .95rem; line-height: 1.7; }

/* ── CTA Band ── */
.cta-band { background: var(--dark); padding: 5rem 0; text-align: center; }
.cta-band h2 { font-family: var(--font-display); color: var(--white); font-size: clamp(2rem, 4vw, 3.2rem); text-transform: uppercase; margin-bottom: 1rem; }
.cta-band h2 .accent { color: var(--gold); }
.cta-band p { color: rgba(255,255,255,.75); font-size: 1.1rem; margin-bottom: 2rem; max-width: 540px; margin-left: auto; margin-right: auto; }
.cta-phone-big {
  display: inline-block; font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--gold); letter-spacing: .03em; margin: .5rem 0 1.5rem;
}
.cta-btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ── Quote Form Section ── */
.quote-form-section { padding: var(--section-gap) 0; background: var(--off-white); }
.quote-form-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
@media (max-width: 768px) { .quote-form-wrap { grid-template-columns: 1fr; gap: 2rem; } }
.quote-form-left h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.5rem); text-transform: uppercase; margin-bottom: .75rem; }
.quote-form-left p { color: var(--text-light); margin-bottom: 1.25rem; }
.form-trust-list { display: flex; flex-direction: column; gap: .5rem; }
.form-trust-list li { display: flex; align-items: center; gap: .5rem; color: var(--green); font-size: .95rem; font-weight: 600; }
.form-or-call { margin-top: 1.25rem; font-size: .95rem; }
.phone-link { color: var(--green); font-weight: 700; font-size: 1.05rem; }
.quote-form { background: var(--white); padding: 2rem; border-radius: var(--card-radius); box-shadow: var(--shadow-md); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.form-group label { font-size: .85rem; font-weight: 600; color: var(--text); text-transform: uppercase; letter-spacing: .03em; }
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--gray-light); border-radius: 6px;
  padding: .7rem .9rem; font-size: .95rem; color: var(--text);
  transition: border-color .2s; background: var(--white);
  min-height: 44px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--green); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success { background: #d4edda; color: #155724; border-radius: 6px; padding: 1rem; margin-top: 1rem; font-size: .95rem; }
.form-error { background: #f8d7da; color: #721c24; border-radius: 6px; padding: 1rem; margin-top: 1rem; font-size: .95rem; }

/* ── Sticky Call Bar ── */
.sticky-call-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 900;
  display: flex; background: var(--dark); border-top: 3px solid var(--gold);
  box-shadow: 0 -4px 16px rgba(0,0,0,.3);
}
@media (min-width: 900px) { .sticky-call-bar { display: none; } }
.sticky-call-btn {
  flex: 3; display: flex; align-items: center; justify-content: center; gap: .5rem;
  background: var(--gold); color: var(--dark);
  font-family: var(--font-display); font-size: .9rem; letter-spacing: .05em;
  padding: .9rem .5rem; text-transform: uppercase; min-height: 56px;
}
.sticky-call-btn:hover { background: var(--gold-light); color: var(--dark); }
.sticky-quote-btn {
  flex: 1; display: flex; align-items: center; justify-content: center;
  background: var(--green); color: var(--white);
  font-family: var(--font-display); font-size: .9rem; letter-spacing: .05em;
  padding: .9rem .5rem; text-transform: uppercase;
}
.sticky-quote-btn:hover { background: var(--green-light); color: var(--white); }

/* ── Footer ── */
.site-footer { background: var(--dark-2); color: rgba(255,255,255,.7); padding: 4rem 0 0; border-top: 3px solid var(--gold); }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; }
@media (max-width: 900px) { .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 520px) { .footer-inner { grid-template-columns: 1fr; } }
.footer-brand img { margin-bottom: 1rem; background: #ffffff; border-radius: 6px; padding: 4px 8px; }
.footer-tagline { font-size: .9rem; margin-bottom: .75rem; line-height: 1.5; }
.footer-phone a { color: var(--gold); font-family: var(--font-display); font-size: 1.3rem; }
.footer-hours { font-size: .85rem; margin-top: .75rem; line-height: 1.8; }
.footer-col h3 { font-family: var(--font-display); color: var(--white); text-transform: uppercase; font-size: .95rem; letter-spacing: .06em; margin-bottom: .75rem; padding-bottom: .5rem; border-bottom: 1px solid var(--dark-3); }
.footer-col ul { display: flex; flex-direction: column; gap: .4rem; }
.footer-col ul a { color: rgba(255,255,255,.6); font-size: .88rem; transition: color .2s; }
.footer-col ul a:hover { color: var(--gold); }
.footer-social { display: flex; gap: .75rem; margin-top: .5rem; }
.footer-social a { color: rgba(255,255,255,.6); transition: color .2s; }
.footer-social a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--dark-3); padding: 1.25rem 0;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem;
  font-size: .8rem; color: rgba(255,255,255,.4); margin-top: 3rem;
}
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--gold); }

/* Body padding to avoid sticky bar overlap on mobile */
@media (max-width: 900px) { body { padding-bottom: 56px; } }

/* ── Breadcrumbs ── */
.breadcrumbs { background: var(--off-white); border-bottom: 1px solid var(--gray-light); padding: .6rem 0; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: .25rem; align-items: center; font-size: .85rem; }
.breadcrumbs li { display: flex; align-items: center; gap: .25rem; color: var(--text-light); }
.breadcrumbs li + li::before { content: '/'; color: var(--gray); }
.breadcrumbs a { color: var(--green); }

/* ── Page Hero (sub-pages) ── */
.page-hero {
  background: var(--dark); padding: 4rem 0 3rem; position: relative; overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; object-fit: cover; width: 100%; height: 100%; opacity: .25; }
.page-hero-overlay { position: absolute; inset: 0; background: rgba(15,31,15,.7); }
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { font-family: var(--font-display); color: var(--white); font-size: clamp(2rem, 5vw, 3.5rem); text-transform: uppercase; margin-bottom: .75rem; }
.page-hero h1 .accent { color: var(--gold); }
.page-hero p { color: rgba(255,255,255,.8); font-size: 1.05rem; max-width: 560px; }

/* ── Content sections ── */
.content-section { padding: var(--section-gap) 0; }
.content-section h2 { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.2rem); text-transform: uppercase; margin-bottom: .75rem; }
.content-section h3 { font-family: var(--font-display); font-size: 1.25rem; text-transform: uppercase; margin: 1.5rem 0 .5rem; color: var(--green); }
.content-section p { color: var(--text-light); margin-bottom: 1rem; line-height: 1.75; }
.content-section ul.check-list { display: flex; flex-direction: column; gap: .5rem; margin: 1rem 0 1.5rem; }
.check-list li { display: flex; gap: .6rem; align-items: flex-start; color: var(--text-light); font-size: .95rem; }
.check-list li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: .1rem; }

/* Two-column content layout */
.content-with-sidebar { display: grid; grid-template-columns: 1fr 380px; gap: 4rem; align-items: start; }
@media (max-width: 900px) { .content-with-sidebar { grid-template-columns: 1fr; } }
.content-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.sidebar-card { background: var(--off-white); border-radius: var(--card-radius); padding: 1.5rem; border-left: 4px solid var(--gold); }
.sidebar-card h3 { font-family: var(--font-display); text-transform: uppercase; margin-bottom: .75rem; font-size: 1.1rem; }

/* ── Blog Cards ── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.blog-card { background: var(--white); border-radius: var(--card-radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.blog-card-body { padding: 1.5rem; }
.blog-meta { font-size: .8rem; color: var(--gray); text-transform: uppercase; letter-spacing: .04em; margin-bottom: .5rem; }
.blog-card h3 { font-family: var(--font-display); font-size: 1.2rem; text-transform: uppercase; margin-bottom: .5rem; }
.blog-card p { color: var(--text-light); font-size: .9rem; margin-bottom: 1rem; }
.blog-read-more { color: var(--green); font-weight: 600; font-size: .9rem; }

/* ── Animate on scroll ── */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity .5s ease, transform .5s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── Image pairs ── */
.image-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 2rem 0; }
@media (max-width: 600px) { .image-pair { grid-template-columns: 1fr; } }
.image-pair img { border-radius: var(--card-radius); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.image-single { margin: 2rem 0; border-radius: var(--card-radius); overflow: hidden; }
.image-single img { width: 100%; max-height: 480px; object-fit: cover; }

/* ── Areas index grid ── */
.area-cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; }
.area-card {
  background: var(--white); border-radius: var(--card-radius); padding: 1.5rem;
  text-align: center; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-light);
  transition: border-color .2s, box-shadow .2s;
}
.area-card:hover { border-color: var(--green); box-shadow: var(--shadow-md); }
.area-card h3 { font-family: var(--font-display); font-size: 1.1rem; text-transform: uppercase; margin-bottom: .5rem; }
.area-card p { font-size: .85rem; color: var(--text-light); margin-bottom: .75rem; }
.area-card a { color: var(--green); font-weight: 600; font-size: .9rem; }

/* ── Ticker / trust band ── */
.trust-ticker { background: var(--gold); padding: .65rem 0; overflow: hidden; }
.ticker-inner { display: flex; gap: 3rem; white-space: nowrap; animation: ticker 24s linear infinite; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker-item { font-family: var(--font-display); font-size: .9rem; text-transform: uppercase; letter-spacing: .05em; color: var(--dark); display: flex; align-items: center; gap: .5rem; }

/* ── Blog Post Styles ────────────────────────────────── */
.blog-post-section { background: var(--light); }
.blog-layout { display: grid; grid-template-columns: 1fr 320px; gap: 3rem; align-items: start; }
@media(max-width:900px){ .blog-layout { grid-template-columns: 1fr; } }

.blog-content { background: #fff; border-radius: 12px; padding: 2.5rem; box-shadow: 0 2px 16px rgba(0,0,0,.06); }
.blog-meta-top { display:flex; gap:1rem; margin-bottom:.75rem; }
.blog-cat { background: var(--gold); color: #fff; font-size:.75rem; font-weight:700; text-transform:uppercase; letter-spacing:.08em; padding:.25rem .75rem; border-radius:99px; }
.blog-date { color: var(--text-muted); font-size:.875rem; align-self:center; }
.blog-intro { font-size:1.1rem; color: var(--dark-green); font-weight:500; margin-bottom:1.75rem; line-height:1.7; }
.blog-img { width:100%; border-radius:10px; margin:1.5rem 0; object-fit:cover; max-height:400px; }

.info-table-wrap { overflow-x:auto; margin: 1.5rem 0; }
.info-table { width:100%; border-collapse:collapse; font-size:.9rem; }
.info-table th { background: var(--dark-green); color:#fff; padding:.75rem 1rem; text-align:left; font-family:var(--font-display); font-weight:600; }
.info-table td { padding:.65rem 1rem; border-bottom:1px solid #e5e5e5; vertical-align:top; }
.info-table tr:last-child td { border-bottom:none; }
.info-table tr:nth-child(even) td { background: rgba(15,31,15,.03); }

.blog-cta-box { background: var(--dark-green); color:#fff; border-radius:12px; padding:2rem; margin-top:2.5rem; text-align:center; }
.blog-cta-box h3 { color: var(--gold); margin-bottom:.5rem; font-size:1.4rem; }
.blog-cta-box p { color:rgba(255,255,255,.85); margin-bottom:1.25rem; }
.blog-cta-box .btn { margin:.25rem; }

/* Sidebar */
.blog-sidebar { display: flex; flex-direction:column; gap:1.5rem; }
.sidebar-widget { background:#fff; border-radius:12px; padding:1.5rem; box-shadow:0 2px 12px rgba(0,0,0,.06); }
.widget-title { font-family:var(--font-display); font-size:1.1rem; color:var(--dark-green); margin-bottom:1rem; padding-bottom:.5rem; border-bottom:2px solid var(--gold); }
.sidebar-links { list-style:none; padding:0; margin:0; }
.sidebar-links li { border-bottom:1px solid #f0f0f0; }
.sidebar-links li:last-child { border-bottom:none; }
.sidebar-links a { display:block; padding:.6rem 0; color:var(--dark-green); font-size:.9rem; transition:color .2s; }
.sidebar-links a:hover { color:var(--gold); }
.sidebar-cta { background:var(--dark-green); }
.sidebar-cta h3 { color:var(--gold); border-color:rgba(255,255,255,.2); }
.sidebar-cta p { color:rgba(255,255,255,.8); font-size:.9rem; margin-bottom:1rem; }
.btn-block { display:block; width:100%; text-align:center; }
