  /* Reset & base */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
  body {
    font-family: 'Inter Tight', -apple-system, system-ui, sans-serif;
    color: #0F0F0E;
    background: #F5F2EC;
    line-height: 1.5;
    font-size: 17px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }
  button { font: inherit; cursor: pointer; border: none; background: none; }

  /* Design tokens */
  :root {
    --ink: #0F0F0E;
    --bone: #F5F2EC;
    --paper: #FAF7F1;
    --terracotta: #C4623A;
    --terracotta-deep: #A8512E;
    --sage: #7A8471;
    --grey-warm: #A8A29C;
    --rule: #1F1E1B;
    --rule-soft: #D9D4C9;
  }

  /* Typography */
  .display { font-family: 'Fraunces', Georgia, serif; font-weight: 400; letter-spacing: -0.02em; line-height: 1.02; font-variation-settings: "opsz" 144; }
  .display-italic { font-family: 'Fraunces', Georgia, serif; font-style: italic; font-weight: 300; letter-spacing: -0.02em; line-height: 1.02; }
  .mono-label { font-family: 'Inter Tight', sans-serif; font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em; font-weight: 500; }
  .lead { font-size: 22px; line-height: 1.45; font-weight: 300; letter-spacing: -0.01em; }

  /* Layout */
  .wrap { max-width: 1320px; margin: 0 auto; padding: 0 32px; }
  .wrap-narrow { max-width: 980px; margin: 0 auto; padding: 0 32px; }

  /* Top bar — sticky so the phone stays visible while scrolling */
  .topbar {
    position: sticky;
    top: 0;
    z-index: 110;
    background: var(--ink);
    color: var(--bone);
    padding: 9px 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
  }
  .topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
  .topbar a { display: inline-flex; align-items: center; gap: 8px; opacity: 0.9; transition: opacity 0.2s; color: inherit; }
  .topbar a:hover { opacity: 1; }
  .topbar .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--terracotta); }

  /* Header — sticky below the topbar */
  header.site {
    position: sticky;
    top: 40px;            /* matches the topbar height (~40px tall on desktop) */
    background: var(--bone);
    border-bottom: 1px solid var(--rule-soft);
    z-index: 100;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
  /* Mobile: topbar wraps to 2 lines so header needs to sit lower */
  @media (max-width: 720px) {
    header.site { top: 70px; }
    .topbar { font-size: 13px; padding: 8px 0; }
  }
  .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
  }
  .brand {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: 24px;
    letter-spacing: -0.02em;
    line-height: 1;
    display: flex;
    align-items: baseline;
    gap: 2px;
  }
  .brand .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--terracotta);
    align-self: center;
    margin: 0 4px;
  }
  nav.primary { display: flex; gap: 28px; align-items: center; }
  nav.primary a {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: color 0.2s;
    position: relative;
  }
  nav.primary a:hover { color: var(--terracotta); }
  .nav-cta {
    background: var(--ink);
    color: var(--bone);
    padding: 11px 20px;
    border-radius: 999px;
    font-weight: 500;
    font-size: 14px;
    transition: background 0.2s;
  }
  .nav-cta:hover { background: var(--terracotta) !important; }

  /* Mobile nav */
  .menu-btn { display: none; }
  @media (max-width: 880px) {
    nav.primary { display: none; }
    .menu-btn { display: flex; flex-direction: column; gap: 5px; padding: 8px; }
    .menu-btn span { width: 22px; height: 1.5px; background: var(--ink); display: block; }
    nav.primary.open {
      display: flex;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--bone);
      padding: 24px 32px 32px;
      gap: 18px;
      align-items: flex-start;
      border-bottom: 1px solid var(--rule-soft);
    }
  }

  /* Hero */
  .hero {
    padding: 90px 0 80px;
    border-bottom: 1px solid var(--rule-soft);
    position: relative;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: end;
  }
  .hero-marker {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 36px;
  }
  .hero-marker .line { height: 1px; width: 40px; background: var(--ink); }
  .hero-marker .label { color: var(--ink); }
  h1.hero-title {
    font-size: clamp(48px, 7vw, 96px);
    line-height: 0.96;
    letter-spacing: -0.035em;
    margin-bottom: 36px;
    font-weight: 400;
  }
  h1.hero-title em {
    font-style: italic;
    font-weight: 300;
    color: var(--terracotta);
  }
  .hero-sub {
    font-size: 19px;
    line-height: 1.55;
    max-width: 480px;
    color: #2A2926;
    margin-bottom: 44px;
  }
  .hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
  }

  /* ===== HERO ENTRANCE ANIMATIONS ===== */

  /* Clip-mask reveal for hero headline lines */
  .hero-title .line-mask {
    display: block;
    overflow: hidden;
    line-height: inherit;
  }
  .js-ready .hero-title .line-inner {
    display: inline-block;
    transform: translateY(110%);
    transition: transform 0.95s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
  }
  body.is-loaded .hero-title .line-inner {
    transform: translateY(0);
  }

  /* Marker line draw effect */
  .js-ready .hero-marker { opacity: 0; transition: opacity 0.5s ease; }
  .js-ready .hero-marker .line {
    width: 0 !important;
    transition: width 0.9s cubic-bezier(0.65, 0, 0.35, 1) 0.15s;
  }
  .js-ready .hero-marker .mono-label {
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.5s ease 0.5s, transform 0.5s ease 0.5s;
  }
  body.is-loaded .hero-marker { opacity: 1; }
  body.is-loaded .hero-marker .line { width: 40px !important; }
  body.is-loaded .hero-marker .mono-label { opacity: 1; transform: translateX(0); }

  /* Generic data-anim entrance variants */
  .js-ready [data-anim="fade-up"] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .js-ready [data-anim="fade-in"] {
    opacity: 0;
    transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .js-ready [data-anim="slide-right"] {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  }
  body.is-loaded [data-anim="fade-up"],
  .is-visible[data-anim="fade-up"] {
    opacity: 1;
    transform: translateY(0);
  }
  body.is-loaded [data-anim="fade-in"],
  .is-visible[data-anim="fade-in"] {
    opacity: 1;
  }
  .is-visible[data-anim="slide-right"] {
    opacity: 1;
    transform: translateX(0);
  }

  /* Hero scroll-driven scale + drift (subtle) */
  .hero {
    --scroll-progress: 0;
  }
  .js-ready .hero-content,
  .js-ready .hero-visual {
    transform: translateY(calc(var(--scroll-progress) * -40px)) scale(calc(1 - var(--scroll-progress) * 0.04));
    opacity: calc(1 - var(--scroll-progress) * 0.7);
    transform-origin: left center;
    will-change: transform, opacity;
  }
  .js-ready .hero-visual { transform-origin: right center; }

  /* Respect reduced-motion preference */
  @media (prefers-reduced-motion: reduce) {
    .hero-title .line-inner,
    .hero-marker,
    .hero-marker .line,
    .hero-marker .mono-label,
    [data-anim],
    .hero-content,
    .hero-visual {
      transition: none !important;
      transform: none !important;
      opacity: 1 !important;
    }
    .hero-marker .line { width: 40px !important; }
  }

  /* ===== END HERO ANIMATIONS ===== */

  /* ===== HOVER MICRO-INTERACTIONS ===== */

  /* Service tiles (recycle-item) — accent line draws across, number slides, gentle lift */
  .recycle-item {
    transition: background 0.4s cubic-bezier(0.22, 1, 0.36, 1), transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
  }
  .recycle-item::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    height: 2px; width: 0;
    background: var(--terracotta);
    transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .recycle-item:hover { background: var(--paper); transform: translateY(-2px); }
  .recycle-item:hover::after { width: 100%; }
  .recycle-num {
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), color 0.3s ease;
    display: inline-block;
  }
  .recycle-item:hover .recycle-num {
    transform: translateX(6px);
    color: var(--terracotta);
  }
  .recycle-name {
    transition: color 0.3s ease;
  }
  .recycle-item:hover .recycle-name { color: var(--terracotta); }
  .recycle-tag {
    transition: background 0.3s ease, color 0.3s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .recycle-item:hover .recycle-tag {
    background: var(--ink);
    color: var(--bone);
    transform: translateY(-1px);
  }

  /* Location cards — name shifts, area subtly fades to ink, hairline grows */
  .loc-card {
    transition: background 0.3s ease, padding-left 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
  }
  .loc-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 0;
    background: var(--terracotta);
    transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .loc-card:hover::before { width: 3px; }
  .loc-name {
    transition: color 0.3s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    display: inline-block;
  }
  .loc-card:hover .loc-name {
    color: var(--terracotta);
    transform: translateX(4px);
  }
  .loc-meta {
    transition: color 0.3s ease;
  }
  .loc-card:hover .loc-meta { color: var(--ink); }
  .loc-arrow {
    transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s ease;
  }
  .loc-card:hover .loc-arrow {
    transform: translateX(8px) scale(1.15);
  }

  /* Customer cards — left accent reveal */
  .customer {
    transition: padding-left 0.4s cubic-bezier(0.22, 1, 0.36, 1), background 0.3s ease;
    position: relative;
  }
  .customer::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 0;
    background: var(--terracotta);
    transition: width 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .customer:hover::before { width: 2px; }
  .customer:hover .customer-name { color: var(--terracotta); }
  .customer-name { transition: color 0.3s ease; }

  /* Buttons — terracotta wash sweep + arrow/icon nudge */
  .btn-primary, .btn-secondary {
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s ease;
  }
  .btn-primary::before, .btn-secondary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--terracotta);
    transform: translateY(101%);
    transition: transform 0.45s cubic-bezier(0.65, 0, 0.35, 1);
    z-index: 0;
  }
  .btn-primary:hover::before, .btn-secondary:hover::before {
    transform: translateY(0);
  }
  .btn-primary > *, .btn-secondary > * {
    position: relative;
    z-index: 1;
  }
  .btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-2px);
  }
  .btn-secondary:hover {
    color: var(--bone);
    border-color: var(--terracotta);
  }
  .btn-primary svg, .btn-secondary svg {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  .btn-primary:hover svg, .btn-secondary:hover svg {
    transform: translateX(2px) rotate(-3deg);
  }

  /* Nav links — underline draws in left-to-right */
  nav.primary a:not(.nav-cta) {
    position: relative;
    padding-bottom: 2px;
  }
  nav.primary a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    left: 0; bottom: -2px;
    width: 0; height: 1px;
    background: var(--terracotta);
    transition: width 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  }
  nav.primary a:not(.nav-cta):hover::after { width: 100%; }
  .nav-cta {
    transition: background 0.3s ease, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1) !important;
  }
  .nav-cta:hover { transform: translateY(-1px); }

  /* Brand logo — dot pulses on hover */
  .brand {
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .brand:hover { transform: scale(1.02); }
  .brand:hover .dot {
    animation: dotPulse 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  }
  @keyframes dotPulse {
    0%   { transform: scale(1); }
    40%  { transform: scale(1.6); }
    100% { transform: scale(1); }
  }

  /* FAQ summary — chevron rotates with bounce */
  details.faq summary {
    transition: color 0.3s ease, padding-left 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  }
  details.faq summary:hover { padding-left: 6px; }
  details.faq summary::after {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s ease;
  }
  details.faq summary:hover::after { transform: rotate(90deg) translateY(-2px); }

  /* Stream / stage / container cards — subtle lift + accent */
  .stream, .stage, .container-card {
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .stream:hover, .container-card:hover {
    transform: translateY(-3px);
  }
  .stream h3, .container-name {
    transition: color 0.3s ease;
  }
  .stream:hover h3, .container-card:hover .container-name {
    color: var(--terracotta);
  }
  .container-size {
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  .container-card:hover .container-size {
    transform: scale(1.06);
  }

  /* Image placeholders — gentle scale on hover */
  .img-placeholder, .hero-image {
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    overflow: hidden;
  }
  .hero-image:hover .img-placeholder { transform: scale(1.02); }

  /* "Other locations" grid (location-page bottom links) — slide forward */
  .other-loc {
    transition: background 0.3s ease, padding-left 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
  }
  .other-loc::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 0;
    background: var(--terracotta);
    transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .other-loc:hover::before { width: 3px; }
  .other-loc:hover { padding-left: 20px; }

  /* Locations overview cards — full-width hub list with slide-on-hover */
  .locations-overview-card { position: relative; }
  .locations-overview-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 0;
    background: var(--terracotta);
    transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .locations-overview-card:hover::before { width: 3px; }
  .locations-overview-card:hover { padding-left: 24px !important; background: var(--paper); }
  .locations-overview-card:hover > div:last-child {
    transform: translateX(8px);
    color: var(--terracotta);
  }
  @media (max-width: 880px) {
    .locations-overview-card { grid-template-columns: 1fr !important; gap: 16px !important; }
    .locations-overview-card > div:last-child { display: none; }
  }

  /* Footer links — small left-shift + colour */
  .footer-col a {
    transition: opacity 0.2s, color 0.3s ease, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    display: inline-block;
  }
  .footer-col a:hover { transform: translateX(3px); }

  /* Form inputs / textarea / select — refined focus states */
  .field input, .field textarea, .field select {
    transition: border-color 0.3s ease, background 0.3s ease;
  }
  .field input:focus, .field textarea:focus, .field select:focus {
    outline: none;
    border-color: var(--terracotta);
    background: var(--paper);
  }

  /* Trust strip items — checkmark scales on hover */
  .trust-item {
    transition: color 0.3s ease;
  }
  .trust-item .check {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s ease;
    display: inline-block;
  }
  .trust-item:hover .check { transform: scale(1.3) rotate(8deg); color: var(--terracotta); }

  /* Reduced motion — kill all hover animations */
  @media (prefers-reduced-motion: reduce) {
    .recycle-item, .recycle-item *,
    .loc-card, .loc-card *,
    .customer, .customer *,
    .btn-primary, .btn-secondary,
    .btn-primary *, .btn-secondary *,
    .stream, .container-card, .stage,
    .other-loc, .other-loc *,
    .footer-col a,
    .trust-item, .trust-item *,
    .brand, .brand * {
      transition: none !important;
      animation: none !important;
    }
    .recycle-item::after, .loc-card::before,
    .customer::before, .other-loc::before,
    .btn-primary::before, .btn-secondary::before,
    nav.primary a::after {
      display: none !important;
    }
    .recycle-item:hover, .loc-card:hover,
    .stream:hover, .container-card:hover,
    .btn-primary:hover, .btn-secondary:hover,
    .brand:hover, .nav-cta:hover {
      transform: none !important;
    }
  }

  /* ===== END HOVER MICRO-INTERACTIONS ===== */
  .btn-primary {
    background: var(--ink);
    color: var(--bone);
    padding: 18px 28px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background 0.2s, transform 0.2s;
  }
  .btn-primary:hover { background: var(--terracotta); transform: translateY(-1px); }
  .btn-secondary {
    background: transparent;
    color: var(--ink);
    padding: 18px 26px;
    border-radius: 999px;
    border: 1.5px solid var(--ink);
    font-size: 15px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s;
  }
  .btn-secondary:hover { background: var(--ink); color: var(--bone); }
  /* Hero right column - image + stats */
  .hero-visual {
    position: relative;
  }
  .hero-image {
    aspect-ratio: 4/5;
    background: var(--ink);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
  }
  .hero-image:hover img { transform: scale(1.02); }
  .img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--bone);
    text-align: center;
    padding: 24px;
    background: linear-gradient(135deg, #1F1E1B 0%, #2A2926 100%);
    position: relative;
  }
  .img-placeholder::before {
    content: '';
    position: absolute;
    inset: 16px;
    border: 1px dashed rgba(245, 242, 236, 0.3);
    pointer-events: none;
  }
  .img-placeholder .ph-label { font-family: 'Fraunces', serif; font-size: 14px; opacity: 0.6; margin-bottom: 6px; letter-spacing: 0.05em; text-transform: uppercase; }
  .img-placeholder .ph-desc { font-size: 13px; opacity: 0.5; max-width: 220px; line-height: 1.5; }
  .hero-stats {
    position: absolute;
    bottom: -1px;
    right: -32px;
    background: var(--terracotta);
    color: var(--bone);
    padding: 28px 32px;
    border-radius: 4px 0 0 0;
  }
  .hero-stats .num { font-family: 'Fraunces', serif; font-size: 56px; line-height: 0.9; font-weight: 400; letter-spacing: -0.03em; }
  .hero-stats .lbl { font-size: 13px; margin-top: 6px; opacity: 0.95; max-width: 160px; line-height: 1.4; }

  @media (max-width: 880px) {
    .hero { padding: 56px 0 64px; }
    .hero-grid { grid-template-columns: 1fr; gap: 48px; }
    .hero-stats { right: 0; padding: 22px 24px; }
    .hero-stats .num { font-size: 44px; }
  }

  /* Trust strip */
  .trust-strip {
    background: var(--paper);
    padding: 28px 0;
    border-bottom: 1px solid var(--rule-soft);
  }
  .trust-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
  }
  .trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 500;
    color: #2A2926;
  }
  .trust-item .check {
    width: 16px; height: 16px; border-radius: 50%;
    background: var(--sage);
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 10px; font-weight: 700;
    flex-shrink: 0;
  }
  @media (max-width: 880px) {
    .trust-inner { gap: 16px 24px; justify-content: flex-start; }
  }

  /* Section pattern */
  section.block { padding: 120px 0; border-bottom: 1px solid var(--rule-soft); }
  @media (max-width: 880px) { section.block { padding: 72px 0; } }

  .section-header {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 48px;
    margin-bottom: 80px;
    align-items: start;
  }
  .section-marker {
    font-family: 'Inter Tight', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 500;
    padding-top: 12px;
    color: var(--ink);
    position: relative;
  }
  .section-marker::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 36px;
    height: 1px;
    background: var(--terracotta);
  }
  h2.section-title {
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.02;
    letter-spacing: -0.03em;
    font-weight: 400;
    max-width: 900px;
  }
  h2.section-title em { font-style: italic; font-weight: 300; color: var(--terracotta); }
  .section-intro { font-size: 19px; line-height: 1.55; max-width: 620px; margin-top: 28px; color: #2A2926; font-weight: 300; }

  @media (max-width: 880px) {
    .section-header { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }
  }

  /* What we recycle */
  .recycle-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border-top: 1px solid var(--ink);
  }
  .recycle-item {
    padding: 48px 0;
    border-bottom: 1px solid var(--rule-soft);
    display: grid;
    grid-template-columns: 80px 1fr 200px;
    gap: 40px;
    align-items: start;
    transition: background 0.3s;
  }
  .recycle-item:nth-child(odd) { padding-right: 40px; border-right: 1px solid var(--rule-soft); }
  .recycle-item:nth-child(odd):last-child { padding-right: 0; border-right: none; }
  .recycle-item:nth-child(even) { padding-left: 40px; }
  .recycle-num {
    font-family: 'Fraunces', serif;
    font-size: 20px;
    color: var(--terracotta);
    font-weight: 500;
  }
  .recycle-name {
    font-family: 'Fraunces', serif;
    font-size: 26px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    font-weight: 500;
  }
  .recycle-desc { font-size: 15px; line-height: 1.6; color: #3A3835; }
  .recycle-tag {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--sage);
    font-weight: 600;
    padding-top: 6px;
  }
  @media (max-width: 880px) {
    .recycle-grid { grid-template-columns: 1fr; }
    .recycle-item { grid-template-columns: 50px 1fr; padding: 32px 0 !important; border-right: none !important; padding-left: 0 !important; padding-right: 0 !important; }
    .recycle-item .recycle-tag { grid-column: 2; padding-top: 8px; }
  }

  /* Glass + uPVC combined section */
  .combined {
    background: var(--ink);
    color: var(--bone);
  }
  .combined-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .combined .section-marker { color: var(--bone); }
  .combined .section-marker::before { background: var(--terracotta); }
  .combined h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(40px, 5.5vw, 72px);
    line-height: 1.0;
    letter-spacing: -0.035em;
    font-weight: 400;
    margin-bottom: 32px;
  }
  .combined h2 em { font-style: italic; color: var(--terracotta); font-weight: 300; }
  .combined-intro { font-size: 19px; line-height: 1.55; opacity: 0.85; font-weight: 300; max-width: 520px; }
  .combined-points {
    list-style: none;
    margin-top: 40px;
  }
  .combined-points li {
    padding: 18px 0;
    border-bottom: 1px solid rgba(245, 242, 236, 0.15);
    font-size: 16px;
    display: flex;
    gap: 20px;
    align-items: baseline;
  }
  .combined-points li::before {
    content: '+';
    color: var(--terracotta);
    font-family: 'Fraunces', serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 1;
  }
  .combined-visual {
    aspect-ratio: 1;
    background: #1F1E1B;
    border-radius: 4px;
    border: 1px dashed rgba(245, 242, 236, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(245, 242, 236, 0.5);
    text-align: center;
    padding: 32px;
  }
  @media (max-width: 880px) {
    .combined-grid { grid-template-columns: 1fr; gap: 48px; }
  }

  /* Why us */
  .why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--ink);
  }
  .why-item {
    padding: 48px 28px 48px 0;
    border-right: 1px solid var(--rule-soft);
  }
  .why-item:last-child { border-right: none; padding-right: 0; }
  .why-item:not(:first-child) { padding-left: 28px; }
  .why-num {
    font-family: 'Fraunces', serif;
    font-size: 14px;
    color: var(--terracotta);
    margin-bottom: 32px;
    font-weight: 500;
  }
  .why-title {
    font-family: 'Fraunces', serif;
    font-size: 24px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    font-weight: 500;
  }
  .why-desc { font-size: 15px; line-height: 1.6; color: #3A3835; }
  @media (max-width: 880px) {
    .why-grid { grid-template-columns: 1fr; }
    .why-item { padding: 32px 0 !important; border-right: none; border-bottom: 1px solid var(--rule-soft); }
    .why-item:last-child { border-bottom: none; }
  }

  /* How it works */
  .steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-top: 32px;
  }
  .step {
    position: relative;
  }
  .step-num {
    font-family: 'Fraunces', serif;
    font-size: 110px;
    line-height: 0.85;
    letter-spacing: -0.05em;
    color: var(--terracotta);
    font-weight: 300;
    margin-bottom: 24px;
    font-style: italic;
  }
  .step-title {
    font-family: 'Fraunces', serif;
    font-size: 28px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    font-weight: 500;
  }
  .step-desc { font-size: 15px; line-height: 1.6; color: #3A3835; }
  @media (max-width: 880px) {
    .steps { grid-template-columns: 1fr; gap: 48px; }
  }

  /* Customers */
  .customers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--ink);
  }
  .customer {
    padding: 32px 24px 32px 0;
    border-bottom: 1px solid var(--rule-soft);
    border-right: 1px solid var(--rule-soft);
  }
  .customer:nth-child(3n) { border-right: none; padding-right: 0; }
  .customer:nth-child(3n+2), .customer:nth-child(3n) { padding-left: 24px; }
  .customer-name {
    font-family: 'Fraunces', serif;
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
    font-weight: 500;
  }
  .customer-desc { font-size: 14px; color: #3A3835; line-height: 1.5; }
  @media (max-width: 880px) {
    .customers-grid { grid-template-columns: 1fr; }
    .customer { padding: 24px 0 !important; border-right: none; }
  }

  /* Locations */
  .locations {
    background: var(--paper);
  }
  .loc-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    border-top: 1px solid var(--ink);
    margin-top: 24px;
  }
  .loc-card {
    padding: 36px 24px 36px 0;
    border-right: 1px solid var(--rule-soft);
    text-decoration: none;
    color: inherit;
    transition: background 0.25s;
    display: block;
    position: relative;
  }
  .loc-card:last-child { border-right: none; padding-right: 0; }
  .loc-card:not(:first-child) { padding-left: 24px; }
  .loc-card:hover { background: var(--bone); }
  .loc-meta {
    font-family: 'Inter Tight', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--terracotta);
    margin-bottom: 20px;
    font-weight: 500;
  }
  .loc-name {
    font-family: 'Fraunces', serif;
    font-size: 32px;
    line-height: 1.0;
    letter-spacing: -0.025em;
    margin-bottom: 16px;
    font-weight: 500;
  }
  .loc-area { font-size: 13px; line-height: 1.6; color: #3A3835; margin-bottom: 28px; }
  .loc-arrow { font-family: 'Fraunces', serif; font-size: 18px; color: var(--ink); transition: transform 0.2s; display: inline-block; }
  .loc-card:hover .loc-arrow { transform: translateX(4px); color: var(--terracotta); }
  @media (max-width: 1100px) {
    .loc-grid { grid-template-columns: repeat(2, 1fr); }
    .loc-card { padding: 28px 20px !important; border-right: 1px solid var(--rule-soft) !important; border-bottom: 1px solid var(--rule-soft); }
    .loc-card:nth-child(2n) { border-right: none !important; padding-right: 0 !important; }
    .loc-card:nth-child(2n+1) { padding-left: 0 !important; }
  }
  @media (max-width: 600px) {
    .loc-grid { grid-template-columns: 1fr; }
    .loc-card { padding: 28px 0 !important; border-right: none !important; }
  }

  /* Compliance section */
  .compliance {
    padding: 80px 0;
    border-bottom: 1px solid var(--rule-soft);
    background: var(--bone);
  }
  .comp-inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: start;
  }
  .comp-title {
    font-family: 'Fraunces', serif;
    font-size: 32px;
    line-height: 1.05;
    letter-spacing: -0.02em;
    font-weight: 400;
  }
  .comp-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 40px;
    list-style: none;
  }
  .comp-list li {
    border-left: 1px solid var(--rule-soft);
    padding-left: 20px;
  }
  .comp-list .lbl {
    font-family: 'Inter Tight', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--terracotta);
    margin-bottom: 8px;
    font-weight: 500;
  }
  .comp-list .val {
    font-family: 'Fraunces', serif;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 500;
  }
  .comp-list .val small { font-family: 'Inter Tight', sans-serif; font-size: 13px; color: #3A3835; font-weight: 400; display: block; margin-top: 4px; line-height: 1.4; }
  @media (max-width: 880px) {
    .comp-inner { grid-template-columns: 1fr; gap: 32px; }
    .comp-list { grid-template-columns: 1fr; gap: 20px; }
  }

  /* FAQ */
  .faq-list { border-top: 1px solid var(--ink); margin-top: 32px; }
  details.faq {
    border-bottom: 1px solid var(--rule-soft);
    padding: 0;
  }
  details.faq summary {
    list-style: none;
    cursor: pointer;
    padding: 28px 0;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 24px;
    font-family: 'Fraunces', serif;
    font-size: 22px;
    line-height: 1.25;
    letter-spacing: -0.015em;
    font-weight: 500;
    transition: color 0.2s;
  }
  details.faq summary::-webkit-details-marker { display: none; }
  details.faq summary:hover { color: var(--terracotta); }
  details.faq summary::after {
    content: '+';
    font-family: 'Fraunces', serif;
    font-size: 28px;
    color: var(--terracotta);
    flex-shrink: 0;
    transition: transform 0.2s;
    line-height: 0.6;
  }
  details.faq[open] summary::after { content: '−'; }
  details.faq .faq-answer {
    padding: 0 0 28px;
    max-width: 760px;
    font-size: 16px;
    line-height: 1.65;
    color: #3A3835;
  }
  @media (max-width: 880px) {
    details.faq summary { font-size: 18px; }
  }

  /* CTA section */
  .cta {
    background: var(--terracotta);
    color: var(--bone);
    padding: 100px 0;
    text-align: center;
  }
  .cta h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(40px, 6vw, 72px);
    line-height: 1.0;
    letter-spacing: -0.03em;
    margin-bottom: 28px;
    font-weight: 400;
  }
  .cta h2 em { font-style: italic; font-weight: 300; }
  .cta p { font-size: 19px; max-width: 560px; margin: 0 auto 44px; opacity: 0.95; line-height: 1.55; font-weight: 300; }
  .cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
  .cta .btn-primary { background: var(--ink); }
  .cta .btn-primary:hover { background: var(--bone); color: var(--ink); }
  .cta .btn-secondary { color: var(--bone); border-color: var(--bone); }
  .cta .btn-secondary:hover { background: var(--bone); color: var(--terracotta); }

  /* Contact */
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
  .contact-info { font-size: 17px; line-height: 1.6; }
  .contact-info .row { display: block; padding: 24px 0; border-bottom: 1px solid var(--rule-soft); }
  .contact-info .row .lbl {
    font-family: 'Inter Tight', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--terracotta);
    margin-bottom: 8px;
    font-weight: 500;
  }
  .contact-info .row .val {
    font-family: 'Fraunces', serif;
    font-size: 22px;
    line-height: 1.3;
    letter-spacing: -0.01em;
    font-weight: 500;
    color: var(--ink);
    transition: color 0.2s;
  }
  .contact-info a.row:hover .val { color: var(--terracotta); }

  form.enquiry { display: flex; flex-direction: column; gap: 18px; }
  form.enquiry label { font-size: 13px; font-weight: 500; color: var(--ink); }
  form.enquiry input, form.enquiry textarea, form.enquiry select {
    width: 100%;
    padding: 14px 16px;
    font: inherit;
    font-size: 16px;
    border: 1px solid var(--rule-soft);
    background: var(--paper);
    border-radius: 4px;
    color: var(--ink);
    transition: border-color 0.2s;
  }
  form.enquiry input:invalid:not(:placeholder-shown),
  form.enquiry textarea:invalid:not(:placeholder-shown) {
    border-color: var(--terracotta);
  }
  form.enquiry input:focus, form.enquiry textarea:focus, form.enquiry select:focus {
    outline: none;
    border-color: var(--ink);
  }
  form.enquiry textarea { resize: vertical; min-height: 100px; }
  form.enquiry button {
    background: var(--ink);
    color: var(--bone);
    padding: 16px 32px;
    border-radius: 999px;
    font-weight: 500;
    font-size: 15px;
    align-self: flex-start;
    transition: background 0.2s;
  }
  form.enquiry button:hover { background: var(--terracotta); }
  @media (max-width: 880px) {
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  }

  /* Footer */
  footer.site {
    background: var(--ink);
    color: var(--bone);
    padding: 80px 0 32px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(245, 242, 236, 0.15);
  }
  .footer-brand .brand { color: var(--bone); margin-bottom: 20px; font-size: 28px; }
  .footer-brand p { font-size: 14px; line-height: 1.6; opacity: 0.7; max-width: 360px; }
  .footer-col h4 {
    font-family: 'Inter Tight', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--terracotta);
    margin-bottom: 20px;
    font-weight: 500;
  }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 10px; }
  .footer-col a { font-size: 14px; opacity: 0.8; transition: opacity 0.2s; }
  .footer-col a:hover { opacity: 1; color: var(--terracotta); }
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 12px;
    opacity: 0.5;
  }
  .footer-bottom .licence {
    color: var(--terracotta);
    font-weight: 500;
    opacity: 0.9;
  }
  @media (max-width: 880px) {
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  }

  /* Reveal animation */
  @media (prefers-reduced-motion: no-preference) {
    .reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
    .reveal.visible { opacity: 1; transform: none; }
  }


