
    /* ===== RESET & BASE ===== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    :root {
      --red: #e31e24;
      --red-dark: #b91c1c;
      --red-glow: rgba(227, 30, 36, 0.3);
      --black: #0c0c0c;
      --dark: #141414;
      --dark2: #1c1c1c;
      --dark3: #242424;
      --grey: #888;
      --light-grey: #bbb;
      --white: #f5f5f5;
      --font-heading: 'Oswald', sans-serif;
      --font-body: 'Inter', sans-serif;
    }

    body {
      background: var(--black);
      color: var(--white);
      font-family: var(--font-body);
      font-size: 16px;
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* ===== NAV ===== */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      background: rgba(12, 12, 12, 0.95);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid #222;
      padding: 0 5%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 88px;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .nav-logo .wrench-icon {
      font-size: 24px;
      transform: rotate(-45deg);
      display: inline-block;
    }

    .nav-brand {
      font-family: var(--font-heading);
      font-size: 22px;
      font-weight: 700;
      letter-spacing: 1px;
      color: var(--white);
      text-decoration: none;
    }

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

    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
      list-style: none;
    }

    .nav-links a {
      color: var(--light-grey);
      text-decoration: none;
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      transition: color 0.2s;
    }

    .nav-links a:hover { color: var(--red); }

    .nav-cta {
      background: var(--red);
      color: #fff !important;
      padding: 9px 20px;
      border-radius: 4px;
      font-weight: 600 !important;
      transition: background 0.2s !important;
    }
    .nav-cta:hover { background: var(--red-dark) !important; color: #fff !important; }

    .nav-phone {
      display: flex;
      align-items: center;
      gap: 8px;
      color: var(--white) !important;
      font-size: 15px !important;
      font-weight: 600 !important;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 5px;
    }
    .hamburger span {
      width: 24px;
      height: 2px;
      background: var(--white);
      display: block;
      transition: all 0.3s;
    }

    /* ===== HERO ===== */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 62px 5% 44px;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        linear-gradient(135deg, rgba(227,30,36,0.08) 0%, transparent 50%),
        repeating-linear-gradient(
          -45deg,
          transparent,
          transparent 40px,
          rgba(255,255,255,0.012) 40px,
          rgba(255,255,255,0.012) 41px
        );
      z-index: 0;
    }

    /* Big background text */
    .hero::after {
      content: 'AUTO';
      position: absolute;
      right: -2%;
      top: 50%;
      transform: translateY(-50%);
      font-family: var(--font-heading);
      font-size: clamp(150px, 22vw, 320px);
      font-weight: 700;
      color: rgba(255,255,255,0.025);
      letter-spacing: -10px;
      line-height: 1;
      z-index: 0;
      pointer-events: none;
      user-select: none;
    }

    .hero-content {
      position: relative;
      z-index: 1;
      max-width: 700px;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(227,30,36,0.15);
      border: 1px solid rgba(227,30,36,0.4);
      color: var(--red);
      padding: 6px 16px;
      border-radius: 100px;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      margin-bottom: 28px;
    }

    .hero-badge::before { content: '●'; font-size: 8px; animation: pulse 2s infinite; }

    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.3; }
    }

    h1 {
      font-family: var(--font-heading);
      font-size: clamp(44px, 6vw, 80px);
      font-weight: 700;
      line-height: 1.05;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 24px;
    }

    h1 .accent { color: var(--red); }

    .hero-sub {
      font-size: clamp(16px, 2vw, 19px);
      color: var(--light-grey);
      font-weight: 300;
      margin-bottom: 40px;
      max-width: 520px;
      line-height: 1.7;
    }

    .hero-actions {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      align-items: center;
    }

    .btn-primary {
      background: var(--red);
      color: #fff;
      padding: 16px 36px;
      font-family: var(--font-heading);
      font-size: 16px;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      text-decoration: none;
      display: inline-block;
      transition: all 0.2s;
      position: relative;
      overflow: hidden;
    }

    .btn-primary::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
      transform: translateX(-100%);
      transition: transform 0.5s;
    }

    .btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 24px var(--red-glow); }
    .btn-primary:hover::after { transform: translateX(100%); }

    .btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--white);
      text-decoration: none;
      font-weight: 600;
      font-size: 15px;
      border: 1.5px solid #333;
      padding: 15px 28px;
      border-radius: 4px;
      transition: all 0.2s;
    }
    .btn-secondary:hover { border-color: var(--red); color: var(--red); }

    .hero-stats {
      margin-top: 60px;
      display: flex;
      gap: 48px;
      flex-wrap: wrap;
    }

    .hero-stat {
      border-left: 3px solid var(--red);
      padding-left: 16px;
    }

    .hero-stat-num {
      font-family: var(--font-heading);
      font-size: 32px;
      font-weight: 700;
      color: var(--white);
      line-height: 1;
    }

    .hero-stat-label {
      font-size: 13px;
      color: var(--grey);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-top: 4px;
    }

    /* ===== MARQUEE STRIP ===== */
    .marquee-strip {
      background: var(--red);
      padding: 14px 0;
      overflow: hidden;
      white-space: nowrap;
    }

    .marquee-inner {
      display: inline-flex;
      animation: marquee 20s linear infinite;
    }

    @keyframes marquee {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }

    .marquee-item {
      font-family: var(--font-heading);
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: #fff;
      padding: 0 32px;
    }

    .marquee-item::before {
      content: '⚙';
      margin-right: 16px;
      opacity: 0.7;
    }

    /* ===== SECTIONS ===== */
    section {
      padding: 62px 5%;
    }

    .section-label {
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 16px;
    }

    h2 {
      font-family: var(--font-heading);
      font-size: clamp(32px, 4.5vw, 54px);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      line-height: 1.1;
      margin-bottom: 16px;
    }

    .section-intro {
      color: var(--light-grey);
      font-size: 17px;
      font-weight: 300;
      max-width: 580px;
      margin-bottom: 60px;
      line-height: 1.7;
    }

    /* ===== USP BAR ===== */
    .usp-bar {
      background: var(--dark2);
      border-top: 1px solid #222;
      border-bottom: 1px solid #222;
      padding: 60px 5%;
    }

    .usp-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 40px;
    }

    .usp-item {
      text-align: center;
    }

    .usp-icon {
      margin-bottom: 16px;
      display: flex;
      justify-content: center;
    }
    .usp-icon svg { width: 40px; height: 40px; stroke: var(--red); stroke-width: 1.5; }

    .usp-title {
      font-family: var(--font-heading);
      font-size: 18px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 8px;
      color: var(--white);
    }

    .usp-desc {
      font-size: 14px;
      color: var(--grey);
      line-height: 1.6;
    }

    /* ===== SERVICES ===== */
    .services-section { background: var(--dark); }

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

    .service-card {
      background: var(--dark2);
      padding: 40px 36px;
      position: relative;
      overflow: hidden;
      transition: all 0.3s;
      cursor: default;
    }

    .service-card::before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--red);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.3s;
    }

    .service-card:hover { background: var(--dark3); transform: translateY(-4px); }
    .service-card:hover::before { transform: scaleX(1); }

    .service-num {
      font-family: var(--font-heading);
      font-size: 48px;
      font-weight: 700;
      color: rgba(227,30,36,0.15);
      position: absolute;
      top: 20px;
      right: 24px;
      line-height: 1;
    }

    .service-icon {
      margin-bottom: 20px;
      display: block;
    }
    .service-icon svg { width: 36px; height: 36px; stroke: var(--red); stroke-width: 1.5; }

    .service-title {
      font-family: var(--font-heading);
      font-size: 22px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 12px;
      color: var(--white);
    }

    .service-desc {
      font-size: 14px;
      color: var(--grey);
      line-height: 1.7;
    }

    /* ===== HOW IT WORKS ===== */
    .how-section { background: var(--black); }

    .steps {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 2px;
      position: relative;
    }

    .step {
      padding: 48px 36px;
      background: var(--dark2);
      position: relative;
    }

    .step-num {
      font-family: var(--font-heading);
      font-size: 80px;
      font-weight: 700;
      color: rgba(227,30,36,0.2);
      line-height: 1;
      margin-bottom: 20px;
    }

    .step-title {
      font-family: var(--font-heading);
      font-size: 24px;
      font-weight: 600;
      text-transform: uppercase;
      margin-bottom: 12px;
    }

    .step-desc {
      font-size: 15px;
      color: var(--grey);
      line-height: 1.7;
    }

    .step-arrow {
      position: absolute;
      right: -20px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--red);
      font-size: 24px;
      z-index: 2;
    }

    /* ===== AREA COVERAGE ===== */
    .area-section {
      background: var(--dark2);
      text-align: center;
    }

    .areas-list {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: center;
      margin-top: 40px;
    }

    .area-tag {
      background: var(--dark3);
      border: 1px solid #333;
      color: var(--light-grey);
      padding: 8px 20px;
      border-radius: 100px;
      font-size: 14px;
      font-weight: 500;
      transition: all 0.2s;
    }

    .area-tag:hover {
      border-color: var(--red);
      color: var(--red);
    }

    /* ===== BOOKING FORM ===== */
    .booking-section {
      background: var(--dark);
    }

    .booking-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
    }

    .booking-info h2 { margin-bottom: 20px; }

    .booking-detail {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 20px 0;
      border-bottom: 1px solid #222;
    }

    .booking-detail-icon {
      width: 48px;
      height: 48px;
      background: rgba(227,30,36,0.1);
      border: 1px solid rgba(227,30,36,0.3);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .booking-detail-icon svg { width: 22px; height: 22px; stroke: var(--red); stroke-width: 1.5; }

    .booking-detail-label {
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--grey);
      margin-bottom: 4px;
    }

    .booking-detail-val {
      font-weight: 600;
      color: var(--white);
      font-size: 16px;
    }

    .booking-detail-val a {
      color: var(--white);
      text-decoration: none;
    }

    .booking-detail-val a:hover { color: var(--red); }

    /* Form */
    .booking-form {
      background: var(--dark2);
      border: 1px solid #222;
      border-radius: 8px;
      padding: 48px 40px;
    }

    .form-title {
      font-family: var(--font-heading);
      font-size: 24px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 32px;
      color: var(--white);
    }

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

    .form-group {
      margin-bottom: 20px;
    }

    .form-group label {
      display: block;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--grey);
      margin-bottom: 8px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      background: var(--dark3);
      border: 1.5px solid #333;
      color: var(--white);
      padding: 13px 16px;
      border-radius: 4px;
      font-family: var(--font-body);
      font-size: 15px;
      transition: border-color 0.2s;
      outline: none;
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
      color: #555;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--red);
    }

    .form-group select {
      cursor: pointer;
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='%23888'%3E%3Cpath d='M0 0l6 8 6-8z'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 16px center;
    }

    .form-group select option {
      background: var(--dark3);
    }

    .form-group textarea { resize: vertical; min-height: 110px; }

    .form-submit {
      width: 100%;
      background: var(--red);
      color: #fff;
      border: none;
      padding: 17px;
      font-family: var(--font-heading);
      font-size: 16px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      border-radius: 4px;
      cursor: pointer;
      transition: all 0.2s;
      margin-top: 8px;
    }

    .form-submit:hover {
      background: var(--red-dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px var(--red-glow);
    }

    .form-note {
      text-align: center;
      font-size: 13px;
      color: var(--grey);
      margin-top: 16px;
    }

    /* Success state */
    .form-success {
      display: none;
      text-align: center;
      padding: 40px;
    }

    .form-success-icon {
      font-size: 48px;
      margin-bottom: 16px;
    }

    .form-success h3 {
      font-family: var(--font-heading);
      font-size: 24px;
      text-transform: uppercase;
      margin-bottom: 8px;
    }

    .form-success p {
      color: var(--grey);
      font-size: 15px;
    }

    /* ===== FOOTER ===== */
    footer {
      background: #080808;
      border-top: 1px solid #1a1a1a;
      padding: 60px 5% 32px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr;
      gap: 60px;
      margin-bottom: 48px;
    }

    .footer-brand {
      font-family: var(--font-heading);
      font-size: 26px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 16px;
      letter-spacing: 1px;
    }

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

    .footer-desc {
      font-size: 14px;
      color: var(--grey);
      line-height: 1.7;
      margin-bottom: 24px;
    }

    .footer-phone {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--red);
      color: #fff;
      padding: 12px 24px;
      border-radius: 4px;
      text-decoration: none;
      font-weight: 600;
      font-size: 15px;
      transition: background 0.2s;
    }

    .footer-phone:hover { background: var(--red-dark); }

    .footer-col h4 {
      font-family: var(--font-heading);
      font-size: 16px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: var(--white);
      margin-bottom: 20px;
    }

    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer-links a {
      color: var(--grey);
      text-decoration: none;
      font-size: 14px;
      transition: color 0.2s;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .footer-links a::before { content: '→'; color: var(--red); font-size: 12px; }
    .footer-links a:hover { color: var(--white); }

    .footer-bottom {
      border-top: 1px solid #1a1a1a;
      padding-top: 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: gap;
      gap: 16px;
    }

    .footer-copy {
      font-size: 13px;
      color: #555;
    }

    .footer-tagline {
      font-size: 13px;
      color: var(--grey);
      font-style: italic;
    }

    /* ===== STICKY BOTTOM BAR (mobile only) ===== */
    .sticky-bar {
      display: none;
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 99;
      background: #0c0c0c;
      border-top: 1px solid #222;
      padding: 10px 16px;
      gap: 10px;
    }

    .sticky-bar a {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 13px 10px;
      border-radius: 6px;
      font-family: var(--font-heading);
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      text-decoration: none;
      transition: all 0.2s;
    }

    .sticky-call {
      background: var(--dark3);
      border: 1.5px solid #333;
      color: var(--white) !important;
    }

    .sticky-whatsapp {
      background: #25D366;
      color: #fff !important;
    }

    .sticky-whatsapp:hover { background: #1ebe5c; }
    .sticky-call:hover { border-color: var(--red); color: var(--red) !important; }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 900px) {
      .nav-links { display: none; }
      .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 88px;
        left: 0;
        right: 0;
        background: rgba(12,12,12,0.98);
        padding: 24px 5%;
        gap: 20px;
        border-bottom: 1px solid #222;
      }
      .hamburger { display: flex; }

      .booking-grid { grid-template-columns: 1fr; gap: 48px; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .form-row { grid-template-columns: 1fr; }
      .about-grid { grid-template-columns: 1fr !important; gap: 40px !important; }

      .step-arrow { display: none; }

      .sticky-bar { display: flex; }
      body { padding-bottom: 80px; }
    }

    @media (max-width: 600px) {
      .hero-stats { gap: 28px; }
      .footer-grid { grid-template-columns: 1fr; gap: 40px; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .booking-form { padding: 32px 24px; }

      section { padding: 70px 5%; }
    }

    /* ===== SCROLL ANIMATIONS ===== */
    .fade-up {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ---------- WORK CAROUSEL ----------
       Scroll-snap, no library. A horizontal scroller is already the gesture a
       phone user expects, so the arrows are a desktop affordance on top rather
       than the mechanism. Captions matter more than the photos here: a car owner
       cannot tell a turbo from a manifold, so each one says what it is and why
       it counts. */
    .work-section { background: var(--dark); padding: 58px 0 54px; }
    .work-head { padding: 0 5%; text-align: center; max-width: 760px; margin: 0 auto 44px; }
    .work-rail-wrap { position: relative; }
    .work-rail {
      display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory;
      padding: 4px 5% 22px; scrollbar-width: none; -webkit-overflow-scrolling: touch;
    }
    .work-rail::-webkit-scrollbar { display: none; }
    .work-card {
      flex: 0 0 auto; width: min(78vw, 420px); scroll-snap-align: center;
      background: var(--dark2); border: 1px solid #2b2b2b; border-radius: 10px; overflow: hidden;
    }
    .work-card img { width: 100%; height: 260px; object-fit: cover; display: block; }
    .work-card .cap { padding: 15px 17px 17px; }
    .work-card .cap b { display: block; color: var(--white); font-size: 15px; font-weight: 600; margin-bottom: 5px; }
    .work-card .cap span { color: var(--grey); font-size: 13.5px; line-height: 1.6; font-weight: 300; }
    .work-nav {
      position: absolute; top: 130px; width: 44px; height: 44px; border-radius: 50%;
      background: rgba(20,20,20,.82); border: 1px solid #3a3a3a; color: #fff;
      display: none; place-items: center; cursor: pointer; z-index: 3;
    }
    .work-nav:hover { background: var(--red); border-color: var(--red); }
    .work-nav.prev { left: 2%; } .work-nav.next { right: 2%; }
    .work-hint { text-align: center; color: var(--grey); font-size: 12.5px; letter-spacing: 1px; }
    @media (min-width: 900px) { .work-nav { display: grid; } .work-hint { display: none; } }
  
/* The footer duplicated the whole navigation, which made sense on a single page
   where those were the only links. With four real pages it is 1,145px of repeat.
   The service list and quick links go; the address and phone stay. */
footer { padding-top: 46px; padding-bottom: 26px; }
@media (max-width: 780px) { footer .footer-grid { gap: 22px; } }

/* ---------- COMPACT STEPS ----------
   These were tall cards built for a page you scrolled forever. Three of them ran
   1,346px, which was the single biggest block on the landing page. Same content,
   a third of the height: the copy was explaining what the title already says. */
@media (max-width: 900px) {
  .steps { display: grid; grid-template-columns: 1fr; gap: 10px; }
  .step { padding: 16px 18px !important; text-align: left; }
  .step-num { font-size: 26px !important; margin-bottom: 2px !important; }
  .step-title { font-size: 16px !important; margin-bottom: 4px !important; }
  .step-desc { font-size: 14px !important; line-height: 1.55 !important; }
  .step-arrow { display: none !important; }
}

/* ---------- TIGHTER COMPONENTS (2026-08-25) ----------
   Everything here was sized for one long page you scrolled through slowly. Across
   four pages the same padding just makes each one feel empty and long. */
@media (max-width: 900px) {
  /* 40px of padding on each of seven service cards was 1,390px of the 1,763px
     services section. Two columns on a phone also halves it again. */
  .services-grid { grid-template-columns: 1fr 1fr !important; gap: 2px; }
  .service-card { padding: 20px 16px !important; }
  .service-num { font-size: 12px !important; margin-bottom: 6px !important; }
  .service-icon { margin-bottom: 8px !important; }
  .service-icon svg { width: 22px !important; height: 22px !important; }
  .service-title { font-size: 15px !important; margin-bottom: 6px !important; line-height: 1.3 !important; }
  .service-desc { font-size: 13px !important; line-height: 1.55 !important; }

  /* Area tags: 20 suburb chips at full size ran 460px. */
  .areas-list { gap: 7px !important; }
  .area-tag { padding: 7px 13px !important; font-size: 12.5px !important; }

  /* The booking form fields were desktop-sized. */
  .form-group { margin-bottom: 13px !important; }
  .booking-form input, .booking-form select, .booking-form textarea { padding: 12px 14px !important; }
  .booking-form textarea { min-height: 84px !important; }
}

/* Meet Gene ran 2,449px, the tallest thing on the site. The chips (six skills,
   twelve brands) and the stat blocks were desktop-sized and stacked. */
@media (max-width: 900px) {
  .about-grid { gap: 30px !important; }
  .about-grid span[style*="border-radius:4px"] { padding: 5px 11px !important; font-size: 12px !important; }
  .gene-card { padding: 0 20px 22px !important; margin-top: 56px !important; }
  .gene-card img { max-width: 190px !important; margin: -56px auto 12px !important; }
}
