/* Hanken Grotesk (SIL Open Font License 1.1), self-hosted variable subset. No third-party font requests. */
  @font-face {
    font-family: 'Hanken Grotesk';
    font-style: normal;
    font-weight: 400 800;
    font-display: swap;
    src: url(/assets/hanken-grotesk.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
  }
  :root {
    --blue: #005EB8;
    --blue-dark: #003087;
    --blue-pale: #D1E1F0;
    --ink: #212B32;
    --ink-soft: #425563;
    --ink-mute: #768692;
    --rule: #E8EDEE;
    --paper: #FFFFFF;
    --grey: #F0F4F5;
    --green: #007F3B;
    --warning: #FFB81C;
    --error: #DA291C;
    --focus: #FFEB3B;
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--paper);
    color: var(--ink);
    font-family: 'Hanken Grotesk', -apple-system, sans-serif;
    font-weight: 400;
    line-height: 1.5;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }

  a { color: var(--blue); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
  a:hover { color: var(--blue-dark); text-decoration-thickness: 2px; }

  *:focus-visible {
    outline: 3px solid var(--focus);
    outline-offset: 2px;
    border-radius: 4px;
  }

  .skip { position: absolute; top: -100px; left: 0; background: var(--ink); color: var(--paper); padding: 0.75rem 1rem; z-index: 100; }
  .skip:focus { top: 0; color: var(--paper); }

  /* ============ HEADER ============ */
  header.site {
    background: var(--paper);
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--rule);
    position: sticky;
    top: 0;
    z-index: 50;
  }
  .header-inner {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }
  .brand {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    line-height: 1;
  }
  .brand strong {
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--ink);
    letter-spacing: -0.015em;
    line-height: 1.05;
  }
  .brand strong .nhs {
    background: var(--blue);
    color: var(--paper);
    padding: 0.1rem 0.4rem 0.06rem;
    margin-right: 0.2rem;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0;
    border-radius: 3px;
    vertical-align: 0.05em;
  }
  .brand small {
    font-weight: 400;
    font-size: 0.78rem;
    color: var(--ink-mute);
    margin-top: 0.4rem;
    letter-spacing: 0.02em;
  }
  .brand:hover { text-decoration: none; }

  nav.primary ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
  }
  nav.primary a {
    color: var(--ink);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
  }
  nav.primary a:hover { color: var(--blue); text-decoration: none; }

  .nav-cta {
    background: var(--blue);
    color: var(--paper) !important;
    padding: 0.6rem 1.25rem;
    border-radius: 999px;
    font-weight: 600;
    transition: background 0.15s ease;
  }
  .nav-cta:hover { background: var(--blue-dark); color: var(--paper) !important; text-decoration: none; }

  .nav-toggle {
    display: none;
    background: transparent;
    border: 1.5px solid var(--ink);
    color: var(--ink);
    padding: 0.5rem 0.9rem;
    font-family: inherit;
    font-size: 0.92rem;
    font-weight: 500;
    border-radius: 999px;
    cursor: pointer;
  }

  @media (max-width: 880px) {
    nav.primary ul { display: none; }
    nav.primary.open ul {
      display: flex;
      flex-direction: column;
      align-items: stretch;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--paper);
      padding: 1.25rem 1.5rem;
      gap: 0;
      border-bottom: 1px solid var(--rule);
      box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    }
    nav.primary.open li { padding: 0.85rem 0; border-bottom: 1px solid var(--rule); }
    nav.primary.open li:last-child { border-bottom: 0; }
    nav.primary.open .nav-cta { display: inline-block; align-self: flex-start; padding: 0.7rem 1.25rem; }
    .nav-toggle { display: inline-block; }
  }

  /* ============ BUTTONS ============ */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.95rem 1.85rem;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 999px;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
    line-height: 1.25;
    white-space: nowrap;
  }
  .btn-primary {
    background: var(--blue);
    color: var(--paper);
    border-color: var(--blue);
  }
  .btn-primary:hover {
    background: var(--blue-dark);
    border-color: var(--blue-dark);
    color: var(--paper);
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(0,94,184,0.25);
  }
  .btn-secondary {
    background: var(--paper);
    color: var(--blue);
    border-color: var(--blue);
  }
  .btn-secondary:hover {
    background: var(--blue);
    color: var(--paper);
    text-decoration: none;
  }
  .btn-ghost {
    background: transparent;
    color: var(--ink);
    border-color: transparent;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .btn-ghost:hover { color: var(--blue); text-decoration: none; }
  .btn .arrow { display: inline-block; transition: transform 0.15s ease; }
  .btn:hover .arrow { transform: translateX(3px); }

  /* ============ HERO ============ */
  .hero {
    background: var(--paper);
    padding: clamp(2.5rem, 5vw, 4.5rem) 1.5rem;
    border-bottom: 1px solid var(--rule);
  }
  .hero-inner {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: center;
  }
  .hero-inner > * { min-width: 0; }
  @media (max-width: 880px) {
    .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  }
  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ink-soft);
    margin-bottom: 1.5rem;
  }
  .hero-eyebrow .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--green);
    animation: pulse 2s ease-in-out infinite;
  }
  @keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

  .hero h1 {
    font-size: clamp(2.4rem, 6.5vw, 4.8rem);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -0.035em;
    color: var(--ink);
    margin-bottom: 1.4rem;
    max-width: 15ch;
  }
  .hero h1 .nhs-mark { color: var(--blue); }

  .hero-lede {
    font-size: clamp(1.1rem, 1.4vw, 1.3rem);
    color: var(--ink-soft);
    margin-bottom: 2rem;
    max-width: 40ch;
    line-height: 1.45;
  }

  .hero-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
  }

  /* Postcode card */
  .postcode-card {
    background: var(--grey);
    border: 1px solid var(--rule);
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: 0 12px 32px rgba(0,48,135,0.08);
  }
  .postcode-card .pc-label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--blue);
    margin-bottom: 0.3rem;
  }
  .postcode-card h2 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.015em;
    line-height: 1.2;
  }
  .pc-form {
    display: flex;
    gap: 0;
    border: 1.5px solid var(--ink);
    border-radius: 999px;
    overflow: hidden;
    background: var(--paper);
  }
  .pc-form input {
    flex: 1;
    border: 0;
    padding: 0.9rem 1.15rem;
    font-family: inherit;
    font-size: 1rem;
    background: transparent;
    color: var(--ink);
    text-transform: uppercase;
    min-width: 0;
    width: 100%;
    outline: none;
  }
  .pc-form input::placeholder { text-transform: none; color: var(--ink-mute); }
  .pc-form button {
    background: var(--blue);
    color: var(--paper);
    border: 0;
    padding: 0 1.5rem;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.15s ease;
  }
  .pc-form button:hover { background: var(--blue-dark); }
  .pc-validation {
    margin-top: 0.7rem;
    font-size: 0.88rem;
    min-height: 1.3em;
    color: var(--ink-soft);
    font-weight: 500;
  }
  .pc-validation.valid { color: var(--green); }
  .pc-validation.invalid { color: var(--error); }
  .pc-validation.preview { color: var(--blue-dark); }
  .pc-hours {
    margin-top: 0.85rem;
    font-size: 0.85rem;
    color: var(--ink-mute);
    display: flex;
    align-items: center;
    gap: 0.45rem;
  }
  .pc-hours .dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--green);
  }

  /* Result panel */
  .pc-result-section {
    background: var(--grey);
    padding: clamp(2rem, 4vw, 3rem) 1.5rem;
    display: none;
    border-bottom: 1px solid var(--rule);
  }
  .pc-result-section.show { display: block; }
  .pc-result {
    max-width: 720px;
    margin: 0 auto;
    background: var(--paper);
    border-radius: 16px;
    padding: 1.5rem 1.75rem;
    border-left: 6px solid var(--blue);
  }
  .pc-result.success { border-left-color: var(--green); }
  .pc-result.out-of-area { border-left-color: var(--blue); }
  .pc-result.error { border-left-color: var(--error); }
  .pc-result h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 0.5rem; letter-spacing: -0.015em; }
  .pc-result p { color: var(--ink-soft); margin-bottom: 0.5rem; }
  .pc-result .result-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 1rem; }

  /* ============ PRACTICES ============ */
  .practices {
    padding: clamp(3rem, 6vw, 5rem) 1.5rem;
    background: var(--paper);
  }
  .practices-inner { max-width: 1320px; margin: 0 auto; }
  .section-header { max-width: 740px; margin-bottom: 2.5rem; }
  .section-eyebrow {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1rem;
  }
  .section-header h2 {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 0.75rem;
  }
  .section-header p.lead {
    font-size: 1.15rem;
    color: var(--ink-soft);
    line-height: 1.5;
  }

  .practice-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  @media (max-width: 880px) { .practice-grid { grid-template-columns: 1fr; } }

  .practice-card {
    background: var(--grey);
    border: 1px solid var(--rule);
    border-radius: 20px;
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
  }
  .practice-card .area-badge {
    display: inline-block;
    background: var(--blue);
    color: var(--paper);
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 800;
    margin-bottom: 1.1rem;
    width: fit-content;
    letter-spacing: 0.02em;
  }
  .practice-card h3 {
    font-size: clamp(1.5rem, 2.5vw, 1.9rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
    line-height: 1.1;
  }
  .practice-card .practice-desc {
    font-size: 1rem;
    color: var(--ink-soft);
    margin-bottom: 1.5rem;
    line-height: 1.5;
  }
  .practice-meta {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem 1.5rem;
    padding: 1.25rem 0;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    margin-bottom: 1.5rem;
  }
  .practice-meta li { font-size: 0.95rem; }
  .practice-meta li span {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink-mute);
    font-weight: 600;
    margin-bottom: 0.15rem;
  }
  .practice-meta li strong { font-weight: 600; color: var(--ink); }

  .practice-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: auto; }

  /* ============ WHAT WE OFFER ============ */
  .offer {
    padding: clamp(3rem, 6vw, 5rem) 1.5rem;
    background: var(--grey);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
  }
  .offer-inner { max-width: 1320px; margin: 0 auto; }
  .offer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
  @media (max-width: 980px) { .offer-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 540px) { .offer-grid { grid-template-columns: 1fr; } }

  .offer-card {
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: 20px;
    padding: 1.75rem 1.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
    color: var(--ink);
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    min-height: 200px;
  }
  .offer-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,48,135,0.1);
    text-decoration: none;
  }
  .offer-card .offer-ico {
    width: 44px; height: 44px;
    background: var(--blue);
    color: var(--paper);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .offer-card .offer-ico svg { width: 22px; height: 22px; }
  .offer-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.015em;
    line-height: 1.2;
  }
  .offer-card p {
    font-size: 0.92rem;
    color: var(--ink-soft);
    line-height: 1.45;
    margin-top: -0.3rem;
  }
  .offer-card .more {
    margin-top: auto;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--blue);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
  }

  /* ============ TRUST ============ */
  .trust {
    padding: clamp(3rem, 6vw, 5rem) 1.5rem;
    background: var(--blue-dark);
    color: var(--paper);
  }
  .trust-inner {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
  }
  @media (max-width: 880px) { .trust-inner { grid-template-columns: 1fr; } }

  .trust-content .trust-eyebrow {
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1.25rem;
  }
  .trust-content h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
  }
  .trust-content h2 em {
    font-style: normal;
    color: #9DC4ED;
  }
  .trust-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 1rem;
    line-height: 1.5;
    max-width: 48ch;
  }
  .trust-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding-left: 2rem;
    border-left: 1px solid rgba(255,255,255,0.25);
  }
  @media (max-width: 880px) {
    .trust-stats {
      grid-template-columns: repeat(3, 1fr);
      padding-left: 0;
      border-left: 0;
      padding-top: 1.5rem;
      border-top: 1px solid rgba(255,255,255,0.25);
    }
  }
  .trust-stat strong {
    display: block;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 0.3rem;
  }
  .trust-stat span {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.35;
    display: block;
  }

  /* ============ EXISTING PATIENTS ============ */
  .existing {
    padding: clamp(3rem, 6vw, 5rem) 1.5rem;
    background: var(--paper);
  }
  .existing-inner { max-width: 1320px; margin: 0 auto; }
  .existing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  @media (max-width: 800px) { .existing-grid { grid-template-columns: 1fr; } }
  .existing-card {
    background: var(--grey);
    border: 1px solid var(--rule);
    border-radius: 20px;
    padding: 2rem 1.75rem;
  }
  .existing-card .area-badge {
    display: inline-block;
    background: var(--blue);
    color: var(--paper);
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    margin-bottom: 1rem;
  }
  .existing-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.4rem;
    line-height: 1.15;
  }
  .existing-card p { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 1.25rem; }
  .existing-card ul {
    list-style: none;
    padding-top: 1.25rem;
    border-top: 1px solid var(--rule);
    margin-bottom: 1.5rem;
  }
  .existing-card li { padding: 0.55rem 0; font-size: 0.95rem; }
  .existing-card li a { color: var(--ink); text-decoration: none; font-weight: 500; display: inline-flex; align-items: center; gap: 0.4rem; }
  .existing-card li a:hover { color: var(--blue); }
  .existing-card li a::before { content: '→'; color: var(--blue); font-weight: 700; }

  /* ============ NEWS ============ */
  .news {
    padding: clamp(3rem, 6vw, 5rem) 1.5rem;
    background: var(--grey);
    border-top: 1px solid var(--rule);
  }
  .news-inner { max-width: 1320px; margin: 0 auto; }
  .news-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .news-header h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.4rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.025em;
  }
  .news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
  @media (max-width: 880px) { .news-grid { grid-template-columns: 1fr; } }
  .news-card {
    text-decoration: none;
    color: var(--ink);
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
  }
  .news-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0,48,135,0.08);
    text-decoration: none;
  }
  .news-card .news-top {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  .news-card .area-badge {
    background: var(--blue-pale);
    color: var(--blue-dark);
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
  }
  .news-card .news-meta {
    font-size: 0.82rem;
    color: var(--ink-mute);
    font-weight: 500;
  }
  .news-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: -0.01em;
  }
  .news-card:hover h3 { color: var(--blue); }
  .news-card .more {
    margin-top: auto;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--blue);
  }

  /* ============ URGENT ============ */
  .urgent {
    padding: clamp(2rem, 4vw, 3rem) 1.5rem;
    background: var(--paper);
    border-top: 1px solid var(--rule);
  }
  .urgent-inner {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
  @media (max-width: 800px) { .urgent-inner { grid-template-columns: 1fr; } }
  .urgent-card {
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    background: var(--grey);
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }
  .urgent-card .num {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
  }
  .urgent-card.r999 { background: #FBEDEC; }
  .urgent-card.r999 .num { color: var(--error); }
  .urgent-card.r111 { background: #FFF4DA; }
  .urgent-card.r111 .num { color: #B07C00; }
  .urgent-card.rgp .num { color: var(--blue); }
  .urgent-card h3 { font-size: 0.92rem; font-weight: 700; letter-spacing: -0.005em; }
  .urgent-card p { font-size: 0.85rem; color: var(--ink-soft); }

  /* ============ FOOTER ============ */
  footer.site {
    padding: clamp(3rem, 5vw, 4.5rem) 1.5rem 2rem;
    background: var(--ink);
    color: var(--paper);
  }
  .footer-inner { max-width: 1320px; margin: 0 auto; }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }
  @media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
  .footer-grid h4 {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.55);
    margin-bottom: 1rem;
  }
  .footer-grid ul { list-style: none; }
  .footer-grid li { padding: 0.35rem 0; font-size: 0.95rem; }
  .footer-grid a { color: var(--paper); text-decoration: none; }
  .footer-grid a:hover { color: var(--paper); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 4px; }

  .footer-brand-name {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.6rem;
    line-height: 1.1;
  }
  .footer-brand-name .nhs {
    background: var(--paper);
    color: var(--ink);
    padding: 0.1rem 0.45rem;
    border-radius: 3px;
    margin-right: 0.25rem;
    font-size: 0.95rem;
  }
  .footer-blurb {
    color: rgba(255,255,255,0.7);
    font-size: 0.92rem;
    line-height: 1.5;
    max-width: 32ch;
    margin-bottom: 1rem;
  }
  .footer-meta {
    padding-top: 1.5rem;
    color: rgba(255,255,255,0.55);
    font-size: 0.82rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-meta a { color: rgba(255,255,255,0.7); }

  /* ============ PRIVACY ============ */
  .privacy {
    padding: clamp(2.5rem, 5vw, 3.5rem) 1.5rem;
    background: var(--grey);
    border-top: 1px solid var(--rule);
  }
  .privacy-inner {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 2.4fr);
    gap: clamp(1rem, 4vw, 3rem);
  }
  @media (max-width: 800px) { .privacy-inner { grid-template-columns: 1fr; gap: 1rem; } }
  .privacy h2 {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
  }
  .privacy p {
    color: var(--ink-soft);
    font-size: 0.95rem;
    line-height: 1.55;
    margin-bottom: 0.8rem;
    max-width: 72ch;
  }
  .privacy p:last-child { margin-bottom: 0; }

/* ============ SUBPAGE ============ */
.page-hero {
  background: var(--paper);
  padding: clamp(2.5rem, 5vw, 4rem) 1.5rem clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--rule);
}
.page-hero-inner { max-width: 1320px; margin: 0 auto; }
.page-hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.035em;
  margin-bottom: 1.2rem;
  max-width: 18ch;
}
.page-hero .lede {
  font-size: clamp(1.05rem, 1.3vw, 1.25rem);
  color: var(--ink-soft);
  max-width: 60ch;
  line-height: 1.5;
}
.crumb {
  font-size: 0.88rem;
  color: var(--ink-mute);
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.crumb a { color: var(--ink-mute); text-decoration: none; }
.crumb a:hover { color: var(--blue); text-decoration: underline; }

.band { padding: clamp(2.5rem, 5vw, 4rem) 1.5rem; }
.band.grey { background: var(--grey); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.band-inner { max-width: 1320px; margin: 0 auto; }

/* two-up contact panels */
.duo { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; }
@media (max-width: 880px) { .duo { grid-template-columns: 1fr; } }

.panel {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 20px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
}
.band.grey .panel { background: var(--paper); }
.panel h3 { font-size: 1.5rem; font-weight: 800; letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 0.35rem; }
.panel .tel {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--blue);
  margin: 0.9rem 0 0.2rem;
  display: inline-block;
  text-decoration: none;
}
.panel .tel:hover { color: var(--blue-dark); text-decoration: none; }
.panel .hours { font-size: 0.95rem; color: var(--ink-soft); font-weight: 600; }
.panel .addr { font-size: 0.95rem; color: var(--ink-soft); margin-top: 0.85rem; }
.panel ul { list-style: none; margin: 1.25rem 0 1.5rem; padding-top: 1.25rem; border-top: 1px solid var(--rule); }
.panel li { padding: 0.5rem 0; font-size: 0.95rem; }
.panel li a { color: var(--ink); text-decoration: none; font-weight: 500; display: inline-flex; gap: 0.4rem; align-items: baseline; }
.panel li a:hover { color: var(--blue); }
.panel li a::before { content: '\2192'; color: var(--blue); font-weight: 700; }
.panel .foot-actions { margin-top: auto; display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* numbered steps */
.steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; margin-top: 2rem; }
@media (max-width: 980px) { .steps { grid-template-columns: 1fr; } }
.step {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 20px;
  padding: 1.75rem 1.5rem;
}
.step .n {
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--blue); color: var(--paper);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.05rem; margin-bottom: 0.9rem;
}
.step h3 { font-size: 1.15rem; font-weight: 700; letter-spacing: -0.015em; margin-bottom: 0.4rem; }
.step p { font-size: 0.94rem; color: var(--ink-soft); line-height: 1.5; }