/* ===== GLASS VIEW STYLES ===== */
.display { font-family: 'Fraunces', serif; font-weight: 400; letter-spacing: -0.02em; line-height: 1.02; }
  .wrap { max-width: 1320px; margin: 0 auto; padding: 0 32px; }
  .wrap-narrow { max-width: 980px; margin: 0 auto; padding: 0 32px; }

  .topbar { background: var(--ink); color: var(--bone); padding: 10px 0; font-size: 13px; }
  .topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
  .topbar .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--terracotta); display: inline-block; margin-right: 8px; }

  header.site { position: sticky; top: 0; background: var(--bone); border-bottom: 1px solid var(--rule-soft); z-index: 100; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
  .header-inner { display: flex; justify-content: space-between; align-items: center; padding: 22px 0; }
  .brand { font-family: 'Fraunces', serif; font-weight: 500; font-size: 24px; letter-spacing: -0.02em; line-height: 1; display: flex; align-items: baseline; gap: 2px; }
  .brand .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--terracotta); align-self: center; margin: 0 4px; }
  nav.primary { display: flex; gap: 36px; align-items: center; }
  nav.primary nav.primary a:hover, nav.primary a.active { color: var(--terracotta); }
  .nav-ct.nav-cta:hover { background: var(--terracotta) !important; }
  .menu-btn { display: none; }
  @media (max-width: 880px) {
    nav.primary { display: none; }
    .menu-btn { display: flex; flex-direction: column; gap: 5px; padding: 8px; }
    .menu-btn span { width: 22px; height: 1.5px; background: var(--ink); display: block; }
    nav.primary.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--bone); padding: 24px 32px 32px; gap: 18px; align-items: flex-start; border-bottom: 1px solid var(--rule-soft); }
  }

  .crumbs { padding: 28px 0 0; font-size: 13px; color: #3A3835; }
  .crumbs .crumbs a:hover { color: var(--terracotta); }
  .crumbs .sep { margin: 0 10px; opacity: 0.5; }

  .page-hero { padding: 60px 0 100px; border-bottom: 1px solid var(--rule-soft); position: relative; }
  .page-hero-inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 80px; align-items: end; }
  .page-marker { font-family: 'Inter Tight', sans-serif; font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em; font-weight: 500; margin-bottom: 36px; display: flex; align-items: center; gap: 12px; }
  .page-marker::before { content: ''; width: 36px; height: 1px; background: var(--terracotta); }
  h1.page-title { font-size: clamp(48px, 7vw, 96px); line-height: 0.96; letter-spacing: -0.035em; margin-bottom: 36px; font-weight: 400; font-family: 'Fraunces', serif; }
  h1.page-title em { font-style: italic; color: var(--terracotta); font-weight: 300; }
  .page-sub { font-size: 19px; line-height: 1.55; max-width: 560px; color: #2A2926; margin-bottom: 40px; font-weight: 300; }
  .page-actions { display: flex; gap: 14px; flex-wrap: wrap; }
  .btn-primary { background: var(--ink); color: var(--bone); padding: 18px 28px; border-radius: 999px; font-size: 15px; font-weight: 500; display: inline-flex; align-items: center; gap: 10px; transition: all 0.2s; }
  .btn-primary:hover { background: var(--terracotta); }
  .btn-secondary { background: transparent; color: var(--ink); padding: 18px 26px; border-radius: 999px; border: 1.5px solid var(--ink); font-size: 15px; font-weight: 500; display: inline-flex; align-items: center; gap: 10px; transition: all 0.2s; }
  .btn-secondary:hover { background: var(--ink); color: var(--bone); }

  .page-hero-stats { background: var(--ink); color: var(--bone); padding: 40px; border-radius: 4px; }
  .page-hero-stats h3 { font-family: 'Fraunces', serif; font-size: 24px; line-height: 1.15; margin-bottom: 28px; font-weight: 500; }
  .page-hero-stats ul { list-style: none; }
  .page-hero-stats li { padding: 14px 0; border-bottom: 1px solid rgba(245,242,236,0.15); display: flex; gap: 16px; align-items: baseline; font-size: 15px; }
  .page-hero-stats li:last-child { border-bottom: none; padding-bottom: 0; }
  .page-hero-stats li::before { content: '✓'; color: var(--terracotta); font-weight: 600; flex-shrink: 0; }

  @media (max-width: 880px) {
    .page-hero { padding: 36px 0 64px; }
    .page-hero-inner { grid-template-columns: 1fr; gap: 48px; }
  }

  section.block { padding: 100px 0; border-bottom: 1px solid var(--rule-soft); }
  @media (max-width: 880px) { section.block { padding: 64px 0; } }

  .section-header { display: grid; grid-template-columns: 200px 1fr; gap: 48px; margin-bottom: 64px; align-items: start; }
  .section-marker { font-family: 'Inter Tight', sans-serif; font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em; font-weight: 500; padding-top: 12px; position: relative; }
  .section-marker::before { content: ''; position: absolute; top: 0; left: 0; width: 36px; height: 1px; background: var(--terracotta); }
  h2.section-title { font-size: clamp(32px, 4.5vw, 56px); line-height: 1.05; letter-spacing: -0.025em; font-weight: 400; max-width: 900px; font-family: 'Fraunces', serif; }
  h2.section-title em { font-style: italic; font-weight: 300; color: var(--terracotta); }
  .section-intro { font-size: 18px; line-height: 1.55; max-width: 640px; margin-top: 24px; color: #2A2926; font-weight: 300; }
  @media (max-width: 880px) { .section-header { grid-template-columns: 1fr; gap: 24px; margin-bottom: 40px; } }

  .accept-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--ink); }
  .accept-col { padding: 40px 32px 40px 0; }
  .accept-col:first-child { border-right: 1px solid var(--rule-soft); }
  .accept-col:last-child { padding-left: 32px; padding-right: 0; }
  .accept-head { display: flex; align-items: center; gap: 16px; margin-bottom: 32px; }
  .accept-icon { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 16px; color: white; flex-shrink: 0; }
  .accept-icon.yes { background: var(--sage); }
  .accept-icon.no { background: var(--grey-warm); }
  .accept-title { font-family: 'Fraunces', serif; font-size: 26px; letter-spacing: -0.02em; font-weight: 500; }
  .accept-list { list-style: none; }
  .accept-list li { padding: 18px 0; border-bottom: 1px solid var(--rule-soft); font-size: 16px; line-height: 1.5; }
  .accept-list li:last-child { border-bottom: none; }
  .accept-list strong { font-family: 'Fraunces', serif; font-size: 18px; font-weight: 500; display: block; margin-bottom: 4px; letter-spacing: -0.01em; }
  .accept-list small { font-size: 14px; color: #3A3835; }
  @media (max-width: 880px) {
    .accept-grid { grid-template-columns: 1fr; }
    .accept-col { padding: 32px 0 !important; border-right: none !important; }
    .accept-col:first-child { border-bottom: 1px solid var(--rule-soft); }
  }

  .containers { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--ink); margin-top: 24px; }
  .container-card { padding: 36px 24px 36px 0; border-right: 1px solid var(--rule-soft); }
  .container-card:last-child { border-right: none; padding-right: 0; }
  .container-card:not(:first-child) { padding-left: 24px; }
  .container-size { font-family: 'Fraunces', serif; font-size: 56px; line-height: 1; letter-spacing: -0.03em; font-weight: 500; margin-bottom: 8px; }
  .container-size .unit { font-size: 24px; color: var(--terracotta); }
  .container-name { font-family: 'Fraunces', serif; font-size: 18px; margin-bottom: 12px; font-weight: 500; }
  .container-desc { font-size: 14px; line-height: 1.5; color: #3A3835; }
  @media (max-width: 880px) {
    .containers { grid-template-columns: 1fr 1fr; }
    .container-card { padding: 28px 16px !important; border-bottom: 1px solid var(--rule-soft); }
    .container-card:nth-child(2n) { border-right: none; padding-right: 0 !important; }
    .container-card:nth-child(2n+1) { padding-left: 0 !important; }
  }

  .lifecycle { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-top: 24px; counter-reset: stage; }
  .stage { position: relative; padding-top: 32px; border-top: 1px solid var(--ink); counter-increment: stage; }
  .stage::before { content: counter(stage, decimal-leading-zero); font-family: 'Fraunces', serif; font-size: 14px; color: var(--terracotta); position: absolute; top: 12px; left: 0; font-weight: 500; }
  .stage h3 { font-family: 'Fraunces', serif; font-size: 22px; line-height: 1.15; letter-spacing: -0.02em; font-weight: 500; margin-bottom: 14px; margin-top: 24px; }
  .stage p { font-size: 14px; line-height: 1.55; color: #3A3835; }
  @media (max-width: 880px) { .lifecycle { grid-template-columns: 1fr; gap: 32px; } }

  .faq-list { border-top: 1px solid var(--ink); margin-top: 24px; }
  details.faq { border-bottom: 1px solid var(--rule-soft); }
  details.faq summary { list-style: none; cursor: pointer; padding: 26px 0; display: flex; justify-content: space-between; align-items: baseline; gap: 24px; font-family: 'Fraunces', serif; font-size: 21px; line-height: 1.25; letter-spacing: -0.015em; font-weight: 500; transition: color 0.2s; }
  details.faq summary::-webkit-details-marker { display: none; }
  details.faq summary:hover { color: var(--terracotta); }
  details.faq summary::after { content: '+'; font-family: 'Fraunces', serif; font-size: 26px; color: var(--terracotta); flex-shrink: 0; transition: transform 0.2s; line-height: 0.6; }
  details.faq[open] summary::after { content: '−'; }
  details.faq .faq-answer { padding: 0 0 26px; max-width: 760px; font-size: 16px; line-height: 1.65; color: #3A3835; }
  @media (max-width: 880px) { details.faq summary { font-size: 17px; } }

  .ct.cta h2 { font-family: 'Fraunces', serif; font-size: clamp(36px, 5vw, 64px); line-height: 1.0; letter-spacing: -0.03em; margin-bottom: 24px; font-weight: 400; }
  .cta h2 em { font-style: italic; font-weight: 300; }
  .cta p { font-size: 18px; max-width: 540px; margin: 0 auto 40px; opacity: 0.95; line-height: 1.55; font-weight: 300; }
  .cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
  .cta .btn-primary { background: var(--ink); }
  .cta .btn-primary:hover { background: var(--bone); color: var(--ink); }
  .cta .btn-secondary { color: var(--bone); border-color: var(--bone); }
  .cta .btn-secondary:hover { background: var(--bone); color: var(--terracotta); }

  footer.site { background: var(--ink); color: var(--bone); padding: 80px 0 32px; }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; padding-bottom: 60px; border-bottom: 1px solid rgba(245,242,236,0.15); }
  .footer-brand .brand { color: var(--bone); margin-bottom: 20px; font-size: 28px; }
  .footer-brand p { font-size: 14px; line-height: 1.6; opacity: 0.7; max-width: 360px; }
  .footer-col h4 { font-family: 'Inter Tight', sans-serif; font-size: 11px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--terracotta); margin-bottom: 20px; font-weight: 500; }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 10px; }
  .footer-col .footer-col a:hover { opacity: 1; color: var(--terracotta); }
  .footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; font-size: 12px; opacity: 0.5; }
  .footer-bottom .licence { color: var(--terracotta); font-weight: 500; opacity: 0.9; }
  @media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ===== WASTE VIEW STYLES ===== */
