/*
Theme Name: Easy Dumps AZ
Theme URI: https://easydumpsaz.com
Author: Easy Dumps, LLC
Description: Custom WordPress theme for Easy Dumps AZ — dumpster rental in Scottsdale & Phoenix. Includes templates for Home, Services, Pricing, About, Contact, and FAQ pages.
Version: 1.0
License: Private
Text Domain: easydumps
*/

/* ─────────────────────────────────────────────
   BRAND TOKENS — Edit here to update site-wide
   ───────────────────────────────────────────── */
:root {
  --orange:     #F5821F;
  --orange-lt:  #FEF0E3;
  --orange-dk:  #C4620D;
  --green:      #3AAA35;
  --green-lt:   #E8F7E7;
  --green-dk:   #2D7A29;
  --green-xdk:  #1E541B;
  --black:      #1A1A1A;
  --muted:      #5A5A5A;
  --border:     #E8E8E6;
  --bg:         #F8F8F5;
  --white:      #FFFFFF;
  --radius:     10px;
  --max-width:  1060px;
}

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

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  background: var(--bg);
  color: var(--black);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  line-height: 1.2;
}

a { color: var(--orange); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; height: auto; display: block; }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

ul, ol { padding-left: 1.4em; }
li { margin-bottom: 0.35em; }

/* ─────────────────────────────────────────────
   LAYOUT HELPERS
   ───────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 5%;
}

.section { padding: 64px 0; }
.section-sm { padding: 40px 0; }
.section-lg { padding: 88px 0; }

/* ─────────────────────────────────────────────
   NAVIGATION
   ───────────────────────────────────────────── */
