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

    :root {
      --black:      #0d0d0d;
      --dark:       #141414;
      --panel:      #1a1a1a;
      --border:     #2a2a2a;
      --orange:     #E8620A;
      --orange-d:   #c4520a;
      --green:      #3d7a20;
      --green-d:    #2e5f18;
      --cream:      #F0EDE6;
      --cream-d:    #e2ddd6;
      --white:      #ffffff;
      --muted:      #888480;
      --text-dark:  #1a1a1a;
      --font-h:     'Bebas Neue', sans-serif;
      --font-b:     'DM Sans', sans-serif;
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--black);
      color: var(--cream);
      font-family: var(--font-b);
      font-size: 17px;
      line-height: 1.7;
      -webkit-font-smoothing: antialiased;
    }

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

    /* ── TYPOGRAPHY ── */
    h1, h2, h3, h4 { font-family: var(--font-h); letter-spacing: 0.04em; line-height: 1.0; }

    .label {
      display: inline-block;
      font-family: var(--font-b);
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: 0.75rem;
    }

    .label--green { color: var(--green); }

    /* ── BUTTONS ── */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      font-family: var(--font-b);
      font-weight: 600;
      font-size: 0.95rem;
      letter-spacing: 0.04em;
      padding: 0.75rem 1.6rem;
      border-radius: 2px;
      border: 2px solid transparent;
      cursor: pointer;
      transition: all 0.18s ease;
      text-decoration: none;
      white-space: nowrap;
    }
    .btn:active { transform: scale(0.97); }
    .btn svg { flex-shrink: 0; }

    .btn-orange { background: var(--orange); color: #fff; border-color: var(--orange); }
    .btn-orange:hover { background: var(--orange-d); border-color: var(--orange-d); }

    .btn-outline-orange { background: transparent; color: var(--orange); border-color: var(--orange); }
    .btn-outline-orange:hover { background: var(--orange); color: #fff; }

    .btn-green { background: var(--green); color: #fff; border-color: var(--green); }
    .btn-green:hover { background: var(--green-d); border-color: var(--green-d); }

    .btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
    .btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

    .btn-lg { font-size: 1.05rem; padding: 0.9rem 2rem; }

    /* ── NAV ── */
    nav {
      position: sticky;
      top: 0;
      z-index: 200;
      background: rgba(13,13,13,0.97);
      border-bottom: 2px solid var(--orange);
      backdrop-filter: blur(8px);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: 0.85rem 2rem;
    }

    .nav-brand {
      display: flex;
      flex-direction: column;
    }

    .nav-brand .name {
      font-family: var(--font-h);
      font-size: 1.6rem;
      letter-spacing: 0.08em;
      line-height: 1;
      color: var(--white);
    }

    .nav-brand .name span { color: var(--orange); }

    .nav-brand .tagline {
      font-size: 0.68rem;
      font-weight: 500;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--muted);
      margin-top: 0.1rem;
    }

    .nav-actions { display: flex; gap: 0.6rem; flex-shrink: 0; }

    /* ── SECTION WRAPPER ── */
    section { padding: 5rem 2rem; }
    .inner { max-width: 900px; margin: 0 auto; text-align: center; }
    .inner--left { max-width: 900px; margin: 0 auto; text-align: left; }

    /* ── HERO ── */
    #hero {
      position: relative;
      background: var(--black);
      overflow: hidden;
      padding: 6rem 2rem 5rem;
      text-align: center;
    }

    /* Topographic SVG texture */
    #hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='600'%3E%3Cg fill='none' stroke='rgba(232,98,10,0.07)' stroke-width='1'%3E%3Cellipse cx='300' cy='300' rx='280' ry='120'/%3E%3Cellipse cx='300' cy='300' rx='240' ry='100'/%3E%3Cellipse cx='300' cy='300' rx='200' ry='80'/%3E%3Cellipse cx='300' cy='300' rx='160' ry='60'/%3E%3Cellipse cx='300' cy='300' rx='120' ry='42'/%3E%3Cellipse cx='300' cy='300' rx='80' ry='28'/%3E%3Cellipse cx='300' cy='300' rx='40' ry='14'/%3E%3Cellipse cx='150' cy='200' rx='200' ry='90'/%3E%3Cellipse cx='150' cy='200' rx='160' ry='70'/%3E%3Cellipse cx='150' cy='200' rx='120' ry='52'/%3E%3Cellipse cx='450' cy='400' rx='200' ry='90'/%3E%3Cellipse cx='450' cy='400' rx='160' ry='70'/%3E%3Cellipse cx='450' cy='400' rx='120' ry='52'/%3E%3C/g%3E%3C/svg%3E");
      background-size: 600px 600px;
      pointer-events: none;
      opacity: 0.6;
    }

    /* Faded background text */
    #hero::after {
      content: 'SHREWSBURY & RURAL';
      position: absolute;
      bottom: -0.5rem;
      left: 50%;
      transform: translateX(-50%);
      font-family: var(--font-h);
      font-size: clamp(3rem, 10vw, 7rem);
      letter-spacing: 0.06em;
      color: rgba(255,255,255,0.03);
      white-space: nowrap;
      pointer-events: none;
      line-height: 1;
    }

    .hero-inner {
      position: relative;
      max-width: 780px;
      margin: 0 auto;
    }

    .hero-header-image {
      width: min(420px, 90vw);
      margin: 0 auto 2rem;
      border-radius: 6px;
      overflow: hidden;
      border: 2px solid rgba(232,98,10,0.35);
      box-shadow: 0 12px 35px rgba(0,0,0,0.45);
      background: var(--black);
    }

    .hero-header-image img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: contain;
    }

    .hero-chip {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(232,98,10,0.12);
      border: 1px solid rgba(232,98,10,0.35);
      color: var(--orange);
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      padding: 0.35rem 0.9rem;
      border-radius: 100px;
      margin-bottom: 1.5rem;
    }

    h1 {
      font-size: clamp(3.5rem, 10vw, 6rem);
      color: var(--white);
      margin-bottom: 1.25rem;
      text-transform: uppercase;
    }

    h1 .line-orange { color: var(--orange); display: block; }
    h1 .line-sub {
      font-size: 45%;
      color: rgba(240,237,230,0.55);
      display: block;
      letter-spacing: 0.08em;
      margin-top: 0.25rem;
    }

    .hero-p {
      font-size: 1.1rem;
      color: rgba(240,237,230,0.7);
      max-width: 580px;
      margin: 0 auto 2.5rem;
      line-height: 1.8;
    }

    .hero-btns {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      justify-content: center;
      margin-bottom: 1.5rem;
    }

    .hero-note {
      font-size: 0.83rem;
      color: var(--muted);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
    }

    .hero-note::before {
      content: '';
      display: inline-block;
      width: 6px;
      height: 6px;
      background: var(--orange);
      border-radius: 50%;
      flex-shrink: 0;
    }

    /* ── DIVIDER ── */
    .divider {
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--orange), transparent);
      border: none;
      margin: 0;
    }

    /* ── ENGINE PHOTO SECTION ── */
    #engine-photo {
      position: relative;
      height: 420px;
      overflow: hidden;
      padding: 0;
    }

    #engine-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      display: block;
    }

    .engine-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to right,
        rgba(13,13,13,0.92) 0%,
        rgba(13,13,13,0.7) 45%,
        rgba(13,13,13,0.3) 100%
      );
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .engine-text {
      text-align: center;
      max-width: 600px;
      padding: 2rem;
    }

    .engine-text h2 {
      font-size: clamp(2rem, 5vw, 3.2rem);
      color: var(--white);
      margin-bottom: 0.75rem;
      text-transform: uppercase;
    }

    .engine-text h2 span { color: var(--orange); }

    .engine-text p {
      color: rgba(240,237,230,0.8);
      font-size: 1rem;
      line-height: 1.75;
      max-width: 480px;
      margin: 0 auto 1.5rem;
    }

    /* ── TRUST ── */
    #about { background: var(--cream); }
    #about .label, #about h2, #about p, #about .section-lead { color: var(--text-dark); }
    #about .label { color: var(--orange); }

    #about h2 {
      font-size: clamp(2rem, 5vw, 3rem);
      text-transform: uppercase;
      margin-bottom: 1rem;
    }

    #about h2 span { color: var(--orange); }

    .section-lead {
      font-size: 1.05rem;
      max-width: 640px;
      margin: 0 auto 2.5rem;
      line-height: 1.8;
      color: #444;
    }

    .trust-row {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1px;
      background: var(--cream-d);
      border: 1px solid var(--cream-d);
      border-radius: 4px;
      overflow: hidden;
    }

    .trust-card {
      background: var(--cream);
      padding: 2rem 1.5rem;
      text-align: center;
    }

    .trust-icon {
      width: 44px;
      height: 44px;
      margin: 0 auto 1rem;
      color: var(--orange);
    }

    .trust-card h3 {
      font-family: var(--font-h);
      font-size: 1.25rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--text-dark);
      margin-bottom: 0.5rem;
    }

    .trust-card p {
      font-size: 0.9rem;
      color: #666;
      line-height: 1.65;
      margin: 0;
    }

    /* ── SERVICES ── */
    #services { background: var(--dark); }

    #services h2 {
      font-size: clamp(2rem, 5vw, 3rem);
      text-transform: uppercase;
      margin-bottom: 0.5rem;
      color: var(--white);
    }

    #services h2 span { color: var(--orange); }
    #services .section-lead { color: rgba(240,237,230,0.65); }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
      border-radius: 4px;
      overflow: hidden;
      margin-top: 2.5rem;
      text-align: left;
    }

    .service-card {
      background: var(--panel);
      padding: 1.25rem 1.25rem 1.25rem 1.1rem;
      border-left: 3px solid var(--orange);
      transition: background 0.15s;
    }

    .service-card.agri { border-left-color: var(--green); }

    .service-card:hover { background: #1f1f1f; }

    .service-card svg {
      width: 20px;
      height: 20px;
      color: var(--orange);
      margin-bottom: 0.5rem;
    }

    .service-card.agri svg { color: var(--green); }

    .service-card h4 {
      font-family: var(--font-h);
      font-size: 1.05rem;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 0.2rem;
    }

    .service-card p {
      font-size: 0.82rem;
      color: var(--muted);
      line-height: 1.5;
      margin: 0;
    }

    /* ── RURAL ── */
    #rural { background: var(--black); }

    #rural h2 {
      font-size: clamp(2rem, 5vw, 3rem);
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 1rem;
    }

    #rural h2 span { color: #4ea32a; }
    #rural .section-lead { color: rgba(240,237,230,0.65); }

    .rural-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
      margin-top: 2.5rem;
      text-align: left;
    }

    .rural-panel {
      background: var(--panel);
      border: 1px solid var(--border);
      border-radius: 4px;
      padding: 2rem;
    }

    .rural-panel h3 {
      font-family: var(--font-h);
      font-size: 1.4rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: #4ea32a;
      margin-bottom: 0.75rem;
    }

    .rural-panel p {
      font-size: 0.95rem;
      color: #aaa8a3;
      line-height: 1.75;
      margin-bottom: 0.75rem;
    }

    .rural-panel p:last-of-type { margin-bottom: 1.25rem; }

    .check-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      margin-bottom: 1.5rem;
    }

    .check-list li {
      display: flex;
      align-items: flex-start;
      gap: 0.6rem;
      font-size: 0.93rem;
      color: var(--cream);
    }

    .check-list li svg {
      flex-shrink: 0;
      margin-top: 3px;
      color: #4ea32a;
    }

    .rural-stat-panel {
      background: linear-gradient(145deg, var(--green-d), var(--green));
      border-radius: 4px;
      padding: 2.5rem 2rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
      text-align: center;
      gap: 1.25rem;
    }

    .rural-stat-panel .big-label {
      font-family: var(--font-h);
      font-size: clamp(2.5rem, 5vw, 3.5rem);
      line-height: 1;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      color: #fff;
    }

    .rural-stat-panel p {
      color: rgba(255,255,255,0.8);
      font-size: 0.95rem;
      line-height: 1.6;
    }

    .rural-stat-panel .dividing-rule {
      height: 1px;
      background: rgba(255,255,255,0.25);
      border: none;
    }

    /* ── EMERGENCY ── */
    #emergency { background: var(--orange); padding: 4rem 2rem; }

    .emergency-inner {
      max-width: 680px;
      margin: 0 auto;
      text-align: center;
    }

    .emergency-inner .label { color: rgba(255,255,255,0.7); letter-spacing: 0.2em; }

    .emergency-inner h2 {
      font-size: clamp(2.2rem, 6vw, 3.5rem);
      text-transform: uppercase;
      color: #fff;
      margin-bottom: 1rem;
    }

    .emergency-inner p {
      color: rgba(255,255,255,0.88);
      font-size: 1.05rem;
      line-height: 1.75;
      margin-bottom: 2rem;
    }

    .emergency-btns { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }

    .btn-white { background: #fff; color: var(--orange); border-color: #fff; }
    .btn-white:hover { background: var(--black); color: #fff; border-color: var(--black); }

    /* ── AREAS ── */
    #areas { background: var(--cream); }
    #areas h2 { font-size: clamp(2rem, 5vw, 3rem); text-transform: uppercase; color: var(--text-dark); }
    #areas h2 span { color: var(--orange); }
    #areas .section-lead { color: #555; }

    .areas-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      justify-content: center;
      margin-top: 2rem;
    }

    .area-tag {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      background: var(--cream-d);
      border: 1px solid #ccc9c2;
      padding: 0.45rem 0.9rem;
      border-radius: 100px;
      font-size: 0.88rem;
      font-weight: 500;
      color: var(--text-dark);
    }

    .area-tag svg { color: var(--orange); flex-shrink: 0; }

    .areas-note {
      margin-top: 1.75rem;
      font-size: 0.9rem;
      color: #777;
      text-align: center;
    }

    .areas-note a { color: var(--orange); font-weight: 600; }

    /* ── FAQ ── */
    #faq { background: var(--dark); }

    #faq h2 { font-size: clamp(2rem, 5vw, 3rem); text-transform: uppercase; color: var(--white); }
    #faq h2 span { color: var(--orange); }
    #faq .section-lead { color: rgba(240,237,230,0.6); }

    .faq-list {
      border: 1px solid var(--border);
      border-radius: 4px;
      overflow: hidden;
      margin-top: 2.5rem;
      text-align: left;
    }

    .faq-item { border-bottom: 1px solid var(--border); }
    .faq-item:last-child { border-bottom: none; }

    .faq-q {
      width: 100%;
      background: var(--panel);
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: 1.2rem 1.5rem;
      font-family: var(--font-b);
      font-size: 1rem;
      font-weight: 600;
      color: var(--white);
      text-align: left;
      transition: background 0.15s;
    }

    .faq-q:hover { background: #202020; }

    .faq-toggle {
      flex-shrink: 0;
      width: 24px;
      height: 24px;
      border-radius: 50%;
      border: 1.5px solid var(--orange);
      color: var(--orange);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.2s;
      font-size: 1.1rem;
      font-weight: 300;
      line-height: 1;
    }

    .faq-q[aria-expanded="true"] .faq-toggle { transform: rotate(45deg); }

    .faq-a {
      display: none;
      padding: 0 1.5rem 1.25rem;
      background: var(--dark);
      color: #aaa8a3;
      font-size: 0.97rem;
      line-height: 1.75;
    }

    .faq-a.open { display: block; }

    /* ── CONTACT ── */
    #contact { background: var(--black); }

    #contact h2 { font-size: clamp(2rem, 5vw, 3rem); text-transform: uppercase; color: var(--white); }
    #contact h2 span { color: var(--orange); }
    #contact .section-lead { color: rgba(240,237,230,0.6); }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: 2rem;
      margin-top: 2.5rem;
      text-align: left;
    }

    .contact-left { display: flex; flex-direction: column; gap: 1rem; }

    .cta-block {
      background: var(--panel);
      border: 1px solid var(--border);
      border-radius: 4px;
      padding: 1.75rem;
    }

    .cta-block h3 {
      font-family: var(--font-h);
      font-size: 1.3rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 0.4rem;
    }

    .cta-block p { font-size: 0.9rem; color: var(--muted); margin-bottom: 1rem; }

    .cta-block .num {
      font-family: var(--font-h);
      font-size: 1.8rem;
      letter-spacing: 0.04em;
      color: var(--orange);
      display: block;
      margin-bottom: 1rem;
    }

    /* ── FORM ── */
    .form-panel {
      background: var(--panel);
      border: 1px solid var(--border);
      border-radius: 4px;
      padding: 2rem;
    }

    .form-panel h3 {
      font-family: var(--font-h);
      font-size: 1.6rem;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--white);
      margin-bottom: 1.5rem;
    }

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

    .field {
      position: relative;
      margin-bottom: 1.1rem;
    }

    .field label {
      display: block;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 0.4rem;
    }

    .field input,
    .field textarea,
    .field select {
      width: 100%;
      background: var(--dark);
      border: 1px solid var(--border);
      border-radius: 2px;
      padding: 0.7rem 0.9rem;
      font-family: var(--font-b);
      font-size: 0.97rem;
      color: var(--cream);
      outline: none;
      transition: border-color 0.15s;
      appearance: none;
    }

    .field select {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath fill='%23888480' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 0.9rem center;
      padding-right: 2.2rem;
    }

    .field input:focus,
    .field textarea:focus,
    .field select:focus { border-color: var(--orange); }

    .field textarea { resize: vertical; min-height: 90px; }
    .field select option { background: var(--dark); }

    .form-submit { width: 100%; margin-top: 0.25rem; font-size: 1rem; padding: 0.9rem; }

    /* ── FOOTER ── */
    footer {
      background: #080808;
      border-top: 2px solid var(--orange);
      padding: 2.5rem 2rem;
      text-align: center;
    }

    .footer-inner { max-width: 900px; margin: 0 auto; }

    .footer-brand {
      font-family: var(--font-h);
      font-size: 2rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 0.3rem;
    }

    .footer-brand span { color: var(--orange); }

    footer p { font-size: 0.88rem; color: var(--muted); margin-top: 0.3rem; }
    footer a { color: var(--orange); font-weight: 600; }
    footer a.green { color: var(--green); }

    .footer-seo {
      margin-top: 1.5rem;
      padding-top: 1.5rem;
      border-top: 1px solid var(--border);
      font-size: 0.78rem;
      color: #3a3a3a;
    }

    /* ── STICKY MOBILE BAR ── */
    .sticky-bar {
      display: none;
      position: fixed;
      bottom: 0; left: 0; right: 0;
      z-index: 300;
      background: var(--black);
      border-top: 2px solid var(--orange);
      padding: 0.7rem 1rem;
      gap: 0.5rem;
    }

    .sticky-bar .btn { flex: 1; font-size: 0.9rem; padding: 0.65rem 0.5rem; }

    /* ── RESPONSIVE ── */
    @media (max-width: 780px) {
      nav { padding: 0.75rem 1.25rem; }
      nav .nav-actions .btn:last-child { display: none; }
      section { padding: 3.5rem 1.25rem; }
      .rural-grid { grid-template-columns: 1fr; }
      .contact-grid { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
      #engine-photo { height: 300px; }
      .engine-overlay {
        background: linear-gradient(to bottom, rgba(13,13,13,0.7), rgba(13,13,13,0.85));
      }
      .sticky-bar { display: flex; }
      body { padding-bottom: 68px; }
    }

    @media (max-width: 500px) {
      nav .nav-actions .btn:nth-child(2) { display: none; }
      .services-grid { grid-template-columns: 1fr 1fr; }
    }
  