.display { font-family: 'Fraunces', serif; font-weight: 400; letter-spacing: -0.02em; line-height: 1.02; }
  .wrap { max-width: 1320px; margin: 0 auto; padding: 0 32px; }
  .wrap-narrow { max-width: 980px; margin: 0 auto; padding: 0 32px; }

  .topbar { background: var(--ink); color: var(--bone); padding: 10px 0; font-size: 13px; }
  .topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
  .topbar .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--terracotta); display: inline-block; margin-right: 8px; }

  header.site { position: sticky; top: 0; background: var(--bone); border-bottom: 1px solid var(--rule-soft); z-index: 100; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
  .header-inner { display: flex; justify-content: space-between; align-items: center; padding: 22px 0; }
  .brand { font-family: 'Fraunces', serif; font-weight: 500; font-size: 24px; letter-spacing: -0.02em; line-height: 1; display: flex; align-items: baseline; gap: 2px; }
  .brand .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--terracotta); align-self: center; margin: 0 4px; }
  nav.primary { display: flex; gap: 36px; align-items: center; }
  nav.primary nav.primary a:hover, nav.primary a.active { color: var(--terracotta); }
  .nav-ct.nav-cta:hover { background: var(--terracotta) !important; }
  .menu-btn { display: none; }
  @media (max-width: 880px) {
    nav.primary { display: none; }
    .menu-btn { display: flex; flex-direction: column; gap: 5px; padding: 8px; }
    .menu-btn span { width: 22px; height: 1.5px; background: var(--ink); display: block; }
    nav.primary.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--bone); padding: 24px 32px 32px; gap: 18px; align-items: flex-start; border-bottom: 1px solid var(--rule-soft); }
  }

  .crumbs { padding: 28px 0 0; font-size: 13px; color: #3A3835; }
  .crumbs .crumbs a:hover { color: var(--terracotta); }
  .crumbs .sep { margin: 0 10px; opacity: 0.5; }

  .page-hero { padding: 60px 0 100px; border-bottom: 1px solid var(--rule-soft); position: relative; }
  .page-hero-inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 80px; align-items: end; }
  .page-marker { font-family: 'Inter Tight', sans-serif; font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em; font-weight: 500; margin-bottom: 36px; display: flex; align-items: center; gap: 12px; }
  .page-marker::before { content: ''; width: 36px; height: 1px; background: var(--terracotta); }
  h1.page-title { font-size: clamp(48px, 7vw, 96px); line-height: 0.96; letter-spacing: -0.035em; margin-bottom: 36px; font-weight: 400; font-family: 'Fraunces', serif; }
  h1.page-title em { font-style: italic; color: var(--terracotta); font-weight: 300; }
  .page-sub { font-size: 19px; line-height: 1.55; max-width: 560px; color: #2A2926; margin-bottom: 40px; font-weight: 300; }
  .page-actions { display: flex; gap: 14px; flex-wrap: wrap; }
  .btn-primary { background: var(--ink); color: var(--bone); padding: 18px 28px; border-radius: 999px; font-size: 15px; font-weight: 500; display: inline-flex; align-items: center; gap: 10px; transition: all 0.2s; }
  .btn-primary:hover { background: var(--terracotta); }
  .btn-secondary { background: transparent; color: var(--ink); padding: 18px 26px; border-radius: 999px; border: 1.5px solid var(--ink); font-size: 15px; font-weight: 500; display: inline-flex; align-items: center; gap: 10px; transition: all 0.2s; }
  .btn-secondary:hover { background: var(--ink); color: var(--bone); }

  .page-hero-stats { background: var(--ink); color: var(--bone); padding: 40px; border-radius: 4px; }
  .page-hero-stats h3 { font-family: 'Fraunces', serif; font-size: 24px; line-height: 1.15; margin-bottom: 28px; font-weight: 500; }
  .page-hero-stats ul { list-style: none; }
  .page-hero-stats li { padding: 14px 0; border-bottom: 1px solid rgba(245,242,236,0.15); display: flex; gap: 16px; align-items: baseline; font-size: 15px; }
  .page-hero-stats li:last-child { border-bottom: none; padding-bottom: 0; }
  .page-hero-stats li::before { content: '✓'; color: var(--terracotta); font-weight: 600; flex-shrink: 0; }

  @media (max-width: 880px) {
    .page-hero { padding: 36px 0 64px; }
    .page-hero-inner { grid-template-columns: 1fr; gap: 48px; }
  }

  section.block { padding: 100px 0; border-bottom: 1px solid var(--rule-soft); }
  @media (max-width: 880px) { section.block { padding: 64px 0; } }

  .section-header { display: grid; grid-template-columns: 200px 1fr; gap: 48px; margin-bottom: 64px; align-items: start; }
  .section-marker { font-family: 'Inter Tight', sans-serif; font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em; font-weight: 500; padding-top: 12px; position: relative; }
  .section-marker::before { content: ''; position: absolute; top: 0; left: 0; width: 36px; height: 1px; background: var(--terracotta); }
  h2.section-title { font-size: clamp(32px, 4.5vw, 56px); line-height: 1.05; letter-spacing: -0.025em; font-weight: 400; max-width: 900px; font-family: 'Fraunces', serif; }
  h2.section-title em { font-style: italic; font-weight: 300; color: var(--terracotta); }
  .section-intro { font-size: 18px; line-height: 1.55; max-width: 640px; margin-top: 24px; color: #2A2926; font-weight: 300; }
  @media (max-width: 880px) { .section-header { grid-template-columns: 1fr; gap: 24px; margin-bottom: 40px; } }

  /* Streams grid */
  .streams { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--ink); }
  .stream { padding: 40px 24px 40px 0; border-right: 1px solid var(--rule-soft); }
  .stream:last-child { border-right: none; padding-right: 0; }
  .stream:not(:first-child) { padding-left: 24px; }
  .stream-num { font-family: 'Fraunces', serif; font-size: 14px; color: var(--terracotta); margin-bottom: 32px; font-weight: 500; }
  .stream h3 { font-family: 'Fraunces', serif; font-size: 26px; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 16px; font-weight: 500; }
  .stream-desc { font-size: 14px; line-height: 1.55; color: #3A3835; margin-bottom: 20px; }
  .stream-list { list-style: none; }
  .stream-list li { padding: 8px 0; font-size: 14px; color: #2A2926; padding-left: 16px; position: relative; }
  .stream-list li::before { content: '—'; position: absolute; left: 0; color: var(--terracotta); }
  @media (max-width: 1100px) {
    .streams { grid-template-columns: 1fr 1fr; }
    .stream { padding: 36px 24px !important; border-bottom: 1px solid var(--rule-soft); }
    .stream:nth-child(2n) { border-right: none !important; padding-right: 0 !important; }
    .stream:nth-child(2n+1) { padding-left: 0 !important; }
    .stream:nth-last-child(-n+2) { border-bottom: none; }
  }
  @media (max-width: 700px) {
    .streams { grid-template-columns: 1fr; }
    .stream { padding: 36px 0 !important; border-right: none !important; border-bottom: 1px solid var(--rule-soft); }
    .stream:last-child { border-bottom: none; }
  }

  /* Why us / competitive rates */
  .competitive { background: var(--ink); color: var(--bone); }
  .competitive-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .competitive .section-marker { color: var(--bone); }
  .competitive .section-marker::before { background: var(--terracotta); }
  .competitive h2 { font-family: 'Fraunces', serif; font-size: clamp(36px, 5vw, 64px); line-height: 1.0; letter-spacing: -0.03em; font-weight: 400; margin-bottom: 32px; }
  .competitive h2 em { font-style: italic; color: var(--terracotta); font-weight: 300; }
  .competitive p { font-size: 17px; line-height: 1.6; opacity: 0.85; font-weight: 300; margin-bottom: 16px; }
  .competitive-points { list-style: none; margin-top: 32px; }
  .competitive-points li { padding: 18px 0; border-bottom: 1px solid rgba(245,242,236,0.15); font-size: 15px; }
  .competitive-points li strong { display: block; font-family: 'Fraunces', serif; font-size: 17px; color: var(--terracotta); margin-bottom: 4px; font-weight: 500; }
  @media (max-width: 880px) {
    .competitive-grid { grid-template-columns: 1fr; gap: 32px; }
  }

  /* Container sizes */
  .containers { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--ink); margin-top: 24px; }
  .container-card { padding: 36px 24px 36px 0; border-right: 1px solid var(--rule-soft); }
  .container-card:last-child { border-right: none; padding-right: 0; }
  .container-card:not(:first-child) { padding-left: 24px; }
  .container-size { font-family: 'Fraunces', serif; font-size: 56px; line-height: 1; letter-spacing: -0.03em; font-weight: 500; margin-bottom: 8px; }
  .container-size .unit { font-size: 24px; color: var(--terracotta); }
  .container-name { font-family: 'Fraunces', serif; font-size: 18px; margin-bottom: 12px; font-weight: 500; }
  .container-desc { font-size: 14px; line-height: 1.5; color: #3A3835; }
  @media (max-width: 880px) {
    .containers { grid-template-columns: 1fr 1fr; }
    .container-card { padding: 28px 16px !important; border-bottom: 1px solid var(--rule-soft); }
    .container-card:nth-child(2n) { border-right: none; padding-right: 0 !important; }
    .container-card:nth-child(2n+1) { padding-left: 0 !important; }
  }

  /* FAQ */
  .faq-list { border-top: 1px solid var(--ink); margin-top: 24px; }
  details.faq { border-bottom: 1px solid var(--rule-soft); }
  details.faq summary { list-style: none; cursor: pointer; padding: 26px 0; display: flex; justify-content: space-between; align-items: baseline; gap: 24px; font-family: 'Fraunces', serif; font-size: 21px; line-height: 1.25; letter-spacing: -0.015em; font-weight: 500; transition: color 0.2s; }
  details.faq summary::-webkit-details-marker { display: none; }
  details.faq summary:hover { color: var(--terracotta); }
  details.faq summary::after { content: '+'; font-family: 'Fraunces', serif; font-size: 26px; color: var(--terracotta); flex-shrink: 0; transition: transform 0.2s; line-height: 0.6; }
  details.faq[open] summary::after { content: '−'; }
  details.faq .faq-answer { padding: 0 0 26px; max-width: 760px; font-size: 16px; line-height: 1.65; color: #3A3835; }
  @media (max-width: 880px) { details.faq summary { font-size: 17px; } }

  .ct.cta h2 { font-family: 'Fraunces', serif; font-size: clamp(36px, 5vw, 64px); line-height: 1.0; letter-spacing: -0.03em; margin-bottom: 24px; font-weight: 400; }
  .cta h2 em { font-style: italic; font-weight: 300; }
  .cta p { font-size: 18px; max-width: 540px; margin: 0 auto 40px; opacity: 0.95; line-height: 1.55; font-weight: 300; }
  .cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
  .cta .btn-primary { background: var(--ink); }
  .cta .btn-primary:hover { background: var(--bone); color: var(--ink); }
  .cta .btn-secondary { color: var(--bone); border-color: var(--bone); }
  .cta .btn-secondary:hover { background: var(--bone); color: var(--terracotta); }

  footer.site { background: var(--ink); color: var(--bone); padding: 80px 0 32px; }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; padding-bottom: 60px; border-bottom: 1px solid rgba(245,242,236,0.15); }
  .footer-brand .brand { color: var(--bone); margin-bottom: 20px; font-size: 28px; }
  .footer-brand p { font-size: 14px; line-height: 1.6; opacity: 0.7; max-width: 360px; }
  .footer-col h4 { font-family: 'Inter Tight', sans-serif; font-size: 11px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--terracotta); margin-bottom: 20px; font-weight: 500; }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 10px; }
  .footer-col .footer-col a:hover { opacity: 1; color: var(--terracotta); }
  .footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; font-size: 12px; opacity: 0.5; }
  .footer-bottom .licence { color: var(--terracotta); font-weight: 500; opacity: 0.9; }
  @media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ===== CHESTER VIEW STYLES ===== */