.site-nav {
  background: var(--white);
  border-bottom: 3px solid var(--orange);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 5%;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.35rem;
  color: var(--black);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-brand:hover { text-decoration: none; }

/* Custom logo image in nav */
.nav-brand .custom-logo-link { display: flex; align-items: center; }
.nav-brand .custom-logo { height: 48px; width: auto; display: block; }

.nav-brand .brand-dot {
  width: 10px;
  height: 10px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}

/* WordPress nav menu */
.nav-menu-wrap {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-menu-wrap ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-menu-wrap ul li a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 7px 13px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.nav-menu-wrap ul li a:hover,
.nav-menu-wrap ul li.current-menu-item a {
  background: var(--green-lt);
  color: var(--green-dk);
}

.nav-phone-link {
  color: var(--orange) !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
}

.nav-phone-link:hover {
  background: var(--orange-lt) !important;
  color: var(--orange-dk) !important;
}

.nav-cta-btn {
  background: var(--green);
  color: var(--white) !important;
  font-weight: 700 !important;
  padding: 9px 18px !important;
  border-radius: 7px !important;
  font-size: 0.88rem !important;
  transition: background 0.15s !important;
}

.nav-cta-btn:hover {
  background: var(--green-dk) !important;
  color: var(--white) !important;
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: all 0.2s;
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-menu-wrap {
    display: none;
    position: absolute;
    top: 73px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 2px solid var(--border);
    padding: 16px 5%;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  }

  .nav-menu-wrap.open { display: flex; }

  .nav-menu-wrap ul {
    flex-direction: column;
    width: 100%;
    gap: 2px;
  }

  .nav-menu-wrap ul li a { display: block; width: 100%; }
}

/* ─────────────────────────────────────────────
   HERO (homepage)
   ───────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, #1E5A1B 0%, #2D7A29 40%, #3AAA35 100%);
  color: var(--white);
  padding: 72px 5% 68px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245,130,31,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner { max-width: 720px; margin: 0 auto; position: relative; }

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #A8E8A5;
  margin-bottom: 16px;
  font-family: 'DM Sans', sans-serif;
}

.hero h1 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.12;
  margin-bottom: 20px;
  color: var(--white);
}

.hero h1 em { color: var(--orange); font-style: normal; }

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  margin: 0 auto 28px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 32px;
}

.hero-badge {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 20px;
  padding: 5px 15px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.88);
  font-family: 'DM Sans', sans-serif;
}

.hero-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─────────────────────────────────────────────
   BUTTONS
   ───────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s;
  cursor: pointer;
  border: none;
  font-family: 'DM Sans', sans-serif;
}

.btn:hover { text-decoration: none; transform: translateY(-1px); }

.btn-orange {
  background: var(--orange);
  color: var(--white);
}

.btn-orange:hover { background: var(--orange-dk); color: var(--white); }

.btn-green {
  background: var(--green);
  color: var(--white);
}

.btn-green:hover { background: var(--green-dk); color: var(--white); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}

.btn-sm { padding: 9px 20px; font-size: 0.9rem; }
.btn-lg { padding: 16px 36px; font-size: 1.1rem; }

/* ─────────────────────────────────────────────
   TRUST STRIP
   ───────────────────────────────────────────── */
.trust-strip {
  background: var(--orange);
  padding: 14px 5%;
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}

.trust-item {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: 'DM Sans', sans-serif;
}

.trust-dot {
  width: 8px;
  height: 8px;
  background: rgba(255,255,255,0.6);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ─────────────────────────────────────────────
   PAGE HERO (inner pages)
   ───────────────────────────────────────────── */
.page-hero {
  background: var(--black);
  color: var(--white);
  padding: 52px 5% 48px;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 14px;
}

.page-hero h1 em { color: var(--orange); font-style: normal; }

.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  max-width: 580px;
  margin: 0 auto;
}

/* ─────────────────────────────────────────────
   SECTION HEADINGS
   ───────────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
  font-family: 'DM Sans', sans-serif;
}

.section-label.green { color: var(--green); }

.section-heading {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--black);
  margin-bottom: 12px;
}

.section-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 560px;
}

/* ─────────────────────────────────────────────
   CARDS
   ───────────────────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.15s;
}

.card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.09);
  transform: translateY(-2px);
}

.card.featured { border-color: var(--green); border-width: 2.5px; }

.card-badge {
  background: var(--green);
  color: var(--white);
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 6px;
  font-family: 'DM Sans', sans-serif;
}

.card-badge.orange { background: var(--orange); }

.card-head {
  padding: 24px 26px 18px;
  border-bottom: 1px solid var(--border);
}

.card-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--black);
  font-family: 'DM Sans', sans-serif;
  margin-bottom: 4px;
}

.card-desc { font-size: 0.88rem; color: var(--muted); }

.card-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 16px;
}

.card-price {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  font-family: 'DM Sans', sans-serif;
}

.card-price-sub { font-size: 0.88rem; color: var(--muted); }

.card-body { padding: 20px 26px 24px; }

.card-include {
  background: var(--green-lt);
  border-left: 3px solid var(--green);
  border-radius: 0 6px 6px 0;
  padding: 10px 14px;
  font-size: 0.88rem;
  color: var(--green-dk);
  font-weight: 600;
  margin-bottom: 18px;
}

.card-include strong {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--green);
  margin-bottom: 3px;
  font-weight: 700;
}

.feat-list { list-style: none; padding: 0; }

.feat-list li {
  font-size: 0.92rem;
  color: var(--muted);
  padding: 4px 0;
  display: flex;
  gap: 9px;
  align-items: flex-start;
}

.feat-list li::before {
  content: "✓";
  color: var(--green);
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ─────────────────────────────────────────────
   WHO WE ARE STRIP
   ───────────────────────────────────────────── */
.dark-strip {
  background: var(--black);
  color: var(--white);
  padding: 64px 5%;
}

.dark-strip-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.dark-strip-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
  font-family: 'DM Sans', sans-serif;
}

.dark-strip p { color: rgba(255,255,255,0.82); font-size: 1.05rem; }

@media (max-width: 680px) {
  .dark-strip-inner { grid-template-columns: 1fr; gap: 24px; }
}

/* ─────────────────────────────────────────────
   DIFFERENTIATORS GRID
   ───────────────────────────────────────────── */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}

.diff-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
}

.diff-icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
}

.diff-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
  font-family: 'DM Sans', sans-serif;
}

.diff-body { font-size: 0.9rem; color: var(--muted); line-height: 1.6; }

/* ─────────────────────────────────────────────
   CTA STRIP
   ───────────────────────────────────────────── */
.cta-strip {
  background: linear-gradient(135deg, #1E5A1B, #2D7A29);
  color: var(--white);
  padding: 64px 5%;
  text-align: center;
}

.cta-strip h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--white);
  margin-bottom: 12px;
}

.cta-strip p {
  color: rgba(255,255,255,0.78);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto 28px;
}

.cta-strip-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─────────────────────────────────────────────
   PRICING PAGE — ADD-ON TABLE
   ───────────────────────────────────────────── */
.addons-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
  font-size: 0.92rem;
}

.addons-table th {
  background: var(--black);
  color: var(--white);
  padding: 10px 16px;
  text-align: left;
  font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.addons-table td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
}

.addons-table tr:last-child td { border-bottom: none; }
.addons-table tr:nth-child(even) td { background: var(--bg); }
.addons-table td:first-child { color: var(--black); font-weight: 600; }
.addons-table td .price { color: var(--orange); font-weight: 700; }

/* Inert banner */
.inert-banner {
  background: var(--orange-lt);
  border: 1.5px solid #F5C08A;
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin: 32px 0;
}

