/*
Theme Name: Good Game Gutters
Theme URI: https://goodgamegutters.com/
Author: goobs.me
Author URI: https://goobs.me
Description: Custom single-page theme for Good Game Gutters — professional gutter cleaning, installation, repair & replacement. Includes a hero slideshow, full services grid, an AJAX quote-request form (via wp_mail), and a self-scanning "Our Work" photo gallery.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: good-game-gutters
Tags: business, one-page, custom-colors, custom-menu, full-width-template, footer-widgets
*/

/* ============================================================
   All styles below are the original site styles, unchanged
   except image URLs now point at the theme's assets/ folder.
   ============================================================ */

    :root {
      --steel:   #1a2533;
      --steel-mid: #243040;
      --slate:   #334155;
      --sky:     #4a90d9;
      --sky-bright: #0180FF;
      --gold:    #ffffff;
      --gold-light: #f5f0e8;
      --cream:   #f5f0e8;
      --white:   #ffffff;
      --text-dim: #94a3b8;
      --shadow:  0 8px 40px rgba(0,0,0,0.45);
      --radius:  4px;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Barlow', sans-serif;
      font-weight: 300;
      background: var(--steel);
      color: var(--cream);
      overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 5vw;
      height: 72px;
      background: rgba(20, 30, 44, 0.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(74,144,217,0.15);
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      line-height: 1;
    }
    .nav-logo img {
      display: block;
      height: 52px;
      width: auto;
    }
    .nav-logo-text {
      display: flex;
      flex-direction: column;
    }
    .nav-logo-text .gg {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2rem;
      color: var(--gold);
      letter-spacing: 2px;
    }
    .nav-logo-text .gutters {
      font-family: 'Barlow', sans-serif;
      font-size: 0.62rem;
      font-weight: 600;
      letter-spacing: 6px;
      text-transform: uppercase;
      color: var(--sky);
    }

    .nav-links {
      display: flex;
      gap: 2.5rem;
      list-style: none;
    }
    .nav-links a,
    .nav-links .nav-text-btn {
      font-size: 0.82rem;
      font-weight: 600;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--cream);
      text-decoration: none;
      position: relative;
      transition: color 0.2s;
    }
    .nav-links .nav-text-btn {
      font-family: inherit;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0;
    }
    .nav-links a::after,
    .nav-links .nav-text-btn::after {
      content: '';
      position: absolute;
      bottom: -4px; left: 0; right: 100%;
      height: 2px;
      background: var(--gold);
      transition: right 0.3s ease;
    }
    .nav-links a:hover,
    .nav-links .nav-text-btn:hover { color: var(--gold); }
    .nav-links a:hover::after,
    .nav-links .nav-text-btn:hover::after { right: 0; }

    .nav-cta {
      background: var(--gold);
      color: var(--steel) !important;
      padding: 0.55rem 1.4rem;
      border-radius: var(--radius);
      font-weight: 700 !important;
      letter-spacing: 2px !important;
      transition: background 0.2s, transform 0.2s !important;
    }
    .nav-cta:hover {
      background: var(--gold-light) !important;
      color: var(--steel) !important;
      transform: translateY(-1px);
    }
    .nav-cta::after { display: none !important; }

    /* hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px;
    }
    .hamburger span {
      display: block;
      width: 26px;
      height: 2px;
      background: var(--cream);
      transition: all 0.3s;
    }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .mobile-menu {
      display: none;
      position: fixed;
      top: 72px; left: 0; right: 0;
      background: rgba(20,30,44,0.98);
      border-bottom: 2px solid var(--gold);
      z-index: 99;
      flex-direction: column;
      padding: 1.5rem 5vw 2rem;
      gap: 1.2rem;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      font-size: 1rem;
      font-weight: 600;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--cream);
      text-decoration: none;
      padding: 0.5rem 0;
      border-bottom: 1px solid rgba(255,255,255,0.07);
    }
    .mobile-menu a.cta-mobile {
      color: var(--gold);
      border-bottom: none;
    }
    .mobile-menu .mobile-gallery-btn {
      font: inherit;
      text-align: left;
      width: 100%;
      background: none;
      border: none;
      border-bottom: 1px solid rgba(255,255,255,0.07);
      cursor: pointer;
      font-size: 1rem;
      font-weight: 600;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--cream);
      padding: 0.5rem 0;
    }

    /* ── GALLERY LIGHTBOX ── */
    .gallery-modal {
      position: fixed;
      inset: 0;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 4.5rem 1rem 1.5rem;
    }
    .gallery-modal[hidden] { display: none !important; }
    .gallery-modal__backdrop {
      position: absolute;
      inset: 0;
      background: rgba(8, 12, 18, 0.92);
      cursor: pointer;
    }
    .gallery-modal__panel {
      position: relative;
      z-index: 1;
      width: min(1100px, 100%);
      max-height: min(88vh, 900px);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.75rem;
    }
    .gallery-modal__title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.5rem;
      letter-spacing: 4px;
      color: var(--cream);
      text-transform: uppercase;
    }
    .gallery-modal__close {
      position: fixed;
      top: 1rem;
      right: 1.25rem;
      z-index: 1002;
      width: 44px;
      height: 44px;
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: var(--radius);
      background: rgba(20, 30, 44, 0.9);
      color: var(--cream);
      font-size: 1.5rem;
      line-height: 1;
      cursor: pointer;
      transition: border-color 0.2s, color 0.2s, background 0.2s;
    }
    .gallery-modal__close:hover {
      border-color: var(--sky);
      color: var(--sky);
    }
    .gallery-modal__stage-wrap {
      position: relative;
      width: 100%;
      flex: 1;
      min-height: 200px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(0,0,0,0.35);
      border-radius: 8px;
      border: 1px solid rgba(74,144,217,0.15);
      overflow: hidden;
    }
    .gallery-modal__img {
      max-width: 100%;
      max-height: min(72vh, 760px);
      width: auto;
      height: auto;
      object-fit: contain;
      display: block;
    }
    .gallery-modal__empty {
      padding: 2rem 1.5rem;
      text-align: center;
      color: var(--text-dim);
      font-size: 0.95rem;
      line-height: 1.6;
      max-width: 420px;
    }
    .gallery-modal__nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 2;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.25);
      background: rgba(20, 30, 44, 0.85);
      color: var(--cream);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: border-color 0.2s, background 0.2s, color 0.2s;
    }
    .gallery-modal__nav:hover:not(:disabled) {
      border-color: var(--sky);
      color: var(--sky);
    }
    .gallery-modal__nav:disabled {
      opacity: 0.25;
      cursor: not-allowed;
    }
    .gallery-modal__nav--prev { left: 0.5rem; }
    .gallery-modal__nav--next { right: 0.5rem; }
    .gallery-modal__nav svg { width: 22px; height: 22px; }
    .gallery-modal__meta {
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--text-dim);
    }
    .gallery-modal__dots {
      display: flex;
      flex-wrap: wrap;
      gap: 0.35rem;
      justify-content: center;
      max-width: 100%;
      padding: 0 0.5rem;
    }
    .gallery-modal__dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      border: none;
      padding: 0;
      background: rgba(148,163,184,0.35);
      cursor: pointer;
      transition: background 0.2s, transform 0.2s;
    }
    .gallery-modal__dot:hover { background: rgba(74,144,217,0.6); }
    .gallery-modal__dot.is-active {
      background: var(--sky);
      transform: scale(1.15);
    }
    .visually-hidden {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    /* ── HERO / SLIDESHOW ── */
    #hero {
      position: relative;
      height: 100vh;
      min-height: 600px;
      overflow: hidden;
    }

    .slideshow {
      position: absolute;
      inset: 0;
    }

    .slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 1.2s ease;
      background-size: cover;
      background-position: center;
    }
    .slide.active { opacity: 1; }

    /* Placeholder slides — replace src in <img> or background-image with your photos */
    .slide-1 { background-image: url('assets/images/slide1.jpg'); background-color: #1e2f42; }
    .slide-2 { background-image: url('assets/images/slide2.jpg'); background-color: #1a2d3e; }
    .slide-3 { background-image: url('assets/images/slide3.jpg'); background-color: #162638; }
    .slide-4 { background-image: url('assets/images/slide4.jpg'); background-color: #162638; }
    .slide-5 { background-image: url('assets/images/slide5.jpg'); background-color: #162638; }

    .slide-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        135deg,
        rgba(10,18,28,0.82) 0%,
        rgba(10,18,28,0.45) 60%,
        rgba(10,18,28,0.65) 100%
      );
    }

    .hero-content {
      position: relative;
      z-index: 2;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 0 8vw;
      padding-top: 72px;
    }

    .hero-eyebrow {
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 6px;
      text-transform: uppercase;
      color: var(--sky);
      margin-bottom: 1rem;
      animation: fadeUp 0.9s 0.2s both;
    }

    .hero-headline {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(3.5rem, 9vw, 8rem);
      line-height: 0.92;
      color: var(--white);
      margin-bottom: 1.2rem;
      animation: fadeUp 0.9s 0.4s both;
    }
    .hero-headline span { color: var(--gold); }

    .hero-sub {
      font-size: clamp(1rem, 2vw, 1.25rem);
      font-weight: 300;
      color: rgba(245,240,232,0.8);
      max-width: 520px;
      line-height: 1.6;
      margin-bottom: 2.5rem;
      animation: fadeUp 0.9s 0.6s both;
    }

    .hero-buttons {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      animation: fadeUp 0.9s 0.8s both;
    }

    .btn-primary {
      background: var(--gold);
      color: var(--steel);
      font-family: 'Barlow', sans-serif;
      font-weight: 700;
      font-size: 0.85rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      text-decoration: none;
      padding: 1rem 2.2rem;
      border-radius: var(--radius);
      border: none;
      cursor: pointer;
      display: inline-block;
      transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
      box-shadow: 0 4px 20px rgba(232,160,32,0.35);
    }
    .btn-primary:hover {
      background: var(--gold-light);
      transform: translateY(-2px);
      box-shadow: 0 6px 28px rgba(232,160,32,0.5);
    }

    .btn-outline {
      background: transparent;
      color: var(--cream);
      font-family: 'Barlow', sans-serif;
      font-weight: 600;
      font-size: 0.85rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      text-decoration: none;
      padding: 1rem 2.2rem;
      border-radius: var(--radius);
      border: 1.5px solid rgba(245,240,232,0.45);
      cursor: pointer;
      display: inline-block;
      transition: border-color 0.2s, color 0.2s, transform 0.2s;
    }
    .btn-outline:hover {
      border-color: var(--sky);
      color: var(--sky);
      transform: translateY(-2px);
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* ── TRUST BAR ── */
    #trust-bar {
      background: var(--gold);
      padding: 0.9rem 5vw;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 3rem;
      flex-wrap: wrap;
    }
    .trust-item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--steel);
    }
    .trust-item svg { width: 18px; height: 18px; }

    /* ── SECTION BASE ── */
    section {
      padding: 6rem 8vw;
    }

    .section-label {
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 6px;
      text-transform: uppercase;
      color: var(--sky);
      margin-bottom: 0.8rem;
    }

    .section-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.4rem, 5vw, 4rem);
      line-height: 1;
      color: var(--white);
      margin-bottom: 1.2rem;
    }
    .section-title span { color: var(--gold); }

    .section-body {
      font-size: 1.05rem;
      font-weight: 300;
      line-height: 1.75;
      color: var(--text-dim);
      max-width: 600px;
    }

    /* ── SERVICES ── */
    #services {
      background: var(--steel-mid);
      position: relative;
      overflow: hidden;
    }

    #services .services-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      opacity: 0;
      transition: opacity 0.5s ease-out;
      pointer-events: none;
      filter: saturate(1.1);
    }
    #services .services-bg.active {
      opacity: 0.4;
    }

    .services-intro {
      max-width: 680px;
      margin-bottom: 3.5rem;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 1.5rem;
    }

    .service-card {
      background: var(--steel);
      border: 1px solid rgba(74,144,217,0.1);
      border-radius: 6px;
      padding: 2.2rem 2rem;
      transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
      position: relative;
      overflow: hidden;
    }
    .service-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--gold), var(--sky));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s ease;
    }
    .service-card:hover {
      transform: translateY(-6px);
      border-color: rgba(74,144,217,0.3);
      box-shadow: 0 16px 40px rgba(0,0,0,0.35);
    }
    .service-card:hover::before { transform: scaleX(1); }

    .service-icon {
      width: 52px; height: 52px;
      background: rgba(74,144,217,0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.4rem;
    }
    .service-icon svg { width: 26px; height: 26px; color: var(--sky); }

    .service-name {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.5rem;
      letter-spacing: 1px;
      color: var(--white);
      margin-bottom: 0.7rem;
    }

    .service-desc {
      font-size: 0.92rem;
      font-weight: 300;
      line-height: 1.7;
      color: var(--text-dim);
    }

    /* ── WHY US ── */
    #why {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }

    .why-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
      margin-top: 2.5rem;
    }

    .stat-box {
      background: var(--steel-mid);
      border: 1px solid rgba(74,144,217,0.12);
      border-radius: 6px;
      padding: 1.6rem;
    }
    .stat-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 3rem;
      color: var(--gold);
      line-height: 1;
      margin-bottom: 0.3rem;
    }
    .stat-label {
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--text-dim);
    }

    .why-checklist {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      margin-top: 2.5rem;
    }
    .why-checklist li {
      display: flex;
      align-items: flex-start;
      gap: 0.8rem;
      font-size: 0.97rem;
      font-weight: 300;
      color: var(--text-dim);
      line-height: 1.5;
    }
    .check-icon {
      flex-shrink: 0;
      width: 22px; height: 22px;
      background: rgba(232,160,32,0.15);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 1px;
    }
    .check-icon svg { width: 12px; height: 12px; color: var(--gold); }

    /* ── PROCESS ── */
    #process {
      background: var(--steel-mid);
      text-align: center;
    }
    #process .section-intro { max-width: 560px; margin: 0 auto 3.5rem; }
    #process .section-body { margin: 0 auto; }

    .steps {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 0;
      position: relative;
      margin-top: 3rem;
    }
    .steps::before {
      content: '';
      position: absolute;
      top: 38px;
      left: 10%;
      right: 10%;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--sky), var(--gold), transparent);
      opacity: 0.4;
    }

    .step {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 0 1rem;
      position: relative;
    }

    .step-num {
      width: 76px; height: 76px;
      border-radius: 50%;
      background: var(--steel);
      border: 2px solid rgba(74,144,217,0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.8rem;
      color: var(--gold);
      position: relative;
      z-index: 1;
      margin-bottom: 1.3rem;
      transition: border-color 0.3s, box-shadow 0.3s;
    }
    .step:hover .step-num {
      border-color: var(--gold);
      box-shadow: 0 0 24px rgba(232,160,32,0.3);
    }
    .step-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.3rem;
      color: var(--white);
      margin-bottom: 0.5rem;
      letter-spacing: 1px;
    }
    .step-text {
      font-size: 0.87rem;
      font-weight: 300;
      color: var(--text-dim);
      line-height: 1.65;
      max-width: 200px;
    }

    /* ── CONTACT ── */
    #contact {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 5rem;
      align-items: start;
    }

    .contact-info { padding-top: 0.5rem; }
    .contact-detail {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      margin-top: 2rem;
    }
    .contact-detail:first-of-type { margin-top: 2.5rem; }
    .cd-icon {
      flex-shrink: 0;
      width: 44px; height: 44px;
      border-radius: 50%;
      background: rgba(74,144,217,0.1);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .cd-icon svg { width: 20px; height: 20px; color: var(--sky); }
    .cd-label {
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--sky);
      margin-bottom: 0.2rem;
    }
    .cd-value {
      font-size: 1rem;
      font-weight: 400;
      color: var(--cream);
    }

    /* form */
    .contact-form {
      background: var(--steel-mid);
      border: 1px solid rgba(74,144,217,0.12);
      border-radius: 8px;
      padding: 2.8rem;
    }

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

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      margin-bottom: 1.2rem;
    }
    .form-group.full { grid-column: 1 / -1; }

    label {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--text-dim);
    }

    input, textarea, select {
      background: var(--steel);
      border: 1px solid rgba(74,144,217,0.18);
      border-radius: var(--radius);
      padding: 0.85rem 1rem;
      font-family: 'Barlow', sans-serif;
      font-size: 0.97rem;
      font-weight: 300;
      color: var(--cream);
      outline: none;
      transition: border-color 0.2s, box-shadow 0.2s;
      width: 100%;
      appearance: none;
    }
    input:focus, textarea:focus, select:focus {
      border-color: var(--sky);
      box-shadow: 0 0 0 3px rgba(74,144,217,0.12);
    }
    textarea { min-height: 130px; resize: vertical; }
    ::placeholder { color: rgba(148,163,184,0.45); }

    select option { background: var(--steel-mid); }

    .form-status {
      display: none;
      padding: 0.9rem 1rem;
      border-radius: var(--radius);
      font-size: 0.9rem;
      font-weight: 600;
      margin-bottom: 1rem;
    }
    .form-status.success {
      display: block;
      background: rgba(34,197,94,0.12);
      border: 1px solid rgba(34,197,94,0.35);
      color: #4ade80;
    }
    .form-status.error {
      display: block;
      background: rgba(239,68,68,0.12);
      border: 1px solid rgba(239,68,68,0.35);
      color: #f87171;
    }

    .submit-btn {
      width: 100%;
      padding: 1.05rem;
      margin-top: 0.5rem;
    }

    /* ── FOOTER ── */
    footer {
      background: #0e1620;
      border-top: 1px solid rgba(74,144,217,0.1);
      padding: 3rem 8vw 2rem;
    }
    .footer-top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 2rem;
      flex-wrap: wrap;
      margin-bottom: 2.5rem;
    }
    .footer-brand .gg {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2.2rem;
      color: var(--gold);
      letter-spacing: 2px;
      line-height: 1;
    }
    .footer-brand .gutters {
      font-size: 0.58rem;
      font-weight: 600;
      letter-spacing: 6px;
      text-transform: uppercase;
      color: var(--sky);
    }
    .footer-tagline {
      font-size: 0.85rem;
      font-weight: 300;
      color: var(--text-dim);
      margin-top: 0.7rem;
      max-width: 220px;
    }
    .footer-links h4 {
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--sky);
      margin-bottom: 1rem;
    }
    .footer-links ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
    }
    .footer-links a {
      font-size: 0.88rem;
      font-weight: 300;
      color: var(--text-dim);
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--cream); }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.06);
      padding-top: 1.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 0.5rem;
    }
    .footer-bottom p {
      font-size: 0.78rem;
      color: var(--text-dim);
    }
    .footer-credit {
      font-size: 0.67rem !important;
      opacity: 0.85;
      letter-spacing: 0.6px;
      text-transform: uppercase;
    }
    .footer-bottom a {
      color: var(--text-dim);
      text-decoration: none;
    }
    .footer-bottom a:hover { color: var(--cream); }

    /* ── SCROLL REVEAL ── */
    .reveal {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      #why {
        grid-template-columns: 1fr;
        gap: 3rem;
      }
      #contact {
        grid-template-columns: 1fr;
        gap: 3rem;
      }
      .steps::before { display: none; }
      .form-row { grid-template-columns: 1fr; }
    }

    @media (max-width: 680px) {
      .nav-links { display: none; }
      .hamburger { display: flex; }
      section { padding: 4rem 6vw; }
      .hero-content { padding: 0 6vw; padding-top: 72px; }
      .why-stats { grid-template-columns: 1fr 1fr; }
      .contact-form { padding: 2rem 1.5rem; }
      .footer-top { flex-direction: column; gap: 2rem; }
      #trust-bar { gap: 1.5rem; }
    }
  
/* Editable checklist: bold lead-in keeps the cream accent without inline styles
   (added for Customizer-editable content). */
.why-checklist li strong { color: var(--cream); font-weight: 600; }