.display { font-family: 'Fraunces', serif; font-weight: 400; letter-spacing: -0.02em; line-height: 1.02; }
  .wrap { max-width: 1320px; margin: 0 auto; padding: 0 32px; }
  .wrap-narrow { max-width: 980px; margin: 0 auto; padding: 0 32px; }

  .topbar { background: var(--ink); color: var(--bone); padding: 10px 0; font-size: 13px; }
  .topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
  .topbar .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--terracotta); display: inline-block; margin-right: 8px; }

  header.site { position: sticky; top: 0; background: var(--bone); border-bottom: 1px solid var(--rule-soft); z-index: 100; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
  .header-inner { display: flex; justify-content: space-between; align-items: center; padding: 22px 0; }
  .brand { font-family: 'Fraunces', serif; font-weight: 500; font-size: 24px; letter-spacing: -0.02em; line-height: 1; display: flex; align-items: baseline; gap: 2px; }
  .brand .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--terracotta); align-self: center; margin: 0 4px; }
  nav.primary { display: flex; gap: 36px; align-items: center; }
  nav.primary nav.primary a:hover { color: var(--terracotta); }
  .nav-ct.nav-cta:hover { background: var(--terracotta) !important; }
  .menu-btn { display: none; }
  @media (max-width: 880px) {
    nav.primary { display: none; }
    .menu-btn { display: flex; flex-direction: column; gap: 5px; padding: 8px; }
    .menu-btn span { width: 22px; height: 1.5px; background: var(--ink); display: block; }
    nav.primary.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--bone); padding: 24px 32px 32px; gap: 18px; align-items: flex-start; border-bottom: 1px solid var(--rule-soft); }
  }

  .crumbs { padding: 28px 0 0; font-size: 13px; color: #3A3835; }
  .crumbs .crumbs a:hover { color: var(--terracotta); }
  .crumbs .sep { margin: 0 10px; opacity: 0.5; }

  /* Page hero */
  .page-hero { padding: 60px 0 90px; border-bottom: 1px solid var(--rule-soft); }
  .hero-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 80px; align-items: end; }
  .hub-marker { display: flex; align-items: center; gap: 16px; margin-bottom: 36px; }
  .hub-num { font-family: 'Fraunces', serif; font-size: 48px; line-height: 1; color: var(--terracotta); font-weight: 300; font-style: italic; letter-spacing: -0.03em; }
  .hub-met.hub-label { font-family: 'Inter Tight', sans-serif; font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em; font-weight: 500; }
  .hub-region { font-family: 'Fraunces', serif; font-size: 18px; line-height: 1.2; margin-top: 6px; font-weight: 500; letter-spacing: -0.01em; }
  h1.page-title { font-size: clamp(56px, 8vw, 120px); line-height: 0.92; letter-spacing: -0.04em; margin-bottom: 36px; font-weight: 400; font-family: 'Fraunces', serif; }
  h1.page-title em { font-style: italic; color: var(--terracotta); font-weight: 300; }
  .page-sub { font-size: 19px; line-height: 1.55; max-width: 540px; color: #2A2926; margin-bottom: 40px; font-weight: 300; }
  .page-actions { display: flex; gap: 14px; flex-wrap: wrap; }
  .btn-primary { background: var(--ink); color: var(--bone); padding: 18px 28px; border-radius: 999px; font-size: 15px; font-weight: 500; display: inline-flex; align-items: center; gap: 10px; transition: all 0.2s; }
  .btn-primary:hover { background: var(--terracotta); }
  .btn-secondary { background: transparent; color: var(--ink); padding: 18px 26px; border-radius: 999px; border: 1.5px solid var(--ink); font-size: 15px; font-weight: 500; display: inline-flex; align-items: center; gap: 10px; transition: all 0.2s; }
  .btn-secondary:hover { background: var(--ink); color: var(--bone); }

  .hero-coverage { background: var(--ink); color: var(--bone); padding: 36px; border-radius: 4px; }
  .hero-coverage h3 { font-family: 'Fraunces', serif; font-size: 20px; line-height: 1.15; margin-bottom: 20px; font-weight: 500; }
  .hero-coverage ul { list-style: none; columns: 2; column-gap: 24px; }
  .hero-coverage li { padding: 8px 0; font-size: 14px; opacity: 0.9; break-inside: avoid; }
  .hero-coverage .postcodes { margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(245,242,236,0.15); font-size: 13px; opacity: 0.7; }
  .hero-coverage .postcodes strong { color: var(--terracotta); display: block; font-family: 'Fraunces', serif; font-size: 11px; text-transform: uppercase; letter-spacing: 0.16em; margin-bottom: 8px; font-weight: 500; }

  @media (max-width: 880px) {
    .page-hero { padding: 36px 0 64px; }
    .hero-grid { grid-template-columns: 1fr; gap: 48px; }
    .hero-coverage ul { columns: 1; }
  }

  section.block { padding: 90px 0; border-bottom: 1px solid var(--rule-soft); }
  @media (max-width: 880px) { section.block { padding: 56px 0; } }

  .section-header { display: grid; grid-template-columns: 200px 1fr; gap: 48px; margin-bottom: 56px; align-items: start; }
  .section-marker { font-family: 'Inter Tight', sans-serif; font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em; font-weight: 500; padding-top: 12px; position: relative; }
  .section-marker::before { content: ''; position: absolute; top: 0; left: 0; width: 36px; height: 1px; background: var(--terracotta); }
  h2.section-title { font-size: clamp(32px, 4.5vw, 52px); line-height: 1.05; letter-spacing: -0.025em; font-weight: 400; max-width: 880px; font-family: 'Fraunces', serif; }
  h2.section-title em { font-style: italic; font-weight: 300; color: var(--terracotta); }
  @media (max-width: 880px) { .section-header { grid-template-columns: 1fr; gap: 24px; margin-bottom: 32px; } }

  /* Local customers */
  .local-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--ink); }
  .local-card { padding: 36px 32px 36px 0; border-bottom: 1px solid var(--rule-soft); }
  .local-card:nth-child(odd) { border-right: 1px solid var(--rule-soft); }
  .local-card:nth-child(even) { padding-left: 32px; padding-right: 0; }
  .local-card:nth-last-child(-n+2) { border-bottom: none; }
  .local-name { font-family: 'Fraunces', serif; font-size: 22px; line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 10px; font-weight: 500; }
  .local-desc { font-size: 15px; line-height: 1.6; color: #3A3835; }
  @media (max-width: 880px) {
    .local-grid { grid-template-columns: 1fr; }
    .local-card { padding: 28px 0 !important; border-right: none !important; }
  }

  /* Two-col content */
  .two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
  .two-col p { font-size: 17px; line-height: 1.65; color: #2A2926; margin-bottom: 20px; }
  .two-col p:last-child { margin-bottom: 0; }
  @media (max-width: 880px) { .two-col { grid-template-columns: 1fr; gap: 32px; } }

  /* CTA */
  .ct.cta h2 { font-family: 'Fraunces', serif; font-size: clamp(36px, 5vw, 56px); line-height: 1.0; letter-spacing: -0.03em; margin-bottom: 24px; font-weight: 400; }
  .cta h2 em { font-style: italic; font-weight: 300; }
  .cta p { font-size: 18px; max-width: 540px; margin: 0 auto 36px; opacity: 0.95; line-height: 1.55; font-weight: 300; }
  .cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
  .cta .btn-primary { background: var(--ink); }
  .cta .btn-primary:hover { background: var(--bone); color: var(--ink); }
  .cta .btn-secondary { color: var(--bone); border-color: var(--bone); }
  .cta .btn-secondary:hover { background: var(--bone); color: var(--terracotta); }

  /* Other locations */
  .other-locs { background: var(--paper); padding: 64px 0; border-bottom: 1px solid var(--rule-soft); }
  .other-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--ink); margin-top: 24px; }
  .other-loc { padding: 28px 20px 28px 0; border-right: 1px solid var(--rule-soft); transition: background 0.25s; }
  .other-loc:last-child { border-right: none; padding-right: 0; }
  .other-loc:not(:first-child) { padding-left: 20px; }
  .other-loc:hover { background: var(--bone); }
  .other-met.other-name { font-family: 'Fraunces', serif; font-size: 26px; line-height: 1; letter-spacing: -0.025em; margin-bottom: 10px; font-weight: 500; }
  .other-are@media (max-width: 1100px) {
    .other-grid { grid-template-columns: 1fr 1fr; }
    .other-loc { padding: 24px 16px !important; border-bottom: 1px solid var(--rule-soft); }
    .other-loc:nth-child(2n) { border-right: none; padding-right: 0 !important; }
    .other-loc:nth-child(2n+1) { padding-left: 0 !important; }
  }

  /* Footer */
  footer.site { background: var(--ink); color: var(--bone); padding: 80px 0 32px; }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; padding-bottom: 60px; border-bottom: 1px solid rgba(245,242,236,0.15); }
  .footer-brand .brand { color: var(--bone); margin-bottom: 20px; font-size: 28px; }
  .footer-brand p { font-size: 14px; line-height: 1.6; opacity: 0.7; max-width: 360px; }
  .footer-col h4 { font-family: 'Inter Tight', sans-serif; font-size: 11px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--terracotta); margin-bottom: 20px; font-weight: 500; }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 10px; }
  .footer-col .footer-col a:hover { opacity: 1; color: var(--terracotta); }
  .footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; font-size: 12px; opacity: 0.5; }
  .footer-bottom .licence { color: var(--terracotta); font-weight: 500; opacity: 0.9; }
  @media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ===== WIGAN VIEW STYLES ===== */