.inert-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.inert-title { font-size: 0.95rem; font-weight: 800; color: var(--orange-dk); margin-bottom: 6px; font-family: 'DM Sans', sans-serif; }
.inert-body { font-size: 0.88rem; color: #7A4A10; line-height: 1.55; }
.inert-body p { margin-bottom: 8px; }
.inert-prices { display: flex; gap: 12px; margin-top: 10px; flex-wrap: wrap; }
.inert-price { background: var(--white); border: 1px solid #F5C08A; border-radius: 6px; padding: 6px 14px; font-size: 0.85rem; color: var(--black); }
.inert-price strong { color: var(--orange); font-weight: 700; }

/* ─────────────────────────────────────────────
   FAQ PAGE
   ───────────────────────────────────────────── */
.faq-search-wrap {
  max-width: 520px;
  margin: 28px auto 0;
  position: relative;
}

.faq-search-wrap input {
  width: 100%;
  padding: 13px 16px 13px 44px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--black);
  outline: none;
  transition: border-color 0.15s;
}

.faq-search-wrap input:focus { border-color: var(--orange); }
.faq-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  pointer-events: none;
}

.faq-layout {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 40px;
  align-items: start;
  padding: 52px 5%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.faq-sidebar { position: sticky; top: 90px; }

.faq-sidebar-title {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 10px;
  font-family: 'DM Sans', sans-serif;
}

.faq-sidebar-nav { list-style: none; padding: 0; }

.faq-sidebar-nav li a {
  display: block;
  padding: 7px 12px;
  font-size: 0.88rem;
  color: var(--muted);
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.faq-sidebar-nav li a:hover {
  background: var(--green-lt);
  color: var(--green-dk);
}

@media (max-width: 680px) {
  .faq-layout { grid-template-columns: 1fr; }
  .faq-sidebar { display: none; }
}

.faq-category { margin-bottom: 40px; }

.faq-cat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px 10px 0 0;
  border-bottom: 2px solid var(--orange);
}

.faq-cat-icon { font-size: 1.3rem; }
.faq-cat-title { font-size: 1.05rem; font-weight: 700; color: var(--black); font-family: 'DM Sans', sans-serif; }
.faq-cat-count { margin-left: auto; font-size: 0.78rem; color: var(--muted); background: var(--bg); padding: 2px 10px; border-radius: 10px; font-family: 'DM Sans', sans-serif; }

.faq-item {
  border: 1px solid var(--border);
  border-top: none;
  background: var(--white);
}

.faq-item:last-child { border-radius: 0 0 10px 10px; }

.faq-q {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  cursor: pointer;
  user-select: none;
  transition: background 0.12s;
}

.faq-q:hover { background: var(--bg); }

.faq-toggle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--orange-lt);
  color: var(--orange);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s, transform 0.2s;
  font-family: 'DM Sans', sans-serif;
  line-height: 1;
}

.faq-item.open .faq-toggle { background: var(--orange); color: var(--white); transform: rotate(45deg); }

.faq-q-text { font-size: 0.95rem; font-weight: 600; color: var(--black); font-family: 'DM Sans', sans-serif; }

.faq-a {
  display: none;
  padding: 0 20px 18px 58px;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.65;
}

.faq-item.open .faq-a { display: block; }

.faq-a p { margin-bottom: 10px; }
.faq-a ul { margin: 6px 0 10px; }
.faq-a li { margin-bottom: 4px; }

.faq-tip {
  background: var(--green-lt);
  border-left: 3px solid var(--green);
  border-radius: 0 6px 6px 0;
  padding: 10px 14px;
  font-size: 0.88rem;
  color: var(--green-xdk);
  margin-top: 10px;
}

.faq-warning {
  background: var(--orange-lt);
  border-left: 3px solid var(--orange);
  border-radius: 0 6px 6px 0;
  padding: 10px 14px;
  font-size: 0.88rem;
  color: var(--orange-dk);
  margin-top: 10px;
}

.price-pill {
  background: var(--black);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
}

/* ─────────────────────────────────────────────
   ABOUT PAGE
   ───────────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 680px) {
  .two-col { grid-template-columns: 1fr; gap: 28px; }
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
}

.value-icon { font-size: 2rem; margin-bottom: 14px; }
.value-title { font-size: 1rem; font-weight: 700; margin-bottom: 8px; font-family: 'DM Sans', sans-serif; }
.value-body { font-size: 0.9rem; color: var(--muted); line-height: 1.6; }

/* ─────────────────────────────────────────────
   CONTACT PAGE
   ───────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 720px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-block h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 16px;
  font-family: 'DM Sans', sans-serif;
}

.contact-phone {
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
  font-family: 'DM Sans', sans-serif;
  margin-bottom: 8px;
}

.contact-meta { font-size: 0.9rem; color: var(--muted); line-height: 1.7; }

.contact-form { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }

.contact-form h3 { margin-bottom: 6px; }

.contact-form p { font-size: 0.88rem; color: var(--muted); margin-bottom: 20px; }

.form-group { margin-bottom: 16px; }

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 5px;
  font-family: 'DM Sans', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 13px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-size: 0.93rem;
  font-family: 'DM Sans', sans-serif;
  color: var(--black);
  background: var(--white);
  transition: border-color 0.15s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--orange); }

.form-group textarea { min-height: 100px; resize: vertical; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────── */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,0.5);
  padding: 48px 5% 28px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 28px;
}

