/* ─────────────────────────────────────────────
   responsive.css  —  Splash Burgh
   Shared across all pages. Loaded after each
   page's own <style> block.
───────────────────────────────────────────── */

/* Hamburger and drawer hidden on desktop by default */
.nav-hamburger { display: none; }
.nav-drawer    { display: none; }

/* ═══════════════════════════════════════════════
   MOBILE  —  max-width: 767px
═══════════════════════════════════════════════ */
@media (max-width: 767px) {

  /* ── Header ── */
  header {
    padding: 0 16px;
    height: 56px;
  }

  nav {
    display: none;
  }

  .btn-call-header {
    display: none;
  }

  /* ── Hamburger button ── */
  .nav-hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px 4px;
    flex-shrink: 0;
  }

  .nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 1px;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  body.nav-open .nav-hamburger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  body.nav-open .nav-hamburger span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  body.nav-open .nav-hamburger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* ── Nav Drawer ── */
  .nav-drawer {
    display: block;
    position: fixed;
    top: 88px; /* 32px wireframe banner + 56px mobile header.
                   When the wireframe banner is removed in production,
                   change this to 56px (mobile header height only). */
    left: 0;
    right: 0;
    z-index: 11;
    background: #041e38;
    border-bottom: 2px solid rgba(255, 182, 18, 0.35);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }

  body.nav-open .nav-drawer {
    max-height: 420px;
  }

  .nav-drawer a {
    display: block;
    padding: 14px 20px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: color 0.2s;
  }

  .nav-drawer a:hover {
    color: #FFB612;
  }

  .nav-drawer-ctas {
    display: flex;
    gap: 10px;
    padding: 14px 20px 20px;
  }

  .nav-drawer-ctas a {
    flex: 1;
    text-align: center;
    padding: 11px 8px;
    border: none;
  }

  /* Normalize drawer CTA button sizing — base .btn-emergency is 15px/15px 26px,
     which looks oversized and uneven next to .btn-gold (13px) in the narrow drawer row */
  .nav-drawer-ctas .btn-gold,
  .nav-drawer-ctas .btn-emergency {
    padding: 10px 8px;
    font-size: 13px;
  }

  /* ── Hero ── */
  .hero-content {
    padding: 120px 20px 60px;
  }

  .hero-logo-img {
    width: 140px;
  }

  .hero-logo-lock .splash {
    font-size: 38px;
    letter-spacing: -0.5px;
  }

  .hero-logo-lock .burgh {
    font-size: 32px;
    letter-spacing: 4px;
  }

  .hero-sub {
    font-size: 15px;
  }

  .hero-meta {
    font-size: 13px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .hero-ctas a {
    width: 100%;
    max-width: 280px;
    text-align: center;
    box-sizing: border-box;
  }

  /* ── Trust Bar ── */
  .trust-bar {
    gap: 14px;
    padding: 14px 16px;
  }

  .trust-item {
    min-width: 45%;
  }

  /* ── Section global ── */
  .section-title {
    font-size: 24px;
  }

  /* ── Services ── */
  .services-section {
    padding: 48px 16px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .service-card {
    padding: 20px 16px;
  }

  /* ── Pricing ── */
  .pricing-section {
    padding: 48px 16px;
  }

  .pricing-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 16px 0;
  }

  .pricing-rate {
    margin-left: 0;
    align-self: flex-start;
  }

  /* ── Booking CTA ── */
  .booking-section {
    padding: 52px 16px;
  }

  .booking-section h2 {
    font-size: 24px;
  }

  .booking-section p {
    font-size: 14px;
  }

  /* ── Reviews ── */
  .reviews-section {
    padding: 48px 16px;
  }

  .reviews-placeholder {
    padding: 32px 20px;
  }

  /* ── Footer ── */
  footer {
    padding: 40px 16px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

} /* end @media (max-width: 767px) */

/* ═══════════════════════════════════════════════
   TABLET  —  768px to 1023px
═══════════════════════════════════════════════ */
@media (min-width: 768px) and (max-width: 1023px) {

  /* ── Header ── */
  header {
    padding: 0 28px;
  }

  .btn-call-header {
    display: none;
  }

  /* hamburger stays hidden (default from top of file) */

  /* ── Hero ── */
  .hero-content {
    padding: 130px 28px 70px;
  }

  .hero-logo-lock .splash {
    font-size: 50px;
  }

  .hero-logo-lock .burgh {
    font-size: 42px;
  }

  /* ── Services ── */
  .services-section {
    padding: 64px 24px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* ── Footer ── */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  /* Brand block spans both columns */
  .footer-brand {
    grid-column: 1 / -1;
  }

}

/* ═══════════════════════════════════════════════
   DESKTOP+  —  min-width: 1280px
   Enhancement only — layout already correct at
   1024px+. This adds generous padding for large
   screens. Grid columns unchanged.
═══════════════════════════════════════════════ */
@media (min-width: 1280px) {

  .services-section {
    padding: 96px 48px;
  }

  .pricing-section {
    padding: 96px 48px;
  }

  .booking-section {
    padding: 108px 48px;
  }

  .reviews-section {
    padding: 96px 48px;
  }

  footer {
    padding: 64px 48px 36px;
  }

}