.display { font-family: 'Fraunces', serif; font-weight: 400; letter-spacing: -0.02em; line-height: 1.02; }
  .wrap { max-width: 1320px; margin: 0 auto; padding: 0 32px; }
  .wrap-narrow { max-width: 980px; margin: 0 auto; padding: 0 32px; }

  .topbar { background: var(--ink); color: var(--bone); padding: 10px 0; font-size: 13px; }
  .topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
  .topbar .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--terracotta); display: inline-block; margin-right: 8px; }

  header.site { position: sticky; top: 0; background: var(--bone); border-bottom: 1px solid var(--rule-soft); z-index: 100; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
  .header-inner { display: flex; justify-content: space-between; align-items: center; padding: 22px 0; }
  .brand { font-family: 'Fraunces', serif; font-weight: 500; font-size: 24px; letter-spacing: -0.02em; line-height: 1; display: flex; align-items: baseline; gap: 2px; }
  .brand .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--terracotta); align-self: center; margin: 0 4px; }
  nav.primary { display: flex; gap: 36px; align-items: center; }
  nav.primary nav.primary a:hover { color: var(--terracotta); }
  .nav-ct.nav-cta:hover { background: var(--terracotta) !important; }
  .menu-btn { display: none; }
  @media (max-width: 880px) {
    nav.primary { display: none; }
    .menu-btn { display: flex; flex-direction: column; gap: 5px; padding: 8px; }
    .menu-btn span { width: 22px; height: 1.5px; background: var(--ink); display: block; }
    nav.primary.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--bone); padding: 24px 32px 32px; gap: 18px; align-items: flex-start; border-bottom: 1px solid var(--rule-soft); }
  }

  .crumbs { padding: 28px 0 0; font-size: 13px; color: #3A3835; }
  .crumbs .crumbs a:hover { color: var(--terracotta); }
  .crumbs .sep { margin: 0 10px; opacity: 0.5; }

  /* Page hero */
  .page-hero { padding: 60px 0 90px; border-bottom: 1px solid var(--rule-soft); }
  .hero-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 80px; align-items: end; }
  .hub-marker { display: flex; align-items: center; gap: 16px; margin-bottom: 36px; }
  .hub-num { font-family: 'Fraunces', serif; font-size: 48px; line-height: 1; color: var(--terracotta); font-weight: 300; font-style: italic; letter-spacing: -0.03em; }
  .hub-met.hub-label { font-family: 'Inter Tight', sans-serif; font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em; font-weight: 500; }
  .hub-region { font-family: 'Fraunces', serif; font-size: 18px; line-height: 1.2; margin-top: 6px; font-weight: 500; letter-spacing: -0.01em; }
  h1.page-title { font-size: clamp(56px, 8vw, 120px); line-height: 0.92; letter-spacing: -0.04em; margin-bottom: 36px; font-weight: 400; font-family: 'Fraunces', serif; }
  h1.page-title em { font-style: italic; color: var(--terracotta); font-weight: 300; }
  .page-sub { font-size: 19px; line-height: 1.55; max-width: 540px; color: #2A2926; margin-bottom: 40px; font-weight: 300; }
  .page-actions { display: flex; gap: 14px; flex-wrap: wrap; }
  .btn-primary { background: var(--ink); color: var(--bone); padding: 18px 28px; border-radius: 999px; font-size: 15px; font-weight: 500; display: inline-flex; align-items: center; gap: 10px; transition: all 0.2s; }
  .btn-primary:hover { background: var(--terracotta); }
  .btn-secondary { background: transparent; color: var(--ink); padding: 18px 26px; border-radius: 999px; border: 1.5px solid var(--ink); font-size: 15px; font-weight: 500; display: inline-flex; align-items: center; gap: 10px; transition: all 0.2s; }
  .btn-secondary:hover { background: var(--ink); color: var(--bone); }

  .hero-coverage { background: var(--ink); color: var(--bone); padding: 36px; border-radius: 4px; }
  .hero-coverage h3 { font-family: 'Fraunces', serif; font-size: 20px; line-height: 1.15; margin-bottom: 20px; font-weight: 500; }
  .hero-coverage ul { list-style: none; columns: 2; column-gap: 24px; }
  .hero-coverage li { padding: 8px 0; font-size: 14px; opacity: 0.9; break-inside: avoid; }
  .hero-coverage .postcodes { margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(245,242,236,0.15); font-size: 13px; opacity: 0.7; }
  .hero-coverage .postcodes strong { color: var(--terracotta); display: block; font-family: 'Fraunces', serif; font-size: 11px; text-transform: uppercase; letter-spacing: 0.16em; margin-bottom: 8px; font-weight: 500; }

  @media (max-width: 880px) {
    .page-hero { padding: 36px 0 64px; }
    .hero-grid { grid-template-columns: 1fr; gap: 48px; }
    .hero-coverage ul { columns: 1; }
  }

  section.block { padding: 90px 0; border-bottom: 1px solid var(--rule-soft); }
  @media (max-width: 880px) { section.block { padding: 56px 0; } }

  .section-header { display: grid; grid-template-columns: 200px 1fr; gap: 48px; margin-bottom: 56px; align-items: start; }
  .section-marker { font-family: 'Inter Tight', sans-serif; font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em; font-weight: 500; padding-top: 12px; position: relative; }
  .section-marker::before { content: ''; position: absolute; top: 0; left: 0; width: 36px; height: 1px; background: var(--terracotta); }
  h2.section-title { font-size: clamp(32px, 4.5vw, 52px); line-height: 1.05; letter-spacing: -0.025em; font-weight: 400; max-width: 880px; font-family: 'Fraunces', serif; }
  h2.section-title em { font-style: italic; font-weight: 300; color: var(--terracotta); }
  @media (max-width: 880px) { .section-header { grid-template-columns: 1fr; gap: 24px; margin-bottom: 32px; } }

  /* Local customers */
  .local-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--ink); }
  .local-card { padding: 36px 32px 36px 0; border-bottom: 1px solid var(--rule-soft); }
  .local-card:nth-child(odd) { border-right: 1px solid var(--rule-soft); }
  .local-card:nth-child(even) { padding-left: 32px; padding-right: 0; }
  .local-card:nth-last-child(-n+2) { border-bottom: none; }
  .local-name { font-family: 'Fraunces', serif; font-size: 22px; line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 10px; font-weight: 500; }
  .local-desc { font-size: 15px; line-height: 1.6; color: #3A3835; }
  @media (max-width: 880px) {
    .local-grid { grid-template-columns: 1fr; }
    .local-card { padding: 28px 0 !important; border-right: none !important; }
  }

  /* Two-col content */
  .two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
  .two-col p { font-size: 17px; line-height: 1.65; color: #2A2926; margin-bottom: 20px; }
  .two-col p:last-child { margin-bottom: 0; }
  @media (max-width: 880px) { .two-col { grid-template-columns: 1fr; gap: 32px; } }

  /* CTA */
  .ct.cta h2 { font-family: 'Fraunces', serif; font-size: clamp(36px, 5vw, 56px); line-height: 1.0; letter-spacing: -0.03em; margin-bottom: 24px; font-weight: 400; }
  .cta h2 em { font-style: italic; font-weight: 300; }
  .cta p { font-size: 18px; max-width: 540px; margin: 0 auto 36px; opacity: 0.95; line-height: 1.55; font-weight: 300; }
  .cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
  .cta .btn-primary { background: var(--ink); }
  .cta .btn-primary:hover { background: var(--bone); color: var(--ink); }
  .cta .btn-secondary { color: var(--bone); border-color: var(--bone); }
  .cta .btn-secondary:hover { background: var(--bone); color: var(--terracotta); }

  /* Other locations */
  .other-locs { background: var(--paper); padding: 64px 0; border-bottom: 1px solid var(--rule-soft); }
  .other-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--ink); margin-top: 24px; }
  .other-loc { padding: 28px 20px 28px 0; border-right: 1px solid var(--rule-soft); transition: background 0.25s; }
  .other-loc:last-child { border-right: none; padding-right: 0; }
  .other-loc:not(:first-child) { padding-left: 20px; }
  .other-loc:hover { background: var(--bone); }
  .other-met.other-name { font-family: 'Fraunces', serif; font-size: 26px; line-height: 1; letter-spacing: -0.025em; margin-bottom: 10px; font-weight: 500; }
  .other-are@media (max-width: 1100px) {
    .other-grid { grid-template-columns: 1fr 1fr; }
    .other-loc { padding: 24px 16px !important; border-bottom: 1px solid var(--rule-soft); }
    .other-loc:nth-child(2n) { border-right: none; padding-right: 0 !important; }
    .other-loc:nth-child(2n+1) { padding-left: 0 !important; }
  }

  /* Footer */
  footer.site { background: var(--ink); color: var(--bone); padding: 80px 0 32px; }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; padding-bottom: 60px; border-bottom: 1px solid rgba(245,242,236,0.15); }
  .footer-brand .brand { color: var(--bone); margin-bottom: 20px; font-size: 28px; }
  .footer-brand p { font-size: 14px; line-height: 1.6; opacity: 0.7; max-width: 360px; }
  .footer-col h4 { font-family: 'Inter Tight', sans-serif; font-size: 11px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--terracotta); margin-bottom: 20px; font-weight: 500; }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 10px; }
  .footer-col .footer-col a:hover { opacity: 1; color: var(--terracotta); }
  .footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; font-size: 12px; opacity: 0.5; }
  .footer-bottom .licence { color: var(--terracotta); font-weight: 500; opacity: 0.9; }
  @media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ===== HASLINGDEN VIEW STYLES ===== */