@media (max-width: 640px) {
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
}

.footer-brand {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-tagline { font-size: 0.88rem; margin-bottom: 16px; }

.footer-contact a {
  color: var(--orange);
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
}

.footer-heading {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 14px;
  font-family: 'DM Sans', sans-serif;
}

.footer-links { list-style: none; padding: 0; }

.footer-links li { margin-bottom: 6px; }

.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.15s;
}

.footer-links a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.8rem;
}

.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: var(--white); }

/* ─────────────────────────────────────────────
   UTILITIES
   ───────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

.text-orange { color: var(--orange); }
.text-green { color: var(--green); }
.text-muted { color: var(--muted); }

.bg-white { background: var(--white); }
.bg-bg { background: var(--bg); }

.highlight-box {
  background: var(--orange-lt);
  border-left: 3px solid var(--orange);
  border-radius: 0 6px 6px 0;
  padding: 12px 16px;
  font-size: 0.9rem;
}

.highlight-box.green {
  background: var(--green-lt);
  border-color: var(--green);
  color: var(--green-xdk);
}

/* ─────────────────────────────────────────────
   NO-RESULTS (FAQ search)
   ───────────────────────────────────────────── */
#no-results {
  display: none;
  text-align: center;
  padding: 48px 24px;
  color: var(--muted);
}

/* ─────────────────────────────────────────────
   BLOG — Index grid
   ───────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
}
.blog-card:hover { box-shadow: 0 4px 18px rgba(0,0,0,0.09); }

.blog-card-img-link { display: block; }
.blog-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.blog-card-body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-meta {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 8px;
}
.blog-cat-link {
  color: var(--orange);
  text-decoration: none;
  font-weight: 600;
}
.blog-cat-link:hover { text-decoration: underline; }

.blog-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 10px;
  font-family: 'DM Serif Display', serif;
}
.blog-card-title a {
  color: var(--black);
  text-decoration: none;
}
.blog-card-title a:hover { color: var(--orange); }

.blog-card-excerpt {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
  margin: 0;
}

.blog-pagination {
  margin-top: 48px;
  text-align: center;
}
.blog-pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.9rem;
  color: var(--black);
  text-decoration: none;
  background: var(--white);
}
.blog-pagination .page-numbers.current {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  font-weight: 700;
}
.blog-pagination .page-numbers:hover:not(.current) {
  border-color: var(--orange);
  color: var(--orange);
}

/* ─────────────────────────────────────────────
   BLOG — Single post body content
   ───────────────────────────────────────────── */
.post-content {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--black);
}
.post-content h2,
.post-content h3,
.post-content h4 {
  font-family: 'DM Serif Display', serif;
  margin: 2em 0 0.6em;
  line-height: 1.25;
  color: var(--black);
}
.post-content h2 { font-size: 1.7rem; }
.post-content h3 { font-size: 1.35rem; }
.post-content p  { margin: 0 0 1.4em; }
.post-content ul,
.post-content ol {
  padding-left: 1.5em;
  margin: 0 0 1.4em;
}
.post-content li { margin-bottom: 0.4em; }
.post-content a  { color: var(--orange); }
.post-content a:hover { text-decoration: none; }
.post-content img {
  max-width: 100%;
  border-radius: var(--radius);
  margin: 12px 0;
}
.post-content blockquote {
  border-left: 4px solid var(--orange);
  margin: 24px 0;
  padding: 12px 20px;
  background: var(--orange-lt);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--orange-dk);
}
.post-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 0.9rem;
}
.post-content th,
.post-content td {
  border: 1px solid var(--border);
  padding: 10px 14px;
  text-align: left;
}
.post-content th {
  background: var(--bg);
  font-weight: 700;
}

/* ─────────────────────────────────────────────
   RESPONSIVE TWEAKS
   ───────────────────────────────────────────── */
@media (max-width: 480px) {
  .hero { padding: 52px 5% 48px; }
  .section { padding: 48px 0; }
  .btn-lg { padding: 13px 24px; font-size: 1rem; }
  .blog-grid { grid-template-columns: 1fr; }
}
