@font-face {
  font-family: 'Outfit';
  src: url('/fonts/outfit.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Outfit';
  src: url('/fonts/outfit.woff2') format('woff2');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('/fonts/inter.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* ── TOKENS ──────────────────────────────────── */
    :root {
      --mesa:       #2B2018;
      --mesa-mid:   #3D2E22;
      --sage:       #6E9E7A;
      --sage-deep:  #4a7a57;
      --sage-light: #EBF3EE;
      --adobe:      #C04A28;
      --adobe-hover:#A33D20;
      --sand:       #F7F4EF;
      --white:      #FFFFFF;
      --mid:        #6B5E55;
      --line:       #E5DED6;
      --display:    'Outfit', sans-serif;
      --body:       'Inter', sans-serif;
      --radius:     12px;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { font-family: var(--body); background: var(--white); color: var(--mesa); font-size: 16px; line-height: 1.65; }
    img { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }

    /* ── UTIL ────────────────────────────────────── */
    .container { max-width: 1120px; margin: 0 auto; padding: 0 28px; }
    .eyebrow {
      display: inline-block;
      font-family: var(--display);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--sage);
      margin-bottom: 14px;
    }
    .eyebrow--light { color: rgba(255,255,255,0.6); }

    /* ── BUTTONS ─────────────────────────────────── */
    .btn {
      display: inline-flex; align-items: center; gap: 8px;
      font-family: var(--display); font-weight: 700; font-size: 15px;
      padding: 14px 30px; border-radius: 100px; cursor: pointer;
      transition: all 0.2s; border: none; white-space: nowrap;
    }
    .btn-primary { background: var(--adobe); color: #fff; box-shadow: 0 4px 18px rgba(192,74,40,0.30); }
    .btn-primary:hover { background: var(--adobe-hover); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(192,74,40,0.38); }
    .btn-ghost { background: transparent; border: 2px solid rgba(255,255,255,0.35); color: #fff; }
    .btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); transform: translateY(-2px); }
    .btn-dark { background: var(--mesa); color: #fff; }
    .btn-dark:hover { background: var(--mesa-mid); transform: translateY(-2px); }

    /* ── NAV ─────────────────────────────────────── */
    .nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 200;
      transition: background 0.3s, box-shadow 0.3s;
      padding: 0 28px;
    }
    .nav.scrolled { background: var(--mesa); box-shadow: 0 2px 20px rgba(0,0,0,0.25); }
    .nav__inner {
      max-width: 1120px; margin: 0 auto;
      display: flex; align-items: center; justify-content: space-between;
      height: 68px;
    }
    .nav__logo {
      font-family: var(--display); font-weight: 800; font-size: 17px;
      color: #fff; letter-spacing: -0.02em; line-height: 1.15;
    }
    .nav__logo span { color: var(--sage); }
    .nav__links { display: flex; align-items: center; gap: 6px; list-style: none; }
    .nav__links a {
      padding: 8px 14px; border-radius: 8px;
      font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.82);
      transition: color 0.2s ease, background 0.2s ease, background-color 0.2s ease;
    }
    .nav__links a:hover { color: var(--adobe); background: transparent; }
    .nav__links a.active { color: var(--adobe); }
    .nav__cta {
      background: var(--adobe) !important; color: #fff !important;
      border-radius: 100px !important; padding: 9px 20px !important;
      font-weight: 700 !important; font-family: var(--display) !important;
      transition: background 0.2s ease, background-color 0.2s ease !important;
    }
    .nav__cta:hover { background: var(--adobe-hover) !important; background-color: var(--adobe-hover) !important; }
    .nav__phone {
      display: flex; align-items: center; gap: 6px;
      font-family: var(--display); font-size: 14px; font-weight: 600;
      color: rgba(255,255,255,0.82);
      transition: color 0.2s ease;
      white-space: nowrap;
    }
    .nav__phone:hover { color: var(--adobe); }

    /* ── BURGER ─────────────────────────────────── */
    .nav__burger {
      display: none; flex-direction: column; justify-content: space-between;
      width: 28px; height: 20px; background: none; border: none;
      cursor: pointer; padding: 0; z-index: 300;
    }
    .nav__burger span {
      display: block; width: 100%; height: 2px;
      background: #fff; border-radius: 2px;
      transition: transform 0.3s ease, opacity 0.3s ease;
    }
    .nav__burger.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .nav__burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .nav__burger.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

    .nav__drawer {
      display: none;
      position: fixed; top: 68px; left: 0; right: 0;
      background: var(--mesa);
      padding: 16px 28px 28px;
      box-shadow: 0 8px 24px rgba(0,0,0,0.3);
      z-index: 199;
      border-top: 1px solid rgba(255,255,255,0.08);
    }
    .nav__drawer.open { display: flex; flex-direction: column; gap: 4px; }
    .nav__drawer a {
      padding: 13px 16px; border-radius: 10px;
      font-size: 16px; font-weight: 500; color: rgba(255,255,255,0.82);
      font-family: var(--display);
      transition: color 0.15s, background 0.15s;
    }
    .nav__drawer a:hover { color: #fff; background: rgba(255,255,255,0.08); }
    .nav__drawer a.active { color: var(--adobe); }
    .nav__drawer .nav__cta {
      margin-top: 8px; text-align: center;
      justify-content: center; display: flex;
      padding: 14px 20px !important;
      font-size: 15px !important;
    }
    .nav__drawer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 8px;
      padding-top: 12px;
      border-top: 1px solid rgba(255,255,255,0.08);
    }
    .nav__drawer-bottom .nav__cta {
      flex: 1;
      text-align: center;
    }
    .nav__drawer-phone {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      font-size: 14px;
      font-weight: 600;
      color: var(--sage);
      font-family: var(--display);
      white-space: nowrap;
      transition: color 0.15s;
    }
    .nav__drawer .nav__drawer-phone:hover {
      color: var(--sage);
      background: none;
    }

    /* ── HERO ────────────────────────────────────── */
    .hero {
      background: var(--mesa);
      min-height: 100vh;
      display: grid;
      position: relative;
      overflow: hidden;
    }
    .hero__bg-img {
      position: absolute; inset: 0;
      background-image: url('../images/hero.webp');
      background-size: cover; background-position: center 40%;
      opacity: 1;
    }
    .hero__overlay {
      position: absolute; inset: 0;
      background: linear-gradient(
        to right,
        rgba(43,32,24,0.96) 0%,
        rgba(43,32,24,0.90) 45%,
        rgba(43,32,24,0.55) 73%,
        rgba(43,32,24,0.30) 100%
      );
    }
    .hero__inner {
      position: relative; z-index: 2;
      max-width: 1120px; margin: 0 auto; padding: 0 28px;
      display: grid; grid-template-columns: 1fr 440px;
      gap: 60px; align-items: center;
      padding-top: 120px; padding-bottom: 80px;
    }
    .hero__tag {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(110,158,122,0.18); border: 1px solid rgba(110,158,122,0.35);
      color: #8AB897; font-size: 12px; font-weight: 600;
      font-family: var(--display); letter-spacing: 0.1em; text-transform: uppercase;
      padding: 6px 14px; border-radius: 100px; margin-bottom: 28px;
    }
    .hero__tag-dot { width: 7px; height: 7px; border-radius: 50%; background: #8AB897; animation: pulse 2s infinite; }
    @keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.8)} }

    .hero__h1 {
      font-family: var(--display);
      font-size: clamp(42px, 5.5vw, 68px);
      font-weight: 800;
      line-height: 1.04;
      letter-spacing: -0.03em;
      color: #fff;
      margin-bottom: 24px;
    }
    .hero__h1 em { font-style: italic; color: var(--sage); }
    .hero__sub {
      font-size: 18px; color: rgba(255,255,255,0.72);
      line-height: 1.6; margin-bottom: 36px; max-width: 500px;
    }
    .hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
    .hero__stats {
      display: flex; gap: 36px; flex-wrap: wrap;
      padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.1);
    }
    .hero__stat-num {
      font-family: var(--display); font-size: 28px; font-weight: 800;
      color: #fff; line-height: 1;
    }
    .hero__stat-num span { color: var(--sage); }
    .hero__stat-label { font-size: 12px; color: rgba(255,255,255,0.55); margin-top: 4px; }

    /* Form card */
    .hero__form {
      background: #fff; border-radius: 20px;
      padding: 36px 32px; box-shadow: 0 24px 60px rgba(0,0,0,0.3);
      position: relative;
    }
    .hero__form::before {
      content: '';
      position: absolute; top: -1px; left: 32px; right: 32px; height: 3px;
      background: linear-gradient(90deg, var(--sage), var(--adobe));
      border-radius: 0 0 4px 4px;
    }
    .form-head { margin-bottom: 24px; }
    .form-head h2 {
      font-family: var(--display); font-size: 22px; font-weight: 800;
      color: var(--mesa); margin-bottom: 4px;
    }
    .form-head p { font-size: 13px; color: var(--mid); }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
    .form-group { margin-bottom: 12px; }
    .form-group label {
      display: block; font-size: 11px; font-weight: 700;
      letter-spacing: 0.06em; text-transform: uppercase;
      color: var(--mesa); margin-bottom: 6px;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%; padding: 11px 14px;
      border: 1.5px solid var(--line); border-radius: 10px;
      font-size: 14px; font-family: var(--body); color: var(--mesa);
      background: var(--sand); outline: none;
      transition: border-color 0.15s, background 0.15s;
    }
    .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
      border-color: var(--sage); background: #fff;
    }
    .form-group textarea { resize: vertical; min-height: 72px; }
    .form-submit { width: 100%; justify-content: center; font-size: 16px; border-radius: 12px; padding: 15px; margin-top: 4px; }
    .form-note { text-align: center; font-size: 11px; color: var(--mid); margin-top: 10px; }
    .form-note--phone {
      margin-top: 6px;
    }
    .form-note--phone a {
      color: var(--adobe); font-weight: 600;
      transition: color 0.15s;
    }
    .form-note--phone a:hover { color: var(--adobe-hover); }

    /* ── FORM SUCCESS & ERROR ────────────────────── */
    /* Class-based (not #id) so every contact-form instance on the site
       can share this styling regardless of its unique success-panel id */
    .form-success {
      text-align: center;
      padding: 32px 16px;
    }
    .form-success svg {
      color: var(--sage);
      margin: 0 auto 20px;
      display: block;
    }
    .form-success h3 {
      font-family: var(--display);
      font-size: 22px;
      font-weight: 800;
      color: var(--mesa);
      margin-bottom: 10px;
    }
    .form-success p {
      font-size: 14px;
      color: var(--mid);
      line-height: 1.6;
    }
    .form-error {
      font-size: 13px;
      color: var(--adobe);
      font-weight: 600;
      margin-bottom: 12px;
      padding: 10px 14px;
      background: rgba(192,74,40,0.08);
      border: 1px solid rgba(192,74,40,0.25);
      border-radius: 8px;
    }

    /* ── SCROLL INDICATOR ───────────────────────── */
    .scroll-indicator {
      position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
      display: flex; flex-direction: column; align-items: center; gap: 8px;
      z-index: 2; cursor: pointer;
      animation: scrollBob 2s ease-in-out infinite;
    }
    .scroll-indicator span {
      font-family: var(--display); font-size: 10px; font-weight: 600;
      letter-spacing: 0.18em; text-transform: uppercase;
      color: rgba(255,255,255,0.45);
    }
    .scroll-indicator svg {
      color: rgba(255,255,255,0.45);
      transition: color 0.2s;
    }
    .scroll-indicator:hover svg,
    .scroll-indicator:hover span { color: rgba(255,255,255,0.85); }
    @keyframes scrollBob {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50%       { transform: translateX(-50%) translateY(6px); }
    }
    /* ── TRUST BAR ───────────────────────────────── */
    .trust-bar { background: var(--sage-deep); padding: 14px 28px; }
    .trust-bar__inner {
      max-width: 1120px; margin: 0 auto;
      display: flex; justify-content: center; flex-wrap: wrap; gap: 28px;
    }
    .trust-bar__item {
      display: flex; align-items: center; gap: 8px;
      font-size: 13px; font-weight: 600; color: #fff;
      font-family: var(--display);
    }
    .trust-bar__item svg { flex-shrink: 0; }

    /* ── INTRO / TRANSFORMATION SECTION ─────────── */
    .intro { padding: 100px 0; }
    .intro__inner {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 80px; align-items: center;
    }
    .intro__img-stack { position: relative; }
    .intro__img-main {
      width: 100%; aspect-ratio: 4/3; object-fit: cover;
      border-radius: 16px; box-shadow: 0 20px 50px rgba(43,32,24,0.18);
    }
    .intro__img-accent {
      position: absolute; bottom: -28px; right: -28px;
      width: 52%; height: auto; aspect-ratio: 1; object-fit: cover;
      border-radius: 12px; border: 4px solid #fff;
      box-shadow: 0 12px 30px rgba(43,32,24,0.2);
    }
    .intro__badge {
      position: absolute; top: 20px; left: 20px;
      background: var(--sage); color: #fff;
      font-family: var(--display); font-size: 12px; font-weight: 700;
      padding: 8px 14px; border-radius: 100px;
    }
    .intro__text { padding-bottom: 28px; }
    .intro__h2 {
      font-family: var(--display);
      font-size: clamp(30px, 4vw, 44px);
      font-weight: 800; line-height: 1.12;
      letter-spacing: -0.02em; margin-bottom: 20px;
    }
    .intro__h2 em { font-style: italic; color: var(--sage); }
    .intro__body { font-size: 17px; color: var(--mid); line-height: 1.7; margin-bottom: 28px; }
    .intro__checklist { list-style: none; margin-bottom: 36px; display: flex; flex-direction: column; gap: 10px; }
    .intro__checklist li {
      display: flex; align-items: flex-start; gap: 12px;
      font-size: 15px; color: var(--mesa); font-weight: 500;
    }
    .check-icon {
      width: 22px; height: 22px; border-radius: 50%;
      background: var(--sage); color: #fff; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      margin-top: 1px;
    }

    /* ── SERVICES SECTION ────────────────────────── */
    .services { padding: 100px 0; background: var(--sand); }
    .services__head { text-align: center; margin-bottom: 56px; }
    .section-title {
      font-family: var(--display);
      font-size: clamp(28px, 4vw, 42px);
      font-weight: 800; line-height: 1.1;
      letter-spacing: -0.02em; color: var(--mesa);
      margin-bottom: 14px;
    }
    .section-title em { font-style: italic; color: var(--sage); }
    .section-sub { font-size: 17px; color: var(--mid); max-width: 560px; margin: 0 auto; }

    .services__grid {
      display: grid; grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }
    .service-card {
      background: #fff; border-radius: 16px;
      overflow: hidden;
      border: 1px solid var(--line);
      box-shadow: 0 2px 8px rgba(43,32,24,0.04);
      transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
      display: flex; flex-direction: column;
    }
    .service-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(43,32,24,0.12); border-color: var(--sage); }
    .service-card__img {
      width: 100%; height: 200px; object-fit: cover;
    }
    .service-card__body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
    .service-card__icon {
      width: 46px; height: 46px; border-radius: 12px;
      background: var(--sage-light); color: var(--sage);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 16px;
    }
    .service-card__title {
      font-family: var(--display); font-size: 20px; font-weight: 800;
      color: var(--mesa); margin-bottom: 10px;
    }
    .service-card__desc { font-size: 14px; color: var(--mid); line-height: 1.6; flex: 1; }
    .service-card__link {
      display: inline-flex; align-items: center; gap: 6px;
      margin-top: 18px; font-size: 13px; font-weight: 700;
      color: var(--adobe); transition: gap 0.15s;
    }
    .service-card:hover .service-card__link { gap: 10px; }

    /* ── HOW IT WORKS ────────────────────────────── */
    .how { padding: 100px 0; }
    .how__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
    .how__steps { display: flex; flex-direction: column; gap: 0; }
    .how__step {
      display: flex; gap: 24px;
      padding: 28px 0; border-bottom: 1px solid var(--line);
      position: relative;
    }
    .how__step:last-child { border-bottom: none; }
    .how__step-num {
      font-family: var(--display); font-size: 48px; font-weight: 800;
      color: var(--line); line-height: 1; flex-shrink: 0; width: 52px;
      transition: color 0.2s;
    }
    .how__step:hover .how__step-num { color: var(--sage); }
    .how__step-title {
      font-family: var(--display); font-size: 18px; font-weight: 700;
      color: var(--mesa); margin-bottom: 6px;
    }
    .how__step-desc { font-size: 14px; color: var(--mid); line-height: 1.6; }
    .how__visual {
      background: var(--mesa); border-radius: 20px;
      padding: 36px 32px 40px; text-align: center;
      position: relative; overflow: hidden;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
    }
    .how__visual::before {
      content: '';
      position: absolute; top: -40%; right: -20%;
      width: 300px; height: 300px; border-radius: 50%;
      background: rgba(110,158,122,0.12);
    }
    .how__lottie {
      width: 320px; height: 320px;
      margin: 0 auto 20px;
      position: relative; z-index: 1;
    }
    .how__visual-icon {
      color: var(--sage);
      margin: 0 auto 20px;
      position: relative; z-index: 1;
    }
    .how__visual-title {
      font-family: var(--display); font-size: 22px; font-weight: 800;
      color: #fff; margin-bottom: 10px; position: relative; z-index: 1;
    }
    .how__visual-sub {
      font-size: 15px; color: rgba(255,255,255,0.65);
      line-height: 1.6; position: relative; z-index: 1;
      max-width: 280px; margin: 0 auto;
    }
    .how__phone {
      color: var(--sage); font-weight: 600;
      transition: color 0.15s;
    }
    .how__phone:hover { color: var(--mesa); }

    /* ── PRICING ─────────────────────────────────── */
    .pricing {
      background: var(--mesa);
      padding: 80px 0;
    }
    .pricing__inner {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 60px; align-items: center;
    }
    .pricing__text h2 {
      font-family: var(--display); font-size: clamp(28px,3.5vw,40px);
      font-weight: 800; color: #fff; line-height: 1.1;
      letter-spacing: -0.02em; margin-bottom: 14px;
    }
    .pricing__text h2 em { font-style: italic; color: var(--sage); }
    .pricing__text p { font-size: 16px; color: rgba(255,255,255,0.65); line-height: 1.65; margin-bottom: 24px; }
    .pricing__cards { display: flex; flex-direction: column; gap: 14px; }
    .pricing__card {
      background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
      border-radius: 14px; padding: 20px 24px;
      display: flex; align-items: center; justify-content: space-between;
      transition: background 0.18s, border-color 0.18s;
    }
    .pricing__card:hover { background: rgba(255,255,255,0.1); border-color: rgba(110,158,122,0.4); }
    .pricing__card-label { font-family: var(--display); font-weight: 600; color: rgba(255,255,255,0.8); font-size: 15px; }
    .pricing__card-range {
      font-family: var(--display); font-size: 24px; font-weight: 800;
      color: var(--sage);
      text-align: right;
    }
    .pricing__note {
      display: flex; align-items: flex-start; gap: 10px;
      background: rgba(110,158,122,0.12); border: 1px solid rgba(110,158,122,0.25);
      border-radius: 10px; padding: 14px 18px;
      font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.5;
      margin-top: 16px;
    }
    .pricing__note svg { color: var(--sage); flex-shrink: 0; margin-top: 1px; }

    /* ── WHY CHOOSE US ───────────────────────────── */
    .why { padding: 100px 0; background: var(--sand); }
    .why__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
    .why__img {
      width: 100%; height: auto;aspect-ratio: 3/4; object-fit: cover;
      border-radius: 20px; box-shadow: 0 20px 50px rgba(43,32,24,0.18);
      position: sticky; top: 100px;
    }
    .why__text h2 {
      font-family: var(--display); font-size: clamp(28px,3.5vw,40px);
      font-weight: 800; line-height: 1.1; letter-spacing: -0.02em;
      margin-bottom: 14px;
    }
    .why__text h2 em { font-style: italic; color: var(--sage); }
    .why__text > p { font-size: 17px; color: var(--mid); margin-bottom: 36px; }
    .why__items { display: flex; flex-direction: column; gap: 24px; }
    .why__item { display: flex; gap: 18px; }
    .why__icon {
      width: 48px; height: 48px; border-radius: 14px;
      background: var(--sage); color: #fff; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
    }
    .why__item-title {
      font-family: var(--display); font-size: 16px; font-weight: 700;
      color: var(--mesa); margin-bottom: 4px;
    }
    .why__item-desc { font-size: 14px; color: var(--mid); line-height: 1.6; }

    /* ── BOTTOM CTA ──────────────────────────────── */
    .cta-band {
      background: var(--adobe);
      padding: 80px 28px;
      text-align: center;
      position: relative; overflow: hidden;
    }
    .cta-band::before {
      content: '';
      position: absolute; top: -60%; left: 50%; transform: translateX(-50%);
      width: 600px; height: 600px; border-radius: 50%;
      background: rgba(255,255,255,0.06);
    }
    .cta-band__inner { position: relative; z-index: 1; }
    .cta-band h2 {
      font-family: var(--display);
      font-size: clamp(30px,4.5vw,50px);
      font-weight: 800; color: #fff; line-height: 1.1;
      letter-spacing: -0.02em; margin-bottom: 16px;
    }
    .cta-band p { font-size: 18px; color: rgba(255,255,255,0.8); margin-bottom: 36px; }
    .cta-band .btn { background: #fff; color: var(--adobe); font-size: 16px; padding: 17px 38px; }
    .cta-band .btn:hover { background: var(--sand); transform: translateY(-2px); }
    .cta-band__contact {
      margin-top: 20px;
      font-size: 14px;
      color: rgba(255,255,255,0.75);
    }
    .cta-band__contact a {
      color: rgba(255,255,255,0.9);
      font-weight: 600;
      transition: color 0.15s;
    }
    .cta-band__contact a:hover { color: #fff; }

    /* ── FOOTER ──────────────────────────────────── */
    .footer { background: var(--mesa); padding: 48px 28px 32px; }
    .footer__inner {
      max-width: 1120px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1fr 1fr;
      gap: 40px; padding-bottom: 32px;
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .footer__brand .nav__logo { font-size: 18px; margin-bottom: 12px; }
    .footer__brand p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.6; }
    .footer__col h3 {
      font-family: var(--display); font-size: 12px; font-weight: 700;
      letter-spacing: 0.1em; text-transform: uppercase;
      color: rgba(255,255,255,0.9); margin-bottom: 14px;
    }
    .footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
    .footer__col ul a { font-size: 14px; color: rgba(255,255,255,0.65); transition: color 0.15s; }
    .footer__col ul a:hover { color: #fff; }
    .footer__copy {
      max-width: 1120px; margin: 24px auto 0;
      text-align: center; font-size: 12px; color: rgba(255,255,255,0.5);
    }
    .footer__contact {
      display: flex; flex-direction: column; gap: 10px;
      margin-top: 16px;
    }
    .footer__contact-item {
      display: flex; align-items: center; gap: 8px;
      font-size: 13px; color: rgba(255,255,255,0.65);
      transition: color 0.15s;
    }
    .footer__contact-item:hover { color: #fff; }

    /* ── FORM GLOW ──────────────────────────────── */
    .hero__form.form-glow {
      animation: formPulse 1.6s ease forwards;
    }
    @keyframes formPulse {
      0%   { box-shadow: 0 0 0 0px rgba(192,74,40,0), 0 24px 60px rgba(0,0,0,0.3); }
      25%  { box-shadow: 0 0 0 5px rgba(192,74,40,0.9), 0 24px 60px rgba(0,0,0,0.3); }
      55%  { box-shadow: 0 0 0 10px rgba(192,74,40,0.4), 0 28px 70px rgba(192,74,40,0.2); }
      100% { box-shadow: 0 0 0 0px rgba(192,74,40,0), 0 24px 60px rgba(0,0,0,0.3); }
    }

    /* ── SUBPAGE: PAGE HERO ──────────────────────── */
    /* Full-bleed image hero for inner pages, same visual treatment as the
       homepage .hero (image + gradient mask), but content-height instead
       of forced 100vh. Each page sets its own image via an inline
       background-image style on .page-hero__bg-img — no CSS edit needed
       per page, just drop a new image path into that page's HTML. */
    .page-hero {
      background: var(--mesa);
      position: relative;
      overflow: hidden;
      padding-bottom: 64px;
    }
    .page-hero__bg-img {
      position: absolute; inset: 0;
      background-image: var(--hero-img);
      background-size: cover; background-position: center 40%;
    }
    .page-hero__overlay {
      position: absolute; inset: 0;
      background: linear-gradient(
        to right,
        rgba(43,32,24,0.96) 0%,
        rgba(43,32,24,0.90) 45%,
        rgba(43,32,24,0.55) 73%,
        rgba(43,32,24,0.30) 100%
      );
    }
    .breadcrumb {
      display: flex; align-items: center; gap: 8px;
      font-size: 13px; font-family: var(--display); font-weight: 500;
      color: rgba(255,255,255,0.45);
      margin-bottom: 22px;
    }
    .breadcrumb a { color: rgba(255,255,255,0.65); transition: color 0.15s; }
    .breadcrumb a:hover { color: var(--sage); }
    .breadcrumb span[aria-current] { color: rgba(255,255,255,0.85); }

    /* ── PAGE HERO — SOLO VARIANT (flat bg, no image, no form) ──── */
    /* For informational pages (e.g. cost-guide.html) that link out to the
       homepage's form instead of embedding their own. Single centered
       column rather than the .hero__inner two-column grid. */
    .page-hero__solo {
      max-width: 760px;
      margin: 0 auto;
      text-align: center;
      padding: 130px 24px 70px;
      position: relative; z-index: 2;
    }
    .page-hero__solo .breadcrumb { justify-content: center; }
    .page-hero__solo .hero__h1 { margin-bottom: 18px; }
    .page-hero__solo .hero__sub { margin: 0 auto 32px; }
    .page-hero__solo .cta-band__contact { margin-top: 18px; }

    /* ── FEATURE GRID (What's Included) ──────────── */
    .includes { padding: 100px 0; background: var(--sand); }
    .feature-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 36px; margin-top: 56px;
    }
    .feature-icon {
      width: 46px; height: 46px; border-radius: 12px;
      background: var(--sage-light); color: var(--sage);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 16px;
    }
    .feature-title {
      font-family: var(--display); font-size: 17px; font-weight: 800;
      color: var(--mesa); margin-bottom: 8px;
    }
    .feature-desc { font-size: 14px; color: var(--mid); line-height: 1.6; }

    /* ── TAKE / DON'T TAKE LIST ───────────────────── */
    .take { padding: 100px 0; background: var(--sand); }
    .take__grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 56px; margin-top: 48px;
    }
    .take__col h3 {
      font-family: var(--display); font-size: 19px; font-weight: 800;
      color: var(--mesa); margin-bottom: 20px;
    }
    .take__list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
    .take__list li {
      display: flex; align-items: flex-start; gap: 12px;
      font-size: 15px; color: var(--mesa); font-weight: 500;
    }
    .exclude-icon {
      width: 22px; height: 22px; border-radius: 50%;
      background: var(--adobe); color: #fff; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      margin-top: 1px;
    }
    .take__note {
      font-size: 13px; color: var(--mid); margin-top: 20px; line-height: 1.6;
    }

    /* ── FAQ ──────────────────────────────────────── */
    .faq { padding: 100px 0; }
    .faq__list { max-width: 760px; margin: 56px auto 0; display: flex; flex-direction: column; gap: 14px; }
    .faq__item {
      background: #fff; border: 1px solid var(--line); border-radius: 14px;
      padding: 4px 24px; transition: border-color 0.15s;
    }
    .faq__item[open] { border-color: var(--sage); }
    .faq__item summary {
      list-style: none; cursor: pointer; padding: 18px 0;
      display: flex; align-items: center; justify-content: space-between; gap: 16px;
      font-family: var(--display); font-weight: 700; font-size: 16px; color: var(--mesa);
    }
    .faq__item summary::-webkit-details-marker { display: none; }
    .faq__item summary span { flex: 1; }
    .faq__chev { flex-shrink: 0; color: var(--sage); transition: transform 0.2s; }
    .faq__item[open] .faq__chev { transform: rotate(180deg); }
    .faq__item p { font-size: 14px; color: var(--mid); line-height: 1.7; padding-bottom: 20px; }

    /* ── RELATED SERVICES (3-up grid modifier) ────── */
    .services__grid--related { grid-template-columns: repeat(3, 1fr); }

    /* ── SECTION BACKGROUND OVERRIDE ──────────────── */
    /* Utility for breaking up consecutive same-toned sections — e.g. when
       a sand section (.includes/.services) needs to sit between two other
       sand sections. Add alongside the base section class. */
    .section--white { background: var(--white); }

    /* ── SHARED ONE-OFF PATTERNS (formerly inline styles) ────────── */
    /* Lead paragraph under a tightened section-title, used in the left
       column of .how-style sections across multiple pages. */
    .section-title--tight { margin-bottom: 8px; }
    .section-lead { font-size: 17px; color: var(--mid); margin-bottom: 40px; }

    /* Centers the hero tag badge when it sits inside the no-image,
       single-column "solo" hero variant (cost-guide, hoarding-cleanup). */
    .page-hero__solo .hero__tag { justify-content: center; }

    /* Narrower, centered section intro — used when a section's intro
       copy reads better constrained than the full container width. */
    .services__head--narrow { max-width: 720px; margin-left: auto; margin-right: auto; }

    /* Pricing section variant with no price cards — single centered
       column instead of the normal two-column pricing layout. */
    .pricing--solo .pricing__inner { grid-template-columns: 1fr; }
    .pricing--solo .pricing__text { max-width: 640px; margin: 0 auto; text-align: center; }

    /* ── REVEAL ──────────────────────────────────── */
    .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.2s ease, border-color 0.2s ease; }
    .reveal.in { opacity: 1; transform: none; }
    @media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

    /* ── RESPONSIVE ──────────────────────────────── */
    /* Nav collapses at a higher breakpoint than the rest of the layout —
       the desktop nav (logo + links + CTA) needs more room than 900px
       gives it, so it switches to the burger menu earlier to avoid
       wrapping in that dead zone. */
    @media (max-width: 960px) {
      .nav__links { display: none; }
      .nav__burger { display: flex; }
    }

    @media (max-width: 900px) {
      .hero__inner, .intro__inner, .how__inner,
      .pricing__inner, .why__inner { grid-template-columns: 1fr; gap: 40px; }
      .services__grid { grid-template-columns: 1fr; }
      .footer__inner { grid-template-columns: 1fr; }
      .hero__inner { padding-top: 100px; }
      .page-hero__solo { padding-top: 100px; }
      .why__img { position: static; }
      .form-row { grid-template-columns: 1fr; gap: 0; }
      .hero__stats {
        flex-wrap: nowrap; 
        justify-content: space-between;
        text-align: center;
      }
      .nav__phone { display: none; }
      .scroll-indicator { display: none; }
      .feature-grid { grid-template-columns: 1fr 1fr; }
      .take__grid { grid-template-columns: 1fr; gap: 32px; }
    }

    @media (max-width: 767px) {
      .hero__stats { 
        gap: 10px; 
        flex-wrap: nowrap; 
        justify-content: space-between;
        text-align: center;
      }
      .hero__stat-num { font-size: 26px; }
      .hero__stat-label { font-size: 11px; }
      .hero__bg-img {
        background-image: url('../images/hero-mobile.webp');
      }
      .page-hero__bg-img {
        background-image: var(--hero-img-mobile);
      }
      .intro__img-accent {
        right: -20px;
      }
    }

    @media (max-width: 600px) {
      .feature-grid { grid-template-columns: 1fr; }
    }

    @media (max-width: 500px) {
      .pricing__card {
        gap: 7px;
        flex-direction: column;
      }
      .pricing__card-label { font-size: 18px; }
      .pricing__card-range { text-align: center; }
    }