.display { font-family: 'Fraunces', serif; font-weight: 400; letter-spacing: -0.02em; line-height: 1.02; }
  .wrap { max-width: 1320px; margin: 0 auto; padding: 0 32px; }
  .wrap-narrow { max-width: 980px; margin: 0 auto; padding: 0 32px; }

  .topbar { background: var(--ink); color: var(--bone); padding: 10px 0; font-size: 13px; }
  .topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
  .topbar .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--terracotta); display: inline-block; margin-right: 8px; }

  header.site { position: sticky; top: 0; background: var(--bone); border-bottom: 1px solid var(--rule-soft); z-index: 100; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
  .header-inner { display: flex; justify-content: space-between; align-items: center; padding: 22px 0; }
  .brand { font-family: 'Fraunces', serif; font-weight: 500; font-size: 24px; letter-spacing: -0.02em; line-height: 1; display: flex; align-items: baseline; gap: 2px; }
  .brand .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--terracotta); align-self: center; margin: 0 4px; }
  nav.primary { display: flex; gap: 36px; align-items: center; }
  nav.primary nav.primary a:hover { color: var(--terracotta); }
  .nav-ct.nav-cta:hover { background: var(--terracotta) !important; }
  .menu-btn { display: none; }
  @media (max-width: 880px) {
    nav.primary { display: none; }
    .menu-btn { display: flex; flex-direction: column; gap: 5px; padding: 8px; }
    .menu-btn span { width: 22px; height: 1.5px; background: var(--ink); display: block; }
    nav.primary.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--bone); padding: 24px 32px 32px; gap: 18px; align-items: flex-start; border-bottom: 1px solid var(--rule-soft); }
  }

  .crumbs { padding: 28px 0 0; font-size: 13px; color: #3A3835; }
  .crumbs .crumbs a:hover { color: var(--terracotta); }
  .crumbs .sep { margin: 0 10px; opacity: 0.5; }

  /* Page hero */
  .page-hero { padding: 60px 0 90px; border-bottom: 1px solid var(--rule-soft); }
  .hero-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 80px; align-items: end; }
  .hub-marker { display: flex; align-items: center; gap: 16px; margin-bottom: 36px; }
  .hub-num { font-family: 'Fraunces', serif; font-size: 48px; line-height: 1; color: var(--terracotta); font-weight: 300; font-style: italic; letter-spacing: -0.03em; }
  .hub-met.hub-label { font-family: 'Inter Tight', sans-serif; font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em; font-weight: 500; }
  .hub-region { font-family: 'Fraunces', serif; font-size: 18px; line-height: 1.2; margin-top: 6px; font-weight: 500; letter-spacing: -0.01em; }
  h1.page-title { font-size: clamp(56px, 8vw, 120px); line-height: 0.92; letter-spacing: -0.04em; margin-bottom: 36px; font-weight: 400; font-family: 'Fraunces', serif; }
  h1.page-title em { font-style: italic; color: var(--terracotta); font-weight: 300; }
  .page-sub { font-size: 19px; line-height: 1.55; max-width: 540px; color: #2A2926; margin-bottom: 40px; font-weight: 300; }
  .page-actions { display: flex; gap: 14px; flex-wrap: wrap; }
  .btn-primary { background: var(--ink); color: var(--bone); padding: 18px 28px; border-radius: 999px; font-size: 15px; font-weight: 500; display: inline-flex; align-items: center; gap: 10px; transition: all 0.2s; }
  .btn-primary:hover { background: var(--terracotta); }
  .btn-secondary { background: transparent; color: var(--ink); padding: 18px 26px; border-radius: 999px; border: 1.5px solid var(--ink); font-size: 15px; font-weight: 500; display: inline-flex; align-items: center; gap: 10px; transition: all 0.2s; }
  .btn-secondary:hover { background: var(--ink); color: var(--bone); }

  .hero-coverage { background: var(--ink); color: var(--bone); padding: 36px; border-radius: 4px; }
  .hero-coverage h3 { font-family: 'Fraunces', serif; font-size: 20px; line-height: 1.15; margin-bottom: 20px; font-weight: 500; }
  .hero-coverage ul { list-style: none; columns: 2; column-gap: 24px; }
  .hero-coverage li { padding: 8px 0; font-size: 14px; opacity: 0.9; break-inside: avoid; }
  .hero-coverage .postcodes { margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(245,242,236,0.15); font-size: 13px; opacity: 0.7; }
  .hero-coverage .postcodes strong { color: var(--terracotta); display: block; font-family: 'Fraunces', serif; font-size: 11px; text-transform: uppercase; letter-spacing: 0.16em; margin-bottom: 8px; font-weight: 500; }

  @media (max-width: 880px) {
    .page-hero { padding: 36px 0 64px; }
    .hero-grid { grid-template-columns: 1fr; gap: 48px; }
    .hero-coverage ul { columns: 1; }
  }

  section.block { padding: 90px 0; border-bottom: 1px solid var(--rule-soft); }
  @media (max-width: 880px) { section.block { padding: 56px 0; } }

  .section-header { display: grid; grid-template-columns: 200px 1fr; gap: 48px; margin-bottom: 56px; align-items: start; }
  .section-marker { font-family: 'Inter Tight', sans-serif; font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em; font-weight: 500; padding-top: 12px; position: relative; }
  .section-marker::before { content: ''; position: absolute; top: 0; left: 0; width: 36px; height: 1px; background: var(--terracotta); }
  h2.section-title { font-size: clamp(32px, 4.5vw, 52px); line-height: 1.05; letter-spacing: -0.025em; font-weight: 400; max-width: 880px; font-family: 'Fraunces', serif; }
  h2.section-title em { font-style: italic; font-weight: 300; color: var(--terracotta); }
  @media (max-width: 880px) { .section-header { grid-template-columns: 1fr; gap: 24px; margin-bottom: 32px; } }

  /* Local customers */
  .local-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--ink); }
  .local-card { padding: 36px 32px 36px 0; border-bottom: 1px solid var(--rule-soft); }
  .local-card:nth-child(odd) { border-right: 1px solid var(--rule-soft); }
  .local-card:nth-child(even) { padding-left: 32px; padding-right: 0; }
  .local-card:nth-last-child(-n+2) { border-bottom: none; }
  .local-name { font-family: 'Fraunces', serif; font-size: 22px; line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 10px; font-weight: 500; }
  .local-desc { font-size: 15px; line-height: 1.6; color: #3A3835; }
  @media (max-width: 880px) {
    .local-grid { grid-template-columns: 1fr; }
    .local-card { padding: 28px 0 !important; border-right: none !important; }
  }

  /* Two-col content */
  .two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
  .two-col p { font-size: 17px; line-height: 1.65; color: #2A2926; margin-bottom: 20px; }
  .two-col p:last-child { margin-bottom: 0; }
  @media (max-width: 880px) { .two-col { grid-template-columns: 1fr; gap: 32px; } }

  /* CTA */
  .ct.cta h2 { font-family: 'Fraunces', serif; font-size: clamp(36px, 5vw, 56px); line-height: 1.0; letter-spacing: -0.03em; margin-bottom: 24px; font-weight: 400; }
  .cta h2 em { font-style: italic; font-weight: 300; }
  .cta p { font-size: 18px; max-width: 540px; margin: 0 auto 36px; opacity: 0.95; line-height: 1.55; font-weight: 300; }
  .cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
  .cta .btn-primary { background: var(--ink); }
  .cta .btn-primary:hover { background: var(--bone); color: var(--ink); }
  .cta .btn-secondary { color: var(--bone); border-color: var(--bone); }
  .cta .btn-secondary:hover { background: var(--bone); color: var(--terracotta); }

  /* Other locations */
  .other-locs { background: var(--paper); padding: 64px 0; border-bottom: 1px solid var(--rule-soft); }
  .other-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--ink); margin-top: 24px; }
  .other-loc { padding: 28px 20px 28px 0; border-right: 1px solid var(--rule-soft); transition: background 0.25s; }
  .other-loc:last-child { border-right: none; padding-right: 0; }
  .other-loc:not(:first-child) { padding-left: 20px; }
  .other-loc:hover { background: var(--bone); }
  .other-met.other-name { font-family: 'Fraunces', serif; font-size: 26px; line-height: 1; letter-spacing: -0.025em; margin-bottom: 10px; font-weight: 500; }
  .other-are@media (max-width: 1100px) {
    .other-grid { grid-template-columns: 1fr 1fr; }
    .other-loc { padding: 24px 16px !important; border-bottom: 1px solid var(--rule-soft); }
    .other-loc:nth-child(2n) { border-right: none; padding-right: 0 !important; }
    .other-loc:nth-child(2n+1) { padding-left: 0 !important; }
  }

  /* Footer */
  footer.site { background: var(--ink); color: var(--bone); padding: 80px 0 32px; }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; padding-bottom: 60px; border-bottom: 1px solid rgba(245,242,236,0.15); }
  .footer-brand .brand { color: var(--bone); margin-bottom: 20px; font-size: 28px; }
  .footer-brand p { font-size: 14px; line-height: 1.6; opacity: 0.7; max-width: 360px; }
  .footer-col h4 { font-family: 'Inter Tight', sans-serif; font-size: 11px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--terracotta); margin-bottom: 20px; font-weight: 500; }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 10px; }
  .footer-col .footer-col a:hover { opacity: 1; color: var(--terracotta); }
  .footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; font-size: 12px; opacity: 0.5; }
  .footer-bottom .licence { color: var(--terracotta); font-weight: 500; opacity: 0.9; }
  @media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ===== STOKE VIEW STYLES ===== */
