/* Borthwick Decorators — Components.
   Lifted verbatim from the W1 visual draft. Token-driven via tokens.css.
   Do not put hex colours or font-family strings here — use var(--token) only. */

*{ box-sizing: border-box; margin: 0; padding: 0; }
  html{ scroll-behavior: smooth; }
  body{
    font-family: var(--body-font);
    font-weight: 400;
    color: var(--body);
    background: var(--paper);
    line-height: 1.6;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  img{ display: block; max-width: 100%; height: auto; }
  a{ color: inherit; text-decoration: none; }

  /* === HEADER (overlays hero) === */
  .head-wrap{ position: absolute; top: 0; left: 0; right: 0; z-index: 10; }
  .head{
    padding: 14px 56px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    background: #000;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  /* Header is a solid black bar on every page. Hero pages overlay it on the photo
     (absolute, base rule above); no-hero/paper pages sit it in-flow so it doesn't
     overlap page content. */
  body.no-hero .head-wrap{ position: relative; }
  body.no-hero .head{ background: #000; backdrop-filter: none; -webkit-backdrop-filter: none; }
  .head-left{ display: flex; align-items: center; gap: 28px; flex-shrink: 0; }
  .head-logo img{ height: 104px; width: auto; }
  .head-epithet{
    font-family: var(--body-font);
    font-size: 11px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold-light);
    font-weight: 500;
    padding-left: 24px;
    border-left: 1px solid rgba(201,161,104,0.4);
    white-space: nowrap;
    display: flex;
    flex-direction: column;
    gap: 4px;
    line-height: 1.3;
  }
  .head-epithet .secondary{
    color: rgba(255,255,255,0.78);
    font-size: 10px;
    letter-spacing: 0.36em;
  }
  .nav{
    display: flex;
    gap: 30px;
    align-items: center;
    font-family: var(--body-font);
    font-size: 13px;
    letter-spacing: 0.04em;
    font-weight: 400;
    color: #fff;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  .nav a{
    color: #fff;
    position: relative;
    padding: 6px 0;
    transition: color 0.3s;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
  }
  .nav a:hover{ color: var(--gold-light); }
  .nav a::after{
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    height: 1px; width: 0;
    background: var(--gold-light);
    transition: width 0.4s ease;
  }
  .nav a:hover::after{ width: 100%; }
  .nav .cta{
    border: 1px solid var(--gold-light);
    color: var(--gold-light);
    padding: 12px 22px;
    font-weight: 500;
    background: transparent;
    text-shadow: none;
  }
  .nav .cta::after{ display: none; }
  .nav .cta:hover{ background: var(--gold); border-color: var(--gold); color: var(--ink); }

  /* === DROPDOWN SUBMENUS (desktop = hover / keyboard focus) === */
  .nav-item{ position: relative; display: flex; align-items: center; gap: 4px; }
  .sub-toggle{
    display: flex; align-items: center; justify-content: center;
    background: none; border: 0; margin: 0; padding: 4px;
    color: #fff; cursor: pointer; line-height: 0;
    pointer-events: none; /* desktop: parent :hover/:focus-within drives the panel */
  }
  .sub-toggle .caret{ width: 11px; height: 8px; opacity: 0.85; transition: transform 0.3s ease, color 0.3s ease; }
  .nav-item.has-sub:hover .caret,
  .nav-item.has-sub:focus-within .caret{ transform: rotate(180deg); color: var(--gold-light); }
  .subnav{
    position: absolute; top: 100%; left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 250px;
    display: flex; flex-direction: column;
    padding: 10px 0;
    background: rgba(16,12,7,0.97);
    -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
    border: 1px solid rgba(216,181,133,0.22);
    box-shadow: 0 18px 50px rgba(0,0,0,0.45);
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s;
    z-index: 40;
  }
  /* invisible hover bridge across the trigger→panel gap */
  .subnav::before{ content: ''; position: absolute; left: 0; right: 0; top: -12px; height: 12px; }
  .nav-item.has-sub:hover .subnav,
  .nav-item.has-sub:focus-within .subnav{
    opacity: 1; visibility: visible; pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
  .subnav a{
    padding: 11px 26px; width: auto; white-space: nowrap;
    font-size: 13px; color: rgba(255,255,255,0.9); text-shadow: none;
  }
  .subnav a::after{ display: none; }
  .subnav a:hover{ color: var(--gold-light); background: rgba(216,181,133,0.08); }

  /* === THIRD LEVEL — desktop fly-out to the side === */
  .subnav-item{ position: relative; }
  .subnav-item.has-sub{ display: flex; align-items: center; }
  .subnav-item .subnav-top{ flex: 1; padding: 11px 26px; white-space: nowrap; font-size: 13px; color: rgba(255,255,255,0.9); }
  .subnav-item .subnav-top:hover{ color: var(--gold-light); background: rgba(216,181,133,0.08); }
  .subnav-item .sub-toggle-2{ padding: 6px 16px 6px 2px; pointer-events: none; }
  .subnav-item .sub-toggle-2 .caret{ transform: rotate(-90deg); }
  .subsubnav{
    position: absolute; top: -10px; left: 100%;
    min-width: 240px; display: flex; flex-direction: column; padding: 10px 0;
    background: rgba(16,12,7,0.98);
    -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
    border: 1px solid rgba(216,181,133,0.22);
    box-shadow: 0 18px 50px rgba(0,0,0,0.45);
    opacity: 0; visibility: hidden; pointer-events: none;
    transform: translateX(8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    z-index: 41;
  }
  .subnav-item.has-sub:hover .subsubnav,
  .subnav-item.has-sub:focus-within .subsubnav{ opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(0); }
  .subnav-item.has-sub:hover .sub-toggle-2 .caret,
  .subnav-item.has-sub:focus-within .sub-toggle-2 .caret{ color: var(--gold-light); }
  .subsubnav a{ padding: 10px 24px; white-space: nowrap; font-size: 12.5px; color: rgba(255,255,255,0.82); text-shadow: none; }
  .subsubnav a::after{ display: none; }
  .subsubnav a:hover{ color: var(--gold-light); background: rgba(216,181,133,0.08); }

  /* === HAMBURGER (mobile only — body.nav-open toggle via JS) === */
  .nav-toggle{
    display: none;
    width: 48px; height: 48px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 0;
    background: rgba(21,17,11,0.4);
    border: 1px solid rgba(216,181,133,0.5);
    z-index: 60;
    position: relative;
  }
  .nav-toggle span{
    display: block;
    height: 1.5px;
    width: 22px;
    background: var(--gold-light);
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
  }
  .nav-toggle:hover span{ background: var(--gold); }
  body.nav-open .nav-toggle span:nth-child(1){ transform: translateY(7.5px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2){ opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3){ transform: translateY(-7.5px) rotate(-45deg); }

  /* === HERO === */
  .hero{
    height: 100vh;
    min-height: 760px;
    position: relative;
    background: var(--ink);
    overflow: hidden;
  }
  .hero-img{
    position: absolute;
    inset: 0;
    /* T175: hero is now a responsive <img.hero-img-el> child (see borthwick_hero_img),
       not a CSS background. Filter stays on the wrapper so it dims both the image and
       the ::after gradient, exactly as the background version did. */
    filter: brightness(0.62) contrast(1.05) saturate(0.92);
  }
  .hero-img .hero-img-el{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 55%;
  }
  .hero-img::after{
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(21,17,11,0.55) 0%, rgba(21,17,11,0.15) 30%, rgba(21,17,11,0.4) 75%, rgba(21,17,11,0.85) 100%);
  }
  .hero-content{
    position: absolute;
    inset: 0;
    padding: 152px 56px 96px;
    color: #fff;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 0.55fr;
    gap: 64px;
    align-content: center;
    align-items: center;
  }
  .hero-mark{
    font-family: var(--body-font);
    font-size: 11px;
    letter-spacing: 0.36em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 16px;
    font-weight: 500;
  }
  .hero-mark::before{
    content: '';
    width: 40px; height: 1px;
    background: var(--gold-light);
  }
  .hero h1{
    font-family: var(--display);
    font-weight: 300;
    font-size: clamp(46px, 5.6vw, 82px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: #fff;
    max-width: 22ch;
    font-variation-settings: "opsz" 144;
    margin-bottom: 28px;
  }
  .hero h1 em{ font-style: italic; font-weight: 300; color: var(--gold-light); }
  .hero-stand{
    font-family: var(--display);
    font-style: italic;
    font-size: 20px;
    line-height: 1.5;
    color: rgba(255,255,255,0.9);
    max-width: 36ch;
    font-weight: 300;
  }
  .hero-cta-row{ display: flex; gap: 24px; align-items: center; margin-top: 36px; }
  .hero-cta{
    font-family: var(--body-font);
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold-light);
    padding: 18px 36px;
    background: transparent;
    border: 1px solid var(--gold-light);
    transition: all 0.3s ease;
    font-weight: 500;
  }
  .hero-cta:hover{ background: var(--gold); border-color: var(--gold); color: var(--ink); }
  .hero-cta.ghost{
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.6);
    padding: 18px 0;
  }
  .hero-cta.ghost:hover{
    color: var(--gold-light);
    border-bottom-color: var(--gold-light);
    background: transparent;
    letter-spacing: 0.12em;
  }

  /* === HERO FORM (canonical hero pattern) === */
  .hero-form{
    background: rgba(21,17,11,0.72);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 36px 32px 32px;
    border: 1px solid rgba(201,161,104,0.35);
    color: #fff;
  }
  .hero-form .form-label{
    font-family: var(--body-font);
    font-size: 10px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 8px;
    font-weight: 500;
  }
  .hero-form h2{
    font-family: var(--display);
    font-weight: 300;
    font-size: 28px;
    line-height: 1.15;
    letter-spacing: -0.012em;
    color: #fff;
    margin-bottom: 24px;
  }
  .hero-form h2 em{ font-style: italic; color: var(--gold-light); font-weight: 300; }
  .hero-form .field{ display: flex; flex-direction: column; margin-bottom: 14px; }
  .hero-form .field-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .hero-form label{
    font-family: var(--body-font);
    font-size: 10px;
    letter-spacing: 0.32em;
    color: var(--gold-light);
    margin-bottom: 6px;
    text-transform: uppercase;
    font-weight: 500;
  }
  .hero-form input,
  .hero-form textarea{
    font-family: var(--display);
    font-weight: 300;
    font-size: 16px;
    padding: 8px 0;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.28);
    background: transparent;
    color: #fff;
    transition: border-color 0.3s;
  }
  .hero-form input:focus,
  .hero-form textarea:focus{ outline: none; border-bottom-color: var(--gold-light); }
  .hero-form textarea{ resize: vertical; min-height: 70px; }
  .hero-form button{
    margin-top: 18px;
    font-family: var(--body-font);
    font-size: 12px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    background: var(--gold-light);
    color: var(--ink);
    padding: 16px 36px;
    border: 1px solid var(--gold-light);
    cursor: pointer;
    font-weight: 500;
    width: 100%;
    transition: all 0.3s;
  }
  .hero-form button:hover{ background: var(--gold); border-color: var(--gold); }
  .hero-form .form-foot{
    font-family: var(--display);
    font-style: italic;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    margin-top: 14px;
    text-align: center;
    font-weight: 300;
  }

  /* === FORM STATUS (enquiry success / error message, injected by forms.js) === */
  .form-status{
    font-family: var(--body-font);
    font-size: 14.5px;
    line-height: 1.55;
    margin: 14px 0 0;
    padding: 14px 16px;
    border-radius: 2px;
  }
  .form-status.is-ok{ background: rgba(241,186,43,0.14); border: 1px solid var(--gold-light, #d8b585); color: #fff; }
  .form-status.is-error{ background: rgba(180,40,40,0.16); border: 1px solid rgba(220,90,90,0.6); color: #fff; }
  /* On the paper-background contact page the form sits on dark, so light text still reads;
     the lower contact form is dark-panelled like the hero, so the same colours apply. */

  /* === FRAMES === */
  .frame{ max-width: 1440px; margin: 0 auto; padding: 0 56px; }
  .frame-narrow{ max-width: 1080px; margin: 0 auto; padding: 0 56px; }
  .label{
    font-family: var(--body-font);
    font-size: 13px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold-deep);
    margin-bottom: 22px;
    font-weight: 600;
  }
  .section-title{
    font-family: var(--display);
    font-weight: 300;
    font-size: clamp(38px, 4.6vw, 60px);
    line-height: 1.05;
    color: var(--ink);
    letter-spacing: -0.018em;
    font-variation-settings: "opsz" 144;
  }
  .section-title em{ font-style: italic; color: var(--gold-deep); font-weight: 300; }

  /* === INTRO === */
  .intro{ padding: 140px 0 130px; background: var(--paper); text-align: center; }
  .intro .label{ display: inline-block; }
  .intro h2{
    font-family: var(--display);
    font-weight: 300;
    font-size: clamp(34px, 3.8vw, 48px);
    line-height: 1.2;
    color: var(--ink);
    max-width: 22ch;
    margin: 0 auto 50px;
    letter-spacing: -0.012em;
  }
  .intro h2 em{ font-style: italic; color: var(--gold-deep); }
  .intro p{
    font-family: var(--body-font);
    font-size: 18px;
    line-height: 1.75;
    color: var(--body-soft);
    max-width: 60ch;
    margin: 0 auto 18px;
    font-weight: 400;
  }
  .intro p:last-of-type{ margin-bottom: 0; }

  /* === FEATURED WORK === */
  .work{ padding: 140px 0; background: var(--taupe); }
  .work-head{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 72px;
  }
  .work-head .label{ margin-bottom: 16px; }
  .work-head-right{
    text-align: right;
    font-family: var(--display);
    font-style: italic;
    font-size: 20px;
    line-height: 1.6;
    color: var(--body-soft);
    max-width: 40ch;
    margin-left: auto;
    font-weight: 300;
  }
  .work-grid{ display: grid; grid-template-columns: 1.6fr 1fr; gap: 40px; }
  .work-main img{ width: 100%; aspect-ratio: 4/5; object-fit: cover; }
  .work-secondary{ display: flex; flex-direction: column; gap: 40px; align-self: stretch; }
  .work-secondary .work-card{ flex: 1; display: flex; flex-direction: column; }
  .work-secondary .work-card img{ width: 100%; flex: 1; object-fit: cover; aspect-ratio: 4/3; }
  .work-card{ position: relative; overflow: hidden; }
  .work-card .img-wrap{ overflow: hidden; margin-bottom: 22px; }
  .work-main .img-wrap{ margin-bottom: 28px; }
  .work-card img{ transition: transform 1.4s ease; }
  .work-card:hover img{ transform: scale(1.04); }
  .work-card-meta{ display: flex; justify-content: space-between; align-items: baseline; gap: 24px; }
  .work-card-meta .place{
    font-family: var(--body-font);
    font-size: 11px;
    letter-spacing: 0.36em;
    color: var(--gold-deep);
    text-transform: uppercase;
    font-weight: 500;
  }
  .work-card-meta .num{
    font-family: var(--display);
    font-style: italic;
    font-size: 16px;
    color: var(--muted);
    font-weight: 300;
  }
  .work-card h3{
    font-family: var(--display);
    font-weight: 300;
    font-size: 26px;
    line-height: 1.25;
    color: var(--ink);
    margin-top: 8px;
    letter-spacing: -0.005em;
  }
  .work-main h3{ font-size: 32px; }
  .work-card h3 em{ font-style: italic; color: var(--gold-deep); }
  .work-link{ text-align: center; margin-top: 80px; }
  .work-link a{
    font-family: var(--body-font);
    font-size: 12px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--ink);
    border-bottom: 1px solid var(--gold);
    padding-bottom: 5px;
    font-weight: 500;
    transition: all 0.3s;
  }
  .work-link a:hover{ color: var(--gold-deep); letter-spacing: 0.36em; }

  /* === FAQ === */
  .faq{ padding: 130px 0 140px; background: var(--paper); }
  .faq-head{ text-align: center; margin-bottom: 64px; }
  .faq-head .label{ display: inline-block; }
  .faq-head h2{ margin: 0 auto; max-width: 24ch; }
  .faq-list{ max-width: 880px; margin: 0 auto; padding: 0 56px; }
  .faq-item{ border-bottom: 1px solid var(--rule-ink); }
  .faq-item:first-child{ border-top: 1px solid var(--rule-ink); }
  .faq-item summary{
    list-style: none;
    cursor: pointer;
    padding: 30px 56px 30px 0;
    font-family: var(--display);
    font-weight: 300;
    font-size: clamp(20px, 2.2vw, 26px);
    line-height: 1.35;
    color: var(--ink);
    letter-spacing: -0.005em;
    position: relative;
    transition: color 0.3s;
  }
  .faq-item summary::-webkit-details-marker{ display: none; }
  .faq-item summary::after{
    content: '+';
    position: absolute;
    right: 0; top: 50%;
    transform: translateY(-50%);
    font-family: var(--body-font);
    font-size: 28px;
    font-weight: 300;
    color: var(--gold-deep);
    transition: color 0.3s, transform 0.3s;
  }
  .faq-item[open] summary::after{
    content: '\2013';
    color: var(--gold);
  }
  .faq-item summary:hover{ color: var(--gold-deep); }
  .faq-item .faq-body{
    padding: 0 0 32px;
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.75;
    color: var(--body-soft);
    max-width: 65ch;
  }

  /* === SERVICES (card grid) === */
  .services{ padding: 160px 0; background: var(--paper); }
  .services-frame{ max-width: 1320px; margin: 0 auto; padding: 0 56px; }
  .services-head{ text-align: center; margin-bottom: 80px; }
  .services-head .label{ display: inline-block; }
  .services-head h2{ margin: 0 auto; max-width: 26ch; }
  .services-grid{
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
  }
  /* BUG-12: balanced rows. The template sets --svc-cols per page — even counts
     split evenly (4=2+2, 6=3+3), odd counts leave one short final row. flex-grow:1
     then stretches that short row's cards to fill the width instead of orphaning. */
  .services-grid > .service-card{
    flex: 1 1 calc((100% - (var(--svc-cols, 3) - 1) * 40px) / var(--svc-cols, 3));
    min-width: 240px;
  }
  .service-card{
    background: #fff;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid var(--rule-ink);
  }
  .service-card:hover{
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(21,17,11,0.10);
  }
  .service-card .img-wrap{
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
  }
  .service-card img{
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1.4s ease;
  }
  .service-card:hover img{ transform: scale(1.04); }
  .service-card-body{
    padding: 36px 32px 34px;
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  .service-card .kicker{
    font-family: var(--body-font);
    font-size: 10px;
    letter-spacing: 0.36em;
    color: var(--gold-deep);
    margin-bottom: 14px;
    text-transform: uppercase;
    font-weight: 500;
  }
  .service-card h3{
    font-family: var(--display);
    font-weight: 300;
    font-size: 26px;
    line-height: 1.2;
    color: var(--ink);
    letter-spacing: -0.008em;
    margin-bottom: 16px;
  }
  .service-card h3 em{ font-style: italic; color: var(--gold-deep); }
  .service-card p{
    font-family: var(--body-font);
    font-size: 15px;
    line-height: 1.65;
    color: var(--body-soft);
    margin-bottom: 28px;
    flex: 1;
  }
  .service-card .card-cta{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--body-font);
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--ink);
    border: 1px solid var(--gold);
    padding: 13px 22px;
    align-self: flex-start;
    font-weight: 500;
    transition: all 0.3s ease;
    background: transparent;
  }
  .service-card .card-cta::after{
    content: '→';
    display: inline-block;
    transition: transform 0.3s;
  }
  .service-card .card-cta:hover{
    background: var(--gold);
    color: var(--ink);
    border-color: var(--gold);
  }
  .service-card .card-cta:hover::after{ transform: translateX(4px); }

  /* === LOCATIONS === */
  .places{ padding: 130px 0 140px; background: var(--ink); color: #fff; text-align: center; }
  .places .label{ color: var(--gold-light); display: inline-block; }
  .places h2{
    color: #fff;
    font-family: var(--display);
    font-weight: 300;
    font-size: clamp(38px, 4.6vw, 60px);
    line-height: 1.05;
    letter-spacing: -0.018em;
    max-width: 22ch;
    margin: 0 auto 56px;
  }
  .places h2 em{ font-style: italic; color: var(--gold-light); font-weight: 300; }
  .places-row{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 28px;
    font-family: var(--display);
    font-size: 24px;
    color: #fff;
    margin-bottom: 50px;
    font-weight: 300;
  }
  .places-row .city{ transition: color 0.3s; }
  .places-row .city:hover{ color: var(--gold-light); }
  .places-row .city.lead{ font-style: italic; color: var(--gold-light); }
  .places-row .dot{
    width: 4px; height: 4px;
    border-radius: 50%;
    background: var(--gold-light);
    opacity: 0.7;
  }
  .places-foot{
    font-family: var(--display);
    font-style: italic;
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255,255,255,0.78);
    max-width: 60ch;
    margin: 0 auto;
    font-weight: 300;
  }
  .places-foot em{ color: var(--gold-light); }

  /* === ABOUT === */
  .about{ padding: 140px 0; background: var(--taupe); }
  .about-frame{
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 90px;
    align-items: center;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 56px;
  }
  .about-img-wrap{ position: relative; }
  .about-img{ width: 100%; aspect-ratio: 4/5; object-fit: cover; }
  .about-stamp{
    position: absolute;
    top: -28px; left: -28px;
    width: 130px; height: 130px;
    padding: 14px;
    background: var(--ink);
  }
  .about-stamp img{ width: 100%; height: 100%; object-fit: contain; }
  .about-content h2{ margin-bottom: 36px; max-width: 16ch; }
  .about-content p{
    font-family: var(--body-font);
    font-size: 18px;
    line-height: 1.75;
    color: var(--body);
    margin-bottom: 18px;
    font-weight: 400;
  }
  .about-content p em{ font-style: italic; color: var(--gold-deep); }
  .about-cta{
    font-family: var(--body-font);
    font-size: 12px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--ink);
    border-bottom: 1px solid var(--gold);
    padding-bottom: 5px;
    font-weight: 500;
    display: inline-block;
    margin-top: 22px;
    transition: all 0.3s;
  }
  .about-cta:hover{ color: var(--gold-deep); letter-spacing: 0.36em; }

  /* === PULL QUOTE === */
  .pull{ padding: 130px 0; background: var(--paper); text-align: center; }
  .pull-frame{ max-width: 880px; margin: 0 auto; padding: 0 56px; }
  .pull blockquote{
    font-family: var(--display);
    font-weight: 300;
    font-style: italic;
    font-size: clamp(24px, 2.8vw, 36px);
    line-height: 1.5;
    color: var(--ink);
    max-width: 36ch;
    margin: 0 auto 40px;
    letter-spacing: -0.005em;
  }
  .pull blockquote::before, .pull blockquote::after{
    content: '';
    display: block;
    width: 40px; height: 1px;
    background: var(--gold);
    margin: 32px auto;
  }
  .pull blockquote::before{ margin-top: 0; }
  .pull cite{
    font-family: var(--body-font);
    font-size: 11px;
    letter-spacing: 0.4em;
    color: var(--gold-deep);
    text-transform: uppercase;
    font-weight: 500;
    font-style: normal;
  }
  .pull-link{
    margin-top: 48px;
    font-family: var(--body-font);
    font-size: 12px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--ink);
    border-bottom: 1px solid var(--gold);
    padding-bottom: 5px;
    display: inline-block;
    font-weight: 500;
    transition: all 0.3s;
  }
  .pull-link:hover{ color: var(--gold-deep); letter-spacing: 0.36em; }

  /* === PAINTS WE WORK WITH (quieter strip) === */
  .paints{
    padding: 70px 0;
    background: var(--taupe);
    text-align: center;
    border-top: 1px solid var(--rule-ink);
    border-bottom: 1px solid var(--rule-ink);
  }
  .paints .label{ display: inline-block; margin-bottom: 24px; }
  .paints-marks{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 36px;
    font-family: var(--display);
    font-size: 22px;
    color: var(--ink);
    font-weight: 300;
  }
  .paints-marks .mark{ font-style: italic; }
  .paints-marks .div{ color: var(--gold); opacity: 0.7; }

  /* === ACCREDITATIONS (own prominent section) === */
  .accreds{ padding: 130px 0 140px; background: var(--paper); }
  .accreds-frame{ max-width: 1320px; margin: 0 auto; padding: 0 56px; }
  .accreds-head{ text-align: center; margin-bottom: 64px; }
  .accreds-head .label{ display: inline-block; }
  .accreds-head h2{ margin: 0 auto; max-width: 24ch; }
  .accreds-head .lead{
    font-family: var(--display);
    font-style: italic;
    font-size: 19px;
    line-height: 1.55;
    color: var(--body-soft);
    max-width: 55ch;
    margin: 28px auto 0;
    font-weight: 300;
  }
  .accreds-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .accred-card{
    background: #fff;
    border: 1px solid var(--rule-ink);
    padding: 40px 24px 32px;
    text-align: center;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  }
  .accred-card:hover{
    transform: translateY(-3px);
    border-color: var(--gold);
    box-shadow: 0 10px 28px rgba(21,17,11,0.06);
  }
  .accred-card .abbr{
    font-family: var(--display);
    font-weight: 300;
    font-size: 30px;
    color: var(--ink);
    margin-bottom: 12px;
    letter-spacing: -0.005em;
    line-height: 1;
  }
  .accred-card .abbr em{ font-style: italic; color: var(--gold-deep); font-weight: 300; }
  .accred-card .name{
    font-family: var(--body-font);
    font-size: 11px;
    letter-spacing: 0.18em;
    color: var(--muted);
    text-transform: uppercase;
    font-weight: 500;
    line-height: 1.55;
  }
  .accreds-insurance{
    text-align: center;
    margin-top: 56px;
    font-family: var(--display);
    font-style: italic;
    font-size: 19px;
    color: var(--body-soft);
    font-weight: 300;
  }
  .accreds-insurance strong{
    font-style: normal;
    color: var(--gold-deep);
    font-weight: 500;
    letter-spacing: 0.02em;
  }

  /* === ORGANISATIONS (client logos strip) === */
  .orgs{
    padding: 120px 0;
    background: var(--taupe-warm);
    text-align: center;
    border-top: 1px solid var(--rule-ink);
    border-bottom: 1px solid var(--rule-ink);
  }
  .orgs-frame{ max-width: 1320px; margin: 0 auto; padding: 0 56px; }
  .orgs .label{ display: inline-block; margin-bottom: 14px; }
  .orgs h2{
    font-family: var(--display);
    font-weight: 300;
    font-size: clamp(28px, 3.2vw, 38px);
    line-height: 1.2;
    color: var(--ink);
    max-width: 36ch;
    margin: 0 auto 12px;
    letter-spacing: -0.012em;
  }
  .orgs h2 em{ font-style: italic; color: var(--gold-deep); }
  .orgs-sub{
    font-family: var(--display);
    font-style: italic;
    font-size: 17px;
    color: var(--muted);
    margin-bottom: 56px;
    font-weight: 300;
  }
  .orgs-grid{
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    align-items: center;
  }
  .org-mark{
    aspect-ratio: 2/1;
    background: rgba(255,255,255,0.65);
    border: 1px dashed rgba(108,80,64,0.32);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--body-font);
    font-size: 10px;
    letter-spacing: 0.32em;
    color: var(--muted);
    text-transform: uppercase;
    font-weight: 500;
  }
  .orgs-note{
    font-family: var(--display);
    font-style: italic;
    font-size: 13px;
    color: var(--muted);
    margin-top: 32px;
    font-weight: 300;
  }

  /* === JOURNAL (blog feed) === */
  .journal{ padding: 140px 0; background: var(--paper); }
  .journal-frame{ max-width: 1320px; margin: 0 auto; padding: 0 56px; }
  .journal-head{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 64px;
  }
  .journal-head-right{
    text-align: right;
    font-family: var(--display);
    font-style: italic;
    font-size: 20px;
    line-height: 1.6;
    color: var(--body-soft);
    max-width: 44ch;
    margin-left: auto;
    font-weight: 300;
  }
  .journal-head-right a.view-all{
    margin-top: 22px;
    display: inline-block;
    font-family: var(--body-font);
    font-size: 12px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--ink);
    border-bottom: 1px solid var(--gold);
    padding-bottom: 5px;
    font-weight: 500;
    transition: all 0.3s;
    font-style: normal;
  }
  .journal-head-right a.view-all:hover{ color: var(--gold-deep); letter-spacing: 0.36em; }
  .journal-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
  .journal-card{ display: flex; flex-direction: column; transition: transform 0.4s ease; }
  .journal-card:hover{ transform: translateY(-3px); }
  .journal-card .img-wrap{ overflow: hidden; aspect-ratio: 4/3; margin-bottom: 24px; }
  .journal-card img{
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1.4s ease;
  }
  .journal-card:hover img{ transform: scale(1.04); }
  .journal-card .kicker{
    font-family: var(--body-font);
    font-size: 10px;
    letter-spacing: 0.36em;
    color: var(--gold-deep);
    margin-bottom: 12px;
    text-transform: uppercase;
    font-weight: 500;
  }
  .journal-card h3{
    font-family: var(--display);
    font-weight: 300;
    font-size: 24px;
    line-height: 1.3;
    color: var(--ink);
    letter-spacing: -0.005em;
    margin-bottom: 14px;
  }
  .journal-card h3 em{ font-style: italic; color: var(--gold-deep); }
  .journal-card h3 a{ transition: color 0.3s; }
  .journal-card h3 a:hover{ color: var(--gold-deep); }
  .journal-card p{
    font-family: var(--body-font);
    font-size: 14px;
    line-height: 1.65;
    color: var(--body-soft);
    margin-bottom: 18px;
  }
  .journal-card .read-more{
    font-family: var(--body-font);
    font-size: 11px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--ink);
    border-bottom: 1px solid var(--gold);
    padding-bottom: 4px;
    align-self: flex-start;
    font-weight: 500;
    transition: all 0.3s;
  }
  .journal-card .read-more:hover{ color: var(--gold-deep); letter-spacing: 0.36em; }

  /* === CONTACT SECTION (long-form, lower page; form styled to match hero) === */
  /* Contact page — Layout 3 (form-in-hero + office map cards) */
  .contact-hero{ background: var(--ink); color: #fff; padding: 84px 0 72px; }
  /* Optional hero background image (contact_hero_image). Photo sits under a dark
     overlay so the white text + form stay legible; empty field = solid black band. */
  .contact-hero--image{ position: relative; background-color: var(--ink); background-size: cover; background-position: center; background-repeat: no-repeat; }
  .contact-hero--image .contact-hero-overlay{ position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.62) 55%, rgba(0,0,0,.5) 100%); z-index: 0; }
  .contact-hero--image .frame{ position: relative; z-index: 1; }
  /* QA 2026-06-12 (Contact row, r3): full sitewide frame (the 1180px override pulled
     the form ~130px in from the right vs every other hero) + form column pinned to
     450px to match .hero-form geometry. Text column vertically CENTRED against the
     form (Nick r3 — reverted the brief top-align experiment). */
  .contact-hero .frame{ max-width: 1440px; }
  .contact-hero--split .frame{ display: grid; grid-template-columns: minmax(0, 1fr) 450px; gap: 60px; align-items: center; }
  .contact-hero .label{ color: var(--gold); margin-bottom: 14px; }
  .contact-hero h1{ font-family: var(--display); font-weight: 400; font-size: clamp(32px, 4.4vw, 48px); line-height: 1.08; letter-spacing: -0.01em; margin: 0 0 18px; color: #fff; }
  .contact-hero h1 em{ font-style: italic; color: var(--gold); }
  .contact-hero .standfirst{ font-family: var(--body-font); font-size: 17px; line-height: 1.6; color: rgba(255,255,255,.82); max-width: 50ch; margin: 0 0 20px; }
  .contact-hero-phone{ font-family: var(--body-font); font-size: 16px; color: rgba(255,255,255,.7); margin: 0; }
  .contact-hero-phone a{ color: var(--gold); text-decoration: none; font-weight: 600; }
  .contact-hero--split .contact-form-lower{ margin: 0; }

  /* Offices grid (map + detail cards) */
  .office-section{ background: var(--paper); padding: 84px 0 100px; }
  .office-head{ max-width: 1180px; margin: 0 auto 40px; padding: 0 56px; }
  .office-head .label{ color: var(--gold-deep); margin-bottom: 12px; }
  .office-head .contact-lead{ margin-top: 10px; }
  .office-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 1180px; margin: 0 auto; padding: 0 56px; }
  .office-card{ background: #fff; border: 1px solid var(--rule-ink); display: grid; grid-template-columns: 210px 1fr; overflow: hidden; }
  .office-map{ background: #e8e4dd; }
  .office-map iframe{ width: 100%; height: 100%; min-height: 178px; border: 0; display: block; }
  .office-body{ padding: 24px 26px; }
  .office-body h3{ font-family: var(--display); font-weight: 400; font-size: 19px; margin: 0 0 8px; letter-spacing: -0.01em; color: var(--ink); }
  .office-addr{ font-family: var(--body-font); font-size: 14px; line-height: 1.55; color: rgba(21,17,11,.66); margin: 0 0 14px; }
  .phone-link{ display: inline-flex; align-items: center; gap: 7px; color: var(--gold-deep); font-weight: 600; font-size: 15px; text-decoration: none; border-bottom: 1px solid rgba(198,154,93,.4); padding-bottom: 1px; }
  .phone-link:hover{ color: var(--gold); border-color: var(--gold); }
  .phone-link .ico{ width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 1.7; flex: 0 0 auto; }

  @media (max-width: 900px){
    .contact-hero--split .frame{ grid-template-columns: 1fr; gap: 40px; }
    .office-grid{ grid-template-columns: 1fr; }
    .office-card{ grid-template-columns: 1fr; }
    .office-map iframe{ min-height: 200px; }
  }

  .contact{ padding: 140px 0; background: var(--paper); }
  .contact-frame{
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 90px;
    align-items: start;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 56px;
  }
  .contact-left h2{ margin-bottom: 28px; }
  .contact-lead{
    font-family: var(--display);
    font-style: italic;
    font-size: 20px;
    line-height: 1.55;
    color: var(--body-soft);
    max-width: 38ch;
    margin-bottom: 48px;
    font-weight: 300;
  }
  .contact-detail{
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--rule-ink);
  }
  .contact-detail:last-child{ border: none; padding-bottom: 0; }
  .contact-detail h4{
    font-family: var(--body-font);
    font-size: 11px;
    letter-spacing: 0.4em;
    color: var(--gold-deep);
    margin-bottom: 10px;
    font-weight: 500;
    text-transform: uppercase;
  }
  .contact-detail p{
    font-family: var(--display);
    font-size: 19px;
    line-height: 1.55;
    color: var(--ink);
    font-weight: 300;
  }
  .contact-detail a{ transition: color 0.3s; border-bottom: 1px solid transparent; }
  .contact-detail a:hover{ color: var(--gold-deep); border-bottom-color: var(--gold); }
  /* Lower form — matches hero form style (dark glass) */
  .contact-form-lower{
    background: rgba(21,17,11,0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 52px 44px 44px;
    border: 1px solid rgba(201,161,104,0.35);
    color: #fff;
  }
  .contact-form-lower .form-label{
    font-family: var(--body-font);
    font-size: 10px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 8px;
    font-weight: 500;
  }
  .contact-form-lower h2{
    font-family: var(--display);
    font-weight: 300;
    font-size: 30px;
    line-height: 1.15;
    letter-spacing: -0.012em;
    color: #fff;
    margin-bottom: 28px;
  }
  .contact-form-lower h2 em{ font-style: italic; color: var(--gold-light); font-weight: 300; }
  .contact-form-lower .form-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-bottom: 22px; }
  .contact-form-lower .form-field{ display: flex; flex-direction: column; }
  .contact-form-lower .form-field.full{ grid-column: 1 / -1; }
  .contact-form-lower .form-field label{
    font-family: var(--body-font);
    font-size: 10px;
    letter-spacing: 0.32em;
    color: var(--gold-light);
    margin-bottom: 8px;
    text-transform: uppercase;
    font-weight: 500;
  }
  .contact-form-lower input,
  .contact-form-lower textarea{
    font-family: var(--display);
    font-weight: 300;
    font-size: 18px;
    padding: 10px 0;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.28);
    background: transparent;
    color: #fff;
    transition: border-color 0.3s;
  }
  .contact-form-lower input:focus,
  .contact-form-lower textarea:focus{ outline: none; border-bottom-color: var(--gold-light); }
  .contact-form-lower textarea{ resize: vertical; min-height: 90px; }
  .contact-form-lower button{
    margin-top: 16px;
    font-family: var(--body-font);
    font-size: 12px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    background: var(--gold-light);
    color: var(--ink);
    padding: 18px 44px;
    border: 1px solid var(--gold-light);
    cursor: pointer;
    font-weight: 500;
    width: 100%;
    transition: all 0.3s;
  }
  .contact-form-lower button:hover{ background: var(--gold); border-color: var(--gold); }

  /* === FOOTER === */
  .footer{ background: var(--ink); color: #fff; padding: 110px 0 40px; }
  .footer-frame{ max-width: 1440px; margin: 0 auto; padding: 0 56px; }

  /* Row 1 — 4-column regional nav */
  .footer-regions{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    padding-bottom: 70px;
    border-bottom: 1px solid var(--rule-light);
  }
  .footer-region h4{
    font-family: var(--display);
    font-weight: 300;
    font-size: 22px;
    color: var(--gold-light);
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(201,161,104,0.35);
    letter-spacing: -0.005em;
  }
  .footer-region h4 a{ color: var(--gold-light); transition: color 0.3s; }
  .footer-region h4 a:hover{ color: var(--gold); }
  .footer-region h5{
    font-family: var(--display);
    font-weight: 300;
    font-size: 18px;
    color: var(--gold-light);
    margin: 28px 0 12px;
    letter-spacing: -0.005em;
  }
  .footer-region ul{ list-style: none; margin: 0; padding: 0; }
  .footer-region li{ padding: 4px 0; }
  .footer-region a.region-primary{
    font-family: var(--body-font);
    font-size: 14px;
    color: #fff;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s;
  }
  .footer-region a.region-primary:hover{ color: var(--gold-light); }
  .footer-region a.sub-loc{
    font-family: var(--body-font);
    font-size: 14px;
    color: rgba(255,255,255,0.72);
    font-weight: 400;
    transition: color 0.3s;
  }
  .footer-region a.sub-loc:hover{ color: var(--gold-light); }
  .footer-region a.view-all{
    font-family: var(--display);
    font-style: italic;
    font-size: 13px;
    color: var(--gold-light);
    margin-top: 6px;
    display: inline-block;
    transition: color 0.3s;
  }
  .footer-region a.view-all:hover{ color: var(--gold); }

  /* Row 2 — Centered brand block */
  .footer-brand-center{
    text-align: center;
    padding: 56px 0 50px;
    border-bottom: 1px solid var(--rule-light);
  }
  .footer-brand-center h3{
    font-family: var(--display);
    font-weight: 400;
    font-size: 26px;
    color: var(--gold-light);
    letter-spacing: 0.04em;
    margin-bottom: 10px;
  }
  .footer-brand-center p{
    font-family: var(--display);
    font-style: italic;
    font-size: 17px;
    color: rgba(255,255,255,0.82);
    font-weight: 300;
  }

  /* Row 3 — Four offices */
  .footer-offices{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    padding: 48px 0 44px;
    border-bottom: 1px solid var(--rule-light);
    text-align: center;
  }
  .footer-office .of-label{
    font-family: var(--body-font);
    font-size: 11px;
    letter-spacing: 0.36em;
    color: var(--gold-light);
    margin-bottom: 8px;
    text-transform: uppercase;
    font-weight: 500;
  }
  .footer-office p{
    font-family: var(--display);
    font-size: 16px;
    line-height: 1.55;
    color: rgba(255,255,255,0.82);
    font-weight: 300;
  }

  /* Row 4 — Social + Legal */
  .footer-bottom{
    padding: 36px 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: center;
  }
  .footer-social{
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
  }
  .footer-social a{
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(201,161,104,0.4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    font-family: var(--body-font);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    transition: all 0.3s;
  }
  .footer-social a:hover{ background: var(--gold); color: var(--ink); border-color: var(--gold); }
  .footer-social a svg{ width: 17px; height: 17px; display: block; }
  .footer-legal{
    text-align: right;
    font-family: var(--body-font);
    font-size: 11px;
    line-height: 1.8;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.04em;
  }
  .footer-utility{
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.12);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 22px;
  }
  .footer-utility a{
    font-family: var(--body-font);
    font-size: 10.5px;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-utility a:hover{ color: var(--gold-light); }

  /* === CTA BAND (dark, quiet break) === */
  .cta-band{
    background: var(--ink);
    padding: 100px 0;
    text-align: center;
  }
  .cta-band .label{ color: var(--gold-light); display: inline-block; margin-bottom: 22px; }
  .cta-band h2{
    font-family: var(--display);
    font-weight: 300;
    font-size: clamp(34px, 4.4vw, 56px);
    line-height: 1.1;
    color: #fff;
    max-width: 22ch;
    margin: 0 auto 28px;
    letter-spacing: -0.018em;
    font-variation-settings: "opsz" 144;
  }
  .cta-band h2 em{ font-style: italic; color: var(--gold-light); font-weight: 300; }
  .cta-band .lead{
    font-family: var(--display);
    font-style: italic;
    font-size: 19px;
    line-height: 1.55;
    color: rgba(255,255,255,0.78);
    max-width: 50ch;
    margin: 0 auto 40px;
    font-weight: 300;
  }

  /* === CTA BANNER (full-bleed image, punchier) === */
  .cta-banner{
    position: relative;
    padding: 150px 0;
    overflow: hidden;
    text-align: center;
  }
  .cta-banner .bg{
    position: absolute;
    inset: 0;
    background-image: url('/wp-content/uploads/draft-homepage/belgravia-interior-decorating-excellence.png');
    background-size: cover;
    background-position: center;
    filter: brightness(0.55) contrast(1.05) saturate(0.92);
  }
  .cta-banner .bg::after{
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(21,17,11,0.55) 0%, rgba(21,17,11,0.4) 50%, rgba(21,17,11,0.72) 100%);
  }
  .cta-banner .inner{
    position: relative;
    z-index: 2;
    max-width: 880px;
    margin: 0 auto;
    padding: 0 56px;
  }
  .cta-banner .label{ color: var(--gold-light); display: inline-block; margin-bottom: 22px; }
  .cta-banner h2{
    font-family: var(--display);
    font-weight: 300;
    font-size: clamp(40px, 5.5vw, 72px);
    line-height: 1.05;
    color: #fff;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    font-variation-settings: "opsz" 144;
  }
  .cta-banner h2 em{ font-style: italic; color: var(--gold-light); font-weight: 300; }
  .cta-banner .lead{
    font-family: var(--display);
    font-style: italic;
    font-size: 20px;
    line-height: 1.55;
    color: rgba(255,255,255,0.88);
    max-width: 50ch;
    margin: 0 auto 40px;
    font-weight: 300;
  }

  /* Shared CTA row used by both band + banner */
  .cta-band .cta-row,
  .cta-banner .cta-row{
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
  .cta-band a.cta-primary,
  .cta-banner a.cta-primary{
    font-family: var(--body-font);
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold-light);
    padding: 18px 36px;
    background: transparent;
    border: 1px solid var(--gold-light);
    transition: all 0.3s ease;
    font-weight: 500;
  }
  .cta-band a.cta-primary:hover,
  .cta-banner a.cta-primary:hover{ background: var(--gold); border-color: var(--gold); color: var(--ink); }
  .cta-band a.cta-ghost,
  .cta-banner a.cta-ghost{
    font-family: var(--body-font);
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    padding: 18px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.45);
    transition: all 0.3s;
    font-weight: 500;
  }
  .cta-band a.cta-ghost:hover,
  .cta-banner a.cta-ghost:hover{
    color: var(--gold-light);
    border-bottom-color: var(--gold-light);
    letter-spacing: 0.12em;
  }

  /* === CTA BAND — INLINE VARIANT ===
     A compact form of .cta-band, used as a mid-page interrupt on Service,
     Commercial and Location pages between major sections. Same dark-bg +
     gold-light typography as the homepage cta-band so the visual language
     is consistent across the site — just less vertical padding and no
     headline (just label + CTA row).
  */
  .cta-band.cta-band--inline{ padding: 56px 0; }
  .cta-band.cta-band--inline .label{ margin-bottom: 18px; }

  /* === COVERAGE SUB-HEAD (groups Locations from Related Services in coverage section) === */
  .coverage-subhead{
    font-family: var(--body-font);
    font-size: 13px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(0,0,0,0.55);
    margin: 32px 0 16px;
    font-weight: 600;
  }
  .coverage-subhead:first-of-type{ margin-top: 24px; }

  /* === RESPONSIVE === */
  @media (max-width: 1100px){
    .head{ padding: 18px 28px; gap: 18px; justify-content: space-between; align-items: center; }
    .head-left{ gap: 18px; }
    .head-epithet{ padding-left: 16px; }
    .head-logo img{ height: 76px; }
    /* Hamburger appears, nav becomes overlay.
       CRITICAL: .head's backdrop-filter creates a containing block for fixed-position
       descendants, which traps the fixed .nav overlay inside the header box (it renders
       ~150px tall instead of full-screen). Removing the filter on mobile lets the overlay
       fill the viewport. (No-hero pages already set backdrop-filter:none.) */
    .head{ padding-right: 84px; backdrop-filter: none !important; -webkit-backdrop-filter: none !important; }
    .nav-toggle{
      display: flex !important;
      position: fixed;
      top: 18px;
      right: 22px;
      z-index: 60;
    }
    .nav{
      display: none !important;
      position: fixed;
      inset: 0;
      background: rgba(21,17,11,0.97);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      flex-direction: column;
      flex-wrap: nowrap; /* override desktop wrap: tall content must scroll, not form a 2nd column */
      align-items: stretch;
      justify-content: flex-start;
      padding: 110px 32px 40px;
      gap: 0;
      font-size: 18px;
      letter-spacing: 0.02em;
      z-index: 50;
      overflow-y: auto;
    }
    .nav a{
      padding: 22px 0;
      border-bottom: 1px solid rgba(216,181,133,0.18);
      text-shadow: none;
      width: 100%;
      color: #fff;
      font-weight: 400;
    }
    .nav a::after{ display: none; }
    .nav .cta{
      margin-top: 32px;
      text-align: center;
      padding: 18px 22px;
      border: 1px solid var(--gold-light);
      width: 100%;
      color: var(--gold-light);
      font-weight: 500;
      letter-spacing: 0.12em;
    }
    body.nav-open .nav{ display: flex !important; }
    body.nav-open{ overflow: hidden; }
    /* Submenus become tap-to-expand accordions inside the overlay */
    .nav-item{
      position: static; width: 100%;
      display: flex; flex-wrap: wrap; align-items: center; gap: 0;
      border-bottom: 1px solid rgba(216,181,133,0.18);
    }
    .nav-item .nav-top{ flex: 1; border-bottom: 0; padding: 22px 0; }
    .sub-toggle{
      pointer-events: auto; padding: 14px 4px 14px 18px;
      color: var(--gold-light); align-self: stretch;
    }
    .sub-toggle .caret{ width: 14px; height: 10px; opacity: 1; }
    .subnav{
      position: static; transform: none; flex-basis: 100%; width: 100%;
      min-width: 0; padding: 0; margin: 0 0 14px;
      background: rgba(255,255,255,0.03); border: 0; box-shadow: none;
      opacity: 1; visibility: visible; pointer-events: auto;
      display: none; transition: none; backdrop-filter: none; -webkit-backdrop-filter: none;
    }
    .subnav::before{ display: none; }
    /* Neutralise the desktop hover/focus reveal on mobile. These selectors carry
       higher specificity (4 classes) than plain .subnav, so without an equal-specificity
       reset here they keep applying transform:translateX(-50%) — which shoves the now-static,
       full-width accordion panel off-screen left the moment the caret button takes focus. */
    .nav-item.has-sub:hover .subnav,
    .nav-item.has-sub:focus-within .subnav{ transform: none; left: auto; }
    .nav-item.is-open > .subnav{ display: flex; }
    .nav-item.is-open .caret{ transform: rotate(180deg); }
    .subnav a{
      padding: 15px 0 15px 18px; width: 100%; white-space: normal;
      font-size: 15px; color: rgba(255,255,255,0.82);
      border-bottom: 1px solid rgba(216,181,133,0.10);
    }
    .subnav a:last-child{ border-bottom: 0; }
    /* Third level — nested accordion inside the open submenu */
    .subnav-item{ position: static; width: 100%; display: flex; flex-wrap: wrap; align-items: center; }
    .subnav-item .subnav-top{
      flex: 1; padding: 15px 0 15px 18px; width: auto; white-space: normal;
      font-size: 15px; color: rgba(255,255,255,0.82);
      border-bottom: 1px solid rgba(216,181,133,0.10);
    }
    .subnav-item .sub-toggle-2{ pointer-events: auto; padding: 13px 4px 13px 14px; color: var(--gold-light); align-self: stretch; }
    .subnav-item .sub-toggle-2 .caret{ width: 13px; height: 9px; transform: none; }
    .subsubnav{
      position: static; transform: none; flex-basis: 100%; width: 100%; min-width: 0;
      padding: 0; margin: 0; background: rgba(0,0,0,0.18); border: 0; box-shadow: none;
      opacity: 1; visibility: visible; pointer-events: auto; display: none;
      transition: none; backdrop-filter: none; -webkit-backdrop-filter: none;
    }
    /* neutralise desktop hover/focus reveal on mobile (same specificity trap as level 2) */
    .subnav-item.has-sub:hover .subsubnav,
    .subnav-item.has-sub:focus-within .subsubnav{ transform: none; left: auto; }
    .subnav-item.is-open > .subsubnav{ display: flex; }
    .subnav-item.is-open .sub-toggle-2 .caret{ transform: rotate(180deg); }
    .subsubnav a{
      padding: 13px 0 13px 34px; width: 100%; white-space: normal;
      font-size: 14px; color: rgba(255,255,255,0.72);
      border-bottom: 1px solid rgba(216,181,133,0.08);
    }
    .subsubnav a:last-child{ border-bottom: 0; }
    /* Hero: let content flow naturally, no absolute positioning */
    .frame, .frame-narrow, .about-frame, .contact-frame, .footer-frame, .services-frame, .faq-list, .accreds-frame, .orgs-frame, .journal-frame{ padding-left: 36px; padding-right: 36px; }
    .hero{ height: auto; min-height: 100vh; min-height: 100svh; }
    .hero-img{ position: absolute; inset: 0; }
    .hero-content{
      position: relative;
      grid-template-columns: 1fr;
      gap: 40px;
      padding: 140px 36px 60px;
      align-items: start;
      /* QA 2026-06-18 (Nick mobile sweep): base .hero-content is align-content:center;
         on mobile the tall stacked content (kicker+H1+standfirst+CTAs+form) exceeds the
         viewport, so centering pushed the top (the "Painters & Decorators since 1959"
         kicker) up against the header, eating the top padding. Start from the top so the
         140px top padding holds and there's clear space below the header. */
      align-content: start;
    }
    .hero h1{ font-size: clamp(38px, 8.5vw, 62px); } /* QA 2026-06-18 (Nick mobile sweep): home H1 2px smaller on mobile/tablet */
    .hero-form{ padding: 28px 22px 24px; }
    .work-head{ grid-template-columns: 1fr; gap: 28px; }
    .work-head-right{ text-align: left; margin-left: 0; }
    .work-grid{ grid-template-columns: 1fr; gap: 32px; }
    .services-grid > .service-card{ flex-basis: calc((100% - 40px) / 2); }
    .accreds-grid{ grid-template-columns: repeat(2, 1fr); }
    .orgs-grid{ grid-template-columns: repeat(3, 1fr); }
    .journal-head{ grid-template-columns: 1fr; gap: 28px; }
    .journal-head-right{ text-align: left; margin-left: 0; }
    .journal-grid{ grid-template-columns: repeat(2, 1fr); }
    .about-frame, .contact-frame{ grid-template-columns: 1fr; gap: 56px; padding: 0 36px; }
    .footer-regions{ grid-template-columns: repeat(2, 1fr); gap: 36px; }
    .footer-offices{ grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .footer-bottom{ grid-template-columns: 1fr; gap: 20px; }
    .footer-legal{ text-align: left; }
  }
  @media (max-width: 640px){
    .head{ padding: 14px 20px; }
    /* Hide the award epithet on phones: with white-space:nowrap it overflows the
       viewport and collides with the hamburger. Non-essential chrome on mobile. */
    .head-epithet{ display: none; }
    .head-logo img{ height: 72px; }
    .frame, .frame-narrow, .about-frame, .contact-frame, .footer-frame, .services-frame, .faq-list, .accreds-frame, .orgs-frame, .journal-frame{ padding-left: 22px; padding-right: 22px; }
    .hero-content{ padding: 140px 22px 50px; } /* QA 2026-06-18 (Nick mobile sweep): was 100px; header is ~101px so the kicker touched it — clear it with breathing room */
    .intro, .work, .services, .places, .about, .pull, .contact, .faq, .accreds, .orgs, .journal{ padding: 90px 0; }
    /* BUG-3: give the paints strip symmetric side padding and tighten the marks so
       the label + brand list stay centred on narrow screens. */
    .paints{ padding: 60px 22px; }
    .paints .label{ display: block; text-align: center; }
    .paints-marks{ gap: 12px 18px; font-size: 18px; }
    .cta-band, .cta-banner{ padding: 80px 0; }
    .cta-band .cta-row, .cta-banner .cta-row{ flex-direction: column; align-items: stretch; gap: 14px; }
    .cta-band a.cta-primary, .cta-banner a.cta-primary{ text-align: center; padding: 16px 24px; }
    .cta-banner .inner{ padding: 0 22px; }
    .hero-form .field-row{ grid-template-columns: 1fr; gap: 8px; }
    .services-grid{ gap: 28px; }
    .services-grid > .service-card{ flex-basis: 100%; }
    .accreds-grid{ grid-template-columns: 1fr; gap: 16px; }
    .orgs-grid{ grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .journal-grid{ grid-template-columns: 1fr; gap: 36px; }
    .contact-form-lower .form-row{ grid-template-columns: 1fr; gap: 16px; }
    .contact-form-lower{ padding: 40px 30px 32px; }
    .footer{ padding: 80px 0 30px; }
    .footer-regions{ grid-template-columns: 1fr; gap: 36px; padding-bottom: 50px; }
    .footer-offices{ grid-template-columns: 1fr; gap: 28px; }
    /* QA 2026-06-19 (Nick mobile sweep): footer-bottom — centre the social row + legal
       block on phones (was left-aligned, looked off), and shrink the 7 icons + tighten the
       gap so they don't wrap the email icon onto a second line on narrow screens. */
    .footer-bottom{ text-align: center; }
    .footer-social{ justify-content: center; gap: 10px; }
    .footer-social a{ width: 36px; height: 36px; }
    .footer-social a svg{ width: 16px; height: 16px; }
    .footer-legal{ text-align: center; }
    .about-stamp{ width: 90px; height: 90px; top: -18px; left: -18px; }
    .hero-cta-row{ flex-direction: row; flex-wrap: wrap; align-items: center; gap: 16px 22px; }
    .hero-cta{ padding: 14px 22px; }
    .hero-cta.ghost{ padding: 14px 0; }
  }

  @keyframes fadeUp { from { opacity: 0; transform: translateY(20px);} to { opacity: 1; transform: translateY(0);} }
  @media (prefers-reduced-motion: no-preference){
    .hero-mark, .hero h1, .hero-stand, .hero-cta-row, .hero-form { animation: fadeUp 1.4s ease-out both; }
    .hero-mark{ animation-delay: 0.2s; }
    .hero h1{ animation-delay: 0.4s; }
    .hero-stand{ animation-delay: 0.6s; }
    .hero-cta-row{ animation-delay: 0.8s; }
    .hero-form{ animation-delay: 1.0s; }
  }

/* ===== Sitewide Awards Snippet — prominent dark band (sits between Intro and Featured Work) ===== */
.awards-snippet{
  padding: 100px 22px;
  text-align: center;
  background: var(--ink);
  color: #fff;
}
.awards-snippet .label{
  font-family: var(--body-font);
  font-size: 12px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 500;
  margin-bottom: 48px;
}
.awards-snippet-items{
  display: flex;
  flex-direction: column; /* one award per row, stacked + centred */
  align-items: center;
  gap: 40px;
  max-width: 1180px;
  margin: 0 auto 48px;
}
.awards-snippet-item{
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 2.6vw, 30px);
  color: #fff;
  line-height: 1.35;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.awards-snippet-item .name{
  /* keep long award names from orphaning their last word ("...of the / Year") */
  text-wrap: balance;
}
.awards-snippet-item .year{
  font-family: var(--body-font);
  font-style: normal;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: block;
}
.awards-snippet-item img{
  max-height: 60px;
  width: auto;
  display: inline-block;
}
.awards-snippet-divider{
  display: none; /* dots replaced by gap-based separation on dark bg */
}
.awards-snippet-link{
  display: inline-block;
  font-family: var(--body-font);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold-light);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 5px;
  transition: letter-spacing 0.3s, color 0.3s;
}
.awards-snippet-link:hover{
  letter-spacing: 0.42em;
  color: var(--gold);
}
@media (max-width: 1100px){
  .awards-snippet{ padding: 80px 36px; }
  .awards-snippet-items{ gap: 32px 40px; }
}
@media (max-width: 640px){
  .awards-snippet{ padding: 64px 22px; }
  .awards-snippet .label{ margin-bottom: 32px; font-size: 11px; letter-spacing: 0.4em; }
  .awards-snippet-items{ gap: 28px; flex-direction: column; align-items: center; margin-bottom: 36px; }
  .awards-snippet-item{ font-size: 21px; max-width: 32ch; }
}

/* Awards snippet trophy icon */
.awards-snippet-icon{
  width: 52px;
  height: 52px;
  color: var(--gold-light);
  margin: 0 auto 24px;
  display: block;
}
@media (max-width: 640px){
  .awards-snippet-icon{ width: 44px; height: 44px; margin-bottom: 20px; }
}

/* Organisations — composite logo strip (single image, greyscale + colour-on-hover) */
.orgs-composite{
  max-width: 1180px;
  margin: 40px auto 0;
  padding: 0 22px;
}
.orgs-composite img{
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(100%);
  opacity: 0.72;
  transition: filter 0.5s ease, opacity 0.5s ease;
}
.orgs-composite:hover img,
.orgs-composite img:hover{
  filter: grayscale(0%);
  opacity: 1;
}
@media (max-width: 640px){
  .orgs-composite{ padding: 0 12px; margin-top: 28px; }
}

/* Organisations — individual logo cells (greyscale + hover-to-colour). Applied when 2+ logos in gallery. */
.orgs-grid:has(.org-mark--logo){
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 56px;
  max-width: 1180px;
  margin: 40px auto 0;
}
.org-mark--logo{
  aspect-ratio: auto;
  background: transparent;
  border: 0;
  padding: 0;
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.org-mark--logo img{
  width: 100%;
  max-width: 200px;
  max-height: 96px;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: filter 0.45s ease, opacity 0.45s ease;
}
.org-mark--logo:hover img,
.org-mark--logo img:hover{
  filter: grayscale(0%);
  opacity: 1;
}
@media (max-width: 1100px){
  .orgs-grid:has(.org-mark--logo){ grid-template-columns: repeat(3, 1fr); gap: 32px 40px; }
}
@media (max-width: 640px){
  .orgs-grid:has(.org-mark--logo){ grid-template-columns: repeat(2, 1fr); gap: 28px 24px; }
  .org-mark--logo img{ max-height: 72px; }
}

/* ============================================================
   LOCATION TEMPLATE — added 2026-05-19 per design contract.
   ============================================================ */

/* 2. Trust strip */
.trust-strip{ background: var(--off-white, #f5f5f5); padding: 32px 0; border-bottom: 1px solid rgba(0,0,0,.06); }
.trust-row{ display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 28px; align-items: center; text-align: center; }
.trust-stat{ display: flex; flex-direction: column; gap: 4px; }
.trust-stat .num{ font-family: var(--display, "Fraunces", Georgia, serif); font-size: clamp(24px, 3vw, 32px); font-weight: 400; color: var(--ink, #111); letter-spacing: -0.01em; }
.trust-stat .num .num-suffix{ font-size: 0.65em; color: rgba(0,0,0,.5); font-weight: 300; letter-spacing: 0; }
.trust-stat .lbl{ font-family: var(--body-font, "Inter Tight", system-ui, sans-serif); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(0,0,0,.55); }

/* 3. Direct answer (AEO) — tuned 2026-05-20 late evening per Nick (font down, padding up) */
.direct-answer{ padding: 110px 0 100px; }
.direct-answer-lede{ font-family: var(--display, "Fraunces", Georgia, serif); font-size: clamp(17px, 1.5vw, 20px); line-height: 1.65; font-weight: 300; color: var(--ink, #111); max-width: 880px; margin: 0 auto; text-align: center; }

/* 5. Services list (compact linear, replaces homepage grid) */
/* Regional Hub intro (§5) — restructured 2026-05-20 late evening per Nick.
   2/3 text + 1/3 image split with CTA buttons (mirrors §10 about-region pattern).
   Scoped to .hub-main so the homepage .intro stays centered-narrow. */
/* Welcome moment — standalone label section sitting between Trust strip + Direct Answer.
   Gap rhythm: Trust → Welcome 160px (32 trust-bottom + 128 welcome-top), Welcome → DA 40px (40 welcome-bottom + 0 DA-top via sibling), DA → Intro 160px (80 DA-bottom + 80 Intro-top). */
.welcome{ padding: 128px 0 40px; background: var(--paper); text-align: center; }
.welcome .frame-narrow{ text-align: center; }
.welcome .label{ display: inline-block; margin: 0; }
.welcome + .direct-answer{ padding-top: 0; padding-bottom: 80px; }
:is(.hub-main, .location-main) .direct-answer + .intro{ padding-top: 80px; }

:is(.hub-main, .location-main) .intro{ padding: 110px 0; background: var(--paper); text-align: left; }
:is(.hub-main, .location-main) .intro > .frame-narrow{ max-width: 1320px; padding: 0 56px; }
:is(.hub-main, .location-main) .intro .intro-grid{ display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr); gap: 64px; align-items: start; }
:is(.hub-main, .location-main) .intro .intro-grid:not(:has(.intro-image)){ grid-template-columns: 1fr; max-width: 880px; }
:is(.hub-main, .location-main) .intro .intro-text .label{ display: inline-block; margin-bottom: 22px; }
:is(.hub-main, .location-main) .intro .intro-text h2{ font-family: var(--display, "Fraunces", Georgia, serif); font-weight: 300; font-size: clamp(30px, 3.4vw, 42px); line-height: 1.2; color: var(--ink, #111); max-width: 22ch; margin: 0 0 28px; letter-spacing: -0.012em; text-align: left; }
:is(.hub-main, .location-main) .intro .intro-text h2 em{ font-style: italic; color: var(--gold-deep, #b58d4e); }
:is(.hub-main, .location-main) .intro .intro-text p{ font-family: var(--body-font); font-size: 17px; line-height: 1.75; color: var(--body-soft, rgba(0,0,0,.72)); margin: 0 0 18px; max-width: 56ch; text-align: left; }
:is(.hub-main, .location-main) .intro .intro-text p:last-of-type{ margin-bottom: 0; }
:is(.hub-main, .location-main) .intro .intro-image img{ width: 100%; height: auto; aspect-ratio: 4/5; object-fit: cover; display: block; }
:is(.hub-main, .location-main) .intro .intro-cta-row{ display: flex; flex-wrap: wrap; gap: 16px; margin-top: 36px; }
:is(.hub-main, .location-main) .intro .intro-cta{ display: inline-block; padding: 12px 26px; border: 1px solid var(--gold-deep, #b58d4e); color: var(--gold-deep, #b58d4e); text-decoration: none; font-size: 14px; letter-spacing: 0.04em; transition: background .2s, color .2s; }
:is(.hub-main, .location-main) .intro .intro-cta:hover{ background: var(--gold-deep, #b58d4e); color: #fff; }
:is(.hub-main, .location-main) .intro .intro-cta--primary{ background: var(--gold-deep, #b58d4e); color: #fff; }
:is(.hub-main, .location-main) .intro .intro-cta--primary:hover{ background: var(--ink, #111); border-color: var(--ink, #111); }
@media (max-width: 880px){
  :is(.hub-main, .location-main) .intro .intro-grid{ grid-template-columns: 1fr; gap: 40px; }
  :is(.hub-main, .location-main) .intro .intro-image{ order: -1; }
}

/* Pull quote link: sitewide homepage rule at line ~688 governs. No regional-hub override here. */

/* Services list — count-aware grid 2026-05-20 evening per Nick:
   replaces single-column "row" treatment that left a 50% white gutter on right.
   Default 3-col (works for 6 services). 4 services → 2-col (2×2). 5 services stay 3-col (3+2). */
.services-list{
  list-style: none;
  padding: 0;
  margin: 56px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 40px;
}
.services-list:has(> :nth-child(4):last-child){ grid-template-columns: repeat(2, 1fr); }
.services-list:has(> :nth-child(2):last-child){ grid-template-columns: repeat(2, 1fr); }
.service-row{
  display: grid;
  gap: 14px;
  padding: 28px 0 0;
  border: 0;
  border-top: 2px solid var(--gold-deep, #b58d4e);
  align-self: start;
}
.service-row:last-child{ border-bottom: 0; }
.service-row-head{ display: flex; flex-direction: column; gap: 8px; }
.service-row .kicker{ font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-deep, #b58d4e); font-weight: 500; }
.service-row h3{ font-family: var(--display, "Fraunces", Georgia, serif); font-size: clamp(20px, 1.6vw, 24px); font-weight: 400; margin: 0; color: var(--ink, #111); line-height: 1.25; }
.service-row h3 a{ color: inherit; text-decoration: none; border-bottom: 1px solid transparent; transition: border-color .2s; }
.service-row h3 a:hover{ border-bottom-color: var(--gold-deep, #b58d4e); }
.service-row p{ margin: 0; color: rgba(0,0,0,.7); font-size: 15px; line-height: 1.6; max-width: 38ch; }
@media (max-width: 960px){
  .services-list{ grid-template-columns: repeat(2, 1fr); gap: 40px 32px; }
}
@media (max-width: 600px){
  .services-list{ grid-template-columns: 1fr; gap: 32px; }
  .service-row p{ max-width: none; }
}

/* 6. Recent work grid */
.recent-work{ padding: 64px 0; background: #fff; }
/* QA 2026-06-12 (Aberfeldy row): cards-fill rule — auto-fit left orphan rows half-empty
   (6 cards = 4+2 with dead tracks). Template sets --work-cols; remainder cards grow. */
.recent-work-grid{ display: flex; flex-wrap: wrap; gap: 32px; margin-top: 40px; }
.recent-work-grid > *{ flex: 1 1 calc(100% / var(--work-cols, 4) - 32px); min-width: 0; }
@media (max-width: 1080px){ .recent-work-grid > *{ flex-basis: calc(50% - 32px); } }
@media (max-width: 640px){ .recent-work-grid > *{ flex-basis: 100%; } }
.recent-work-card{ display: flex; flex-direction: column; gap: 16px; }
.recent-work-card .img-wrap{ aspect-ratio: 4/3; overflow: hidden; background: var(--off-white, #f5f5f5); }
.recent-work-card .img-wrap img{ width: 100%; height: 100%; object-fit: cover; }
.recent-work-meta .street{ font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-deep, #b58d4e); margin-bottom: 4px; }
.recent-work-meta h3{ font-family: var(--display, "Fraunces", Georgia, serif); font-size: 20px; font-weight: 400; margin: 0 0 8px; }
.recent-work-meta .scope{ font-size: 14px; color: rgba(0,0,0,.6); font-style: italic; margin-bottom: 8px; }
.recent-work-meta p{ margin: 0; font-size: 14px; line-height: 1.55; color: rgba(0,0,0,.75); }

/* 7. About this place — 2-col grid with optional image */
.about-place{ padding: 64px 0; background: var(--off-white, #f5f5f5); }
.about-grid{ display: grid; grid-template-columns: 1fr; gap: 32px; align-items: start; }
.about-grid:has(.about-image){ grid-template-columns: minmax(0,1.4fr) minmax(0,1fr); }
.about-text h2{ font-family: var(--display, "Fraunces", Georgia, serif); font-size: clamp(24px, 3vw, 34px); font-weight: 400; line-height: 1.2; }
.about-text p{ line-height: 1.6; }
.about-image img{ width: 100%; height: auto; display: block; }
.about-meta{ display: grid; grid-template-columns: auto 1fr; gap: 8px 24px; margin-top: 32px; padding-top: 24px; border-top: 1px solid rgba(0,0,0,.08); font-size: 14px; }
.about-meta dt{ font-weight: 600; color: rgba(0,0,0,.6); white-space: nowrap; }
.about-meta dd{ margin: 0; color: rgba(0,0,0,.8); }

@media (max-width: 760px){ .about-grid:has(.about-image){ grid-template-columns: 1fr; } }

/* 8. Testimonials grid */
.testimonials{ padding: 64px 0; }
.testimonials-grid{ display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 32px; margin-top: 32px; }
.testimonial{ margin: 0; padding: 24px; background: var(--off-white, #f5f5f5); }
.testimonial blockquote{ font-family: var(--display, "Fraunces", Georgia, serif); font-size: 17px; line-height: 1.5; margin: 0 0 16px; quotes: "“" "”"; }
.testimonial blockquote::before{ content: open-quote; color: var(--gold-deep, #b58d4e); margin-right: 4px; }
.testimonial blockquote::after{ content: close-quote; color: var(--gold-deep, #b58d4e); margin-left: 4px; }
.testimonial figcaption{ display: flex; flex-direction: column; gap: 2px; font-size: 13px; }
.testimonial figcaption strong{ color: var(--ink, #111); }
.testimonial figcaption .proj{ color: rgba(0,0,0,.55); font-size: 12px; }
.testimonials-foot{ text-align: center; margin-top: 8px; }
.testimonials-foot .pull-link{ margin-top: 32px; }

/* 10. Coverage list */
.coverage{ padding: 48px 0 144px; }
.coverage-list{ list-style: none; padding: 0; margin: 24px 0 16px; display: flex; flex-wrap: wrap; gap: 12px; }
.coverage-list li a{ display: inline-block; padding: 10px 16px; border: 1px solid rgba(0,0,0,.15); border-radius: 999px; text-decoration: none; color: var(--ink, #111); font-size: 14px; transition: border-color .2s, color .2s; }
.coverage-list li a:hover{ border-color: var(--gold-deep, #b58d4e); color: var(--gold-deep, #b58d4e); }
.hub-back-link{ margin-top: 16px; }
.hub-back-link a{ font-size: 14px; color: var(--gold-deep, #b58d4e); text-decoration: none; border-bottom: 1px solid currentColor; }

/* CTA banner: sitewide homepage rule at line ~1241 governs. No regional-hub override here. */

/* Commercial block (dual-audience only — /city-of-london) */
.commercial-block{ padding: 56px 0; background: #fafafa; border-top: 1px solid rgba(0,0,0,.06); border-bottom: 1px solid rgba(0,0,0,.06); }
.commercial-block h2{ font-family: var(--display, "Fraunces", Georgia, serif); font-size: clamp(22px, 2.6vw, 28px); font-weight: 400; }


/* ============================================================
   REGIONAL HUB TEMPLATE — added 2026-05-19.
   Functional-minimum styling per [[prj49-design-deferred-to-T039]].
   ============================================================ */

/* 4. Dual-stream routing block */
/* Dual-stream — converted to light background 2026-05-20 late evening per Nick (was dark) */
.dual-stream{ padding: 96px 0; background: var(--off-white, #f5f5f5); color: var(--ink, #111); }
.dual-stream-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.dual-card{ position: relative; display: flex; flex-direction: column; background: #fff; overflow: hidden; border: 1px solid rgba(0,0,0,.06); }
.dual-card-img{ aspect-ratio: 16/9; background-size: cover; background-position: center; background-color: rgba(0,0,0,.04); }
.dual-card-body{ padding: 36px 32px 40px; display: flex; flex-direction: column; gap: 14px; }
.dual-card-body .kicker{ font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-deep, #b58d4e); font-weight: 500; }
.dual-card-body h2{ font-family: var(--display, "Fraunces", Georgia, serif); font-size: clamp(22px, 2.4vw, 28px); font-weight: 400; color: var(--ink, #111); margin: 0; line-height: 1.2; }
.dual-card-body p{ font-size: 15px; line-height: 1.6; color: rgba(0,0,0,.7); margin: 0; }
.dual-card-cta{ display: inline-block; margin-top: 12px; padding: 10px 22px; border: 1px solid var(--gold-deep, #b58d4e); color: var(--gold-deep, #b58d4e); background: transparent; text-decoration: none; font-size: 14px; letter-spacing: 0.04em; align-self: flex-start; transition: background .2s, color .2s; }
.dual-card-cta:hover{ background: var(--gold-deep, #b58d4e); color: #fff; }
@media (max-width: 760px){ .dual-stream-grid{ grid-template-columns: 1fr; } }

/* 7. Sub-locations grid — featured cards + chips */
.subs{ padding: 64px 0; }
.subs-featured-grid{ display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin-top: 56px; } /* QA 2026-06-11: more air under the "Places we cover" heading, sitewide */
.sub-card{ display: flex; flex-direction: column; background: var(--off-white, #f5f5f5); text-decoration: none; color: inherit; transition: transform .2s, box-shadow .2s; overflow: hidden; }
.sub-card:hover{ transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.08); }
.sub-card-img{ aspect-ratio: 4/3; background-size: cover; background-position: center; background-color: rgba(0,0,0,.05); }
.sub-card-body{ padding: 20px 22px; display: flex; flex-direction: column; gap: 6px; }
.sub-card-body .kicker{ font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-deep, #b58d4e); }
.sub-card-body h3{ font-family: var(--display, "Fraunces", Georgia, serif); font-size: 22px; font-weight: 400; color: var(--ink, #111); margin: 0; }
.sub-card-body .arrow{ font-size: 13px; color: rgba(0,0,0,.55); margin-top: 4px; }
.subs-chips-wrap{ margin-top: 40px; padding-top: 32px; border-top: 1px solid rgba(0,0,0,.08); }
.subs-chips-label{ font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(0,0,0,.55); margin-bottom: 16px; }
.subs-chips{ list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.subs-chips li a{ display: inline-block; padding: 8px 14px; border: 1px solid rgba(0,0,0,.15); border-radius: 999px; text-decoration: none; color: var(--ink, #111); font-size: 13px; transition: border-color .2s, color .2s; }
.subs-chips li a:hover{ border-color: var(--gold-deep, #b58d4e); color: var(--gold-deep, #b58d4e); }
.subs-foot{ margin-top: 24px; font-size: 14px; color: rgba(0,0,0,.6); font-style: italic; }

/* 9. About this region — reuses .about-grid pattern from Location, scoped to hub */
.about-region{ padding: 96px 0; background: var(--off-white, #f5f5f5); }
.about-region .about-grid{ display: grid; grid-template-columns: 1fr; gap: 32px; align-items: start; }
.about-region .about-grid:has(.about-image){ grid-template-columns: minmax(0,1.4fr) minmax(0,1fr); }
.about-region .about-text .label{ margin-bottom: 22px; }
.about-region .about-text h2{ font-family: var(--display, "Fraunces", Georgia, serif); font-size: clamp(28px, 3.2vw, 38px); font-weight: 400; line-height: 1.2; margin: 0 0 28px; }
.about-region .about-text p{ margin: 0 0 18px; line-height: 1.65; }
.about-region .about-text p:last-of-type{ margin-bottom: 0; }
.about-region .about-cta{ display: inline-block; margin-top: 28px; padding: 10px 22px; border: 1px solid var(--gold-deep, #b58d4e); color: var(--gold-deep, #b58d4e); text-decoration: none; font-size: 14px; letter-spacing: 0.04em; transition: background .2s, color .2s; }
.about-region .about-cta:hover{ background: var(--gold-deep, #b58d4e); color: #fff; }
@media (max-width: 760px){ .about-region .about-grid:has(.about-image){ grid-template-columns: 1fr; } }

/* Pull quote: sitewide homepage rules (lines ~657-700) govern. No regional-hub override here. */

/* 15. Regional contact */
.regional-contact{ padding: 56px 0; background: var(--ink, #111); color: #fff; }
.regional-contact-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.regional-contact-info .label{ color: var(--gold-light, #d6b582); }
.regional-contact-info h2{ font-family: var(--display, "Fraunces", Georgia, serif); color: #fff; font-size: clamp(22px, 2.4vw, 28px); font-weight: 400; margin: 8px 0 16px; }
.regional-contact-info .regional-phone{ font-family: var(--display, "Fraunces", Georgia, serif); font-size: 28px; color: var(--gold-light, #d6b582); text-decoration: none; }
.regional-contact-info address{ font-style: normal; color: rgba(255,255,255,.8); margin-top: 16px; line-height: 1.5; }
.regional-contact-map iframe{ display: block; width: 100%; }
@media (max-width: 760px){ .regional-contact-grid{ grid-template-columns: 1fr; } }


/* ============================================================
   REGIONAL HUB additions 2026-05-20 — cols-modifiers, cert block, hours
   ============================================================ */

/* Force-even featured grid — 3-col (6 items) or 4-col (8 items) */
.subs-featured-grid.cols-3{ grid-template-columns: repeat(3, 1fr); }
.subs-featured-grid.cols-4{ grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px){
  .subs-featured-grid.cols-3,
  .subs-featured-grid.cols-4{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px){
  .subs-featured-grid.cols-3,
  .subs-featured-grid.cols-4{ grid-template-columns: 1fr; }
}

/* FAQ heading — regional-hub template puts label + h2 bare inside .frame-narrow,
   sibling to .faq-list. Target only label + h2 directly so the list stays left-aligned.
   Added 2026-05-20 evening per Nick walkthrough. */
.faq > .frame-narrow > .label{ display: block; text-align: center; margin: 0 0 22px; }
.faq > .frame-narrow > h2{
  font-family: var(--display, "Fraunces", Georgia, serif);
  font-weight: 300;
  font-size: clamp(28px, 3.2vw, 38px);
  line-height: 1.2;
  color: var(--ink, #111);
  letter-spacing: -0.012em;
  text-align: center;
  margin: 0 auto 56px;
  max-width: 24ch;
}

/* Regional certifications block — redesigned 2026-05-20 evening per Nick:
   centered heading, larger type, image BELOW text (not beside) */
.regional-cert{ padding: 96px 0; background: #fff; border-bottom: 1px solid rgba(0,0,0,.06); border-top: 1px solid rgba(0,0,0,.06); }
.regional-cert-frame{ display: flex; flex-direction: column; align-items: center; text-align: center; gap: 32px; max-width: 760px; margin: 0 auto; padding: 0 24px; }
.regional-cert-text{ display: flex; flex-direction: column; align-items: center; gap: 18px; order: 1; }
.regional-cert-text h3{ font-family: var(--display, "Fraunces", Georgia, serif); font-size: clamp(28px, 3.2vw, 38px); font-weight: 400; margin: 0; color: var(--ink, #111); line-height: 1.2; }
.regional-cert-text p{ font-size: 16px; line-height: 1.65; color: rgba(0,0,0,.75); margin: 0; max-width: 60ch; }
.regional-cert-link{ font-size: 14px; color: var(--gold-deep, #b58d4e); text-decoration: none; border-bottom: 1px solid currentColor; letter-spacing: 0.02em; }
.regional-cert-logo{ order: 2; }
.regional-cert-logo img{ max-width: 200px; max-height: 200px; display: block; object-fit: contain; }

/* Regional contact — extras for hours + GBP link */
.regional-contact-hours{ margin-top: 20px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.12); }
.regional-contact-hours .label-small{ font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-light, #d6b582); margin-bottom: 6px; }
.regional-contact-hours .hours-list{ font-size: 14px; line-height: 1.5; color: rgba(255,255,255,.85); }
.regional-gbp-link{ display: inline-block; margin-top: 16px; font-size: 13px; color: var(--gold-light, #d6b582); text-decoration: none; border-bottom: 1px solid currentColor; }


/* === PRICING GUIDE (NEW 2026-05-21 — Regional Hub §8b) === */
.pricing-guide{ padding: 100px 0; background: var(--paper); }
.pricing-head{ text-align: center; margin-bottom: 56px; }
.pricing-head .label{ display: inline-block; }
.pricing-head h2{ margin: 0 auto 16px; max-width: 28ch; }
.pricing-head .lead{ font-size: 17px; line-height: 1.6; color: rgba(0,0,0,.6); max-width: 64ch; margin: 0 auto; }
.pricing-table-wrap{ max-width: 1080px; margin: 0 auto; overflow-x: auto; }
.pricing-table{ width: 100%; border-collapse: collapse; font-family: var(--body-font); font-size: 15px; line-height: 1.5; }
.pricing-table thead th{ text-align: left; padding: 16px 18px; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-deep); border-bottom: 2px solid var(--gold-deep); font-weight: 500; }
.pricing-table tbody td{ padding: 18px; border-bottom: 1px solid rgba(0,0,0,.08); vertical-align: top; color: var(--ink); }
.pricing-table tbody tr:last-child td{ border-bottom: 0; }
.pricing-table tbody td:nth-child(2){ font-family: var(--display); font-size: 17px; color: var(--gold-deep); white-space: nowrap; }
.pricing-table tbody td:nth-child(3){ white-space: nowrap; color: rgba(0,0,0,.7); }
.pricing-table tbody td:nth-child(4){ color: rgba(0,0,0,.6); font-size: 14px; }
.pricing-assumptions{ margin-top: 28px; font-size: 13px; color: rgba(0,0,0,.55); font-style: italic; line-height: 1.6; }
@media (max-width: 720px){
  .pricing-table thead{ display: none; }
  .pricing-table tbody td{ display: block; padding: 6px 0; border: 0; }
  .pricing-table tbody tr{ display: block; padding: 18px 0; border-bottom: 1px solid rgba(0,0,0,.08); }
  .pricing-table tbody td:before{ content: attr(data-lbl); display: block; font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 2px; }
}

/* === WHY CHOOSE US (NEW 2026-05-21 — Regional Hub §10b) === */
.why-choose{ padding: 100px 0; background: var(--paper); }
.why-head{ text-align: left; margin: 0 auto 52px; max-width: 1080px; }
.why-head .label{ display: inline-block; }
.why-head h2{ margin: 0; max-width: 34ch; }
/* L4 — left-aligned, airy: bare gold icon over heading + short underline. Matches pricing-guide width (1080px). */
.why-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 56px 80px; max-width: 1080px; margin: 0 auto; }
.why-item{ text-align: left; }
.why-ico{ display: block; margin-bottom: 16px; }
.why-ico .ico{ width: 32px; height: 32px; stroke: var(--gold-deep); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.why-item h3{ position: relative; font-family: var(--display); font-weight: 400; font-size: 22px; color: var(--ink); margin: 0 0 14px; padding-bottom: 14px; letter-spacing: -0.01em; line-height: 1.28; }
.why-item h3::after{ content: ""; position: absolute; left: 0; bottom: 0; width: 30px; height: 2px; background: var(--gold); }
.why-item p{ font-family: var(--body-font); font-size: 15.5px; line-height: 1.68; color: rgba(0,0,0,.72); margin: 0; max-width: 48ch; }
@media (max-width: 760px){ .why-grid{ grid-template-columns: 1fr; gap: 40px; } }

/* === OUR PROCESS (NEW 2026-05-21 — Regional Hub §10c) === */
.process{ padding: 100px 0; background: var(--off-white, #f5f5f5); }
.process-head{ text-align: center; margin-bottom: 56px; }
.process-head .label{ display: inline-block; }
.process-head h2{ margin: 0 auto; max-width: 26ch; }
.process-steps{ list-style: none; padding: 0; margin: 0 auto; max-width: 880px; counter-reset: process; }
.process-step{ display: grid; grid-template-columns: 80px 1fr; gap: 24px; padding: 28px 0; border-bottom: 1px solid rgba(0,0,0,.08); align-items: start; }
.process-step:last-child{ border-bottom: 0; }
.process-num{ font-family: var(--display); font-size: 38px; font-weight: 300; color: var(--gold-deep); line-height: 1; letter-spacing: -0.02em; }
.process-body h3{ font-family: var(--display); font-weight: 400; font-size: 22px; color: var(--ink); margin: 0 0 8px; letter-spacing: -0.01em; }
.process-body p{ font-family: var(--body-font); font-size: 15px; line-height: 1.6; color: rgba(0,0,0,.7); margin: 0; }

/* === SPECIALIST FINISH — Why-it-works-here + services intro (NEW 2026-05-23 — T044/T045) === */
.specialist-main .services-intro{ font-family: var(--body-font); font-size: 16px; line-height: 1.65; color: rgba(0,0,0,.72); margin: 12px auto 0; max-width: 60ch; }
/* QA 2026-06-12 (Lime Edinburgh + Commercial London rows): breathing room below the
   coverage H2 and below the services H2 (both were 0), and the specialist coverage→FAQ
   boundary brought back to the standard ~160px section rhythm. */
.specialist-main .coverage .coverage-head,
.commercial-main .coverage .coverage-head{ margin-bottom: 24px; }
.commercial-main .services .services-intro{ margin: 16px auto 0; }
.specialist-main .coverage{ padding-bottom: 72px; }
.specialist-main .faq{ padding-top: 80px; }
.why-here{ padding: 80px 0; background: var(--off-white, #f5f5f5); }
.why-here .label{ display: inline-block; margin-bottom: 12px; }
.why-here h2{ margin: 0 0 24px; max-width: 28ch; }
.why-here p{ font-family: var(--body-font); font-size: 16px; line-height: 1.7; color: rgba(0,0,0,.78); margin: 0 0 16px; }
/* QA 2026-06-12: cards-fill rule (same as .ops-grid) — auto-fit minmax left 4 items
   as 3+1 on the narrow frame; the template now sets --why-cols for an even fill. */
.why-here-items{ list-style: none; padding: 0; margin: 32px 0 0; display: flex; flex-wrap: wrap; gap: 32px 40px; }
.why-here-items li{ flex: 1 1 calc(100% / var(--why-cols, 2) - 40px); min-width: 0; }
@media (max-width: 720px){ .why-here-items li{ flex-basis: 100%; } }
.why-here-items li{ display: flex; flex-direction: column; gap: 8px; padding-top: 20px; border-top: 1px solid rgba(0,0,0,.12); }
.why-here-items li strong{ font-family: var(--display); font-weight: 400; font-size: 18px; color: var(--ink); letter-spacing: -0.01em; }
.why-here-items li span{ font-family: var(--body-font); font-size: 14.5px; line-height: 1.6; color: rgba(0,0,0,.7); }

/* === COMMERCIAL SECTOR — Hero-solo + Ops signals (NEW 2026-05-23 — T046/T047) === */
.hero--solo .hero-content{ grid-template-columns: minmax(0, 1fr) !important; }
.hero--solo .hero-content > div{ max-width: 720px; }
.hero--solo .hero-form{ display: none; }
.ops-signals{ padding: 100px 0; background: var(--paper, #fafafa); }
.ops-head{ text-align: center; margin-bottom: 56px; max-width: 1200px; margin-left: auto; margin-right: auto; padding: 0 56px; }
.ops-head .label{ display: inline-block; }
.ops-head h2{ margin: 0 auto; max-width: 28ch; }
/* Fixed even columns so the rows always fill side to side (8 items → 2 full rows of 4).
   Steps 4 → 2 → 1 so every breakpoint divides an even item count without a ragged last row. */
/* QA 2026-06-11: flex so cards always fill the row width — column count comes from
   the template via --ops-cols (8/4 items → 4 cols, 6/5/3 → 3); remainder cards grow. */
.ops-grid{ display: flex; flex-wrap: wrap; gap: 26px; max-width: 1200px; margin: 0 auto; padding: 0 56px; }
.ops-grid .ops-item{ flex: 1 1 calc(100% / var(--ops-cols, 4) - 26px); min-width: 0; }
.ops-item{ padding: 26px 24px; background: var(--white, #fff); border-top: 2px solid var(--gold-deep, #b58d4e); box-shadow: 0 1px 0 rgba(0,0,0,0.04); }
.ops-item h3{ font-family: var(--display); font-weight: 400; font-size: 17px; color: var(--ink); margin: 0 0 9px; letter-spacing: -0.01em; }
.ops-item p{ font-family: var(--body-font); font-size: 14px; line-height: 1.6; color: rgba(0,0,0,.72); margin: 0; }
@media (max-width: 1080px){ .ops-grid{ gap: 22px; } .ops-grid .ops-item{ flex-basis: calc(50% - 22px); } }
@media (max-width: 560px){ .ops-grid{ padding: 0 22px; } .ops-grid .ops-item{ flex-basis: 100%; } }

/* === BLOG POST + BLOG INDEX (NEW 2026-05-23 — T048/T049) === */
.blog-post-main .article{ padding-top: 56px; }
.article-hero{ max-width: 1080px; margin: 0 auto 48px; padding: 0 56px; }
.article-hero-img{ aspect-ratio: 16 / 9; overflow: hidden; margin-bottom: 32px; background: var(--off-white, #f5f5f5); }
.article-hero-img img{ width: 100%; height: 100%; object-fit: cover; display: block; }
.article-hero-text{ max-width: 720px; margin: 0 auto; text-align: center; }
.article-kicker{ font-family: var(--body-font); font-size: 13px; letter-spacing: .14em; color: var(--gold-deep, #b58d4e); text-transform: uppercase; margin-bottom: 16px; }
.article-title{ font-family: var(--display); font-weight: 700; font-size: clamp(32px, 4.2vw, 56px); color: var(--ink, #111); line-height: 1.1; margin: 0 0 24px; letter-spacing: -0.02em; }
.article-title em{ font-style: italic; color: var(--gold-deep, #b58d4e); font-weight: 400; }
.article-standfirst{ font-family: var(--display); font-style: italic; font-weight: 400; font-size: clamp(18px, 1.8vw, 22px); line-height: 1.5; color: rgba(0,0,0,.72); margin: 0; }
.article-body{ font-family: var(--body-font); font-size: 18px; line-height: 1.7; color: rgba(0,0,0,.82); padding: 0 56px; max-width: 720px; margin: 0 auto; }
.article-body p{ margin: 0 0 1.4em; }
.article-body h2{ font-family: var(--display); font-weight: 500; font-size: clamp(24px, 2.4vw, 32px); color: var(--ink); margin: 2em 0 .6em; letter-spacing: -0.01em; }
.article-body h3{ font-family: var(--display); font-weight: 500; font-size: 22px; color: var(--ink); margin: 1.6em 0 .4em; }
.article-body a{ color: var(--gold-deep, #b58d4e); text-decoration: underline; text-underline-offset: 2px; }
.article-body img{ max-width: 100%; height: auto; display: block; margin: 1.6em 0; }
.article-features{ max-width: 880px; margin: 64px auto 0; padding: 0 56px; display: flex; flex-direction: column; gap: 48px; }
.article-pull{ margin: 0; padding: 24px 0; max-width: 640px; align-self: center; text-align: center; }
.article-pull--ruled{ border-top: 1px solid var(--gold-deep, #b58d4e); border-bottom: 1px solid var(--gold-deep, #b58d4e); padding: 32px 0; }
.article-pull blockquote{ font-family: var(--display); font-style: italic; font-weight: 400; font-size: clamp(22px, 2.4vw, 28px); line-height: 1.4; color: var(--ink); margin: 0 0 12px; }
.article-pull figcaption{ font-family: var(--body-font); font-size: 14px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-deep, #b58d4e); }
.article-fimg{ margin: 0; }
.article-fimg img{ width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
.article-fimg figcaption{ font-family: var(--display); font-style: italic; font-size: 14px; color: var(--gold-deep, #b58d4e); margin-top: 12px; text-align: center; }
.article-related-cta{ margin: 80px auto; padding: 32px 56px; text-align: center; }
.article-related-cta .lead{ font-family: var(--display); font-style: italic; font-size: 20px; color: rgba(0,0,0,.78); margin: 0 0 20px; }
.related-posts{ padding: 100px 0; background: var(--off-white, #f5f5f5); }
.related-posts-head{ text-align: center; margin-bottom: 56px; padding: 0 56px; }
.related-posts-head .label{ display: inline-block; }
.related-posts-grid{ display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 32px; max-width: 1200px; margin: 0 auto; padding: 0 56px; }
.related-post-card{ background: var(--white, #fff); }
.related-post-link{ text-decoration: none; color: inherit; display: block; }
.related-post-card .img-wrap{ aspect-ratio: 4 / 3; overflow: hidden; }
.related-post-card .img-wrap img{ width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.related-post-link:hover .img-wrap img{ transform: scale(1.04); }
.related-post-body{ padding: 20px 24px 28px; }
.related-post-body .kicker{ font-family: var(--body-font); font-size: 12px; letter-spacing: .14em; color: var(--gold-deep, #b58d4e); text-transform: uppercase; margin-bottom: 8px; }
.related-post-body h3{ font-family: var(--display); font-weight: 500; font-size: 19px; color: var(--ink); margin: 0; letter-spacing: -0.01em; line-height: 1.3; }

/* Blog Index */
.blog-index-head{ padding: 120px 0 64px; text-align: center; }
.blog-index-head .label{ display: inline-block; margin-bottom: 16px; }
.blog-index-head .section-title{ max-width: 22ch; margin: 0 auto 20px; }
.blog-index-intro{ font-family: var(--display); font-style: italic; font-size: 20px; line-height: 1.5; color: rgba(0,0,0,.7); max-width: 56ch; margin: 0 auto; padding: 0 24px; }
.blog-featured{ padding: 0 0 80px; }
.blog-featured-card{ display: grid; grid-template-columns: minmax(0,1.2fr) minmax(0,1fr); gap: 56px; max-width: 1200px; margin: 0 auto; padding: 0 56px; text-decoration: none; color: inherit; align-items: center; }
@media (max-width: 768px){ .blog-featured-card{ grid-template-columns: 1fr; gap: 32px; } }
/* BUG-10: the featured card and grid sit inside .frame (which already supplies the
   responsive side gutter) but also carried their own 56px/22px padding — double
   inset, so blog content sat further in than the page header. Zero the inner
   padding on mobile so .frame owns the gutter and everything lines up; single
   column avoids the minmax(280px) overflow that pushed older cards off-centre. */
@media (max-width: 768px){
  .blog-featured-card{ padding: 0; }
  .blog-grid{ grid-template-columns: 1fr; padding: 0; gap: 32px; }
}
.blog-featured-card .img-wrap{ aspect-ratio: 4 / 5; overflow: hidden; }
.blog-featured-card .img-wrap img{ width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.blog-featured-card:hover .img-wrap img{ transform: scale(1.04); }
.blog-featured-text .kicker{ font-family: var(--body-font); font-size: 13px; letter-spacing: .14em; color: var(--gold-deep, #b58d4e); text-transform: uppercase; margin-bottom: 16px; }
.blog-featured-text h2{ font-family: var(--display); font-weight: 500; font-size: clamp(28px, 3.4vw, 40px); color: var(--ink); margin: 0 0 20px; letter-spacing: -0.02em; line-height: 1.15; }
.blog-featured-text p{ font-family: var(--body-font); font-size: 17px; line-height: 1.6; color: rgba(0,0,0,.72); margin: 0 0 24px; }
.blog-featured-text .read-more{ font-family: var(--body-font); font-size: 14px; letter-spacing: .12em; color: var(--gold-deep, #b58d4e); text-transform: uppercase; }
.blog-grid-section{ padding: 0 0 120px; }
.blog-grid{ display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; max-width: 1200px; margin: 0 auto; padding: 0 56px; }
.blog-card{ background: transparent; }
.blog-card-link{ text-decoration: none; color: inherit; display: block; }
.blog-card .img-wrap{ aspect-ratio: 4 / 3; overflow: hidden; margin-bottom: 16px; }
.blog-card .img-wrap img{ width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.blog-card-link:hover .img-wrap img{ transform: scale(1.04); }
.blog-card-body .kicker{ font-family: var(--body-font); font-size: 12px; letter-spacing: .14em; color: var(--gold-deep, #b58d4e); text-transform: uppercase; margin-bottom: 8px; }
.blog-card-body h3{ font-family: var(--display); font-weight: 500; font-size: 20px; color: var(--ink); margin: 0 0 8px; letter-spacing: -0.01em; line-height: 1.25; }
.blog-card-body p{ font-family: var(--body-font); font-size: 14.5px; line-height: 1.55; color: rgba(0,0,0,.7); margin: 0; }

/* === PORTFOLIO + CASE STUDY (NEW 2026-05-23 — T050) === */
.case-hero{ padding: 80px 0 0; }
.case-hero--16x9 .case-hero-img{ aspect-ratio: 16 / 9; }
.case-hero--4x5  .case-hero-img{ aspect-ratio: 4 / 5; max-width: 880px; margin-left: auto; margin-right: auto; }
.case-hero-img{ overflow: hidden; max-width: 1280px; margin: 0 auto 48px; padding: 0 56px; }
.case-hero-img img{ width: 100%; height: 100%; object-fit: cover; display: block; }
.case-hero-text{ text-align: center; max-width: 720px; margin: 0 auto 64px; padding: 0 56px; }
.case-kicker{ font-family: var(--body-font); font-size: 13px; letter-spacing: .14em; color: var(--gold-deep, #b58d4e); text-transform: uppercase; margin-bottom: 16px; }
.case-title{ font-family: var(--display); font-weight: 700; font-size: clamp(28px, 4vw, 48px); color: var(--ink); line-height: 1.1; margin: 0 0 20px; letter-spacing: -0.02em; }
.case-title em{ font-style: italic; color: var(--gold-deep, #b58d4e); font-weight: 400; }
.case-standfirst{ font-family: var(--display); font-style: italic; font-size: 19px; line-height: 1.5; color: rgba(0,0,0,.72); margin: 0; }
.case-meta{ padding: 48px 0 80px; background: var(--off-white, #f5f5f5); }
.case-meta-grid{ display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 32px 40px; margin: 0; }
.case-meta-grid > div{ display: flex; flex-direction: column; gap: 6px; }
.case-meta-grid dt{ font-family: var(--body-font); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-deep, #b58d4e); margin: 0; }
.case-meta-grid dd{ font-family: var(--body-font); font-size: 15.5px; line-height: 1.5; color: var(--ink); margin: 0; }
.case-meta-services{ grid-column: 1 / -1; }
.case-ba{ padding: 80px 0; }
.case-ba-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 1200px; margin: 0 auto; padding: 0 56px; }
@media (max-width: 768px){ .case-ba-grid{ grid-template-columns: 1fr; } }
.case-ba-grid figure{ margin: 0; }
.case-ba-grid img{ width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
.case-ba-grid figcaption{ font-family: var(--body-font); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-deep, #b58d4e); margin-top: 12px; text-align: center; }
.case-narrative{ padding: 80px 0; max-width: 720px; margin: 0 auto; }
.case-narr-lead{ font-family: var(--display); font-style: italic; font-weight: 400; font-size: clamp(20px, 2vw, 24px); line-height: 1.5; color: var(--ink); margin: 0 0 32px; padding: 0 56px; }
.case-narrative > .frame-narrow > *{ padding: 0 56px; }
.case-narrative > .frame-narrow p{ font-family: var(--body-font); font-size: 17px; line-height: 1.7; color: rgba(0,0,0,.82); margin: 0 0 1.4em; }
.case-gallery{ padding: 0 0 80px; }
.case-gal-full{ margin: 0 0 32px; }
.case-gal-full img{ width: 100%; aspect-ratio: 16 / 9; object-fit: cover; display: block; max-width: 1280px; margin: 0 auto; padding: 0 56px; box-sizing: border-box; }
.case-gal-full figcaption{ font-family: var(--display); font-style: italic; font-size: 14px; color: var(--gold-deep, #b58d4e); text-align: center; margin-top: 12px; padding: 0 56px; }
.case-gal-pair{ margin: 0 0 32px; max-width: 1280px; padding: 0 56px; margin-left: auto; margin-right: auto; }
.case-gal-pair-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 768px){ .case-gal-pair-grid{ grid-template-columns: 1fr; } }
.case-gal-pair img{ width: 100%; aspect-ratio: 4 / 5; object-fit: cover; display: block; }
.case-gal-pair figcaption{ font-family: var(--display); font-style: italic; font-size: 14px; color: var(--gold-deep, #b58d4e); text-align: center; margin-top: 12px; }
.case-related{ padding: 100px 0; background: var(--off-white, #f5f5f5); }
.case-related-head{ text-align: center; margin-bottom: 56px; padding: 0 56px; }
.case-related-head .label{ display: inline-block; }
.case-related-grid{ display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 32px; max-width: 1200px; margin: 0 auto; padding: 0 56px; }
.case-related-card{ background: var(--white, #fff); }
.case-related-link{ text-decoration: none; color: inherit; display: block; }
.case-related-card .img-wrap{ aspect-ratio: 4 / 5; overflow: hidden; }
.case-related-card .img-wrap img{ width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.case-related-link:hover .img-wrap img{ transform: scale(1.04); }
.case-related-body{ padding: 20px 24px 28px; }
.case-related-body .kicker{ font-family: var(--body-font); font-size: 12px; letter-spacing: .14em; color: var(--gold-deep, #b58d4e); text-transform: uppercase; margin-bottom: 6px; }
.case-related-body h3{ font-family: var(--display); font-weight: 500; font-size: 19px; color: var(--ink); margin: 0 0 8px; letter-spacing: -0.01em; line-height: 1.3; }
.case-related-body .tag{ font-family: var(--body-font); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: rgba(0,0,0,.6); }
.case-cta{ padding: 80px 0; text-align: center; }
.portfolio-main{ }
.portfolio-head{ padding: 120px 0 64px; text-align: center; }
.portfolio-head .label{ display: inline-block; margin-bottom: 16px; }
.portfolio-head .section-title{ max-width: 22ch; margin: 0 auto 20px; }
.portfolio-intro{ font-family: var(--display); font-style: italic; font-size: 20px; line-height: 1.5; color: rgba(0,0,0,.7); max-width: 56ch; margin: 0 auto; padding: 0 24px; }
.portfolio-grid-section{ padding: 0 0 120px; }
.portfolio-grid{ display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; max-width: 1200px; margin: 0 auto; padding: 0 56px; }
.portfolio-card{ background: transparent; }
.portfolio-card-link{ text-decoration: none; color: inherit; display: block; }
.portfolio-card .img-wrap{ aspect-ratio: 4 / 5; overflow: hidden; margin-bottom: 16px; }
.portfolio-card .img-wrap img{ width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.portfolio-card-link:hover .img-wrap img{ transform: scale(1.04); }
.portfolio-card-body .kicker{ font-family: var(--body-font); font-size: 12px; letter-spacing: .14em; color: var(--gold-deep, #b58d4e); text-transform: uppercase; margin-bottom: 8px; }
.portfolio-card-body h3{ font-family: var(--display); font-weight: 500; font-size: 20px; color: var(--ink); margin: 0 0 6px; letter-spacing: -0.01em; line-height: 1.25; }
.portfolio-card-body h3 em{ font-style: italic; color: var(--gold-deep, #b58d4e); font-weight: 400; }
.portfolio-card-body .tag{ font-family: var(--body-font); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: rgba(0,0,0,.6); }
.portfolio-empty{ padding: 120px 0; text-align: center; }
.portfolio-empty p{ font-family: var(--display); font-style: italic; font-size: 20px; color: rgba(0,0,0,.6); }
/* Portfolio gallery — primary view (matches existing IONOS gallery layout) */
.portfolio-gallery-section{ padding: 0 0 100px; }
.portfolio-gallery-grid{ display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; max-width: 1400px; margin: 0 auto; padding: 0 56px; }
.portfolio-gallery-item{ margin: 0; overflow: hidden; background: var(--off-white, #f5f5f5); }
.portfolio-gallery-item img{ width: 100%; aspect-ratio: 4 / 5; object-fit: cover; display: block; transition: transform .5s ease; }
.portfolio-gallery-item:hover img{ transform: scale(1.04); }
.portfolio-gallery-item figcaption{ font-family: var(--body-font); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-deep, #b58d4e); padding: 10px 4px 0; }
/* Portfolio case studies — secondary cluster below the gallery */
.portfolio-cases-section{ padding: 80px 0 120px; background: var(--off-white, #f5f5f5); }
.portfolio-cases-head{ text-align: center; margin-bottom: 56px; padding: 0 56px; }
.portfolio-cases-head .label{ display: inline-block; margin-bottom: 12px; }
.portfolio-cases-head .section-title{ max-width: 24ch; margin: 0 auto; }

/* === AWARDS PAGE (NEW 2026-05-23 — T161) === */
.awards-main{ background: var(--paper, #fafafa); }
.awards-hero{ padding: 120px 0 64px; text-align: center; }
.awards-hero .label{ display: inline-block; margin-bottom: 16px; }
.awards-title{ font-family: var(--display); font-weight: 700; font-size: clamp(36px, 5vw, 64px); color: var(--ink); line-height: 1.1; margin: 0 auto 24px; max-width: 22ch; letter-spacing: -0.02em; }
.awards-title em{ font-style: italic; color: var(--gold-deep, #b58d4e); font-weight: 400; }
.awards-standfirst{ font-family: var(--display); font-style: italic; font-size: 20px; line-height: 1.5; color: rgba(0,0,0,.7); max-width: 56ch; margin: 0 auto; padding: 0 24px; }
/* Optional hero background image (empty field = solid paper hero above) */
.awards-hero--image{ position: relative; background-color: var(--ink); background-size: cover; background-position: center; background-repeat: no-repeat; padding: 140px 0 84px; }
.awards-hero--image .awards-hero-overlay{ position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.6) 0%, rgba(0,0,0,.48) 45%, rgba(0,0,0,.68) 100%); z-index: 0; }
.awards-hero--image .frame-narrow{ position: relative; z-index: 1; }
.awards-hero--image .label{ color: var(--gold); }
.awards-hero--image .awards-title{ color: #fff; }
.awards-hero--image .awards-title em{ color: var(--gold); }
.awards-hero--image .awards-standfirst{ color: rgba(255,255,255,.85); }
.awards-list-section{ padding: 64px 0 100px; }
.awards-list{ list-style: none; padding: 0; margin: 0; max-width: 880px; margin-left: auto; margin-right: auto; padding: 0 56px; }
.awards-list-item{ display: grid; grid-template-columns: 200px 1fr; gap: 40px; padding: 32px 0; border-bottom: 1px solid rgba(0,0,0,.1); align-items: baseline; }
.awards-list-item:last-child{ border-bottom: 0; }
@media (max-width: 768px){ .awards-list-item{ grid-template-columns: 1fr; gap: 12px; } }
.awards-list-meta{ display: flex; flex-direction: column; gap: 6px; }
.awards-body{ font-family: var(--body-font); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-deep, #b58d4e); }
.awards-year{ font-family: var(--body-font); font-weight: 400; font-size: 15px; color: rgba(0,0,0,.6); }
.awards-list-logo{ max-width: 56px; max-height: 56px; object-fit: contain; margin-bottom: 12px; }
.awards-name{ font-family: var(--display); font-weight: 700; font-size: 26px; color: var(--ink); margin: 0 0 8px; letter-spacing: -0.01em; line-height: 1.2; }
.awards-context{ font-family: var(--body-font); font-size: 16px; line-height: 1.6; color: rgba(0,0,0,.72); margin: 0; }
.awards-empty{ padding: 100px 0; text-align: center; }
.awards-empty p{ font-family: var(--display); font-style: italic; font-size: 20px; color: rgba(0,0,0,.6); }
.awards-accreds{ padding: 100px 0; background: var(--off-white, #f5f5f5); }
.awards-accreds-head{ text-align: center; margin-bottom: 56px; padding: 0 56px; }
.awards-accreds-head .label{ display: inline-block; margin-bottom: 12px; }
.awards-accreds-head .section-title{ max-width: 24ch; margin: 0 auto 16px; }
.awards-accreds-head .section-title em{ font-style: italic; color: var(--gold-deep, #b58d4e); font-weight: 400; }
.awards-accreds-head .lead{ font-family: var(--display); font-style: italic; font-size: 17px; color: rgba(0,0,0,.6); margin: 0; }
.awards-accreds-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; max-width: 1200px; margin: 0 auto; padding: 0 56px; }
@media (max-width: 980px){ .awards-accreds-grid{ grid-template-columns: repeat(2, 1fr); } }
/* QA 2026-06-18 (Nick mobile sweep): the grid sits inside .frame, which already
   provides side gutters, so its own 0 56px doubled up — on a phone that left the
   accreditation cards squeezed narrow. Drop the grid's own side padding on mobile
   and let .frame (22px) set the gutter. */
@media (max-width: 620px){ .awards-accreds-grid{ grid-template-columns: 1fr; padding-left: 0; padding-right: 0; } }
.awards-accred-card{ background: var(--white, #fff); padding: 28px 28px; border-left: 3px solid var(--gold-deep, #b58d4e); }
.awards-accred-card .abbr{ font-family: var(--display); font-weight: 700; font-size: 22px; color: var(--ink); margin-bottom: 4px; }
.awards-accred-card .name{ font-family: var(--body-font); font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-deep, #b58d4e); margin-bottom: 12px; }
.awards-accred-card .ctx{ font-family: var(--body-font); font-size: 14.5px; line-height: 1.6; color: rgba(0,0,0,.72); margin: 0; }
.awards-pl{ padding: 80px 0; }
.awards-pl-card{ padding: 32px 56px; background: var(--white, #fff); text-align: center; max-width: 720px; margin: 0 auto; }
.awards-pl-card .label{ display: inline-block; margin-bottom: 12px; }
.awards-pl-card p{ font-family: var(--display); font-style: italic; font-size: 18px; line-height: 1.55; color: rgba(0,0,0,.78); margin: 0; }
.awards-pl-card p strong{ font-style: normal; font-weight: 700; color: var(--ink); }
.awards-cta{ padding: 80px 0 120px; text-align: center; }
.awards-cta .lead{ font-family: var(--display); font-style: italic; font-size: 22px; color: rgba(0,0,0,.78); margin: 0 0 24px; }

/* === KEY POINTS (Service CPT — alternating image+text rows) =========================
   Added 2026-05-29 (Option C intro restructure for Service CPT).
   Revised 2026-05-29 late — make text-only rows ALSO alternate left/right
   so visual rhythm holds before imagery attaches.
   Sits between .intro (H2 + paragraph) and .ops-signals (What we cover).
   Grid: always 2 columns (1fr 1fr). Text always sits in one half; the other
   half holds the image (or stays empty when no image is attached, so the
   alternation reads even on text-only rows).
   Scoped to .service-main so it cannot bleed into other templates. */
.service-main .key-points{ padding: 80px 0 32px; background: var(--paper); }
.service-main .key-point{ padding: 32px 0; }
/* QA 2026-06-16 (Nick, communal-stair): the first key-point heading sat too far
   below the intro — section padding-top (80px) + the row's own 32px stacked. Drop
   the first row's top padding so the heading reads as part of the flow. */
.service-main .key-points > .key-point:first-of-type{ padding-top: 0; }
.service-main .key-point + .key-point{ padding-top: 56px; }
.service-main .key-point-inner{
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 80px;
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 56px;
}
/* image-right: text in left column, image in right column.
   QA 2026-06-12: both children pinned to grid-row 1 — the image renders before
   the text in the DOM, and grid auto-placement cannot move backwards, so on
   image-right rows the col-1 text otherwise drops to an implicit second row
   below the image (the "key points alignment" regression on the 8 service pages). */
.service-main .key-point--image-right .key-point-text { grid-column: 1; grid-row: 1; }
.service-main .key-point--image-right .key-point-image{ grid-column: 2; grid-row: 1; }
/* image-left: image in left column, text in right column */
.service-main .key-point--image-left .key-point-image { grid-column: 1; grid-row: 1; }
.service-main .key-point--image-left .key-point-text  { grid-column: 2; grid-row: 1; }
/* QA 2026-06-11: text-only rows no longer reserve an empty column (Nick veto) —
   they render as a single centred text band. Adding an image to the row restores
   the two-column alternating layout automatically. */
.service-main .key-point--text-left  .key-point-inner,
.service-main .key-point--text-right .key-point-inner{ grid-template-columns: minmax(0, 1fr); max-width: 880px; }
.service-main .key-point--text-left  .key-point-text,
.service-main .key-point--text-right .key-point-text{ grid-column: 1; }

.service-main .key-point-image img{
  width: 100%; height: auto;
  aspect-ratio: 4/5; object-fit: cover;
  display: block;
}
.service-main .key-point-text h3{
  font-family: var(--display, "Fraunces", Georgia, serif);
  font-weight: 300;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.25;
  color: var(--ink, #111);
  max-width: 22ch;
  margin: 0 0 16px; /* QA 2026-06-16: tightened under-heading gap (was 22px) */
  letter-spacing: -0.01em;
}
.service-main .key-point-text h3 em{ font-style: italic; color: var(--gold-deep, #b58d4e); }
.service-main .key-point-text p{
  font-family: var(--body-font);
  font-size: 17px;
  line-height: 1.75;
  color: var(--body-soft, rgba(0,0,0,.72));
  margin: 0 0 18px;
}
.service-main .key-point-text p:last-of-type{ margin-bottom: 0; }
.service-main .key-point-text strong{ color: var(--ink, #111); font-weight: 600; }
@media (max-width: 880px){
  .service-main .key-point-inner{ grid-template-columns: 1fr; gap: 32px; padding: 0 22px; }
  /* QA 2026-06-18 (Nick mobile sweep): the desktop variant rules
     (.key-point--image-right .key-point-image etc., specificity 0,3,0) out-specify
     a plain .key-point-image reset (0,2,0), so on mobile the image kept grid-column:2
     in a now single-column grid — pushed to a zero-width implicit column and not shown
     (hit the image-right rows). Reset on the SAME compound selectors so the stack wins. */
  .service-main .key-point--image-right .key-point-text,
  .service-main .key-point--image-right .key-point-image,
  .service-main .key-point--image-left .key-point-text,
  .service-main .key-point--image-left .key-point-image,
  .service-main .key-point-text,
  .service-main .key-point-image{ grid-column: 1; grid-row: auto; }
}

/* Editorial split layout for imageless key points: heading left / body right, full-width
   rows with hairline dividers. Replaces the monotonous empty-half text blocks that the
   alternating image/text variant degrades to when no imagery is attached. */
.service-main .key-points--split{ padding: 96px 0; }
.service-main .kp-split-inner{ max-width: 1180px; margin: 0 auto; padding: 0 56px; }
.service-main .kp-row{
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.5fr);
  gap: 20px 64px;
  padding: 38px 0;
  border-top: 1px solid rgba(181,141,78,0.30);
  align-items: start;
}
.service-main .kp-row:last-child{ border-bottom: 1px solid rgba(181,141,78,0.30); }
.service-main .kp-row-head{
  font-family: var(--display, "Fraunces", Georgia, serif);
  font-weight: 300;
  font-size: clamp(21px, 1.9vw, 27px);
  line-height: 1.22;
  color: var(--ink, #111);
  margin: 0;
  letter-spacing: -0.01em;
  max-width: 18ch;
}
.service-main .kp-row-head em{ font-style: italic; color: var(--gold-deep, #b58d4e); }
.service-main .kp-row-body p{
  font-family: var(--body-font);
  font-size: 16.5px;
  line-height: 1.72;
  color: var(--body-soft, rgba(0,0,0,.72));
  margin: 0 0 14px;
  max-width: 62ch;
}
.service-main .kp-row-body p:last-child{ margin-bottom: 0; }
.service-main .kp-row-body strong{ color: var(--ink, #111); font-weight: 600; }
@media (max-width: 760px){
  .service-main .key-points--split{ padding: 64px 0; }
  .service-main .kp-split-inner{ padding: 0 22px; }
  .service-main .kp-row{ grid-template-columns: 1fr; gap: 10px; padding: 28px 0; }
  .service-main .kp-row-head{ max-width: none; }
}

/* === UTILITY PAGES (about / accreditations / areas-covered / our-services /
   testimonials) + LEGAL prose ========================================================
   Added 2026-06-02 (W3 utility-page sprint). Paper-background, no-hero pages.
   Reuses .trust-strip, .awards-accreds*, .awards-pl, .cta-banner, .coverage-list. */

.util-main{ background: var(--paper); }

/* Shared paper hero */
.util-hero{ padding: 128px 0 56px; text-align: center; }
.util-hero .label{ display: inline-block; margin-bottom: 16px; }
.util-title{
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.04;
  color: var(--ink);
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144;
  margin: 0;
}
.util-standfirst{
  font-family: var(--display);
  font-style: italic;
  font-size: 20px;
  line-height: 1.5;
  color: var(--muted);
  max-width: 60ch;
  margin: 22px auto 0;
  padding: 0 24px;
}
/* Optional hero background image (empty field = solid paper hero above) */
.util-hero--image{ position: relative; background-color: var(--ink); background-size: cover; background-position: center; background-repeat: no-repeat; padding: 148px 0 76px; }
.util-hero--image .util-hero-overlay{ position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.6) 0%, rgba(0,0,0,.48) 45%, rgba(0,0,0,.68) 100%); z-index: 0; }
.util-hero--image .frame-narrow{ position: relative; z-index: 1; }
.util-hero--image .label{ color: var(--gold); }
.util-hero--image .util-title{ color: #fff; }
.util-hero--image .util-standfirst{ color: rgba(255,255,255,.85); }

/* Lead / prose (shared with legal pages) */
.util-lead{ padding: 8px 0 0; }
.util-prose-section{ padding: 64px 0 24px; }
.legal-header{ padding: 120px 0 8px; text-align: center; }
.legal-header .legal-title{
  font-family: var(--display); font-weight: 300;
  font-size: clamp(34px, 4vw, 52px); line-height: 1.06;
  color: var(--ink); letter-spacing: -0.018em; margin: 0;
}
.legal-header .legal-updated{ font-family: var(--body-font); font-size: 13px; letter-spacing: .04em; color: var(--muted); margin: 14px 0 0; }
.legal-body{ padding: 48px 0 120px; }
.legal-prose{ font-family: var(--body-font); font-size: 17px; line-height: 1.75; color: var(--body-soft); }
.legal-prose h2{
  font-family: var(--display); font-weight: 400;
  font-size: clamp(22px, 2.4vw, 30px); line-height: 1.25;
  color: var(--ink); letter-spacing: -0.01em;
  margin: 48px 0 18px;
}
.legal-prose h2:first-child{ margin-top: 0; }
.legal-prose h3{ font-family: var(--display); font-weight: 400; font-size: 20px; color: var(--ink); margin: 32px 0 14px; }
.legal-prose p{ margin: 0 0 18px; }
.legal-prose ul{ margin: 0 0 18px; padding-left: 22px; }
.legal-prose li{ margin: 0 0 10px; line-height: 1.65; }
.legal-prose a{ color: var(--gold-deep); text-decoration: underline; text-underline-offset: 2px; }
.legal-prose a:hover{ color: var(--ink); }
.legal-prose strong{ color: var(--ink); font-weight: 600; }

/* About — accreditation strip */
.util-accred-strip{ padding: 64px 0 96px; text-align: center; }
.util-accred-strip .label{ display: inline-block; margin-bottom: 20px; }
.util-accred-row{
  list-style: none; padding: 0; margin: 0 auto 28px;
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; max-width: 900px;
}
.util-accred-row li{
  font-family: var(--body-font); font-size: 13px; font-weight: 600;
  letter-spacing: .04em; color: var(--ink-soft);
  padding: 8px 16px; border: 1px solid var(--rule-ink); border-radius: 999px;
}

/* Areas We Cover — region directory */
.areas-directory{ padding: 40px 0 96px; }
.areas-block{ padding: 40px 0; border-top: 1px solid var(--rule-ink); }
.areas-block:first-child{ border-top: none; }
.areas-block-head{ display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 16px 32px; margin-bottom: 22px; }
.areas-region{
  font-family: var(--display); font-weight: 300;
  font-size: clamp(26px, 3vw, 36px); line-height: 1.1;
  color: var(--ink); letter-spacing: -0.015em; margin: 0;
}
.areas-hubs{ display: flex; flex-wrap: wrap; gap: 8px 24px; }
.areas-hub-link{
  font-family: var(--body-font); font-size: 13px; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase; text-decoration: none;
  color: var(--gold-deep); transition: color .2s;
}
.areas-hub-link:hover{ color: var(--ink); }
.areas-chips{ margin-top: 8px; }

/* Our Services — groups + cards */
.svc-group{ padding: 72px 0; }
.svc-group:nth-of-type(even){ background: var(--taupe); }
.svc-group-head{ text-align: center; margin-bottom: 48px; }
.svc-group-head .label{ display: inline-block; margin-bottom: 14px; }
.svc-group-head .section-title{ font-size: clamp(30px, 3.4vw, 44px); }
/* Accreditations page: even 3-up rows (9 cards -> 3+3+3), scoped so the
   Awards page accreds grid is unaffected. */
.util-accreds .awards-accreds-grid{ grid-template-columns: repeat(3, 1fr); }
@media (max-width: 980px){ .util-accreds .awards-accreds-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px){ .util-accreds .awards-accreds-grid{ grid-template-columns: 1fr; padding-left: 0; padding-right: 0; } }
/* Alternating image+text feature rows */
.svc-features{ display: flex; flex-direction: column; gap: 24px; max-width: 1200px; margin: 0 auto; }
.svc-feature{
  display: grid;
  grid-template-columns: 1.12fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 24px 0;
}
.svc-feature--left  .svc-feature-media{ grid-column: 1; grid-row: 1; }
.svc-feature--left  .svc-feature-text { grid-column: 2; grid-row: 1; }
.svc-feature--right { grid-template-columns: 1fr 1.12fr; }
.svc-feature--right .svc-feature-text { grid-column: 1; grid-row: 1; }
.svc-feature--right .svc-feature-media{ grid-column: 2; grid-row: 1; }

.svc-feature-media img{
  width: 100%; aspect-ratio: 3/2; object-fit: cover; display: block;
}
/* Typographic panel shown until a hero photo is attached */
.svc-feature-tile{
  display: flex; align-items: center; justify-content: center;
  aspect-ratio: 3/2; padding: 32px; text-align: center; text-decoration: none;
  transition: filter .25s;
}
.svc-feature-tile span{
  font-family: var(--display); font-weight: 300; font-style: italic;
  font-size: clamp(22px, 2.4vw, 30px); line-height: 1.2; letter-spacing: -0.01em;
}
.svc-feature-tile:hover{ filter: brightness(1.04); }
.svc-feature.tone-taupe .svc-feature-tile{ background: var(--taupe-deep); }
.svc-feature.tone-taupe .svc-feature-tile span{ color: var(--ink-soft); }
.svc-feature.tone-ink   .svc-feature-tile{ background: var(--ink); }
.svc-feature.tone-ink   .svc-feature-tile span{ color: var(--gold-light); }
.svc-feature.tone-gold  .svc-feature-tile{ background: var(--gold); }
.svc-feature.tone-gold  .svc-feature-tile span{ color: var(--ink); }

.svc-feature-title{
  font-family: var(--display); font-weight: 300;
  font-size: clamp(26px, 3vw, 38px); line-height: 1.12; color: var(--ink);
  letter-spacing: -0.015em; margin: 0 0 18px;
}
.svc-feature-ex{ font-family: var(--body-font); font-size: 16px; line-height: 1.7; color: var(--body-soft); margin: 0 0 24px; max-width: 46ch; }
.svc-feature-link{
  font-family: var(--body-font); font-size: 12px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; color: var(--gold-deep);
  text-decoration: none; border-bottom: 1px solid var(--rule-ink); padding-bottom: 4px;
  transition: color .2s, border-color .2s;
}
.svc-feature-link:hover{ color: var(--ink); border-color: var(--gold); }
/* BUG-1: location link strip beneath a category row (kitchen / lime / venetian) */
.svc-feature-locations{ margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--rule-ink); }
.svc-feature-locations-label{
  display: block; font-family: var(--body-font); font-size: 11px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: var(--body-soft); margin-bottom: 10px;
}
.svc-feature-locations ul{ list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px 18px; }
.svc-feature-locations li{ position: relative; }
.svc-feature-locations li + li::before{ content: "·"; position: absolute; left: -11px; color: var(--gold); opacity: .6; }
.svc-feature-locations a{
  font-family: var(--body-font); font-size: 14px; line-height: 1.5; color: var(--ink);
  text-decoration: none; border-bottom: 1px solid transparent; transition: border-color .2s, color .2s;
}
.svc-feature-locations a:hover{ color: var(--gold-deep); border-color: var(--gold); }
@media (max-width: 860px){
  .svc-feature, .svc-feature--right{ grid-template-columns: 1fr; gap: 24px; }
  .svc-feature-media, .svc-feature-text{ grid-column: 1 !important; }
  .svc-feature-media{ grid-row: 1 !important; }
  .svc-feature-text{ grid-row: 2 !important; }
}

/* What we paint */
.svc-paint{ padding: 80px 0 96px; text-align: center; }
.svc-paint .label{ display: inline-block; margin-bottom: 14px; }
.svc-paint .section-title{ font-size: clamp(28px, 3.2vw, 40px); margin-bottom: 36px; }
.svc-paint-list{ justify-content: center; max-width: 880px; margin: 0 auto; }
.svc-paint-list li span{
  display: inline-block; padding: 10px 16px;
  border: 1px solid var(--rule-ink); border-radius: 999px;
  font-family: var(--body-font); font-size: 14px; color: var(--ink-soft);
}

/* Testimonials */
.tm-rating{ font-family: var(--body-font); font-size: 15px; color: var(--muted); margin: 22px 0 0; }
.tm-rating strong{ color: var(--gold-deep); font-weight: 600; }
.tm-section{ padding: 64px 0 96px; }
/* QA 2026-06-12 (Testimonials row): load-more for the full FD grid (reviews.js shim).
   Styled to the sitewide rectangular gold-light button. */
.fd-load-more{
  display: block; margin: 40px auto 0;
  font-family: var(--body-font); font-size: 12px; letter-spacing: 0.32em;
  text-transform: uppercase; background: var(--gold-light); color: var(--ink, #111);
  padding: 16px 44px; border: 1px solid var(--gold-light);
  cursor: pointer; font-weight: 500; transition: all 0.3s;
}
.fd-load-more:hover{ background: var(--gold); border-color: var(--gold); }
.tm-grid{ columns: 3 300px; column-gap: 28px; }
.tm-card{
  break-inside: avoid; margin: 0 0 28px;
  background: #fff; border-left: 3px solid var(--gold); padding: 28px 30px;
}
.tm-quote{ font-family: var(--display); font-style: italic; font-size: 17px; line-height: 1.6; color: var(--ink-soft); margin: 0 0 16px; }
.tm-quote::before{ content: '\201C'; }
.tm-quote::after{ content: '\201D'; }
.tm-attr{ font-family: var(--body-font); font-size: 13px; letter-spacing: .04em; color: var(--muted); }
.tm-attr a{ color: var(--muted); text-decoration: none; }
.tm-attr a:hover{ color: var(--gold-deep); }

@media (max-width: 880px){
  .util-hero{ padding: 96px 0 40px; }
  .areas-block-head{ flex-direction: column; gap: 10px; }
  .tm-grid{ columns: 1; }
}

/* === PORTFOLIO — by work-type categories (2026-06-02) ============================== */
.portfolio-cat{ padding: 72px 0; }
.portfolio-cat.alt{ background: var(--off-white, #f5f5f5); }
.portfolio-cat-head{ max-width: 1200px; margin: 0 auto 36px; padding: 0 56px; }
.portfolio-cat-title{
  font-family: var(--display); font-weight: 300;
  font-size: clamp(28px, 3.2vw, 42px); line-height: 1.08;
  color: var(--ink); letter-spacing: -0.018em; margin: 0;
}
.portfolio-cat-blurb{
  font-family: var(--body-font); font-size: 16px; line-height: 1.6;
  color: var(--body-soft); margin: 12px 0 0; max-width: 60ch;
}
.portfolio-cat-empty{
  max-width: 1200px; margin: 0 auto; padding: 40px 56px;
  border: 1px dashed var(--rule-ink); text-align: center;
}
.portfolio-cat-empty p{
  font-family: var(--display); font-style: italic; font-size: 17px;
  color: var(--muted); margin: 0 0 22px; max-width: 52ch; margin-left: auto; margin-right: auto;
}
.portfolio-cat-empty-links{ display: flex; gap: 14px 28px; justify-content: center; align-items: center; flex-wrap: wrap; }
.cat-empty-cta{
  font-family: var(--body-font); font-size: 12px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; color: var(--gold-light);
  background: var(--ink); padding: 14px 28px; text-decoration: none; transition: background .25s;
}
.cat-empty-cta:hover{ background: var(--gold); color: var(--ink); }
.cat-empty-link{
  font-family: var(--body-font); font-size: 12px; font-weight: 600;
  letter-spacing: .07em; text-transform: uppercase; color: var(--gold-deep);
  text-decoration: none; border-bottom: 1px solid var(--rule-ink); padding-bottom: 4px; transition: color .2s, border-color .2s;
}
.cat-empty-link:hover{ color: var(--ink); border-color: var(--gold); }

/* === AWARDS — redesigned award rows (2026-06-02) ================================== */
.awards-list{ display: flex; flex-direction: column; gap: 0; }
.award-row{
  display: grid; grid-template-columns: 64px 1fr; gap: 28px; align-items: start;
  padding: 36px 0; border-bottom: 1px solid var(--rule-ink);
}
.award-row:last-child{ border-bottom: 0; }
.award-medal{
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--paper); border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center; color: var(--gold-deep);
}
.award-medal .ico{ width: 30px; height: 30px; }
.award-medal .ico use{ fill: currentColor; }
.award-medal svg{ fill: currentColor; }
.award-medal img{ max-width: 44px; max-height: 44px; object-fit: contain; }
.award-meta{ display: flex; align-items: baseline; gap: 14px; margin-bottom: 8px; flex-wrap: wrap; }
.award-year{ font-family: var(--display); font-size: 18px; color: var(--gold-deep); font-weight: 400; }
.award-body{ font-family: var(--body-font); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.award-name{
  font-family: var(--display); font-weight: 300;
  font-size: clamp(22px, 2.6vw, 30px); line-height: 1.2;
  color: var(--ink); letter-spacing: -0.012em; margin: 0 0 10px;
}
.award-context{ font-family: var(--body-font); font-size: 15.5px; line-height: 1.65; color: var(--body-soft); margin: 0; max-width: 60ch; }
@media (max-width: 560px){
  .award-row{ grid-template-columns: 1fr; gap: 16px; }
}

/* === AWARDS — feature rows: certificate + work photos + description (2026-06-04) === */
.awards-feature-list{ display: flex; flex-direction: column; gap: 0; max-width: 1080px; margin: 0 auto; }
.award-feature{
  display: flex; gap: 56px; align-items: flex-start;
  padding: 56px 0; border-bottom: 1px solid var(--rule-ink);
}
.award-feature:first-child{ padding-top: 0; }
.award-feature:last-child{ border-bottom: 0; }
.award-feature:nth-child(even){ flex-direction: row-reverse; }
.award-feature-media{ flex: 0 0 340px; max-width: 340px; }
.award-cert{
  width: 100%; height: auto; display: block; border-radius: 2px;
  box-shadow: 0 18px 44px rgba(21,17,11,.16); background: var(--paper);
}
.award-logo-img{ max-width: 160px; max-height: 120px; object-fit: contain; }
.award-feature-media .award-medal{
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--paper); border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center; color: var(--gold-deep);
}
.award-feature-media .award-medal .ico{ width: 34px; height: 34px; }
.award-feature-body{ flex: 1 1 auto; min-width: 0; padding-top: 4px; }
.award-result{
  display: inline-block; margin: 0 0 14px;
  font-family: var(--body-font); font-size: 11.5px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink); background: var(--gold); padding: 6px 14px; border-radius: 2px;
}
.award-project{
  font-family: var(--display); font-style: italic; font-weight: 300;
  font-size: 18px; line-height: 1.4; color: var(--gold-deep); margin: 0 0 12px;
}
.award-desc{ font-family: var(--body-font); font-size: 15.5px; line-height: 1.7; color: var(--body-soft); margin: 0 0 4px; max-width: 62ch; }
.award-desc p{ margin: 0 0 12px; }
.award-desc p:last-child{ margin-bottom: 0; }
.award-work{ display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.award-work img{
  width: 96px; height: 96px; object-fit: cover; border-radius: 2px;
  box-shadow: 0 6px 18px rgba(21,17,11,.12);
}
@media (max-width: 860px){
  .award-feature, .award-feature:nth-child(even){ flex-direction: column; gap: 28px; padding: 44px 0; }
  .award-feature-media{ flex: 0 0 auto; max-width: 300px; }
}

/* ===== PORTFOLIO (image-led rebuild 2026-06-05) ===== */
.portfolio-head{ padding: 120px 0 56px; text-align: center; }
.portfolio-head .section-title{ max-width: 24ch; margin: 0 auto 18px; }
.portfolio-intro{ font-family: var(--body-font); font-size: 18px; line-height: 1.6; color: rgba(0,0,0,.7); max-width: 60ch; margin: 0 auto; }
.pf-section-head{ margin: 0 0 28px; }
.pf-section-head .label{ display: inline-block; }

.pf-featured{ padding: 8px 0 32px; }
.pf-feature{ padding: 20px 0; border-top: 1px solid var(--rule-ink); }
.pf-feature:first-of-type{ border-top: 0; padding-top: 4px; }
.pf-feature-head{ display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap; margin-bottom: 18px; }
.pf-feature-head h3{ font-family: var(--display); font-weight: 500; font-size: clamp(20px, 2.4vw, 26px); margin: 0; color: var(--ink); letter-spacing: -0.01em; }
.pf-feature-meta{ font-family: var(--body-font); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-deep, #b58d4e); }
/* Full-width grid (not fixed-width flex) so the capped 6-thumb row always spans
   the frame edge-to-edge — no large empty band on the right. Mirrors .pf-cat-grid. */
.pf-thumbs{ display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
.pf-thumbs a{ display: block; aspect-ratio: 4 / 3; overflow: hidden; cursor: zoom-in; }
/* Overflow images past the 6-cap are hidden <a> with no <img>; the class-level
   display above outranks [hidden], so re-hide them or they render as empty grid
   cells and pad blank rows below the strip. Lightbox still reads them by attr. */
.pf-thumbs a[hidden]{ display: none; }
.pf-thumbs img{ width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease, opacity .2s; }
.pf-thumbs a:hover img{ transform: scale(1.05); opacity: .92; }
.pf-thumbs a.pf-more{ position: relative; }
.pf-thumbs a.pf-more::after{ content: attr(data-more); position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; text-align: center; padding: 4px; background: rgba(0,0,0,.58); color: #fff; font-family: var(--body-font); font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; transition: background .2s; }
.pf-thumbs a.pf-more:hover::after{ background: rgba(0,0,0,.44); }

.pf-categories{ padding: 24px 0 90px; }
.pf-cat{ padding: 22px 0; }
.pf-cat-title{ font-family: var(--display); font-weight: 500; font-size: clamp(22px, 2.6vw, 30px); margin: 0 0 22px; color: var(--ink); letter-spacing: -0.01em; }
.pf-cat-grid{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.pf-cat-grid a{ display: block; aspect-ratio: 1 / 1; overflow: hidden; cursor: zoom-in; }
.pf-cat-grid img{ width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease, opacity .2s; }
.pf-cat-grid a:hover img{ transform: scale(1.05); opacity: .92; }

/* Lightbox overlay */
.pf-lb{ position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,.93); display: none; align-items: center; justify-content: center; }
.pf-lb.open{ display: flex; }
.pf-lb-fig{ margin: 0; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.pf-lb-img{ max-width: 92vw; max-height: 82vh; object-fit: contain; box-shadow: 0 12px 48px rgba(0,0,0,.5); }
.pf-lb-cap{ color: rgba(255,255,255,.85); font-family: var(--body-font); font-size: 14px; letter-spacing: .02em; }
.pf-lb-btn{ position: absolute; background: none; border: 0; color: #fff; cursor: pointer; line-height: 1; padding: 10px 16px; opacity: .75; transition: opacity .2s; }
.pf-lb-btn:hover{ opacity: 1; }
.pf-lb-close{ top: 14px; right: 18px; font-size: 34px; }
.pf-lb-prev{ left: 6px; top: 50%; transform: translateY(-50%); font-size: 46px; }
.pf-lb-next{ right: 6px; top: 50%; transform: translateY(-50%); font-size: 46px; }
.pf-lb-count{ position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.7); font-family: var(--body-font); font-size: 12px; letter-spacing: .14em; }

@media (max-width: 900px){
  .pf-thumbs{ grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 760px){
  .portfolio-head{ padding: 90px 0 40px; }
  .pf-cat-grid{ grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .pf-thumbs{ grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .pf-feature{ padding: 14px 0; }
  .pf-feature-head{ margin-bottom: 12px; }
  .pf-cat{ padding: 16px 0; }
  .pf-lb-btn{ font-size: 30px; }
  .pf-lb-prev, .pf-lb-next{ font-size: 34px; }
}

/* ── Cookie consent banner (T152) ─────────────────────────────────────────── */
.cookie-banner{ position: fixed; left: 0; right: 0; bottom: 0; z-index: 9999;
  background: var(--black, #000); color: var(--white, #fff);
  box-shadow: 0 -2px 14px rgba(0,0,0,.25); }
.cookie-banner[hidden]{ display: none; }   /* keep [hidden] authoritative over flex */
.cookie-banner-inner{ max-width: 1180px; margin: 0 auto; padding: 16px 24px;
  display: flex; align-items: center; gap: 20px 28px; flex-wrap: wrap; justify-content: space-between; }
.cookie-banner-text{ margin: 0; font-family: var(--body-font, Arial, sans-serif);
  font-size: 14px; line-height: 1.5; color: rgba(255,255,255,.88); max-width: 760px; }
.cookie-banner-text a{ color: var(--gold, #F1BA2B); text-decoration: underline; }
.cookie-banner-actions{ display: flex; gap: 12px; flex-shrink: 0; }
.cookie-btn{ font-family: var(--body-font, Arial, sans-serif); font-size: 14px; font-weight: 600;
  padding: 10px 22px; border-radius: 50px; cursor: pointer; border: 1px solid transparent; line-height: 1; }
.cookie-accept{ background: var(--gold, #F1BA2B); color: var(--dark-brown, #463939); }
.cookie-accept:hover{ filter: brightness(1.05); }
.cookie-decline{ background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.cookie-decline:hover{ border-color: #fff; }
.footer-utility a[data-cookie-settings]{ cursor: pointer; }
@media (max-width: 640px){
  .cookie-banner-inner{ padding: 14px 18px; gap: 12px; }
  .cookie-banner-actions{ width: 100%; }
  .cookie-btn{ flex: 1; text-align: center; }
}

/* ── Jobs / careers application form (T178) — paper-background variant ─────────
   The sitewide form styles are scoped to .hero-form / .contact-form-lower (both on
   dark backgrounds). The jobs form sits on the paper util-page, with radios, fieldsets
   and a file input none of the other forms have — so it needs its own light-bg block. */
.jobs-apply{ padding-top: 8px; }
.jobs-apply > .frame-narrow > h2{
  font-family: var(--display); font-weight: 400;
  font-size: clamp(22px, 2.4vw, 30px); line-height: 1.25;
  color: var(--ink); letter-spacing: -0.01em; margin: 14px 0 14px;
}
.jobs-apply > .frame-narrow > p{
  font-family: var(--body-font); font-size: 17px; line-height: 1.7;
  color: var(--body-soft); margin: 0 0 8px; max-width: 60ch;
}
.jobs-form{ margin-top: 26px; max-width: 760px; }
.jobs-form .form-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-bottom: 22px; }
.jobs-form .form-field{ display: flex; flex-direction: column; }
.jobs-form .form-field.full{ grid-column: 1 / -1; }
.jobs-form label,
.jobs-form legend{
  font-family: var(--body-font); font-size: 10px; letter-spacing: 0.28em;
  color: var(--gold-deep, #b58d4e); margin-bottom: 8px; text-transform: uppercase; font-weight: 600;
}
.jobs-form input[type="text"],
.jobs-form input[type="email"],
.jobs-form input[type="tel"]{
  font-family: var(--display); font-weight: 300; font-size: 18px; padding: 10px 0;
  border: none; border-bottom: 1px solid rgba(0,0,0,0.22); background: transparent;
  color: var(--ink, #111); transition: border-color 0.3s;
}
.jobs-form input:focus{ outline: none; border-bottom-color: var(--gold-deep, #b58d4e); }
.jobs-form .form-fieldset{ border: 0; padding: 0; margin: 0; min-width: 0; }
.jobs-form .radio-group{ display: flex; flex-wrap: wrap; gap: 10px 22px; align-items: center; }
.jobs-form .radio-inline{
  display: inline-flex; align-items: center; gap: 7px; margin: 0;
  font-family: var(--body-font); font-size: 16px; letter-spacing: 0; text-transform: none;
  color: var(--ink, #111); font-weight: 400;
}
.jobs-form .radio-inline input{ width: auto; margin: 0; accent-color: var(--gold-deep, #b58d4e); }
.jobs-form input[type="file"]{
  font-family: var(--body-font); font-size: 15px; color: var(--ink, #111);
  padding: 10px 0; border: none; background: transparent; max-width: 100%;
}
/* QA 2026-06-12 (Jobs row): button matched to the sitewide .hero-form button
   (rectangular, gold-light, ink text) — was a one-off bright pill. */
.jobs-form button[type="submit"]{
  margin-top: 8px; font-family: var(--body-font); font-size: 12px; letter-spacing: 0.32em;
  text-transform: uppercase; background: var(--gold-light); color: var(--ink, #111);
  padding: 16px 44px; border: 1px solid var(--gold-light); border-radius: 0;
  cursor: pointer; font-weight: 500; transition: all 0.3s;
}
.jobs-form button[type="submit"]:hover{ background: var(--gold); border-color: var(--gold); }
.jobs-form button[type="submit"][disabled]{ opacity: 0.6; cursor: default; }
.jobs-form .form-status{ margin-top: 18px; font-size: 15px; line-height: 1.5; }
.jobs-form .form-status.is-error{ color: #b00020; }
.jobs-form .form-status.is-ok{ color: var(--gold-deep, #b58d4e); font-weight: 600; }
@media (max-width: 640px){
  .jobs-form .form-row{ grid-template-columns: 1fr; gap: 16px; }
  .jobs-form button[type="submit"]{ width: 100%; text-align: center; }
}

/* Jobs — "Who we are" two-column (text + image) */
.jobs-intro-grid{ display: grid; grid-template-columns: 1.25fr 0.85fr; gap: 48px; align-items: start; }
.jobs-intro-grid.no-media{ display: block; }
.jobs-intro-text > :first-child{ margin-top: 0; }
.jobs-intro-media{ position: sticky; top: 110px; }
.jobs-intro-img{ display: block; width: 100%; height: auto; border-radius: 4px; }
@media (max-width: 860px){
  .jobs-intro-grid{ grid-template-columns: 1fr; gap: 28px; }
  .jobs-intro-media{ position: static; max-width: 480px; }
}

/* Jobs — feature band (3 icon cards) */
.jobs-features-band{ background: var(--off-white, #f5f5f5); padding: 80px 0 88px; text-align: center; }
.jobs-features-band .label{ display: inline-block; margin-bottom: 14px; }
.jobs-features-h2{
  font-family: var(--display); font-weight: 400; font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1.2; color: var(--ink); letter-spacing: -0.01em; margin: 0 auto 44px; max-width: 22ch;
}
.jobs-features-h2 em{ font-style: italic; color: var(--gold-deep, #b58d4e); }
.jobs-features{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; text-align: left; }
/* QA 2026-06-12 (Jobs row): cards matched to the sitewide .ops-item card (square,
   gold top border) and icons to the awards-snippet gold-line treatment — the rounded
   cards with solid gold icon circles were a one-off. */
.jf-card{ background: var(--white, #fff); border: none; border-top: 2px solid var(--gold-deep, #b58d4e); border-radius: 0; padding: 32px 28px; box-shadow: 0 1px 0 rgba(0,0,0,0.04); }
.jf-icon-wrap{
  display: inline-flex; align-items: center; justify-content: center;
  width: auto; height: auto; border-radius: 0; background: transparent; margin-bottom: 16px;
}
.jf-icon{ width: 30px; height: 30px; color: var(--gold-deep, #b58d4e); }
.jf-title{ font-family: var(--display); font-weight: 400; font-size: 21px; color: var(--ink); margin: 0 0 10px; }
.jf-body{ font-family: var(--body-font); font-size: 15.5px; line-height: 1.65; color: var(--body-soft); margin: 0; }
@media (max-width: 860px){
  .jobs-features{ grid-template-columns: 1fr; gap: 18px; max-width: 520px; margin: 0 auto; }
  .jobs-features-band{ padding: 60px 0 64px; }
}

/* Accessibility: skip-to-content link (WCAG 2.4.1). Visually hidden until focused. */
.skip-link{position:absolute;left:-9999px;top:auto;width:1px;height:1px;overflow:hidden;z-index:100000;}
.skip-link:focus{left:8px;top:8px;width:auto;height:auto;padding:10px 18px;background:#000;color:#F1BA2B;font-family:Arial,sans-serif;font-size:15px;font-weight:700;text-decoration:none;border:2px solid #F1BA2B;border-radius:4px;}

.ops-item{ scroll-margin-top: 120px; } /* anchored cover items clear the fixed header */

/* ===== Feedbackdesk widget — brand theming (T009) ===== */
/* Plugin ≥1.1.0 emits .fd-stars and lays the row out itself — the old .re-stars shim is retired.
   These recolour the plugin's hardcoded star fills to brand tokens. */
.fd-wrapper .fd-star[fill="#f59e0b"]{ fill: var(--gold, #c69a5d); }
.fd-wrapper .fd-star[fill="#d1d5db"]{ fill: #d8d2c8; }
/* Homepage live-reviews section (replaces the static pull quote) */
.reviews-pull{ padding: 110px 22px; background: var(--paper, #faf8f4); text-align: center; }
.reviews-pull-frame{ max-width: 920px; margin: 0 auto; }
.reviews-pull .pull-link{ display: inline-block; margin-top: 36px; }

.fd-wrapper{
  --fd-font: inherit;
  --fd-color-text: var(--ink);
  --fd-color-text-muted: #6b6b6b;
  --fd-color-bg: #fff;
  --fd-color-bg-page: transparent;
  --fd-color-border: rgba(0,0,0,0.08);
  --fd-color-star: var(--gold);
  --fd-color-star-empty: #d8d2c8;
  --fd-radius: 2px;
  --fd-radius-sm: 2px;
  --fd-shadow: none;
  --fd-shadow-hover: 0 4px 16px rgba(0,0,0,0.08);
}
.fd-wrapper .fd-card{ border: 1px solid var(--fd-color-border); }
.pull--reviews .pull-link{ margin-top: 36px; }
