/* ── Big South Land & Tree — site styles ─────────────────────────────── */
:root {
  --green-950: #0d2013;
  --green-900: #143020;
  --green-800: #1c422c;
  --green-700: #275a3b;
  --green-600: #33734c;
  --gold: #c99a4e;
  --gold-light: #e0b878;
  --orange: #e8641b;
  --orange-dark: #cc5410;
  --cream: #f6f3ec;
  --white: #ffffff;
  --ink: #1f2a22;
  --muted: #5b6b5e;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(13, 32, 19, 0.12);
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
a { color: var(--green-700); text-decoration: none; }
a:hover { color: var(--orange); }
ul { list-style: none; }
.container { width: min(1180px, 92%); margin: 0 auto; }

h1, h2, h3, .display {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
  color: var(--green-900);
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); font-weight: 700; }
h3 { font-size: 1.35rem; font-weight: 600; }

.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--orange);
  color: #fff; padding: 10px 16px; z-index: 200;
}
.skip-link:focus { left: 0; }

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 1.05rem;
  padding: 13px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  cursor: pointer;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,.2); }
.btn-lg { padding: 16px 36px; font-size: 1.15rem; }
.btn-orange { background: var(--orange); color: #fff; }
.btn-orange:hover { background: var(--orange-dark); color: #fff; }
.btn-gold { background: var(--gold); color: var(--green-950); }
.btn-gold:hover { background: var(--gold-light); color: var(--green-950); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn-ghost:hover { background: rgba(255,255,255,.12); color: #fff; }
.btn-green { background: var(--green-800); color: #fff; }
.btn-green:hover { background: var(--green-700); color: #fff; }

/* Topbar */
.topbar { background: var(--green-950); color: #cfd8cf; font-size: .82rem; }
.topbar a { color: var(--gold-light); }
.topbar a:hover { color: #fff; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; padding: 7px 0; gap: 12px; flex-wrap: wrap; }
.topbar-left, .topbar-right { display: flex; gap: 20px; align-items: center; }
.topbar-item { display: inline-flex; align-items: center; gap: 6px; }

/* Header */
.site-header {
  background: var(--green-900);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 14px rgba(0,0,0,.25);
}
.header-inner { display: flex; align-items: center; gap: 28px; padding: 12px 0; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { border-radius: 50%; background: #fff; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 1.55rem; color: #fff; text-transform: uppercase; letter-spacing: .04em; }
.brand-sub { font-family: var(--font-display); font-weight: 500; font-size: .95rem; color: var(--gold-light); text-transform: uppercase; letter-spacing: .14em; }

.main-nav { margin-left: auto; }
.main-nav > ul { display: flex; align-items: center; gap: 4px; }
.main-nav a, .nav-drop-btn {
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
  letter-spacing: .05em; font-size: 1.02rem; color: #e9efe9;
  padding: 10px 13px; border-radius: 8px; background: none; border: none;
  display: inline-flex; align-items: center; gap: 5px; cursor: pointer;
}
.main-nav a:hover, .nav-drop-btn:hover { color: var(--gold-light); background: rgba(255,255,255,.06); }
.nav-cta a { color: #fff; padding: 11px 22px; }
.nav-cta a:hover { color: #fff; background: var(--orange-dark); }

.has-dropdown { position: relative; }
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%) translateY(8px);
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow);
  display: flex; gap: 8px; padding: 18px;
  opacity: 0; visibility: hidden; transition: all .18s ease;
  min-width: 640px;
}
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown,
.has-dropdown.open .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown-group { min-width: 190px; }
.dropdown-label {
  display: block; font-family: var(--font-display); text-transform: uppercase;
  font-weight: 700; letter-spacing: .1em; font-size: .82rem; color: var(--gold);
  padding: 6px 10px 4px; border-bottom: 2px solid var(--cream); margin-bottom: 4px;
}
.dropdown a {
  display: block; color: var(--green-900); font-size: .92rem; padding: 7px 10px;
  font-family: var(--font-body); font-weight: 500; text-transform: none; letter-spacing: 0;
  border-radius: 7px;
}
.dropdown a:hover { background: var(--cream); color: var(--orange); }

.header-phone {
  display: flex; align-items: center; gap: 10px; color: #fff; white-space: nowrap;
  font-family: var(--font-display); font-weight: 700; font-size: 1.25rem;
}
.header-phone svg { color: var(--gold); }
.header-phone small { display: block; font-family: var(--font-body); font-weight: 500; font-size: .68rem; color: var(--gold-light); text-transform: uppercase; letter-spacing: .1em; }
.header-phone:hover { color: var(--gold-light); }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 26px; height: 3px; background: #fff; margin: 5px 0; border-radius: 2px; transition: all .2s; }

/* Hero */
.hero {
  position: relative;
  min-height: 86vh;
  display: flex; align-items: center;
  background: var(--green-950);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url("/assets/img/photos/hero.jpg") center 35% / cover no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(10, 26, 15, .92) 0%, rgba(10, 26, 15, .72) 38%, rgba(10, 26, 15, .18) 75%, rgba(10, 26, 15, .35) 100%),
    linear-gradient(to top, rgba(10, 26, 15, .85) 0%, transparent 30%);
}
.hero-content { position: relative; z-index: 2; padding: 90px 0; max-width: 700px; }
.hero-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .22em;
  font-weight: 600; color: var(--gold-light); font-size: .95rem; margin-bottom: 14px;
}
.hero-kicker::before { content: ""; width: 42px; height: 2px; background: var(--gold); }
.hero h1 { color: #fff; margin-bottom: 18px; }
.hero h1 em { font-style: normal; color: var(--gold-light); }
.hero-sub { color: #dfe7df; font-size: clamp(1.05rem, 1.8vw, 1.3rem); margin-bottom: 30px; max-width: 540px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 14px; }
.hero-note { color: #b9c8ba; font-size: .85rem; letter-spacing: .04em; }
.hero-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 34px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(4px);
  color: #fff; padding: 8px 16px; border-radius: 999px;
  font-size: .85rem; font-weight: 600;
}
.hero-badge svg { color: var(--gold-light); flex: none; }

/* Trust strip */
.trust-strip { background: var(--cream); padding: 26px 0; border-bottom: 1px solid #e7e1d3; }
.trust-strip-inner { display: flex; align-items: center; justify-content: center; gap: clamp(20px, 5vw, 64px); flex-wrap: wrap; }
.trust-strip img { height: 74px; width: auto; filter: none; }
.trust-strip .trust-label { text-align: center; font-family: var(--font-display); text-transform: uppercase; letter-spacing: .18em; color: var(--muted); font-size: .8rem; width: 100%; margin-bottom: 4px; }

/* Sections */
.section { padding: clamp(56px, 8vw, 96px) 0; }
.section-dark { background: var(--green-900); }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-cream { background: var(--cream); }
.section-head { max-width: 760px; margin: 0 auto 48px; text-align: center; }
.section-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .22em;
  font-weight: 600; color: var(--orange); font-size: .9rem; margin-bottom: 10px;
}
.section-head p { color: var(--muted); margin-top: 14px; }
.section-dark .section-head p { color: #b9c8ba; }

/* Service cards */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 22px; }
.service-card {
  background: var(--green-800);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 30px 26px;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  position: relative;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 18px 36px rgba(0,0,0,.35); border-color: var(--gold); }
.service-card img { width: 62px; height: 62px; object-fit: contain; }
.service-card h3 { color: #fff; font-size: 1.3rem; }
.service-card p { color: #b9c8ba; font-size: .92rem; flex: 1; }
.service-card .card-link {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .08em;
  font-weight: 600; color: var(--gold-light); display: inline-flex; align-items: center; gap: 6px;
}
.service-card .card-link::after { content: "→"; transition: transform .15s; }
.service-card:hover .card-link::after { transform: translateX(4px); }
.service-card > a.stretch { position: absolute; inset: 0; border-radius: var(--radius); }

/* Certifications */
.cert-flex { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.cert-badges { display: flex; flex-wrap: wrap; gap: 22px; align-items: center; justify-content: center; }
.cert-badges img { height: 96px; width: auto; }
.cert-badges .badge-card { background: #fff; border-radius: var(--radius); padding: 16px 20px; box-shadow: var(--shadow); }
.cert-list { margin: 18px 0 26px; }
.cert-list li { display: flex; gap: 12px; align-items: flex-start; padding: 7px 0; font-weight: 500; }
.cert-list li svg { color: var(--orange); flex: none; margin-top: 4px; }

/* Industries */
.industry-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.industry-card {
  position: relative; border-radius: var(--radius); overflow: hidden; min-height: 380px;
  display: flex; align-items: flex-end;
  box-shadow: var(--shadow);
}
.industry-card .bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .4s ease; }
.industry-card:hover .bg { transform: scale(1.06); }
.industry-card .shade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,26,15,.93) 15%, rgba(10,26,15,.25) 60%, rgba(10,26,15,.1)); }
.industry-body { position: relative; padding: 26px; color: #dfe7df; }
.industry-body h3 { color: #fff; display: flex; align-items: center; gap: 10px; margin-bottom: 8px; font-size: 1.5rem; }
.industry-body img { width: 40px; height: 40px; object-fit: contain; }
.industry-body p { font-size: .92rem; }

/* Projects / gallery */
.projects-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
.project-tile {
  border-radius: var(--radius); overflow: hidden; position: relative; aspect-ratio: 4 / 3;
  cursor: pointer; box-shadow: var(--shadow); border: 0; padding: 0; background: var(--green-900);
}
.project-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.project-tile:hover img { transform: scale(1.07); }
.project-tile::after {
  content: "+"; position: absolute; right: 12px; bottom: 10px;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(232, 100, 27, .92); color: #fff; font-size: 22px; line-height: 34px; text-align: center;
  opacity: 0; transition: opacity .2s;
}
.project-tile:hover::after { opacity: 1; }
.center-cta { text-align: center; margin-top: 40px; }

/* Financing band */
.financing-band { background: linear-gradient(115deg, var(--green-800), var(--green-700)); color: #fff; }
.financing-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; padding: 42px 0; }
.financing-inner h2 { color: #fff; font-size: clamp(1.5rem, 2.6vw, 2.1rem); }
.financing-inner p { color: #cfdccf; max-width: 560px; }

/* Reviews */
.reviews-summary { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.reviews-summary .score { font-family: var(--font-display); font-weight: 700; font-size: 2rem; color: var(--green-900); text-transform: uppercase; }
.stars { color: #f5a623; font-size: 1.35rem; letter-spacing: 3px; }
.reviews-summary .count { color: var(--muted); font-size: .95rem; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 22px; }
.review-card {
  background: #fff; border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 12px; border-top: 4px solid var(--gold);
}
.review-card .stars { font-size: 1rem; }
.review-card p { font-size: .93rem; color: var(--ink); flex: 1; }
.review-card footer { display: flex; align-items: center; gap: 10px; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%; background: var(--green-700); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1.1rem;
}
.review-card cite { font-style: normal; font-weight: 600; font-size: .92rem; }
.review-card .src { font-size: .75rem; color: var(--muted); display: block; }
.reviews-more { text-align: center; margin-top: 34px; }

/* Service areas */
.areas-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 10px; margin-top: 10px; }
.areas-grid a {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  color: #dfe7df; padding: 10px 14px; border-radius: 9px; font-size: .9rem; font-weight: 500;
  transition: all .15s ease;
}
.areas-grid a:hover { background: var(--gold); color: var(--green-950); border-color: var(--gold); }
.areas-grid a svg { flex: none; color: var(--gold-light); }
.areas-grid a:hover svg { color: var(--green-950); }

/* CTA band above footer */
.cta-band {
  background:
    linear-gradient(rgba(10, 26, 15, .88), rgba(10, 26, 15, .88)),
    url("/assets/img/photos/img-5798.jpg") center / cover no-repeat fixed;
  color: #fff;
}
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; padding: clamp(48px, 7vw, 84px) 0; }
.cta-band h2 { color: #fff; margin-bottom: 10px; }
.cta-band p { color: #cfdccf; max-width: 560px; }
.cta-band-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Footer */
.site-footer { background: var(--green-950); color: #a9b8aa; font-size: .92rem; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 40px;
  padding: 64px 0 44px;
}
.footer-col h3 { color: var(--gold-light); font-size: 1.05rem; letter-spacing: .12em; margin-bottom: 14px; }
.footer-col h3 + p { margin-bottom: 16px; }
.footer-col ul li { padding: 3px 0; }
.footer-col a { color: #a9b8aa; }
.footer-col a:hover { color: var(--gold-light); }
.footer-about img { border-radius: 50%; background: #fff; margin-bottom: 16px; }
.footer-about p { margin-bottom: 18px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { color: var(--gold-light); }
.footer-social a:hover { color: #fff; }
.footer-contact li { font-weight: 500; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 18px 0; font-size: .82rem; }

/* Page hero (interior pages) */
.page-hero {
  position: relative; background: var(--green-950); color: #fff;
  padding: clamp(60px, 8vw, 110px) 0;
  overflow: hidden;
}
.page-hero .bg { position: absolute; inset: 0; background-size: cover; background-position: center 30%; opacity: .35; }
.page-hero .shade { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(10,26,15,.9), rgba(10,26,15,.35)); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; margin-bottom: 10px; }
.page-hero .lede { color: #cfdccf; max-width: 640px; font-size: 1.08rem; }
.breadcrumbs { font-size: .85rem; color: var(--gold-light); margin-bottom: 16px; text-transform: uppercase; letter-spacing: .1em; font-family: var(--font-display); font-weight: 600; }
.breadcrumbs a { color: #cfdccf; }
.breadcrumbs a:hover { color: #fff; }

/* Service detail layout */
.service-layout { display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start; }
.service-content .service-photo { border-radius: var(--radius); box-shadow: var(--shadow); margin-bottom: 30px; width: 100%; max-height: 460px; object-fit: cover; }
.service-content h3 { margin: 28px 0 10px; color: var(--green-800); }
.service-content p { margin-bottom: 16px; }
.service-content ul { list-style: none; margin: 0 0 16px; }
.service-content ul li { padding: 5px 0 5px 28px; position: relative; }
.service-content ul li::before {
  content: ""; position: absolute; left: 4px; top: 13px;
  width: 9px; height: 9px; border-radius: 2px; background: var(--gold); transform: rotate(45deg);
}
.sidebar { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 24px; }
.sidebar-card { background: var(--cream); border-radius: var(--radius); padding: 26px; }
.sidebar-card.dark { background: var(--green-900); color: #dfe7df; }
.sidebar-card.dark h3 { color: #fff; }
.sidebar-card h3 { margin-bottom: 14px; }
.sidebar-services li { border-bottom: 1px solid #e4ddcc; }
.sidebar-services li:last-child { border-bottom: none; }
.sidebar-services a { display: block; padding: 9px 2px; font-weight: 500; font-size: .93rem; }
.sidebar-services a.active { color: var(--orange); font-weight: 700; }
.sidebar-cta-phone { font-family: var(--font-display); font-size: 1.7rem; font-weight: 700; color: var(--gold-light); display: block; margin: 8px 0 16px; }

/* FAQ */
.faq-wrap { max-width: 860px; margin: 0 auto; }
.faq-item {
  background: #fff; border-radius: 12px; box-shadow: var(--shadow);
  margin-bottom: 14px; overflow: hidden; border-left: 4px solid var(--gold);
}
.faq-item summary {
  cursor: pointer; list-style: none; padding: 18px 52px 18px 22px;
  font-weight: 600; font-size: 1.02rem; position: relative; color: var(--green-900);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; color: var(--orange); transition: transform .2s;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item .faq-a { padding: 0 22px 20px; color: var(--ink); }
.faq-item .faq-a p { margin-bottom: 12px; }
.faq-item .faq-a ul { margin: 0 0 12px 22px; list-style: disc; }

/* Prose (legal pages) */
.prose { max-width: 860px; margin: 0 auto; }
.prose h2 { margin: 34px 0 12px; font-size: 1.6rem; }
.prose h3 { margin: 26px 0 10px; }
.prose p { margin-bottom: 14px; }
.prose ul { margin: 0 0 14px 24px; list-style: disc; }
.prose a { text-decoration: underline; }

/* Gallery page */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 14px; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; background: rgba(8, 16, 10, .93); z-index: 300;
  display: none; align-items: center; justify-content: center; flex-direction: column; gap: 14px;
  padding: 4vh 4vw;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 84vh; border-radius: 10px; box-shadow: 0 20px 60px rgba(0,0,0,.6); object-fit: contain; }
.lightbox-btn {
  position: absolute; background: rgba(255,255,255,.12); color: #fff; border: none;
  width: 48px; height: 48px; border-radius: 50%; font-size: 26px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: background .15s;
}
.lightbox-btn:hover { background: var(--orange); }
.lb-close { top: 20px; right: 20px; }
.lb-prev { left: 16px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 16px; top: 50%; transform: translateY(-50%); }
.lb-count { color: #cfdccf; font-size: .9rem; }

/* About page */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.about-grid .photo { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; object-fit: cover; max-height: 520px; }
.about-block h2 { margin-bottom: 14px; }
.about-block p { margin-bottom: 14px; }

/* Embeds */
.embed-wrap { max-width: 900px; margin: 0 auto; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: clamp(16px, 3vw, 40px); }

/* Contact info cards */
.contact-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin-bottom: 48px; }
.contact-card { background: var(--cream); border-radius: var(--radius); padding: 26px; text-align: center; }
.contact-card svg { color: var(--orange); margin: 0 auto 10px; }
.contact-card h3 { font-size: 1.1rem; margin-bottom: 6px; }
.contact-card a { font-weight: 600; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* Responsive */
@media (max-width: 1100px) {
  .header-phone { display: none; }
}
@media (max-width: 960px) {
  .nav-toggle { display: block; margin-left: auto; }
  .main-nav {
    position: fixed; top: 0; right: -320px; width: 300px; height: 100vh;
    background: var(--green-950); margin: 0; padding: 84px 24px 24px;
    transition: right .25s ease; overflow-y: auto; z-index: 90;
    box-shadow: -10px 0 30px rgba(0,0,0,.4);
  }
  .main-nav.open { right: 0; }
  .main-nav > ul { flex-direction: column; align-items: stretch; gap: 2px; }
  .main-nav a, .nav-drop-btn { width: 100%; justify-content: space-between; display: flex; }
  .dropdown {
    position: static; transform: none; min-width: 0; flex-direction: column;
    opacity: 1; visibility: visible; display: none; box-shadow: none; background: rgba(255,255,255,.05);
    padding: 8px;
  }
  .has-dropdown.open .dropdown { display: flex; }
  .dropdown a { color: #dfe7df; }
  .dropdown a:hover { background: rgba(255,255,255,.08); color: var(--gold-light); }
  .dropdown-label { color: var(--gold); border-color: rgba(255,255,255,.1); }
  .nav-cta { margin-top: 12px; }
  .service-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .cert-flex, .about-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-band { background-attachment: scroll; }
}
@media (max-width: 640px) {
  .hide-sm { display: none !important; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero { min-height: 72vh; }
  .hero-actions .btn { width: 100%; }
  .topbar-inner { justify-content: center; }
  .brand img { width: 64px; height: 64px; }
}