.display { font-family: 'Fraunces', serif; font-weight: 400; letter-spacing: -0.02em; line-height: 1.02; }
  .wrap { max-width: 1320px; margin: 0 auto; padding: 0 32px; }
  .wrap-narrow { max-width: 980px; margin: 0 auto; padding: 0 32px; }

  .topbar { background: var(--ink); color: var(--bone); padding: 10px 0; font-size: 13px; }
  .topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
  .topbar .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--terracotta); display: inline-block; margin-right: 8px; }

  header.site { position: sticky; top: 0; background: var(--bone); border-bottom: 1px solid var(--rule-soft); z-index: 100; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
  .header-inner { display: flex; justify-content: space-between; align-items: center; padding: 22px 0; }
  .brand { font-family: 'Fraunces', serif; font-weight: 500; font-size: 24px; letter-spacing: -0.02em; line-height: 1; display: flex; align-items: baseline; gap: 2px; }
  .brand .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--terracotta); align-self: center; margin: 0 4px; }
  nav.primary { display: flex; gap: 36px; align-items: center; }
  nav.primary nav.primary a:hover { color: var(--terracotta); }
  .nav-ct.nav-cta:hover { background: var(--terracotta) !important; }
  .menu-btn { display: none; }
  @media (max-width: 880px) {
    nav.primary { display: none; }
    .menu-btn { display: flex; flex-direction: column; gap: 5px; padding: 8px; }
    .menu-btn span { width: 22px; height: 1.5px; background: var(--ink); display: block; }
    nav.primary.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--bone); padding: 24px 32px 32px; gap: 18px; align-items: flex-start; border-bottom: 1px solid var(--rule-soft); }
  }

  .crumbs { padding: 28px 0 0; font-size: 13px; color: #3A3835; }
  .crumbs .crumbs a:hover { color: var(--terracotta); }
  .crumbs .sep { margin: 0 10px; opacity: 0.5; }

  /* Page hero */
  .page-hero { padding: 60px 0 90px; border-bottom: 1px solid var(--rule-soft); }
  .hero-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 80px; align-items: end; }
  .hub-marker { display: flex; align-items: center; gap: 16px; margin-bottom: 36px; }
  .hub-num { font-family: 'Fraunces', serif; font-size: 48px; line-height: 1; color: var(--terracotta); font-weight: 300; font-style: italic; letter-spacing: -0.03em; }
  .hub-met.hub-label { font-family: 'Inter Tight', sans-serif; font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em; font-weight: 500; }
  .hub-region { font-family: 'Fraunces', serif; font-size: 18px; line-height: 1.2; margin-top: 6px; font-weight: 500; letter-spacing: -0.01em; }
  h1.page-title { font-size: clamp(56px, 8vw, 120px); line-height: 0.92; letter-spacing: -0.04em; margin-bottom: 36px; font-weight: 400; font-family: 'Fraunces', serif; }
  h1.page-title em { font-style: italic; color: var(--terracotta); font-weight: 300; }
  .page-sub { font-size: 19px; line-height: 1.55; max-width: 540px; color: #2A2926; margin-bottom: 40px; font-weight: 300; }
  .page-actions { display: flex; gap: 14px; flex-wrap: wrap; }
  .btn-primary { background: var(--ink); color: var(--bone); padding: 18px 28px; border-radius: 999px; font-size: 15px; font-weight: 500; display: inline-flex; align-items: center; gap: 10px; transition: all 0.2s; }
  .btn-primary:hover { background: var(--terracotta); }
  .btn-secondary { background: transparent; color: var(--ink); padding: 18px 26px; border-radius: 999px; border: 1.5px solid var(--ink); font-size: 15px; font-weight: 500; display: inline-flex; align-items: center; gap: 10px; transition: all 0.2s; }
  .btn-secondary:hover { background: var(--ink); color: var(--bone); }

  .hero-coverage { background: var(--ink); color: var(--bone); padding: 36px; border-radius: 4px; }
  .hero-coverage h3 { font-family: 'Fraunces', serif; font-size: 20px; line-height: 1.15; margin-bottom: 20px; font-weight: 500; }
  .hero-coverage ul { list-style: none; columns: 2; column-gap: 24px; }
  .hero-coverage li { padding: 8px 0; font-size: 14px; opacity: 0.9; break-inside: avoid; }
  .hero-coverage .postcodes { margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(245,242,236,0.15); font-size: 13px; opacity: 0.7; }
  .hero-coverage .postcodes strong { color: var(--terracotta); display: block; font-family: 'Fraunces', serif; font-size: 11px; text-transform: uppercase; letter-spacing: 0.16em; margin-bottom: 8px; font-weight: 500; }

  @media (max-width: 880px) {
    .page-hero { padding: 36px 0 64px; }
    .hero-grid { grid-template-columns: 1fr; gap: 48px; }
    .hero-coverage ul { columns: 1; }
  }

  section.block { padding: 90px 0; border-bottom: 1px solid var(--rule-soft); }
  @media (max-width: 880px) { section.block { padding: 56px 0; } }

  .section-header { display: grid; grid-template-columns: 200px 1fr; gap: 48px; margin-bottom: 56px; align-items: start; }
  .section-marker { font-family: 'Inter Tight', sans-serif; font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em; font-weight: 500; padding-top: 12px; position: relative; }
  .section-marker::before { content: ''; position: absolute; top: 0; left: 0; width: 36px; height: 1px; background: var(--terracotta); }
  h2.section-title { font-size: clamp(32px, 4.5vw, 52px); line-height: 1.05; letter-spacing: -0.025em; font-weight: 400; max-width: 880px; font-family: 'Fraunces', serif; }
  h2.section-title em { font-style: italic; font-weight: 300; color: var(--terracotta); }
  @media (max-width: 880px) { .section-header { grid-template-columns: 1fr; gap: 24px; margin-bottom: 32px; } }

  /* Local customers */
  .local-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--ink); }
  .local-card { padding: 36px 32px 36px 0; border-bottom: 1px solid var(--rule-soft); }
  .local-card:nth-child(odd) { border-right: 1px solid var(--rule-soft); }
  .local-card:nth-child(even) { padding-left: 32px; padding-right: 0; }
  .local-card:nth-last-child(-n+2) { border-bottom: none; }
  .local-name { font-family: 'Fraunces', serif; font-size: 22px; line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 10px; font-weight: 500; }
  .local-desc { font-size: 15px; line-height: 1.6; color: #3A3835; }
  @media (max-width: 880px) {
    .local-grid { grid-template-columns: 1fr; }
    .local-card { padding: 28px 0 !important; border-right: none !important; }
  }

  /* Two-col content */
  .two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
  .two-col p { font-size: 17px; line-height: 1.65; color: #2A2926; margin-bottom: 20px; }
  .two-col p:last-child { margin-bottom: 0; }
  @media (max-width: 880px) { .two-col { grid-template-columns: 1fr; gap: 32px; } }

  /* CTA */
  .ct.cta h2 { font-family: 'Fraunces', serif; font-size: clamp(36px, 5vw, 56px); line-height: 1.0; letter-spacing: -0.03em; margin-bottom: 24px; font-weight: 400; }
  .cta h2 em { font-style: italic; font-weight: 300; }
  .cta p { font-size: 18px; max-width: 540px; margin: 0 auto 36px; opacity: 0.95; line-height: 1.55; font-weight: 300; }
  .cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
  .cta .btn-primary { background: var(--ink); }
  .cta .btn-primary:hover { background: var(--bone); color: var(--ink); }
  .cta .btn-secondary { color: var(--bone); border-color: var(--bone); }
  .cta .btn-secondary:hover { background: var(--bone); color: var(--terracotta); }

  /* Other locations */
  .other-locs { background: var(--paper); padding: 64px 0; border-bottom: 1px solid var(--rule-soft); }
  .other-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--ink); margin-top: 24px; }
  .other-loc { padding: 28px 20px 28px 0; border-right: 1px solid var(--rule-soft); transition: background 0.25s; }
  .other-loc:last-child { border-right: none; padding-right: 0; }
  .other-loc:not(:first-child) { padding-left: 20px; }
  .other-loc:hover { background: var(--bone); }
  .other-met.other-name { font-family: 'Fraunces', serif; font-size: 26px; line-height: 1; letter-spacing: -0.025em; margin-bottom: 10px; font-weight: 500; }
  .other-are@media (max-width: 1100px) {
    .other-grid { grid-template-columns: 1fr 1fr; }
    .other-loc { padding: 24px 16px !important; border-bottom: 1px solid var(--rule-soft); }
    .other-loc:nth-child(2n) { border-right: none; padding-right: 0 !important; }
    .other-loc:nth-child(2n+1) { padding-left: 0 !important; }
  }

  /* Footer */
  footer.site { background: var(--ink); color: var(--bone); padding: 80px 0 32px; }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; padding-bottom: 60px; border-bottom: 1px solid rgba(245,242,236,0.15); }
  .footer-brand .brand { color: var(--bone); margin-bottom: 20px; font-size: 28px; }
  .footer-brand p { font-size: 14px; line-height: 1.6; opacity: 0.7; max-width: 360px; }
  .footer-col h4 { font-family: 'Inter Tight', sans-serif; font-size: 11px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--terracotta); margin-bottom: 20px; font-weight: 500; }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 10px; }
  .footer-col .footer-col a:hover { opacity: 1; color: var(--terracotta); }
  .footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; font-size: 12px; opacity: 0.5; }
  .footer-bottom .licence { color: var(--terracotta); font-weight: 500; opacity: 0.9; }
  @media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ===== ROTHERHAM VIEW STYLES ===== */
