    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; overflow-x: hidden; }
    body {
      margin: 0;
      background: var(--bg);
      color: var(--text);
      font: 400 17px/1.55 var(--font-body);
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      overflow-x: hidden;
    }
    img { max-width: 100%; display: block; }
    a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
    a:hover { text-decoration: none; }
    .container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
    .container--narrow { max-width: 880px; }
    .sr-only { position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0 0 0 0); }

    h1, h2, h3, h4 {
      font-family: var(--font-display);
      font-weight: 800;
      letter-spacing: -0.025em;
      line-height: 1.05;
      color: var(--dark);
      margin: 0 0 0.5em;
    }
    h1 { font-size: clamp(2.5rem, 6.5vw, 4.25rem); font-weight: 900; letter-spacing: -0.035em; }
    h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); margin-bottom: 0.4em; }
    h3 { font-size: 1.2rem; font-weight: 700; letter-spacing: -0.015em; }
    p { margin: 0 0 1em; }
    .eyebrow {
      font-family: var(--font-body);
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--muted);
      margin: 0 0 16px;
    }
    .muted { color: var(--muted); }

    /* Buttons — Apple-clean: full-pill, generous padding */
    .btn {
      display: inline-flex; align-items: center; justify-content: center; gap: 6px;
      padding: 15px 28px;
      border-radius: 999px;
      font-weight: 600;
      font-size: 1rem;
      letter-spacing: -0.005em;
      text-decoration: none;
      border: 1.5px solid transparent;
      transition: transform .12s ease, filter .12s ease, background .12s ease;
      cursor: pointer;
      font-family: var(--font-body);
      white-space: nowrap;
    }
    .btn--primary { background: var(--primary); color: var(--primary-ink); }
    .btn--primary:hover { filter: brightness(0.92); transform: translateY(-1px); }
    .btn--dark { background: var(--dark); color: #FFFFFF; }
    .btn--dark:hover { filter: brightness(1.15); transform: translateY(-1px); }
    .btn--ghost { background: transparent; color: var(--dark); border-color: var(--grey, #CDCECC); }
    .btn--ghost:hover { background: var(--dark); color: #FFFFFF; border-color: var(--dark); }
    .btn--accent { background: var(--accent); color: #FFFFFF; }
    .btn--accent:hover { filter: brightness(0.92); transform: translateY(-1px); }
    .btn--block { display: flex; width: 100%; }
    .btn--lg { padding: 18px 34px; font-size: 1.05rem; }

    /* Header */
    .site-head {
      position: sticky; top: 0; z-index: 50;
      background: rgba(255,255,255,0.96);
      backdrop-filter: saturate(180%) blur(10px);
      border-bottom: 1px solid var(--border);
    }
    .site-head__row {
      display: flex; align-items: center; justify-content: space-between;
      padding: 14px 0; gap: 16px;
    }
    .site-head__brand {
      font-family: var(--font-display);
      font-size: 1.4rem; font-weight: 800;
      letter-spacing: -0.02em;
      color: var(--dark);
      text-decoration: none;
      display: inline-flex; align-items: center;
    }
    .site-head__brand img, .site-head__brand svg { height: 64px; width: auto; display: block; border-radius: 10px; }
    .site-head__nav {
      display: flex; align-items: center; gap: 6px;
      flex: 1; justify-content: center;
    }
    .site-head__nav a {
      color: var(--dark);
      text-decoration: none;
      font-weight: 500;
      font-size: 0.95rem;
      padding: 8px 14px;
      border-radius: 999px;
      transition: background .12s ease;
    }
    .site-head__nav a:hover { background: var(--alt, #F4F5F2); }
    .site-head__cta { display: flex; align-items: center; gap: 12px; }
    .site-head__phone {
      display: inline-flex; align-items: center; gap: 6px;
      color: var(--dark);
      text-decoration: none;
      font-weight: 700;
      font-size: 1rem;
    }
    .site-head__phone .label-long { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
    .site-head__call { font-size: 0.9rem; padding: 10px 16px; }
    .site-head__call strong { margin-left: 4px; font-weight: 700; }
    @media (max-width: 980px) { .site-head__call strong { display: none; } }
    @media (max-width: 560px) { .site-head__call { display: none; } }
    .site-head__menu-btn {
      display: none;
      width: 44px; height: 44px;
      border: 1.5px solid var(--grey, #CDCECC);
      border-radius: 999px;
      background: transparent;
      cursor: pointer;
      align-items: center; justify-content: center;
      padding: 0;
    }
    .site-head__menu-btn span {
      width: 18px; height: 2px; background: var(--dark);
      position: relative; display: block;
    }
    .site-head__menu-btn span::before, .site-head__menu-btn span::after {
      content: ''; position: absolute; left: 0; width: 18px; height: 2px; background: var(--dark);
    }
    .site-head__menu-btn span::before { top: -6px; }
    .site-head__menu-btn span::after { top: 6px; }
    .site-head__mobile {
      display: none;
      flex-direction: column;
      gap: 4px;
      padding: 16px 0;
      border-top: 1px solid var(--border);
      background: var(--surface);
    }
    .site-head__mobile a {
      padding: 12px 24px;
      color: var(--dark);
      text-decoration: none;
      font-weight: 500;
      font-size: 1.05rem;
    }
    .site-head__mobile a:hover { background: var(--alt, #F4F5F2); }
    /* Mobile menu open state via :target / checkbox */
    #site-menu:checked ~ .site-head__mobile { display: flex; }
    #site-menu { display: none; }

    @media (max-width: 980px) {
      .site-head__nav { display: none; }
      .site-head__menu-btn { display: inline-flex; }
      .site-head__phone .label-long { display: none; }
      .site-head__cta .btn { padding: 10px 16px; font-size: 0.9rem; }
    }
    @media (max-width: 520px) {
      .site-head__cta .btn { padding: 8px 14px; }
      .site-head__phone strong { font-size: 0.9rem; }
    }

    /* Hero — Apple-clean: more breathing room, bigger type, two clear CTAs */
    .hero { padding: 96px 0 88px; position: relative; }
    @media (max-width: 720px) { .hero { padding: 64px 0 56px; } }
    .hero__grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 64px; align-items: center; }
    @media (max-width: 920px) { .hero__grid { grid-template-columns: 1fr; gap: 40px; } }
    .hero h1 { margin-bottom: 22px; }
    .hero__lede { font-size: 1.22rem; line-height: 1.45; color: var(--muted); max-width: 32em; margin-bottom: 36px; font-weight: 400; }
    .hero__ctas { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }
    .hero__rating { color: var(--muted); font-size: 0.92rem; }
    .hero__rating strong { color: var(--dark); font-weight: 600; }

    /* Hero with photo on the left + content + calc on the right — NT-style compact */
    .hero--with-calc {
      padding: 0;
      position: relative;
      overflow: hidden;
      isolation: isolate;
      background: var(--alt, #F4F5F2);
      min-height: 560px;
      display: flex;
      align-items: stretch;
    }
    .hero--with-calc .hero__bg {
      position: absolute;
      top: 0; left: 0; bottom: 0;
      width: 55%;
      z-index: 0;
    }
    .hero--with-calc .hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
    .hero--with-calc .hero__bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.2) 60%, transparent 100%); }
    .hero--with-calc .hero__grid {
      position: relative; z-index: 2;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
      width: 100%;
      padding: 48px 0;
    }
    @media (max-width: 980px) {
      .hero--with-calc { min-height: 0; padding: 0; }
      .hero--with-calc .hero__bg { position: relative; width: 100%; height: 220px; }
      .hero--with-calc .hero__bg::after { background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%); }
      .hero--with-calc { flex-direction: column; }
      .hero--with-calc .hero__grid { grid-template-columns: 1fr; gap: 24px; padding: 32px 0 40px; }
    }
    .hero--with-calc .hero__copy { color: #fff; padding-right: 12px; }
    @media (max-width: 980px) { .hero--with-calc .hero__copy { color: var(--text); padding-right: 0; } }
    .hero--with-calc .eyebrow { color: var(--primary); }
    @media (max-width: 980px) { .hero--with-calc .eyebrow { color: var(--accent); } }
    .hero--with-calc h1 { color: #fff; font-size: clamp(2rem, 4vw, 2.85rem); margin-bottom: 16px; }
    @media (max-width: 980px) { .hero--with-calc h1 { color: var(--dark); } }
    .hero--with-calc .hero__lede { color: rgba(255,255,255,0.92); max-width: 26em; margin-bottom: 22px; font-size: 1.05rem; line-height: 1.5; }
    @media (max-width: 980px) { .hero--with-calc .hero__lede { color: var(--muted); } }
    .hero--with-calc .hero__rating { color: rgba(255,255,255,0.78); margin-top: 4px; }
    @media (max-width: 980px) { .hero--with-calc .hero__rating { color: var(--muted); } }
    .hero--with-calc .hero__rating strong { color: #fff; }
    @media (max-width: 980px) { .hero--with-calc .hero__rating strong { color: var(--dark); } }

    /* Calculator widget — hero variant (single column, compact, floats over right side) */
    .calc-widget--hero {
      position: relative; z-index: 2;
      background: var(--surface);
      border-radius: 16px;
      padding: 22px 24px;
      color: var(--text);
      box-shadow: var(--shadow-lift);
      max-width: 420px;
      width: 100%;
      justify-self: end;
    }
    @media (max-width: 980px) { .calc-widget--hero { max-width: 100%; justify-self: stretch; margin: 0 16px; } }
    @media (max-width: 480px) { .calc-widget--hero { padding: 18px 16px; margin: 0 8px; } }
    .calc-widget--hero .eyebrow { color: var(--accent); margin-bottom: 4px; font-size: 0.72rem; }
    .calc-widget--hero h2 { font-size: 1.35rem; margin-bottom: 14px; color: var(--dark); }
    .calc-widget--hero .calc-tabs { margin-bottom: 12px; padding: 3px; }
    .calc-widget--hero .calc-tabs label { padding: 7px 12px; font-size: 0.85rem; }
    .calc-widget--hero .calc-units { margin-bottom: 12px; }
    .calc-widget--hero .calc-units select { padding: 6px 28px 6px 10px; font-size: 0.85rem; }
    .calc-widget--hero .calc-pane { margin-bottom: 12px; }
    .calc-widget--hero .calc-row { gap: 10px; }
    .calc-widget--hero .calc-field > span { font-size: 0.8rem; margin-bottom: 4px; }
    .calc-widget--hero .calc-input input { padding: 10px 0; font-size: 1rem; }
    .calc-widget--hero .calc-wastage { margin-bottom: 14px; }
    .calc-widget--hero .calc-wastage label { padding: 6px 12px; font-size: 0.82rem; }

    /* Inline result strip inside the hero calc */
    .calc-result-inline {
      display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px;
      background: var(--dark); color: #fff;
      border-radius: 12px;
      padding: 14px 16px;
      margin-bottom: 16px;
    }
    .calc-result-inline > div { text-align: center; }
    .calc-result-inline span { display: block; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 4px; font-weight: 600; }
    .calc-result-inline strong { display: block; font-family: var(--font-display); font-size: 1.35rem; font-weight: 800; color: var(--primary); letter-spacing: -0.02em; line-height: 1; }
    .calc-note { font-size: 0.78rem; color: var(--muted); margin: 10px 0 0; text-align: center; }
    .hero__visual {
      aspect-ratio: 4 / 3;
      border-radius: 24px;
      overflow: hidden;
      position: relative;
      background: var(--alt, #F4F5F2);
    }
    .hero__visual img {
      width: 100%; height: 100%;
      object-fit: cover; object-position: center;
      display: block;
    }

    /* USP strip — 3 columns, cleaner */
    .usps { padding: 32px 0 80px; }
    .usps__grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
      border-radius: 16px;
      overflow: hidden;
    }
    @media (max-width: 760px) { .usps__grid { grid-template-columns: 1fr; } }
    .usp {
      background: var(--surface);
      padding: 32px 28px;
    }
    .usp__num {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 0.78rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--accent);
      line-height: 1;
      margin-bottom: 16px;
    }
    .usp h3 { font-size: 1.2rem; margin: 0 0 10px; }
    .usp p { margin: 0; font-size: 0.98rem; color: var(--muted); line-height: 1.5; }

    /* Section base — Apple-style generous padding */
    .section { padding: 96px 0; }
    @media (max-width: 720px) { .section { padding: 64px 0; } }
    .section--alt { background: var(--alt, #F4F5F2); }
    .section--dark { background: var(--dark); color: rgba(255,255,255,0.92); }
    .section--dark h2, .section--dark h3 { color: #FFFFFF; }
    .section--dark .eyebrow { color: var(--accent); }
    .section__head { margin-bottom: 36px; }

    /* Product card (turf roll) */
    .product {
      display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; align-items: center;
      background: var(--surface);
      border-radius: 18px;
      padding: 36px;
      box-shadow: var(--shadow-card);
      border: 1px solid var(--border);
    }
    @media (max-width: 760px) { .product { grid-template-columns: 1fr; padding: 24px; } }
    .product__visual {
      aspect-ratio: 1 / 1;
      border-radius: 14px;
      position: relative; overflow: hidden;
      background: var(--bg);
    }
    .product__visual img {
      width: 100%; height: 100%; object-fit: cover; object-position: center;
      display: block;
    }
    .product h2 { margin: 8px 0 14px; }
    .product__price {
      font-family: var(--font-display);
      font-size: 2.4rem;
      color: var(--dark);
      line-height: 1;
      display: flex; align-items: baseline; gap: 10px;
      margin: 18px 0 6px;
    }
    .product__price-unit { font-size: 1rem; font-family: var(--font-body); color: var(--muted); font-weight: 500; }
    .product__bulk {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
      background: var(--bg);
      border-radius: 10px;
      padding: 14px;
      margin: 18px 0 22px;
    }
    .product__bulk-cell { text-align: center; }
    .product__bulk-cell strong { display: block; font-family: var(--font-display); font-size: 1.15rem; color: var(--accent); }
    .product__bulk-cell span { font-size: 0.8rem; color: var(--muted); }
    .product__ctas { display: flex; flex-wrap: wrap; gap: 12px; }

    /* Bulk spotlight (the centerpiece) — DARK panel */
    .bulk { background: var(--dark); color: rgba(255,255,255,0.92); padding: 96px 0; }
    .bulk .eyebrow { color: var(--primary); }
    .bulk h2 { color: #FFFFFF; font-size: clamp(2rem, 4.5vw, 3rem); }
    .bulk__lede { font-size: 1.15rem; max-width: 38em; color: rgba(255,255,255,0.85); margin-bottom: 36px; }
    .bulk__grid {
      display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: start;
    }
    @media (max-width: 880px) { .bulk__grid { grid-template-columns: 1fr; gap: 32px; } }
    .bulk__features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 24px; }
    .bulk-feature {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.10);
      border-radius: 10px; padding: 18px;
    }
    .bulk-feature h4 { color: var(--primary); margin: 0 0 6px; font-size: 0.98rem; font-weight: 700; }
    .bulk-feature p { margin: 0; font-size: 0.9rem; color: rgba(255,255,255,0.75); line-height: 1.45; }
    .bulk__phone {
      margin-top: 24px;
      padding: 18px 22px;
      border-left: 3px solid var(--primary);
      background: rgba(255,255,255,0.05);
      border-radius: 6px;
    }
    .bulk__phone p { margin: 0 0 6px; color: rgba(255,255,255,0.75); font-size: 0.9rem; }
    .bulk__phone a { color: #FFFFFF; font-weight: 700; font-size: 1.4rem; font-family: var(--font-display); letter-spacing: -0.01em; text-decoration: none; }

    /* Form */
    .lead-form {
      background: var(--surface);
      border-radius: 14px;
      padding: 28px;
      color: var(--text);
      box-shadow: var(--shadow-lift);
    }
    .lead-form h3 { margin: 0 0 6px; color: var(--dark); }
    .lead-form > p { color: var(--muted); margin: 0 0 18px; font-size: 0.92rem; }
    .lead-form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .field { display: flex; flex-direction: column; gap: 4px; }
    .field--full { grid-column: 1 / -1; }
    .field label { font-size: 0.82rem; font-weight: 600; color: var(--dark); }
    .field input, .field select, .field textarea {
      padding: 12px 14px;
      border: 1.5px solid var(--border);
      border-radius: 8px;
      font: inherit;
      font-size: 0.95rem;
      background: var(--bg);
      color: var(--text);
    }
    .field input:focus, .field select:focus, .field textarea:focus {
      outline: none; border-color: var(--primary);
      box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 18%, transparent);
    }
    .field textarea { min-height: 80px; resize: vertical; }
    .lead-form__submit { margin-top: 16px; }
    .lead-form__note { font-size: 0.78rem; color: var(--muted); margin: 12px 0 0; text-align: center; }
    .lead-banner { padding: 14px 16px; border-radius: 8px; margin-bottom: 18px; font-size: 0.92rem; }
    .lead-banner--ok { background: #DFF5E0; color: #1F5C2B; border: 1px solid #B2DDB6; }
    .lead-banner--err { background: #FCE6E1; color: #7A2719; border: 1px solid #F3B8AA; }

    /* Topsoil / laying side-by-side */
    .twoup { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
    @media (max-width: 760px) { .twoup { grid-template-columns: 1fr; } }
    .card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 28px;
    }
    .card h3 { margin: 8px 0 12px; }
    .card__price-line { font-family: var(--font-display); color: var(--accent); font-size: 1.4rem; margin: 6px 0 12px; }

    /* Areas grid */
    .areas-grid {
      display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 8px;
      margin: 24px 0 0;
    }
    .area-pill {
      background: var(--surface);
      border: 1px solid var(--border);
      padding: 14px 18px;
      border-radius: 10px;
      color: var(--text);
      text-decoration: none;
      font-weight: 600;
      transition: all .15s ease;
    }
    .area-pill:hover {
      border-color: var(--primary);
      transform: translateY(-1px);
    }

    /* How it works */
    .steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: step; }
    @media (max-width: 760px) { .steps { grid-template-columns: 1fr; } }
    .step { position: relative; padding-top: 56px; }
    .step::before {
      counter-increment: step; content: counter(step, decimal-leading-zero);
      position: absolute; top: 0; left: 0;
      font-family: var(--font-display);
      font-size: 2.4rem;
      color: var(--accent);
      line-height: 1;
    }
    .step h3 { margin: 0 0 8px; }

    /* CTA band — bright lime panel */
    .cta-band {
      background: var(--primary);
      color: var(--primary-ink);
      padding: 80px 0;
    }
    .cta-band__inner {
      display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
    }
    .cta-band h2 { color: var(--primary-ink); margin: 0; font-size: clamp(1.75rem, 3.6vw, 2.5rem); }
    .cta-band__inner p { margin: 8px 0 0; color: rgba(0,0,0,0.7); font-size: 1.05rem; }

    /* Footer */
    .site-foot {
      background: var(--dark);
      color: rgba(255,255,255,0.7);
      padding: 56px 0 24px;
      font-size: 0.92rem;
    }
    .site-foot a { color: rgba(255,255,255,0.85); }
    .site-foot__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 36px; }
    @media (max-width: 760px) { .site-foot__grid { grid-template-columns: 1fr 1fr; } }
    .site-foot h4 {
      color: var(--primary-ink);
      font-family: var(--font-body);
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin: 0 0 14px;
    }
    .site-foot ul { list-style: none; padding: 0; margin: 0; }
    .site-foot li { margin-bottom: 8px; }
    .site-foot__brand { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; color: #FFFFFF; }
    .site-foot__logo { height: 72px; width: auto; }
    .site-foot__legal { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 18px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 0.82rem; color: rgba(255,255,255,0.5); }

    /* Anchor offset for sticky header */
    .anchor { scroll-margin-top: 80px; }

    /* ========== CALCULATOR ========== */
    .calc-section { padding: 96px 0; background: var(--alt, #F4F5F2); overflow-x: hidden; }
    @media (max-width: 720px) { .calc-section { padding: 56px 0; } }
    @media (max-width: 720px) { .calc-section .container { padding: 0 16px; } }
    .calc-section__head { text-align: center; max-width: 640px; margin: 0 auto 36px; }
    .calc-section__head h2 { margin-bottom: 12px; }
    .calc-section__head p { color: var(--muted); font-size: 1.1rem; margin: 0; }
    .calc-widget {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 40px;
      box-shadow: var(--shadow-card);
      max-width: 980px; margin: 0 auto;
    }
    @media (max-width: 720px) { .calc-widget { padding: 20px 16px; border-radius: 14px; } }
    .calc-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 36px; }
    @media (max-width: 760px) { .calc-grid { grid-template-columns: 1fr; gap: 28px; } }
    .calc-tabs { display: inline-flex; gap: 4px; background: var(--alt, #F4F5F2); padding: 4px; border-radius: 999px; margin-bottom: 18px; max-width: 100%; }
    @media (max-width: 380px) { .calc-tabs label { padding: 9px 12px; font-size: 0.85rem; } }
    .calc-units { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
    .calc-units label { font-size: 0.82rem; font-weight: 600; color: var(--dark); }
    .calc-units select { padding: 8px 32px 8px 12px; border: 1.5px solid var(--border); border-radius: 8px; background: var(--surface); font: 600 0.9rem var(--font-body); color: var(--dark); cursor: pointer; appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'><path d='M3 5l3 3 3-3' stroke='%230F0F0F' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>"); background-repeat: no-repeat; background-position: right 10px center; background-size: 12px; }
    .calc-units select:focus { outline: none; border-color: var(--dark); }
    .calc-tabs input { position: absolute; opacity: 0; pointer-events: none; }
    .calc-tabs label { padding: 9px 18px; border-radius: 999px; cursor: pointer; font-size: 0.92rem; font-weight: 600; color: var(--muted); transition: all .12s; }
    .calc-tabs input:checked + label { background: var(--surface); color: var(--dark); box-shadow: 0 1px 3px rgba(0,0,0,0.10); }
    .calc-pane { margin-bottom: 24px; }
    .calc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .calc-field > span { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; color: var(--dark); }
    .calc-input { display: flex; align-items: center; border: 1.5px solid var(--border); border-radius: 10px; background: var(--alt, #F4F5F2); padding: 0 14px; transition: border-color .12s, background .12s; }
    .calc-input:focus-within { border-color: var(--dark); background: var(--surface); }
    .calc-input input { flex: 1; min-width: 0; border: 0; background: transparent; padding: 14px 0; font: 600 1.15rem var(--font-body); color: var(--dark); outline: none; -moz-appearance: textfield; }
    .calc-input input::-webkit-outer-spin-button, .calc-input input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
    .calc-input em { font-style: normal; color: var(--muted); font-size: 0.95rem; padding-left: 6px; font-weight: 600; }
    .calc-wastage { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
    .calc-wastage > span { font-size: 0.85rem; font-weight: 600; color: var(--dark); margin-right: 4px; }
    .calc-wastage input { position: absolute; opacity: 0; pointer-events: none; }
    .calc-wastage label { padding: 8px 14px; border: 1.5px solid var(--border); border-radius: 999px; cursor: pointer; font-size: 0.88rem; font-weight: 600; color: var(--muted); transition: all .12s; }
    .calc-wastage input:checked + label { border-color: var(--dark); color: var(--dark); background: var(--alt, #F4F5F2); }
    .calc-output { background: var(--dark); color: #FFFFFF; border-radius: 16px; padding: 28px 20px; display: flex; flex-direction: column; gap: 18px; min-width: 0; }
    @media (max-width: 720px) { .calc-output { padding: 24px 18px; border-radius: 12px; } }
    .calc-result { text-align: center; padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,0.12); }
    .calc-result__label { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin: 0 0 8px; font-weight: 600; }
    .calc-result__big { font-family: var(--font-display); font-size: clamp(3rem, 11vw, 4rem); font-weight: 900; line-height: 1; margin: 0; color: var(--primary); letter-spacing: -0.035em; }
    .calc-result__sub { font-size: 0.95rem; color: rgba(255,255,255,0.7); margin: 6px 0 0; }
    .calc-result-lines { display: flex; flex-direction: column; gap: 10px; font-size: 0.95rem; }
    .calc-result-lines > div { display: flex; justify-content: space-between; color: rgba(255,255,255,0.85); }
    .calc-result-lines strong { color: #FFFFFF; font-weight: 700; font-size: 1.05rem; font-family: var(--font-display); letter-spacing: -0.01em; }

    /* ===== AREA PAGE (turf.php / turf-laying.php) ===== */
    .area-hero { position: relative; padding: 96px 0 80px; overflow: hidden; isolation: isolate; }
    @media (max-width: 720px) { .area-hero { padding: 64px 0 56px; } }
    .area-hero__bg { position: absolute; inset: 0; z-index: -2; }
    .area-hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
    .area-hero__bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.45) 50%, rgba(0,0,0,0.7) 100%); z-index: 1; }
    .area-hero__inner { position: relative; z-index: 2; color: #fff; max-width: 780px; }
    .area-hero .eyebrow { color: var(--primary); }
    .area-hero h1 { color: #fff; }
    .area-hero__lede { font-size: 1.22rem; line-height: 1.45; color: rgba(255,255,255,0.92); margin: 0 0 30px; max-width: 32em; font-weight: 400; }
    .area-hero__ctas { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }
    .area-hero__pricepill { display: inline-block; padding: 10px 16px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25); border-radius: 999px; font-weight: 500; font-size: 0.92rem; color: #fff; backdrop-filter: blur(4px); }
    .area-hero__pricepill strong { color: var(--primary); font-weight: 700; }

    /* Process steps (default 4 columns, .process--three for 3) */
    .process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: step; }
    .process--three { grid-template-columns: repeat(3, 1fr); }
    @media (max-width: 880px) { .process, .process--three { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 520px) { .process, .process--three { grid-template-columns: 1fr; } }
    .process__step { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 24px; position: relative; }
    .process__step::before { counter-increment: step; content: counter(step, decimal-leading-zero); position: absolute; top: 14px; right: 16px; font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--accent); letter-spacing: -0.01em; }
    .process__step h3 { margin: 0 0 8px; font-size: 1.1rem; }
    .process__step p { margin: 0; font-size: 0.92rem; color: var(--muted); line-height: 1.5; }

    /* Pricing reassurance block */
    .pricing-block { background: var(--surface); border: 1px solid var(--border); border-radius: 18px; padding: 40px; display: grid; grid-template-columns: 1.4fr 1fr; gap: 36px; align-items: center; box-shadow: var(--shadow-card); }
    @media (max-width: 760px) { .pricing-block { grid-template-columns: 1fr; padding: 28px; } }
    .pricing-block h2 { margin-bottom: 14px; }
    .pricing-block__price { background: var(--alt, #F4F5F2); border-radius: 14px; padding: 28px; text-align: center; }
    .pricing-block__price .big { font-family: var(--font-display); font-size: 3rem; font-weight: 900; color: var(--dark); line-height: 1; margin-bottom: 8px; letter-spacing: -0.03em; }
    .pricing-block__price .typical { color: var(--muted); font-size: 0.9rem; margin-top: 10px; }
    .pricing-block__price .typical strong { color: var(--accent); font-weight: 700; }

    /* Postcodes list */
    .pc-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 8px; margin-top: 18px; padding: 0; }
    .pc-list li { background: var(--surface); border: 1px solid var(--border); padding: 12px 16px; border-radius: 10px; list-style: none; font-size: 0.95rem; }

    /* Form + side block grid */
    .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
    @media (max-width: 880px) { .form-grid { grid-template-columns: 1fr; } }
    .why-block { background: var(--alt, #F4F5F2); border: 1px solid var(--border); border-radius: 14px; padding: 32px; }
    .why-block ul { list-style: none; padding: 0; margin: 0; }
    .why-block li { padding: 14px 0; border-bottom: 1px solid var(--border); }
    .why-block li:last-child { border-bottom: 0; padding-bottom: 0; }
    .why-block li strong { color: var(--accent); display: block; margin-bottom: 4px; font-weight: 700; }

    /* Cross-link grid */
    .area-cross { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 10px; margin-top: 24px; }
    .area-cross a { background: var(--surface); border: 1px solid var(--border); padding: 14px 18px; border-radius: 12px; color: var(--text); text-decoration: none; font-weight: 600; transition: all .15s ease; }
    .area-cross a:hover { border-color: var(--dark); transform: translateY(-1px); }

    /* ===== POLICY PAGES ===== */
    .policy { padding: 80px 0; }
    .policy__head { margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
    .policy h1 { font-size: clamp(2rem, 4.5vw, 3rem); margin: 0 0 12px; }
    .policy__meta { color: var(--muted); font-size: 0.95rem; margin: 0; }
    .policy__body { font-size: 1.02rem; line-height: 1.6; max-width: 720px; }
    .policy__body h2 { font-size: 1.5rem; margin: 40px 0 16px; }
    .policy__body h3 { font-size: 1.2rem; margin: 28px 0 12px; }
    .policy__body p { margin: 0 0 16px; }
    .policy__body ul { padding-left: 22px; margin: 0 0 16px; }
    .policy__body li { margin-bottom: 8px; }

    /* Footer bottom links row */
    .site-foot__bottom { padding: 18px 0; border-top: 1px solid rgba(255,255,255,0.08); margin-top: 12px; }
    .site-foot__bottom-links { font-size: 0.88rem; color: rgba(255,255,255,0.7); }
    .site-foot__bottom-links a { color: rgba(255,255,255,0.85); margin: 0 2px; }
