  :root {
    /* Jurassic Park-inspired palette, per brand reference */
    --forest: #224f2f;
    --forest-dark: #132e1c;
    --fern: #3d7a4d;
    --amber: #ffd700;
    --amber-dark: #a0522d;
    --rust: #a30000;
    --rust-dark: #7a0000;
    --cream: #f6f0e2;
    --cream-dark: #ece2c9;
    --charcoal: #1a1a1a;
    --stone: #6e6e6e;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(16, 37, 27, 0.2);
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Inter', sans-serif;
    color: var(--charcoal);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
  }

  h1, h2, h3, .brand {
    font-family: 'Righteous', cursive;
    line-height: 1.15;
    letter-spacing: 0.5px;
  }

  a { text-decoration: none; color: inherit; }
  ul { list-style: none; }
  img { max-width: 100%; display: block; }

  .container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
  }

  .eyebrow {
    display: inline-block;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--rust);
    background: rgba(163, 0, 0, 0.1);
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 14px;
  }

  /* ===== Announcement bar ===== */
  .announce {
    background: var(--forest-dark);
    color: var(--cream);
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 9px 16px;
    letter-spacing: 0.3px;
  }
  .announce span.emoji { margin-right: 6px; }

  /* ===== Header ===== */
  header {
    background: var(--cream);
    border-bottom: 1px solid rgba(42,33,24,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
  }
  .brand-lockup {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .brand-lockup img { width: auto; height: 129px; }
  .brand {
    font-size: 1.35rem;
    color: var(--forest);
  }
  .brand small {
    display: block;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.6rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--rust);
  }

  nav.primary { display: flex; align-items: center; gap: 24px; }
  nav.primary ul { display: flex; gap: 18px; }
  nav.primary a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--charcoal);
    position: relative;
    padding: 4px 0;
  }
  nav.primary a::after {
    content: "";
    position: absolute;
    left: 0; bottom: -2px;
    width: 0; height: 2px;
    background: var(--rust);
    transition: width 0.2s ease;
  }
  nav.primary a:hover::after { width: 100%; }

  /* Stone / fossil "Call Us" badge — matches the rock-texture reference button */
  .call-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background:
      radial-gradient(circle at 20% 20%, rgba(255,255,255,0.25) 0%, transparent 45%),
      radial-gradient(circle at 80% 85%, rgba(0,0,0,0.25) 0%, transparent 50%),
      linear-gradient(135deg, #9a9488 0%, #6f6a5f 45%, #8c8678 100%);
    color: #3f6e2e;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 12px 24px 12px 18px;
    border-radius: 12px;
    box-shadow:
      inset 0 2px 2px rgba(255,255,255,0.35),
      inset 0 -3px 5px rgba(0,0,0,0.35),
      0 6px 14px rgba(16,37,27,0.3);
    border: 1px solid rgba(0,0,0,0.25);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    white-space: nowrap;
    text-shadow: 1px 1px 0 #d8f0c4, -1px -1px 1px rgba(0,0,0,0.4);
  }
  .call-btn:hover { transform: translateY(-2px); box-shadow: inset 0 2px 2px rgba(255,255,255,0.35), inset 0 -3px 5px rgba(0,0,0,0.35), 0 10px 20px rgba(16,37,27,0.4); }
  .call-btn svg { width: 19px; height: 19px; fill: #3f6e2e; flex-shrink: 0; filter: drop-shadow(1px 1px 0 #d8f0c4); }
  .call-btn.large { padding: 16px 30px 16px 22px; font-size: 1.1rem; border-radius: 14px; }

  /* Call Us — actual stone button image asset */
  .call-btn-img {
    display: inline-flex;
    align-items: center;
    transition: transform 0.15s ease, filter 0.15s ease;
  }
  .call-btn-img:hover { transform: translateY(-2px); filter: brightness(1.08); }
  .call-btn-img img { height: 46px; width: auto; display: block; }
  .call-btn-img.large img { height: 64px; }

  /* Get a Quote — actual stone button image asset */
  .quote-btn-img {
    display: inline-flex;
    align-items: center;
    transition: transform 0.15s ease, filter 0.15s ease;
  }
  .quote-btn-img:hover { transform: translateY(-2px); filter: brightness(1.08); }
  .quote-btn-img img { height: 46px; width: auto; display: block; }
  .quote-btn-img.large img { height: 64px; }

  .menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.6rem;
    color: var(--forest);
    cursor: pointer;
  }

  /* ===== Hero ===== */
  .hero {
    position: relative;
    background: radial-gradient(ellipse at top right, #244a35 0%, var(--forest) 45%, var(--forest-dark) 100%);
    color: var(--cream);
    padding: 90px 0 110px;
    overflow: hidden;
  }
  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
      radial-gradient(circle, rgba(255,215,0,0.12) 1.5px, transparent 1.5px),
      url('jungle-pattern.jpg');
    background-size: 22px 22px, 380px auto;
    background-repeat: repeat, repeat;
    opacity: 0.22;
  }
  .hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
  }
  .hero h1 {
    font-size: 3.1rem;
    margin-bottom: 20px;
  }
  .hero h1 .accent { color: var(--amber); }
  .hero p.lead {
    font-size: 1.15rem;
    color: rgba(246,240,226,0.85);
    max-width: 500px;
    margin-bottom: 32px;
  }
  .hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
  .jingle-link-wrap { margin-top: 20px; }
  .jingle-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--cream);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    border-bottom: 2px dashed var(--amber);
    padding-bottom: 2px;
    cursor: pointer;
    transition: color 0.15s ease;
  }
  .jingle-link svg { width: 20px; height: 20px; fill: none; stroke: var(--amber); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
  .jingle-link:hover { color: var(--amber); }
  .jingle-link.playing { color: var(--amber); }
  .jingle-link.playing svg { stroke: var(--amber); animation: jinglePulse 0.9s ease-in-out infinite; }
  @keyframes jinglePulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.15); } }
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 28px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
  }
  .btn-primary {
    background: linear-gradient(135deg, var(--amber) 0%, var(--rust) 100%);
    color: var(--white);
    box-shadow: 0 8px 22px rgba(163,0,0,0.4);
  }
  .btn-primary:hover { transform: translateY(-2px); }
  .btn-ghost {
    background: transparent;
    color: var(--cream);
    border: 2px solid rgba(246,240,226,0.4);
  }
  .btn-ghost:hover { border-color: var(--cream); background: rgba(246,240,226,0.08); }

  .hero-art {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero-art img {
    width: 100%;
    max-width: 380px;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.4), 0 0 0 6px rgba(246,240,226,0.9);
    transform: rotate(3deg);
    transition: transform 0.3s ease;
  }
  .hero-art img:hover { transform: rotate(0deg) scale(1.02); }

  .hero-stats {
    position: relative;
    margin-top: 56px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    border-top: 1px solid rgba(246,240,226,0.15);
    padding-top: 32px;
  }
  .hero-stats .stat-num {
    font-family: 'Righteous', cursive;
    font-size: 1.9rem;
    color: var(--amber);
  }
  .hero-stats .stat-label {
    font-size: 0.82rem;
    color: rgba(246,240,226,0.7);
    font-weight: 600;
  }

  /* ===== Trust bar ===== */
  .trust-bar {
    background: var(--white);
    padding: 22px 0;
    border-bottom: 1px solid rgba(42,33,24,0.06);
  }
  .trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
  }
  .trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--forest);
  }
  .trust-item svg { width: 26px; height: 26px; fill: var(--rust); }

  /* ===== Section shared ===== */
  section { padding: 90px 0; }
  .section-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
  .section-head h2 { font-size: 2.2rem; color: var(--forest); margin-bottom: 14px; }
  .section-head p { color: var(--stone); font-size: 1.05rem; }

  /* ===== Services ===== */
  .services { background: var(--cream) url('footprints-pattern.jpg') repeat; background-size: 300px auto; }
  .service-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
  }
  .service-card {
    background: var(--white);
    border-radius: 18px;
    padding: 22px 16px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(42,33,24,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 34px rgba(16,37,27,0.18); }
  .service-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--fern), var(--forest));
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
  }
  .service-icon svg { width: 28px; height: 28px; fill: var(--amber); }
  .service-card h3 { font-family: 'Inter', sans-serif; font-weight: 800; font-size: 1.15rem; color: var(--charcoal); margin-bottom: 10px; }
  .service-badge-img { width: 100%; max-width: 140px; margin: 0 auto 14px; display: block; }
  .service-photo { width: 100%; height: 170px; object-fit: cover; border-radius: 14px; margin-bottom: 18px; display: block; }
  .service-card p { color: var(--charcoal); font-size: 0.95rem; }

  /* ===== How it works ===== */
  .how { background: var(--white); padding-bottom: 40px; }
  .how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
  }
  .how-step { text-align: center; position: relative; }
  .how-num {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--amber), var(--rust));
    color: var(--white);
    font-family: 'Righteous', cursive;
    font-size: 1.5rem;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 18px rgba(163,0,0,0.3);
  }
  .how-step h3 { font-size: 1.15rem; color: var(--forest); margin-bottom: 10px; }
  .how-step p { color: var(--stone); font-size: 0.95rem; max-width: 260px; margin: 0 auto; }

  /* ===== Why us ===== */
  .why {
    position: relative;
    background: linear-gradient(180deg, var(--forest-dark) 0%, var(--forest) 100%);
    color: var(--cream);
    overflow: hidden;
  }
  .why::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('jungle-pattern.jpg');
    background-size: 380px auto;
    background-repeat: repeat;
    opacity: 0.18;
  }
  .why-grid { position: relative; }
  .why-grid {
    display: grid;
    grid-template-columns: 1fr;
    text-align: center;
    align-items: center;
  }
  .why-grid h2 { text-align: center; max-width: 980px; margin-left: auto; margin-right: auto; }
  .why-list { text-align: left; }
  .why h2 { font-size: 2.3rem; margin-bottom: 34px; }
  .why > div > p.lead { color: rgba(246,240,226,0.8); margin-bottom: 30px; font-size: 1.05rem; }
  .why-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px 32px; }
  .why-item { display: flex; gap: 16px; align-items: flex-start; }
  .why-item .check {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: rgba(255,215,0,0.18);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
  }
  .why-item .check svg { width: 16px; height: 16px; fill: var(--amber); }
  .why-item h4 { font-family: 'Inter', sans-serif; font-weight: 700; font-size: 1.02rem; margin-bottom: 4px; }
  .why-item p { color: rgba(246,240,226,0.72); font-size: 0.92rem; }

  .fossil-card {
    background: rgba(246,240,226,0.06);
    border: 1px solid rgba(246,240,226,0.15);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
  }
  .fossil-card svg { width: 140px; margin: 0 auto 20px; }
  .fossil-card p { color: rgba(246,240,226,0.75); font-style: italic; font-size: 1.02rem; }
  .fossil-card .sig { margin-top: 16px; font-weight: 700; color: var(--amber); font-style: normal; }

  /* ===== Service area ===== */
  .area { background: var(--cream) url('footprints-pattern.jpg') repeat; background-size: 300px auto; text-align: center; }
  .area-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
  }
  .area-pills span {
    background: var(--white);
    border: 1px solid rgba(42,33,24,0.1);
    padding: 10px 20px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--forest);
  }

  /* ===== Testimonials ===== */
  .testimonials { background: var(--white); }
  .testimonials .section-head { margin-bottom: 90px; }
  .t-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
  }
  .t-card {
    background: var(--cream);
    border-radius: 18px;
    padding: 30px;
    border: 1px solid rgba(42,33,24,0.06);
  }
  .t-stars { color: var(--amber); font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
  .t-card p.quote { color: var(--charcoal); font-size: 0.98rem; margin-bottom: 18px; }
  .t-person { display: flex; align-items: center; gap: 12px; }
  .t-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
  .t-name { font-weight: 700; color: var(--forest); font-size: 0.92rem; }
  .t-loc { color: var(--stone); font-size: 0.82rem; }

  .t-card-mascot { position: relative; overflow: visible; }
  .t-card-mascot-img {
    position: absolute;
    top: -99px;
    left: 50%;
    transform: translateX(-50%);
    width: 118px;
    height: auto;
    max-width: none;
    z-index: 3;
    filter: drop-shadow(0 8px 10px rgba(0,0,0,0.25));
  }
  @media (max-width: 960px) {
    .t-card-mascot { margin-top: 50px; }
    .t-card-mascot-img { top: -84px; width: 100px; }
  }

  /* ===== CTA banner ===== */
  .cta-banner {
    background: linear-gradient(135deg, var(--rust) 0%, var(--amber-dark) 100%);
    color: var(--white);
    text-align: center;
    padding: 50px 0 70px;
    position: relative;
    overflow: hidden;
  }
  .cta-banner h2 { font-size: 2.1rem; margin-bottom: 14px; }
  .cta-banner p { color: rgba(255,255,255,0.9); margin-bottom: 30px; font-size: 1.05rem; }
  .cta-banner .btn-ghost { border-color: rgba(255,255,255,0.6); color: var(--white); }
  .cta-banner .btn-ghost:hover { background: rgba(255,255,255,0.15); }
  .cta-banner .btn-white {
    background: var(--white);
    color: var(--rust);
  }

  /* ===== Contact ===== */
  .contact { background: var(--cream) url('footprints-pattern.jpg') repeat; background-size: 300px auto; }
  .contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
  }
  .contact-info h2 { font-size: 2rem; color: var(--forest); margin-bottom: 16px; }
  .contact-info p.lead { color: var(--stone); margin-bottom: 30px; }
  .info-row { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 22px; }
  .info-row .icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--white);
    box-shadow: var(--shadow);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .info-row .icon svg { width: 20px; height: 20px; fill: var(--rust); }
  .info-row h4 { font-size: 0.95rem; color: var(--charcoal); margin-bottom: 2px; }
  .info-row p, .info-row a { color: var(--stone); font-size: 0.92rem; }

  form.quote-form {
    background: var(--white);
    border-radius: 20px;
    padding: 36px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(42,33,24,0.05);
  }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
  .form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
  .form-group label { font-size: 0.85rem; font-weight: 700; color: var(--forest); }
  .form-group input, .form-group select, .form-group textarea {
    padding: 12px 14px;
    border-radius: 10px;
    border: 1.5px solid rgba(42,33,24,0.12);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    background: var(--cream);
  }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--amber);
  }
  .quote-form .btn-primary { width: 100%; justify-content: center; margin-top: 6px; }
  .form-note { font-size: 0.78rem; color: var(--stone); margin-top: 12px; text-align: center; }

  .checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 16px;
  }
  .checkbox-item {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--charcoal);
    cursor: pointer;
  }
  .checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--rust);
    cursor: pointer;
    flex-shrink: 0;
  }
  .other-input {
    display: none;
    margin-top: 12px;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1.5px solid rgba(42,33,24,0.12);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    background: var(--cream);
    width: 100%;
  }
  .other-input.visible { display: block; }
  .other-input:focus { outline: none; border-color: var(--amber); }
  @media (max-width: 480px) {
    .checkbox-grid { grid-template-columns: 1fr; }
  }

  /* ===== Service area map + town checker ===== */
  .area-map-wrap {
    position: relative;
    max-width: 720px;
    margin: 44px auto 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 3px solid var(--forest);
  }
  .area-map {
    width: 100%;
    height: 380px;
    border: 0;
    display: block;
  }
  .area-map-ring {
    position: absolute;
    inset: 7%;
    border: 3px dashed rgba(46, 143, 87, 0.9);
    border-radius: 50%;
    pointer-events: none;
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }
  .area-map-ring span {
    background: var(--rust);
    color: var(--white);
    font-weight: 800;
    font-size: 0.72rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 999px;
    margin-top: -14px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
  }

  /* ===== Pterodactyl orbiting the map's inner circle ===== */
  .map-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    z-index: 6;
    pointer-events: none;
  }
  .map-orbit-spin {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    animation: orbitSpin 19s linear infinite;
  }
  .map-orbit-img {
    position: absolute;
    top: -110px;
    left: 0;
    width: 44px;
    max-width: none;
    height: auto;
    display: block;
    filter: drop-shadow(0 3px 4px rgba(0,0,0,0.35));
    animation: orbitCounter 19s linear infinite, orbitRadius 19s linear infinite;
  }
  /* Angle keyframes are irregular on purpose — varies angular speed so the
     loop doesn't read as a perfect mechanical orbit. */
  @keyframes orbitSpin {
    0%   { transform: rotate(0deg); }
    9%   { transform: rotate(55deg); }
    22%  { transform: rotate(95deg); }
    31%  { transform: rotate(150deg); }
    47%  { transform: rotate(190deg); }
    58%  { transform: rotate(255deg); }
    69%  { transform: rotate(275deg); }
    83%  { transform: rotate(330deg); }
    100% { transform: rotate(360deg); }
  }
  /* Must mirror orbitSpin's angles exactly (negated) at the same percentage
     stops, so the bird stays upright instead of tilting through the turn. */
  @keyframes orbitCounter {
    0%   { transform: translateX(-50%) rotate(0deg); }
    9%   { transform: translateX(-50%) rotate(-55deg); }
    22%  { transform: translateX(-50%) rotate(-95deg); }
    31%  { transform: translateX(-50%) rotate(-150deg); }
    47%  { transform: translateX(-50%) rotate(-190deg); }
    58%  { transform: translateX(-50%) rotate(-255deg); }
    69%  { transform: translateX(-50%) rotate(-275deg); }
    83%  { transform: translateX(-50%) rotate(-330deg); }
    100% { transform: translateX(-50%) rotate(-360deg); }
  }
  /* Distance from the map's center — wanders in and out instead of holding
     one fixed radius, so the flight path looks organic, not a clean circle. */
  @keyframes orbitRadius {
    0%   { top: -110px; }
    14%  { top: -145px; }
    28%  { top: -65px; }
    42%  { top: -150px; }
    55%  { top: -95px; }
    70%  { top: -135px; }
    85%  { top: -55px; }
    100% { top: -110px; }
  }
  @media (max-width: 600px) {
    .map-orbit-img { top: -72px; width: 30px; animation-name: orbitCounter, orbitRadiusMobile; }
  }
  @keyframes orbitRadiusMobile {
    0%   { top: -72px; }
    14%  { top: -95px; }
    28%  { top: -42px; }
    42%  { top: -98px; }
    55%  { top: -62px; }
    70%  { top: -88px; }
    85%  { top: -36px; }
    100% { top: -72px; }
  }

  .area-checker {
    max-width: 560px;
    margin: 44px auto 0;
    background: var(--white);
    border-radius: 20px;
    padding: 34px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(42, 33, 24, 0.06);
    text-align: left;
  }
  .area-checker h3 {
    font-family: 'Righteous', cursive;
    color: var(--forest);
    font-size: 1.3rem;
    margin-bottom: 8px;
    text-align: center;
  }
  .area-checker > p {
    color: var(--stone);
    font-size: 0.92rem;
    text-align: center;
    margin-bottom: 22px;
  }
  .area-checker-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }
  .area-checker-row input {
    flex: 1;
    min-width: 200px;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1.5px solid rgba(42, 33, 24, 0.12);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    background: var(--cream);
  }
  .area-checker-row input:focus {
    outline: none;
    border-color: var(--amber);
  }
  .area-checker-row .btn {
    padding: 12px 26px;
  }
  .area-check-result { margin-top: 20px; }

  .service-badge {
    display: flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, rgba(255,215,0,0.18), rgba(224,147,46,0.06));
    border: 2px solid var(--amber);
    border-radius: 14px;
    padding: 16px 18px;
    animation: modalPop 0.2s ease;
  }
  .service-badge .stamp {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--fern), var(--forest));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 6px 14px rgba(16,37,27,0.3);
  }
  .service-badge .stamp svg { width: 28px; height: 28px; fill: var(--amber); }
  .service-badge strong {
    display: block;
    color: var(--forest);
    font-family: 'Righteous', cursive;
    font-size: 1.15rem;
  }
  .service-badge span { color: var(--stone); font-size: 0.88rem; }

  .no-service-badge {
    background: rgba(163,0,0,0.06);
    border: 2px solid rgba(163,0,0,0.25);
    border-radius: 14px;
    padding: 16px 18px;
    color: var(--charcoal);
    font-size: 0.92rem;
    animation: modalPop 0.2s ease;
  }
  .no-service-badge strong {
    display: block;
    color: var(--rust);
    font-family: 'Righteous', cursive;
    font-size: 1.05rem;
    margin-bottom: 4px;
  }

  @media (max-width: 600px) {
    .area-map { height: 260px; }
    .area-checker { padding: 26px 22px; }
  }

  /* Honeypot spam trap — hidden from real visitors, bots often fill it in anyway */
  .hp-field {
    position: absolute !important;
    left: -9999px !important;
    top: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
  }

  /* ===== Thank-you modal ===== */
  .modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(19, 46, 28, 0.82);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
  }
  .modal-overlay.active { display: flex; }
  .modal-box {
    background: var(--white);
    border-radius: 22px;
    max-width: 420px;
    width: 100%;
    text-align: center;
    padding: 20px 32px 32px;
    position: relative;
    box-shadow: 0 25px 60px rgba(0,0,0,0.45);
    border: 3px solid var(--rust);
    animation: modalPop 0.25s ease;
  }
  @keyframes modalPop {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
  }
  .modal-box img { width: 190px; margin: 0 auto 6px; }
  .modal-box h3 {
    font-family: 'Righteous', cursive;
    font-size: 1.7rem;
    color: var(--rust);
    margin-bottom: 8px;
  }
  .modal-box p { color: var(--stone); font-size: 1.02rem; margin-bottom: 22px; }
  .modal-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: rgba(42,33,24,0.08);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    color: var(--charcoal);
    line-height: 1;
  }
  .modal-box .btn-primary { width: 100%; justify-content: center; }

  /* ===== Footer ===== */
  footer {
    background: var(--forest-dark);
    color: rgba(246,240,226,0.7);
    padding: 60px 0 26px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }
  .footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
  .footer-brand img { width: 34px; height: 34px; }
  .footer-brand .brand { font-size: 1.1rem; color: var(--cream); }
  footer p.desc { font-size: 0.88rem; max-width: 280px; }
  footer h5 { color: var(--cream); font-size: 0.85rem; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px; }
  footer ul li { margin-bottom: 10px; font-size: 0.9rem; }
  footer ul li a:hover { color: var(--amber); }
  .footer-bottom {
    border-top: 1px solid rgba(246,240,226,0.1);
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    flex-wrap: wrap;
    gap: 10px;
  }

  /* ===== Responsive ===== */
  @media (max-width: 960px) {
    nav.primary ul { display: none; }
    .menu-toggle { display: block; }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-art { order: -1; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .service-grid { grid-template-columns: repeat(2, 1fr); }
    .how-grid { grid-template-columns: 1fr; gap: 50px; }
    .why-grid { grid-template-columns: 1fr; gap: 40px; }
    .why-list { grid-template-columns: repeat(2, 1fr); }
    .t-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 600px) {
    .brand-lockup img { height: 95px; }
    .hero h1 { font-size: 2.2rem; }
    .why-list { grid-template-columns: 1fr; }
    .service-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .call-btn span.txt { display: none; }
  }

  /* ===== Stone Tablet form theme (careers / application form) ===== */
  form.quote-form.tablet-form {
    position: relative;
    background: linear-gradient(135deg, #a8a196 0%, #7d786c 50%, #918c7e 100%);
    border: 3px solid rgba(0,0,0,0.4);
    border-radius: 16px;
    padding: 42px 38px;
    box-shadow:
      inset 0 3px 5px rgba(255,255,255,0.35),
      inset 0 -8px 14px rgba(0,0,0,0.4),
      0 22px 50px rgba(0,0,0,0.4);
    overflow: hidden;
  }
  form.quote-form.tablet-form::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('appliance-removal-stone.png');
    background-size: cover;
    background-position: center;
    opacity: 0.16;
    mix-blend-mode: multiply;
    pointer-events: none;
  }
  form.quote-form.tablet-form::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 13px;
    box-shadow: inset 0 0 0 2px rgba(255,255,255,0.15);
    pointer-events: none;
  }
  .tablet-form > * { position: relative; z-index: 1; }
  .tablet-form .tablet-heading {
    font-family: 'Righteous', cursive;
    font-size: 1.4rem;
    text-align: center;
    color: #2a2a24;
    text-shadow: 0 1px 0 rgba(255,255,255,0.5), 0 -1px 0 rgba(0,0,0,0.25);
    letter-spacing: 1px;
    margin-bottom: 26px;
    padding-bottom: 16px;
    border-bottom: 2px solid rgba(0,0,0,0.2);
  }
  .tablet-form .form-group label {
    color: #24241f;
    text-shadow: 0 1px 0 rgba(255,255,255,0.45);
    font-family: 'Righteous', cursive;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    font-size: 0.72rem;
  }
  .tablet-form .form-group input,
  .tablet-form .form-group select,
  .tablet-form .form-group textarea {
    background: #f1ead9;
    border: 2px solid rgba(0,0,0,0.3);
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.28);
  }
  .tablet-form .form-group input:focus,
  .tablet-form .form-group select:focus,
  .tablet-form .form-group textarea:focus {
    border-color: var(--rust);
  }
  .tablet-form .form-note {
    color: rgba(36,36,31,0.75);
    font-weight: 600;
  }
  .call-btn.tablet-submit {
    width: 100%;
    justify-content: center;
    font-size: 1.05rem;
    padding: 16px 24px;
    margin-top: 8px;
    border-radius: 10px;
  }