.display { font-family: 'Fraunces', serif; font-weight: 400; letter-spacing: -0.02em; line-height: 1.02; }
  .wrap { max-width: 1320px; margin: 0 auto; padding: 0 32px; }
  .wrap-narrow { max-width: 980px; margin: 0 auto; padding: 0 32px; }

  .topbar { background: var(--ink); color: var(--bone); padding: 10px 0; font-size: 13px; }
  .topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
  .topbar .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--terracotta); display: inline-block; margin-right: 8px; }

  header.site { position: sticky; top: 0; background: var(--bone); border-bottom: 1px solid var(--rule-soft); z-index: 100; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
  .header-inner { display: flex; justify-content: space-between; align-items: center; padding: 22px 0; }
  .brand { font-family: 'Fraunces', serif; font-weight: 500; font-size: 24px; letter-spacing: -0.02em; line-height: 1; display: flex; align-items: baseline; gap: 2px; }
  .brand .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--terracotta); align-self: center; margin: 0 4px; }
  nav.primary { display: flex; gap: 36px; align-items: center; }
  nav.primary nav.primary a:hover { color: var(--terracotta); }
  .nav-ct.nav-cta:hover { background: var(--terracotta) !important; }
  .menu-btn { display: none; }
  @media (max-width: 880px) {
    nav.primary { display: none; }
    .menu-btn { display: flex; flex-direction: column; gap: 5px; padding: 8px; }
    .menu-btn span { width: 22px; height: 1.5px; background: var(--ink); display: block; }
    nav.primary.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--bone); padding: 24px 32px 32px; gap: 18px; align-items: flex-start; border-bottom: 1px solid var(--rule-soft); }
  }

  .crumbs { padding: 28px 0 0; font-size: 13px; color: #3A3835; }
  .crumbs .crumbs a:hover { color: var(--terracotta); }
  .crumbs .sep { margin: 0 10px; opacity: 0.5; }

  /* Page hero */
  .page-hero { padding: 60px 0 90px; border-bottom: 1px solid var(--rule-soft); }
  .hero-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 80px; align-items: end; }
  .hub-marker { display: flex; align-items: center; gap: 16px; margin-bottom: 36px; }
  .hub-num { font-family: 'Fraunces', serif; font-size: 48px; line-height: 1; color: var(--terracotta); font-weight: 300; font-style: italic; letter-spacing: -0.03em; }
  .hub-met.hub-label { font-family: 'Inter Tight', sans-serif; font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em; font-weight: 500; }
  .hub-region { font-family: 'Fraunces', serif; font-size: 18px; line-height: 1.2; margin-top: 6px; font-weight: 500; letter-spacing: -0.01em; }
  h1.page-title { font-size: clamp(56px, 8vw, 120px); line-height: 0.92; letter-spacing: -0.04em; margin-bottom: 36px; font-weight: 400; font-family: 'Fraunces', serif; }
  h1.page-title em { font-style: italic; color: var(--terracotta); font-weight: 300; }
  .page-sub { font-size: 19px; line-height: 1.55; max-width: 540px; color: #2A2926; margin-bottom: 40px; font-weight: 300; }
  .page-actions { display: flex; gap: 14px; flex-wrap: wrap; }
  .btn-primary { background: var(--ink); color: var(--bone); padding: 18px 28px; border-radius: 999px; font-size: 15px; font-weight: 500; display: inline-flex; align-items: center; gap: 10px; transition: all 0.2s; }
  .btn-primary:hover { background: var(--terracotta); }
  .btn-secondary { background: transparent; color: var(--ink); padding: 18px 26px; border-radius: 999px; border: 1.5px solid var(--ink); font-size: 15px; font-weight: 500; display: inline-flex; align-items: center; gap: 10px; transition: all 0.2s; }
  .btn-secondary:hover { background: var(--ink); color: var(--bone); }

  .hero-coverage { background: var(--ink); color: var(--bone); padding: 36px; border-radius: 4px; }
  .hero-coverage h3 { font-family: 'Fraunces', serif; font-size: 20px; line-height: 1.15; margin-bottom: 20px; font-weight: 500; }
  .hero-coverage ul { list-style: none; columns: 2; column-gap: 24px; }
  .hero-coverage li { padding: 8px 0; font-size: 14px; opacity: 0.9; break-inside: avoid; }
  .hero-coverage .postcodes { margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(245,242,236,0.15); font-size: 13px; opacity: 0.7; }
  .hero-coverage .postcodes strong { color: var(--terracotta); display: block; font-family: 'Fraunces', serif; font-size: 11px; text-transform: uppercase; letter-spacing: 0.16em; margin-bottom: 8px; font-weight: 500; }

  @media (max-width: 880px) {
    .page-hero { padding: 36px 0 64px; }
    .hero-grid { grid-template-columns: 1fr; gap: 48px; }
    .hero-coverage ul { columns: 1; }
  }

  section.block { padding: 90px 0; border-bottom: 1px solid var(--rule-soft); }
  @media (max-width: 880px) { section.block { padding: 56px 0; } }

  .section-header { display: grid; grid-template-columns: 200px 1fr; gap: 48px; margin-bottom: 56px; align-items: start; }
  .section-marker { font-family: 'Inter Tight', sans-serif; font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em; font-weight: 500; padding-top: 12px; position: relative; }
  .section-marker::before { content: ''; position: absolute; top: 0; left: 0; width: 36px; height: 1px; background: var(--terracotta); }
  h2.section-title { font-size: clamp(32px, 4.5vw, 52px); line-height: 1.05; letter-spacing: -0.025em; font-weight: 400; max-width: 880px; font-family: 'Fraunces', serif; }
  h2.section-title em { font-style: italic; font-weight: 300; color: var(--terracotta); }
  @media (max-width: 880px) { .section-header { grid-template-columns: 1fr; gap: 24px; margin-bottom: 32px; } }

  /* Local customers */
  .local-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--ink); }
  .local-card { padding: 36px 32px 36px 0; border-bottom: 1px solid var(--rule-soft); }
  .local-card:nth-child(odd) { border-right: 1px solid var(--rule-soft); }
  .local-card:nth-child(even) { padding-left: 32px; padding-right: 0; }
  .local-card:nth-last-child(-n+2) { border-bottom: none; }
  .local-name { font-family: 'Fraunces', serif; font-size: 22px; line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 10px; font-weight: 500; }
  .local-desc { font-size: 15px; line-height: 1.6; color: #3A3835; }
  @media (max-width: 880px) {
    .local-grid { grid-template-columns: 1fr; }
    .local-card { padding: 28px 0 !important; border-right: none !important; }
  }

  /* Two-col content */
  .two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
  .two-col p { font-size: 17px; line-height: 1.65; color: #2A2926; margin-bottom: 20px; }
  .two-col p:last-child { margin-bottom: 0; }
  @media (max-width: 880px) { .two-col { grid-template-columns: 1fr; gap: 32px; } }

  /* CTA */
  .ct.cta h2 { font-family: 'Fraunces', serif; font-size: clamp(36px, 5vw, 56px); line-height: 1.0; letter-spacing: -0.03em; margin-bottom: 24px; font-weight: 400; }
  .cta h2 em { font-style: italic; font-weight: 300; }
  .cta p { font-size: 18px; max-width: 540px; margin: 0 auto 36px; opacity: 0.95; line-height: 1.55; font-weight: 300; }
  .cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
  .cta .btn-primary { background: var(--ink); }
  .cta .btn-primary:hover { background: var(--bone); color: var(--ink); }
  .cta .btn-secondary { color: var(--bone); border-color: var(--bone); }
  .cta .btn-secondary:hover { background: var(--bone); color: var(--terracotta); }

  /* Other locations */
  .other-locs { background: var(--paper); padding: 64px 0; border-bottom: 1px solid var(--rule-soft); }
  .other-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--ink); margin-top: 24px; }
  .other-loc { padding: 28px 20px 28px 0; border-right: 1px solid var(--rule-soft); transition: background 0.25s; }
  .other-loc:last-child { border-right: none; padding-right: 0; }
  .other-loc:not(:first-child) { padding-left: 20px; }
  .other-loc:hover { background: var(--bone); }
  .other-met.other-name { font-family: 'Fraunces', serif; font-size: 26px; line-height: 1; letter-spacing: -0.025em; margin-bottom: 10px; font-weight: 500; }
  .other-are@media (max-width: 1100px) {
    .other-grid { grid-template-columns: 1fr 1fr; }
    .other-loc { padding: 24px 16px !important; border-bottom: 1px solid var(--rule-soft); }
    .other-loc:nth-child(2n) { border-right: none; padding-right: 0 !important; }
    .other-loc:nth-child(2n+1) { padding-left: 0 !important; }
  }

  /* Footer */
  footer.site { background: var(--ink); color: var(--bone); padding: 80px 0 32px; }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; padding-bottom: 60px; border-bottom: 1px solid rgba(245,242,236,0.15); }
  .footer-brand .brand { color: var(--bone); margin-bottom: 20px; font-size: 28px; }
  .footer-brand p { font-size: 14px; line-height: 1.6; opacity: 0.7; max-width: 360px; }
  .footer-col h4 { font-family: 'Inter Tight', sans-serif; font-size: 11px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--terracotta); margin-bottom: 20px; font-weight: 500; }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 10px; }
  .footer-col .footer-col a:hover { opacity: 1; color: var(--terracotta); }
  .footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; font-size: 12px; opacity: 0.5; }
  .footer-bottom .licence { color: var(--terracotta); font-weight: 500; opacity: 0.9; }
  @media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr; gap: 40px; } }

  /* ===== VIEW-SWITCHING SYSTEM ===== */
  .view { display: block; }
  .view[hidden] { display: none !important; }
  /* Smooth fade when views switch */
  .view {
    animation: viewFadeIn 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  }
  @keyframes viewFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @media (prefers-reduced-motion: reduce) {
    .view { animation: none; }
  }
  /* ===== END VIEW SYSTEM ===== */