/* services grid */
.svc-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; }
@media (max-width: 980px) { .svc-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .svc-grid { grid-template-columns: 1fr; } }
.svc {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 20px;
  padding: 1.6rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.band.grey .svc { background: var(--paper); }
.svc h3 { font-size: 1.12rem; font-weight: 700; letter-spacing: -0.015em; line-height: 1.25; }
.svc p { font-size: 0.92rem; color: var(--ink-soft); line-height: 1.5; }
.svc .where { margin-top: auto; padding-top: 0.9rem; border-top: 1px solid var(--rule); display: flex; flex-wrap: wrap; gap: 0.5rem 1rem; }
.svc .where a { font-size: 0.86rem; font-weight: 600; color: var(--blue); text-decoration: none; }
.svc .where a:hover { text-decoration: underline; }
.svc .where span { font-size: 0.86rem; color: var(--ink-mute); font-weight: 500; }

/* callout */
.callout {
  background: var(--blue-pale);
  border-radius: 20px;
  padding: 1.75rem;
  margin-top: 2rem;
}
.callout h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.5rem; letter-spacing: -0.015em; }
.callout p { color: var(--ink-soft); font-size: 0.96rem; line-height: 1.55; max-width: 78ch; }
.callout p + p { margin-top: 0.6rem; }

.panel .area-badge {
  display: inline-block;
  background: var(--blue);
  color: var(--paper);
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
  width: fit-content;
  letter-spacing: 0.02em;
}
