:root {
  --green: #7abc64;
  --green-dark: #005b03;
  --green-mid: #65bd7d;
  --green-deep: #0b2621;
  --maroon: rgba(191, 1, 49, 0.61);
  --forest: rgba(8, 81, 39, 0.61);
  --tan: #f3d2a7;
  --text: #2d2d2d;
  --text-muted: #6b7280;
  --header-dark: #1a1a1a;
  --bg-light: #f9f9fb;
  --border: #e5e7eb;
  --container: 1248px;
  --radius: 10px;
  --font: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  line-height: 1.65;
  background: #fff;
  overflow-x: hidden;
}
#main { overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-dark); }
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== HEADER ===== */
.site-header { position: sticky; top: 0; z-index: 100; background: #fff; box-shadow: 0 2px 12px rgba(0,0,0,0.12); }
/* Top bar: white background, dark text, centered tagline */
.header-top { background: #fff; color: #1a1a1a; font-size: 0.85rem; }
.header-top-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 40px; gap: 12px;
}
.header-top-spacer { display: none; }
.header-top-tagline {
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  color: #333; font-weight: 500; max-width: 58%;
}
.header-top-right { display: flex; align-items: center; justify-content: flex-end; gap: 16px; flex-shrink: 0; }
.social-links { display: flex; align-items: center; gap: 10px; }
.social-links a {
  color: #1a1a1a; text-decoration: none; display: inline-flex;
  align-items: center; justify-content: center;
  width: 20px; height: 20px; opacity: 0.85;
}
.social-links a:hover { opacity: 1; color: var(--green-dark); }
.header-phone { color: #1a1a1a; font-weight: 700; text-decoration: none; white-space: nowrap; }
.header-phone:hover { color: var(--green-dark); }

/* Main nav: dark-green bar with a large circular logo straddling it */
.header-main { background: #013300; position: relative; }
.header-main-inner {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  min-height: 62px; column-gap: 8px;
}
.logo { grid-column: 2; justify-self: center; display: block; line-height: 0; position: relative; z-index: 3; padding: 0 70px; }
.logo img {
  width: 150px; height: 150px; border-radius: 50%; object-fit: cover;
  display: block; margin: -42px auto -26px; box-shadow: 0 4px 14px rgba(0,0,0,0.35);
}
.main-nav { display: flex; list-style: none; margin: 0; padding: 0; gap: 45px; flex-wrap: wrap; }
.main-nav--left { grid-column: 1; justify-self: end; justify-content: flex-end; }
.main-nav--right { grid-column: 3; justify-self: start; justify-content: flex-start; }
.main-nav a {
  text-decoration: none; color: #fff; font-weight: 600; font-size: 0.95rem;
  text-transform: uppercase; letter-spacing: 0.03em; position: relative; padding: 6px 0;
}
.main-nav a:hover, .main-nav a.active { color: var(--green); }
.main-nav a::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--green); transform: scaleX(0);
  transition: transform 0.2s;
}
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  padding: 8px; flex-direction: column; gap: 4px; grid-column: 1; justify-self: start;
}
.nav-toggle span { display: block; width: 26px; height: 2px; background: #fff; border-radius: 2px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block; padding: 12px 22px; border-radius: var(--radius);
  font-weight: 700; text-decoration: none; border: none; cursor: pointer;
  font-size: 0.95rem; text-align: center; text-transform: uppercase;
  letter-spacing: 0.03em; transition: all 0.2s;
}
.btn-green {
  background: linear-gradient(180deg, var(--green) 0%, #5fa84d 100%);
  color: #fff !important;
}
.btn-green:hover { background: linear-gradient(180deg, #8ed078 0%, var(--green) 100%); }
.btn-primary {
  background: linear-gradient(180deg, var(--green) 0%, #3d7a2e 100%);
  color: #fff !important;
}
.btn-primary:hover { background: linear-gradient(180deg, #7abc64 0%, #2d6b1e 100%); }
.btn-quote {
  background: var(--tan); color: #000 !important; font-size: 1.1rem;
  padding: 16px 28px; border-radius: var(--radius);
}
.btn-quote:hover { background: #e8c48a; }
.btn-block { display: block; width: 100%; font-size: 0.8rem; padding: 10px 8px; line-height: 1.2; }

/* ===== HOME HERO ===== */
.home-hero {
  background-image: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)), var(--hero-bg);
  background-size: cover; background-position: center;
  padding: 30px 0 40px; color: #fff;
}
.home-hero-grid {
  display: grid; grid-template-columns: 1.2fr 0.8fr;
  gap: 28px; align-items: start;
}
.hero-alert { padding: 16px 20px; border-radius: var(--radius); margin-bottom: 16px; font-size: 1rem; }
.hero-alert--news { background: var(--maroon); }
.hero-alert--cta { background: var(--forest); text-align: center; }
.hero-alert-title { margin: 0 0 8px; font-size: 1.5rem; font-weight: 800; text-transform: uppercase; }
.hero-alert-phone { margin: 0; font-size: 1.1rem; }
.hero-alert-phone a { color: #fff; font-weight: 800; text-decoration: none; }
.home-hero-video {
  position: relative; padding-bottom: 56.25%; height: 0;
  border-radius: var(--radius); overflow: hidden; margin-top: 8px; max-width: 700px;
}
.home-hero-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.home-hero-form {
  background: #fff; color: var(--text); border-radius: var(--radius);
  padding: 24px; box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.home-hero-form h3 {
  margin: 0 0 8px; color: var(--green); text-align: center;
  font-size: 1.35rem; text-transform: uppercase;
}
.form-hint { text-align: center; font-size: 0.75rem; color: #b5b5b5; margin: 0 0 16px; }
.hero-estimate-form label { display: block; margin-bottom: 12px; font-weight: 600; font-size: 0.9rem; }
.hero-estimate-form input, .hero-estimate-form textarea {
  display: block; width: 100%; margin: 0 0 12px; padding: 11px 12px;
  border: 1px solid #ddd; border-radius: 6px; font: inherit;
}
.hero-estimate-form textarea { margin-bottom: 14px; }
.hero-estimate-form .btn-green { width: 100%; margin-top: 4px; }

/* ===== HOME INTRO ===== */
.home-intro {
  background: linear-gradient(90deg, #5fa84d 0%, var(--green-dark) 55%, #004d02 100%);
  color: #fff; padding: 32px 0;
}
.home-intro-grid {
  display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center;
}
.home-intro h1 { margin: 0 0 12px; font-size: clamp(1.6rem, 3vw, 2.25rem); line-height: 1.2; }
.home-intro p { margin: 0; font-size: 1.05rem; }
.home-intro-call { text-align: center; }
.home-intro-call h3 { margin: 0 0 8px; font-size: 1.25rem; }
.phone-lg { color: #fff; font-size: 1.5rem; font-weight: 800; text-decoration: none; }

/* ===== HOME SERVICES ===== */
.home-services { background: #fff; overflow: hidden; }
.home-services-banner {
  background-image: var(--services-bg); background-size: cover;
  background-position: center center; padding: 48px 0 56px; position: relative;
}
.home-services-banner::after {
  content: ""; position: absolute; inset: 0;
  background: rgba(0,0,0,0.12); pointer-events: none;
}
.home-services-row {
  position: relative; z-index: 1;
  display: flex; flex-wrap: wrap; align-items: flex-end;
  justify-content: space-between; gap: 28px;
}
.home-services-card {
  flex: 0 1 340px; width: 100%; max-width: 340px;
  background: #fff; padding: 36px 28px; border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25); margin-top: -100px;
}
.home-services-card h3 { margin: 0 0 12px; color: var(--green); text-align: center; text-transform: uppercase; font-size: 1.35rem; }
.home-services-card p { text-align: center; margin: 0 0 20px; color: #262626; font-size: 0.95rem; line-height: 1.5; }
.home-service-tiles { flex: 1 1 520px; display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; align-items: flex-end; }
.service-tile { flex: 0 1 200px; width: 200px; max-width: 100%; text-align: center; }
.service-tile img { border-radius: var(--radius); margin: 0 auto 10px; width: 200px; height: 200px; object-fit: cover; box-shadow: 0 4px 12px rgba(0,0,0,0.2); }

/* ===== HOME ABOUT ===== */
.home-about { padding: 48px 0 56px; background: #fff; }
.home-about-grid {
  display: grid; grid-template-columns: minmax(0,1.15fr) minmax(280px,0.85fr); gap: 48px; align-items: start;
}
.home-about-copy h2 { color: var(--text); margin: 0 0 16px; font-size: 1.75rem; }
.home-about-copy p { margin: 0 0 14px; }
.home-about-copy .btn-green { margin-top: 8px; }
.home-about-images { display: grid; gap: 20px; }
.home-about-images img { border-radius: 6px; width: 100%; height: auto; box-shadow: 0 4px 16px rgba(0,0,0,0.12); }

/* ===== HOME CTA ===== */
.home-cta {
  background-color: var(--green-deep);
  background-image: linear-gradient(360deg, #0b2621 0%, rgba(11,38,33,0) 100%), var(--cta-bg);
  background-size: cover; background-position: center bottom; background-repeat: no-repeat;
  color: #fff; padding: 48px 0;
}
.home-cta-grid { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; }
.home-cta h2 { margin: 0 0 12px; font-size: clamp(1.2rem,2.5vw,1.5rem); text-transform: uppercase; max-width: 720px; }
.home-cta p { margin: 0; max-width: 720px; line-height: 1.6; }
.home-cta .btn-quote { flex-shrink: 0; }

/* ===== INNER PAGES ===== */
.page-hero {
  background: #f7f8fa;
  padding: 36px 0 28px; text-align: center;
  border-bottom: 1px solid #e8e8e8;
}
.page-hero h1 { margin: 0; color: #333; font-size: clamp(1.8rem,3vw,2.4rem); font-weight: 600; }
.content-block { padding: 36px 0; }
.wp-content h2, .wp-content h3 { color: #333; }
.wp-content h2 { font-size: 1.8rem; margin: 30px 0 16px; }
.wp-content h3 { font-size: 1.3rem; margin: 24px 0 12px; }
.wp-content p { line-height: 1.7; color: #444; margin: 0 0 16px; }
.wp-content img { border-radius: 4px; margin: 16px 0; max-width: 100%; height: auto; }

/* ===== AVADA CONTENT SUPPORT ===== */
.avada-content { clear: both; }
.avada-content .fusion-fullwidth { clear: both; position: relative; overflow: visible; }
.avada-content .fusion-flex-container { display: flex; flex-wrap: wrap; }
.avada-content .fusion-builder-row { display: flex; flex-wrap: wrap; width: 100%; max-width: 1248px; margin: 0 auto; }
.avada-content .fusion-layout-column { display: flex; flex-direction: column; min-height: 1px; }
.avada-content .fusion-column-wrapper { display: flex; flex-direction: column; flex: 1; width: 100%; }
.avada-content .fusion_builder_column_1_1 { flex: 0 0 100%; max-width: 100%; }
.avada-content .fusion_builder_column_3_5 { flex: 0 0 60%; max-width: 60%; }
.avada-content .fusion_builder_column_2_5 { flex: 0 0 40%; max-width: 40%; }
.avada-content .fusion_builder_column_1_2 { flex: 0 0 50%; max-width: 50%; }
.avada-content p { margin: 0 0 16px; }
.avada-content .fusion-text p { margin: 0 0 16px; font-size: 16px; }
.avada-content .fusion-title { margin: 0 0 20px; }
.avada-content .fusion-title h2 { font-size: 1.5rem; margin: 0; }
.avada-content .fusion-image-element { display: block; line-height: 0; }
.avada-content .fusion-image-element img { max-width: 100%; height: auto; }
.avada-content .fusion-button-wrapper { display: inline-block; }
.avada-content .fusion-button {
  display: inline-flex; align-items: center; padding: 13px 29px;
  border-radius: 10px; font-weight: 700; text-decoration: none;
  text-transform: uppercase; letter-spacing: 0.03em;
  font-size: 14px; line-height: 17px; cursor: pointer; border: none;
}
.avada-content .fusion-button-text { white-space: nowrap; }
.avada-content .fusion-checklist { list-style: none; padding: 0; margin: 0; }
.avada-content .fusion-li-item { display: flex; align-items: flex-start; margin-bottom: 10px; padding: 0; }
.avada-content .icon-wrapper { flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; width: 27px; height: 27px; margin-right: 11px; }
.avada-content .circle-yes { border-radius: 50%; background: var(--green); color: #fff; }
.avada-content .fusion-li-item-content { flex: 1; line-height: 27px; }
.avada-content .fusion-separator { margin: 20px 0; }
.avada-content .fusion-social-networks { display: flex; gap: 8px; }
.avada-content .fusion-social-networks-wrapper { display: flex; gap: 8px; }
.avada-content .fusion-social-network-icon { text-decoration: none; display: inline-flex; }
.avada-content .fusion-video { max-width: 100%; position: relative; }
.avada-content .video-wrapper { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; }
.avada-content .video-wrapper video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ===== CTA BAND ===== */
.cta-band {
  background: var(--green-deep); color: #fff; padding: 36px 0; text-align: center;
}
.cta-band-inner h2 { margin-top: 0; }
.cta-band-inner p { max-width: 640px; margin: 0 auto 20px; }
.cta-band .btn-primary { margin-top: 8px; }

/* ===== ABOUT PAGE ===== */
.about-page-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; align-items: start; }
.about-page-copy h2 { color: #333; margin: 24px 0 16px; }
.about-page-copy p { margin: 0 0 14px; line-height: 1.7; color: #444; }
.about-page-image img { width: 100%; border-radius: 6px; box-shadow: 0 4px 16px rgba(0,0,0,0.12); }

/* ===== SERVICES PAGE ===== */
.services-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.services-two-col p { margin: 0 0 14px; line-height: 1.7; }
.service-gallery {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px; margin-top: 24px;
}
.service-gallery img { width: 100%; height: 200px; object-fit: cover; border-radius: 6px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }

/* ===== PROJECTS PAGE ===== */
.project-gallery {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-top: 36px;
}
.project-thumb { display: block; overflow: hidden; border-radius: 6px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
.project-thumb img {
  width: 100%; height: 220px; object-fit: cover;
  transition: transform 0.3s; border-radius: 6px;
}
.project-thumb:hover img { transform: scale(1.05); }

/* ===== CONTACT PAGE ===== */
.contact-page-section { padding: 50px 0; }
.contact-page-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-checklist { list-style: none; padding: 0; margin: 0 0 20px; }
.contact-checklist li { padding: 6px 0 6px 36px; position: relative; line-height: 1.5; min-height: 30px; }
.contact-icon-circle {
  position: absolute; left: 0; top: 6px; width: 26px; height: 26px;
  border-radius: 50%; background: var(--green); display: flex;
  align-items: center; justify-content: center;
}
.contact-checklist a { color: var(--green-dark); text-decoration: none; font-weight:600 }
.contact-checklist a:hover { text-decoration: underline; }
.contact-social-icons { display: flex; gap: 8px; }
.contact-social-icons a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 4px; text-decoration: none;
}
.contact-form-column {
  background: #e2e2e2; padding: 15px; border-radius: 15px; border: 1px solid #003300;
}
.contact-form-column p { margin: 0 0 20px; color: #666; }
.form-success { background: #d4edda; color: #155724; padding: 14px 18px; border-radius: 6px; margin-bottom: 20px; }
.form-error { background: #f8d7da; color: #721c24; padding: 14px 18px; border-radius: 6px; margin-bottom: 20px; }

/* ===== CONTACT/ESTIMATE FORMS ===== */
.contact-form label, .estimate-form label { display: block; margin-bottom: 14px; font-weight: 600; }
.contact-form input, .contact-form textarea,
.estimate-form input, .estimate-form textarea {
  display: block; width: 100%; margin-top: 6px; padding: 10px 12px;
  border: 1px solid #d1d5db; border-radius: 6px; font: inherit;
}
.contact-form input:focus, .contact-form textarea:focus,
.estimate-form input:focus, .estimate-form textarea:focus {
  outline: none; border-color: var(--green); box-shadow: 0 0 0 2px rgba(122,188,100,0.2);
}

/* ===== NEWS ===== */
.news-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.news-card {
  background: #fff; border: 1px solid var(--border); border-bottom: 3px solid var(--green);
  border-radius: 6px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.news-card-image { height: 200px; overflow: hidden; background: #f0f0f0; }
.news-card-image img { width: 100%; height: 100%; object-fit: cover; }
.news-card-body { padding: 20px; }
.news-card-body h2 { margin: 0 0 8px; font-size: 1.1rem; }
.news-card-body h2 a { color: var(--text); text-decoration: none; }
.news-card-body h2 a:hover { color: var(--green-dark); }
.news-card-body time { color: var(--text-muted); font-size: 0.85rem; }
.news-card-excerpt { margin: 10px 0; font-size: 0.9rem; color: #555; line-height: 1.5; }
.news-read-more { color: var(--green-dark); font-weight: 600; font-size: 0.9rem; text-decoration: none; }
.news-read-more:hover { text-decoration: underline; }

/* ===== VIDEO EMBED ===== */
.video-embed { position: relative; padding-bottom: 56.25%; height: 0; border-radius: var(--radius); overflow: hidden; box-shadow: 0 4px 16px rgba(0,0,0,0.18); }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ===== BLOG POST + SIDEBAR ===== */
.post-layout { display: grid; grid-template-columns: minmax(0, 1fr) 310px; gap: 44px; align-items: start; }
.post-main { min-width: 0; }
.post-back { margin-top: 28px; }
.post-back a { color: var(--green-dark); font-weight: 600; text-decoration: none; }
.post-back a:hover { text-decoration: underline; }
.post-sidebar { display: grid; gap: 22px; position: sticky; top: 130px; }
.sidebar-card { border: 1px solid var(--border); border-radius: var(--radius); padding: 22px 22px 24px; }
.sidebar-card h3 { margin: 0 0 14px; font-size: 1.15rem; text-transform: uppercase; letter-spacing: 0.02em; }
.sidebar-contact { background: var(--green-deep); color: #fff; border: none; }
.sidebar-contact h3 { color: #fff; }
.sidebar-contact p { margin: 0 0 16px; font-size: 0.95rem; line-height: 1.5; color: #e6efe9; }
.sidebar-contact-list { list-style: none; margin: 0 0 18px; padding: 0; }
.sidebar-contact-list li { padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.15); font-size: 0.95rem; line-height: 1.5; }
.sidebar-contact-list li:last-child { border-bottom: none; }
.sidebar-contact-list span { display: block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--green); font-weight: 700; margin-bottom: 2px; }
.sidebar-contact-list a { color: #fff; text-decoration: none; font-weight: 600; }
.sidebar-contact-list a:hover { color: var(--green); }
.sidebar-cta { display: block; width: 100%; font-size: 1rem; padding: 13px 18px; }
.sidebar-services { background: #f7f8fa; }
.sidebar-services h3 { color: var(--green-dark); }
.sidebar-services ul { list-style: none; margin: 0; padding: 0; }
.sidebar-services li { border-bottom: 1px solid var(--border); }
.sidebar-services li:last-child { border-bottom: none; }
.sidebar-services a { display: block; padding: 11px 0; color: var(--text); text-decoration: none; font-weight: 600; }
.sidebar-services a:hover { color: var(--green-dark); }

/* ===== FOOTER ===== */
.site-footer { background: #1f2937; color: #d1d5db; padding: 40px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 0.8fr 1fr; gap: 32px; }
.site-footer h4 { color: #fff; margin-top: 0; text-transform: uppercase; letter-spacing: 0.04em; font-size: 1rem; }
.site-footer p { margin: 0 0 10px; line-height: 1.6; font-size: 0.9rem; }
.site-footer a { color: var(--green); text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 6px; }
.footer-links a { font-size: 0.9rem; }
.footer-bottom {
  margin-top: 28px; padding: 14px 0; border-top: 1px solid #374151;
  font-size: 0.8rem; text-align: center;
}
.footer-bottom a { white-space: nowrap; }

/* ===== MODAL ===== */
.modal[hidden] { display: none; }
.modal { position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center; padding: 16px; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.55); }
.modal-dialog { position: relative; background: #fff; border-radius: var(--radius); padding: 24px; max-width: 480px; width: 100%; max-height: 90vh; overflow-y: auto; }
.modal-close { position: absolute; top: 8px; right: 12px; border: none; background: none; font-size: 1.5rem; cursor: pointer; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .avada-content .fusion_builder_column_3_5,
  .avada-content .fusion_builder_column_2_5,
  .avada-content .fusion_builder_column_1_2 {
    flex: 0 0 100% !important; max-width: 100% !important;
  }
}

@media (max-width: 992px) {
  .home-hero-grid, .home-intro-grid, .home-about-grid,
  .about-page-grid, .about-mulching-grid,
  .services-two-col, .contact-page-grid, .post-layout {
    grid-template-columns: 1fr;
  }
  .post-sidebar { position: static; }
  .home-intro-grid { text-align: center; }
  .home-services-card { margin-top: 0; max-width: 100%; flex: 1 1 100%; }
  .home-service-tiles { flex: 1 1 100%; }
  .home-cta-grid { flex-direction: column; text-align: center; }
  .home-cta .btn-quote { width: 100%; max-width: 280px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .service-gallery { grid-template-columns: repeat(2, 1fr); }
  .project-gallery { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  /* Top bar: drop the tagline, keep phone + social */
  .header-top-spacer, .header-top-tagline { display: none; }
  .header-top-inner { grid-template-columns: 1fr; }
  .header-top-right { justify-content: flex-end; }

  /* Main bar: logo left, hamburger right, nav collapses below */
  .header-main-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; min-height: 64px; }
  .nav-toggle { display: flex; order: 3; }
  .logo { order: 1; grid-column: auto; justify-self: auto; }
  .logo img { width: 72px; height: 72px; margin: 6px 0; box-shadow: 0 2px 8px rgba(0,0,0,0.3); }
  .main-nav { order: 4; flex-basis: 100%; width: 100%; display: none; flex-direction: column; align-items: center; gap: 14px; padding: 12px 0 4px; }
  .main-nav--left, .main-nav--right { grid-column: auto; justify-self: auto; justify-content: center; }
  .header-main-inner.nav-open .main-nav { display: flex; }

  .service-gallery { grid-template-columns: 1fr; }
  .project-gallery { grid-template-columns: 1fr; }
  .project-thumb img { height: 200px; }
  .service-gallery img { height: 180px; }
}
