/* ── MERRYWEATHER — RESPONSIVE STYLES ─── */

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--paper);
  z-index: 300;
  flex-direction: column;
  padding: 20px;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  margin-top: 28px;
}
.mobile-nav-links a {
  display: block;
  font: 500 1.25rem/1 var(--font-display);
  color: var(--ink);
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
  text-decoration: none;
}
.mobile-nav-links .btn {
  margin-top: 24px;
  justify-content: center;
  text-decoration: none;
  display: inline-flex;
}

/* Hamburger button — hidden on desktop */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: background 220ms;
}

/* ── MOBILE BREAKPOINT ─── */
@media (max-width: 767px) {

  /* Global spacing */
  .section { padding: 52px 0 !important; }
  .wrap, .wrap-wide { padding: 0 18px !important; }
  .page-hero { padding: 48px 0 36px !important; }

  /* Top contact bar — too cramped on mobile */
  .topbar { display: none !important; }

  /* Header */
  header .wrap-wide {
    height: auto !important;
    padding-top: 12px !important;
    padding-bottom: 12px !important;
  }
  header .wrap-wide nav { display: none !important; }
  .header-quote-btn { display: none !important; }
  header .wrap-wide a img { height: 72px !important; }
  .nav-toggle { display: flex !important; }

  /* Responsive grids — all collapse to single column */
  .rg {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  /* Items that were in the right column had border-left — remove on mobile */
  .rg > div[style*="border-left"] { border-left: none !important; }

  /* Hero: hide photo on mobile, keep text */
  .hero-img { display: none !important; }

  /* Hero stats row: tighten spacing */
  .hero-stats { gap: 20px !important; }

  /* About page: unstick the photo so it flows above text */
  .about-photo { position: static !important; top: auto !important; }

  /* Why section: remove border-left on right-column items */
  .why-right { border-left: none !important; }
}
