:root {
      --ink: #17212b;
      --muted: #6d747a;
      --line: #e8e9ea;
      --red: #cb1016;
      --paper: #ffffff;
      --soft: #f6f6f4;
      --nav-height: 78px;
    }
 
    * { box-sizing: border-box; }
    html {
      scroll-behavior: smooth;
      scroll-snap-type: y mandatory;
      background: var(--paper);
    }
    body {
      margin: 0;
      color: var(--ink);
      font-family: Arial, Helvetica, sans-serif;
      background: var(--paper);
      letter-spacing: 0.01em;
    }
    button, input, textarea { font: inherit; }
    a { color: inherit; text-decoration: none; }
 
    .site-header {
      position: fixed;
      inset: 0 0 auto 0;
      height: var(--nav-height);
      z-index: 50;
      display: flex;
      align-items: center;
      gap: 36px;
      padding: 0 42px;
      background: rgba(255,255,255,.93);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(23,33,43,.07);
    }
    .brand {
      min-width: 132px;
      font-size: 18px;
      font-weight: 800;
      letter-spacing: .12em;
    }
    .brand span { font-weight: 400; color: #666; }
    .brand { text-transform: none; }
    .nav {
      display: flex;
      align-items: center;
      gap: 28px;
      font-size: 12px;
      letter-spacing: .14em;
      text-transform: uppercase;
    }
    .nav a {
      position: relative;
      padding: 10px 0;
      color: #363d43;
      white-space: nowrap;
    }
    .nav a::after {
      content: "";
      position: absolute;
      left: 0;
      right: 100%;
      bottom: 3px;
      height: 2px;
      background: var(--red);
      transition: right .25s ease;
    }
    .nav a:hover::after,
    .nav a.active::after { right: 0; }
    .nav .cta {
      border: 1px solid var(--ink);
      padding: 12px 16px;
      transition: background .2s, color .2s, border-color .2s;
    }
    .nav .cta::after { display: none; }
    .nav .cta:hover,
    .nav .cta.active {
      background: var(--ink);
      border-color: var(--ink);
      color: white;
    }
 
    .menu-button {
      display: none;
      margin-left: auto;
      width: 42px;
      height: 42px;
      border: 0;
      background: transparent;
      cursor: pointer;
    }
    .menu-button span,
    .menu-button::before,
    .menu-button::after {
      content: "";
      display: block;
      width: 22px;
      height: 2px;
      background: var(--ink);
      margin: 5px auto;
      transition: .2s;
    }
 
    section {
      min-height: 100svh;
      scroll-snap-align: start;
      scroll-snap-stop: always;
      padding: calc(var(--nav-height) + 40px) 6vw 50px;
      display: grid;
      align-items: center;
      position: relative;
      overflow: hidden;
    }
    .inner {
      width: min(1180px, 100%);
      margin: 0 auto;
    }
    .eyebrow {
      margin: 0 0 16px;
      color: var(--red);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .2em;
      text-transform: uppercase;
    }
    h1, h2, h3, p { margin-top: 0; }
    h1 {
      font-size: clamp(46px, 7vw, 104px);
      line-height: .92;
      letter-spacing: -.05em;
      margin-bottom: 22px;
    }
    h2 {
      font-size: clamp(38px, 5vw, 72px);
      line-height: .98;
      letter-spacing: -.045em;
      margin-bottom: 18px;
    }
    h3 { font-size: 22px; letter-spacing: -.02em; }
    .lead {
      max-width: 670px;
      color: var(--muted);
      font-size: clamp(17px, 1.7vw, 23px);
      line-height: 1.55;
    }
 
    /* Home */
    #home { text-align: center; }
    .hero {
      width: min(780px, 92vw);
      margin: 0 auto;
      transform: translateY(-8px);
    }
    .hero-logo {
      width: min(620px, 86vw);
      height: auto;
      display: block;
      margin: 0 auto 18px;
    }
    .hero-subtitle {
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: .24em;
      margin-bottom: 18px;
      color: #555d63;
    }
    .hero-line {
      width: 58px;
      height: 2px;
      background: var(--red);
      margin: 0 auto 20px;
    }
    .hero-tagline {
      font-size: clamp(15px, 1.8vw, 21px);
      letter-spacing: .07em;
      color: #2e353b;
    }
    .scroll-cue {
      position: absolute;
      left: 50%;
      bottom: 24px;
      transform: translateX(-50%);
      display: grid;
      place-items: center;
      gap: 8px;
      color: #858b90;
      font-size: 10px;
      letter-spacing: .14em;
      text-transform: uppercase;
    }
    .scroll-cue::after {
      content: "";
      width: 10px;
      height: 10px;
      border-right: 1px solid var(--ink);
      border-bottom: 1px solid var(--ink);
      transform: rotate(45deg);
      animation: drift 1.5s ease-in-out infinite;
    }
    @keyframes drift { 50% { transform: translateY(6px) rotate(45deg); } }
 
    /* Gallery */
    #gallery { background: #fbfbfa; }
    .section-head {
      display: flex;
      justify-content: space-between;
      align-items: end;
      gap: 30px;
      margin-bottom: 30px;
    }
    .section-head .lead { max-width: 460px; font-size: 17px; margin-bottom: 4px; }
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }
    .project-card { cursor: pointer; }
    .project-image {
      height: clamp(230px, 29vw, 390px);
      overflow: hidden;
      background: #ddd;
    }
    .project-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .55s cubic-bezier(.2,.7,.2,1);
    }
    .project-card:hover img { transform: scale(1.035); }
    .project-card h3 {
      margin: 15px 0 0;
      font-size: 17px;
      font-weight: 500;
    }
    .project-card p {
      margin: 6px 0 0;
      color: #8a8f93;
      font-size: 12px;
      letter-spacing: .08em;
      text-transform: uppercase;
    }
    .service-browser {
      margin-top: 28px;
      border-top: 1px solid #d9dbdc;
      border-bottom: 1px solid #d9dbdc;
    }
    .service-toggle {
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border: 0;
      padding: 18px 2px;
      background: transparent;
      color: var(--ink);
      cursor: pointer;
      font-size: 14px;
      letter-spacing: .13em;
      text-transform: uppercase;
    }
    .service-toggle .chevron {
      width: 10px;
      height: 10px;
      border-right: 1px solid var(--ink);
      border-bottom: 1px solid var(--ink);
      transform: rotate(45deg);
      transition: transform .3s ease;
    }
    .service-browser.open .chevron { transform: rotate(225deg); }
    .service-list {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 0 24px;
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      transition: max-height .4s ease, opacity .3s ease, padding .4s ease;
    }
    .service-browser.open .service-list {
      max-height: 260px;
      opacity: 1;
      padding: 2px 0 22px;
    }
    .service-list a {
      padding: 11px 0;
      border-bottom: 1px solid #ececec;
      color: #4a5055;
      font-size: 13px;
      transition: color .2s, transform .2s;
    }
    .service-list a:hover { color: var(--red); transform: translateX(3px); }
 
    /* Service area */
    #service-area { background: white; }
    .area-layout {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 70px;
      align-items: center;
    }
    .counties {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 0 34px;
      margin-top: 30px;
      border-top: 1px solid var(--line);
    }
    .counties span {
      padding: 14px 0;
      border-bottom: 1px solid var(--line);
      color: #444c52;
      font-size: 14px;
    }
    .area-note { margin-top: 20px; font-size: 13px; color: #7c8388; }
    .map-card {
      min-height: 520px;
      background: var(--soft);
      position: relative;
      overflow: hidden;
      border: 1px solid #ededeb;
    }
    .map-card svg { width: 100%; height: 100%; position: absolute; inset: 0; }
    .map-caption {
      position: absolute;
      left: 28px;
      bottom: 26px;
      max-width: 260px;
      padding: 15px 18px;
      background: rgba(255,255,255,.93);
      border-left: 2px solid var(--ink);
      font-size: 13px;
      line-height: 1.5;
    }
    .map-caption strong { color: var(--ink); font-weight: 700; }
 
    /* About */
    #about { background: #18222b; color: white; }
    #about .lead { color: #c7ccd0; max-width: 800px; }
    .about-secondary { margin-top: 18px; }
    .values {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
      margin-top: 54px;
    }
    .value {
      border-top: 1px solid rgba(255,255,255,.28);
      padding-top: 20px;
    }
    .value strong {
      display: block;
      margin-bottom: 9px;
      font-size: 16px;
      font-weight: 500;
    }
    .value span { color: #9ea7ad; font-size: 13px; line-height: 1.6; }
 
    /* Contact */
    #contact { background: #f6f6f4; }
    .contact-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .contact-list { border-top: 1px solid #d8d9d7; }
    .contact-row {
      display: grid;
      grid-template-columns: 120px 1fr;
      gap: 22px;
      padding: 22px 0;
      border-bottom: 1px solid #d8d9d7;
    }
    .contact-row span:first-child {
      color: #8a8f92;
      font-size: 11px;
      letter-spacing: .14em;
      text-transform: uppercase;
    }
    .contact-row span:last-child { font-size: 18px; }
 
    /* Quote */
    #quote { background: white; }
    .quote-layout {
      display: grid;
      grid-template-columns: .8fr 1.2fr;
      gap: 80px;
      align-items: start;
    }
    .quote-intro { position: sticky; top: 120px; }
    form {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 22px 18px;
    }
    label {
      display: grid;
      gap: 8px;
      color: #5f666c;
      font-size: 11px;
      letter-spacing: .12em;
      text-transform: uppercase;
    }
    label.full { grid-column: 1 / -1; }
    input, textarea {
      width: 100%;
      border: 0;
      border-bottom: 1px solid #bfc3c5;
      padding: 11px 0 13px;
      background: transparent;
      color: var(--ink);
      outline: 0;
      border-radius: 0;
      font-size: 16px;
      text-transform: none;
      letter-spacing: normal;
    }
    textarea { min-height: 112px; resize: vertical; }
    input:focus, textarea:focus { border-color: var(--red); }
    .upload {
      grid-column: 1 / -1;
      border: 1px dashed #bcc0c2;
      min-height: 92px;
      display: grid;
      place-items: center;
      color: #7a8084;
      font-size: 13px;
      cursor: pointer;
      text-transform: none;
      letter-spacing: normal;
    }
    .submit {
      grid-column: 1 / -1;
      justify-self: start;
      border: 1px solid var(--ink);
      background: var(--ink);
      color: white;
      padding: 15px 24px;
      cursor: pointer;
      font-size: 12px;
      letter-spacing: .14em;
      text-transform: uppercase;
      transition: .2s;
    }
    .submit:hover { background: var(--red); border-color: var(--red); }
/* Expandable example gallery */
    .project-card {
      appearance: none;
      width: 100%;
      padding: 0;
      border: 0;
      background: transparent;
      color: inherit;
      text-align: left;
      cursor: pointer;
    }
    .project-card:focus-visible,
    .example-project:focus-visible,
    .stage-button:focus-visible,
    .modal-close:focus-visible {
      outline: 2px solid var(--red);
      outline-offset: 4px;
    }
    .project-image {
      position: relative;
      display: grid;
      place-items: center;
      background: #f0f0ee;
      border: 1px solid #e3e4e3;
    }
    .project-image svg {
      width: 100%;
      height: 100%;
      display: block;
      transition: transform .55s cubic-bezier(.2,.7,.2,1);
    }
    .project-card:hover .project-image svg { transform: scale(1.025); }
    .project-card[aria-expanded="true"] .project-image {
      box-shadow: inset 0 -3px 0 var(--red);
    }
    .project-card .card-action {
      display: flex;
      align-items: center;
      gap: 9px;
    }
    .project-card .card-action::after {
      content: "+";
      color: var(--red);
      font-size: 16px;
      line-height: 1;
    }
    .project-card[aria-expanded="true"] .card-action::after { content: "−"; }
 
    .gallery-expansion {
      margin-top: 28px;
      border-top: 1px solid #d9dbdc;
      border-bottom: 1px solid #d9dbdc;
      display: none;
    }
    .gallery-expansion.open { display: block; animation: galleryReveal .32s ease both; }
    @keyframes galleryReveal {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .gallery-panel-head {
      display: flex;
      justify-content: space-between;
      align-items: end;
      gap: 28px;
      padding: 25px 0 21px;
    }
    .gallery-panel-head h3 { margin-bottom: 5px; font-size: clamp(24px, 3vw, 38px); }
    .gallery-panel-head p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }
    .gallery-close {
      flex: 0 0 auto;
      border: 0;
      background: transparent;
      color: #747b80;
      cursor: pointer;
      padding: 10px 0 10px 18px;
      font-size: 11px;
      letter-spacing: .13em;
      text-transform: uppercase;
    }
    .example-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      padding-bottom: 28px;
    }
    .example-project {
      appearance: none;
      display: block;
      width: 100%;
      padding: 0;
      border: 0;
      background: transparent;
      color: inherit;
      text-align: left;
      cursor: pointer;
    }
    .example-drawing {
      aspect-ratio: 4 / 3;
      display: grid;
      place-items: center;
      overflow: hidden;
      background: #f2f2f0;
      border: 1px solid #e4e5e4;
    }
    .example-drawing svg { width: 100%; height: 100%; display: block; transition: transform .45s ease; }
    .example-project:hover .example-drawing svg { transform: scale(1.025); }
    .example-project h4 { margin: 14px 0 6px; font-size: 16px; font-weight: 500; }
    .example-project p { margin: 0; color: #858b8f; font-size: 11px; letter-spacing: .09em; text-transform: uppercase; }
 
    /* Project example viewer */
    .project-modal[hidden] { display: none; }
    .project-modal {
      position: fixed;
      inset: 0;
      z-index: 100;
      display: grid;
      place-items: center;
      padding: 24px;
      background: rgba(12,18,23,.72);
      backdrop-filter: blur(8px);
    }
    .modal-card {
      position: relative;
      width: min(940px, 100%);
      max-height: min(88svh, 860px);
      overflow: auto;
      background: white;
      box-shadow: 0 28px 90px rgba(0,0,0,.22);
    }
    .modal-close {
      position: sticky;
      top: 0;
      z-index: 3;
      float: right;
      margin: 18px 18px 0 0;
      width: 42px;
      height: 42px;
      border: 1px solid #dfe1e1;
      background: rgba(255,255,255,.95);
      color: var(--ink);
      cursor: pointer;
      font-size: 24px;
      line-height: 1;
    }
    .modal-content { padding: 46px 48px 42px; }
    .modal-content h3 { margin-bottom: 8px; font-size: clamp(30px, 4vw, 52px); }
    .modal-meta { margin-bottom: 24px; color: #747b80; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }
    .modal-drawing {
      width: 100%;
      aspect-ratio: 16 / 9;
      overflow: hidden;
      background: #f1f1ef;
      border: 1px solid #e2e3e2;
    }
    .modal-drawing svg { width: 100%; height: 100%; display: block; }
    .stage-tabs {
      display: flex;
      gap: 0;
      border-bottom: 1px solid #dfe1e1;
      margin-top: 18px;
      overflow-x: auto;
    }
    .stage-button {
      border: 0;
      border-bottom: 2px solid transparent;
      background: transparent;
      color: #767d82;
      padding: 14px 22px 12px 0;
      margin-right: 22px;
      cursor: pointer;
      font-size: 11px;
      letter-spacing: .13em;
      text-transform: uppercase;
      white-space: nowrap;
    }
    .stage-button.active { color: var(--ink); border-color: var(--red); }
    .modal-copy { margin: 22px 0 0; max-width: 700px; color: var(--muted); font-size: 15px; line-height: 1.7; }
    body.modal-open { overflow: hidden; }
 
    @media (max-width: 980px) {
      :root { --nav-height: 66px; }
      .site-header { padding: 0 20px; }
      .brand { min-width: 0; font-size: 17px; }
      .nav {
        display: none;
        position: fixed;
        inset: var(--nav-height) 0 0 0;
        padding: 28px 24px max(34px, env(safe-area-inset-bottom));
        background: rgba(255,255,255,.98);
        border-top: 1px solid var(--line);
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        overflow-y: auto;
      }
      .nav.open { display: flex; }
      .nav a { padding: 15px 2px; font-size: 13px; }
      .nav .cta { margin-top: 12px; text-align: center; padding: 15px 16px; }
      .menu-button { display: block; }
      body.nav-open { overflow: hidden; }
      section { padding-left: 24px; padding-right: 24px; }
      .area-layout, .contact-layout, .quote-layout { grid-template-columns: 1fr; gap: 36px; }
      .map-card { min-height: 380px; }
      .values { grid-template-columns: 1fr; gap: 26px; }
      .quote-intro { position: static; }
      .section-head { display: block; }
      .section-head .lead { max-width: 620px; }
      .service-list { grid-template-columns: repeat(2, 1fr); }
      .service-browser.open .service-list { max-height: 520px; }
    }
 
    @media (max-width: 620px) {
      html { scroll-snap-type: y proximity; }
      body { overflow-x: hidden; }
      section {
        min-height: auto;
        overflow: visible;
        padding: 96px 20px 64px;
        scroll-snap-align: start;
      }
      #home { min-height: 100svh; padding-top: calc(var(--nav-height) + 22px); }
      .hero { width: 100%; transform: none; }
      .hero-logo { width: min(96vw, 560px); margin-bottom: 14px; }
      .hero-line { margin-bottom: 17px; }
      .hero-tagline { font-size: 14px; line-height: 1.5; letter-spacing: .055em; padding: 0 8px; }
      .scroll-cue { bottom: max(18px, env(safe-area-inset-bottom)); }
      h2 { font-size: clamp(38px, 12vw, 54px); }
      .lead { font-size: 17px; line-height: 1.5; }
 
      /* The three gallery boxes become a finger-friendly swipe carousel. */
      .gallery-grid {
        display: flex;
        grid-template-columns: none;
        gap: 14px;
        width: calc(100% + 20px);
        margin-right: -20px;
        padding: 0 20px 12px 0;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
      }
      .gallery-grid::-webkit-scrollbar { display: none; }
      .project-card {
        flex: 0 0 min(82vw, 360px);
        scroll-snap-align: start;
      }
      .project-image { height: clamp(230px, 66vw, 315px); }
      .project-card h3 { margin-top: 12px; }
      .service-browser { margin-top: 22px; }
      .service-toggle { min-height: 58px; }
      .service-list { grid-template-columns: 1fr; }
      .service-browser.open .service-list { max-height: 680px; }
      .service-list a { min-height: 44px; display: flex; align-items: center; }
 
      .area-layout { gap: 28px; }
      .counties { grid-template-columns: 1fr 1fr; gap: 0 18px; margin-top: 24px; }
      .counties span { font-size: 13px; }
      .map-card { min-height: 330px; }
      .map-caption {
        position: relative;
        left: auto;
        bottom: auto;
        max-width: none;
        margin: 0;
        padding: 16px 18px;
        border-left: 0;
        border-top: 2px solid var(--ink);
        background: #fff;
      }
      .map-card svg { height: 270px; position: relative; display: block; }
 
 
 
      /* Keep the same click-to-expand gallery behaviour on phones and PCs. */
      .gallery-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 22px;
        width: auto;
        margin: 0;
        padding: 0;
        overflow: visible;
        scroll-snap-type: none;
      }
      .project-card { width: 100%; }
      .project-image { height: min(68vw, 330px); }
      .gallery-panel-head { align-items: start; padding-top: 22px; }
      .gallery-close { padding-top: 5px; }
      .example-grid { grid-template-columns: 1fr; gap: 24px; }
      .project-modal { padding: 0; place-items: stretch; }
      .modal-card { width: 100%; max-height: 100svh; min-height: 100svh; }
      .modal-content { padding: 34px 20px 36px; }
      .modal-close { margin: 12px 12px 0 0; }
      .modal-drawing { aspect-ratio: 4 / 3; }
 
      .contact-row { grid-template-columns: 1fr; gap: 7px; padding: 18px 0; }
      .contact-row span:last-child { font-size: 17px; overflow-wrap: anywhere; }
      form { grid-template-columns: 1fr; gap: 20px; }
      label.full, .upload, .submit { grid-column: 1; }
      input, textarea { font-size: 16px; }
      .upload { min-height: 80px; text-align: center; }
      .submit { width: 100%; min-height: 52px; justify-self: stretch; }
}
 
    @media (max-width: 390px) {
      .counties { grid-template-columns: 1fr; }
      .project-card { flex-basis: 86vw; }
      .site-header { padding-left: 16px; padding-right: 12px; }
      section { padding-left: 16px; padding-right: 16px; }
      .gallery-grid { width: calc(100% + 16px); margin-right: -16px; padding-right: 16px; }
    }
  
 
/* Fenton LTD production v1.0 */
:focus-visible { outline: 2px solid var(--red); outline-offset: 4px; }
section { scroll-margin-top: var(--nav-height); }
.skip-link {
  position: fixed; z-index: 200; left: 16px; top: 12px; padding: 12px 15px;
  background: var(--ink); color: #fff; transform: translateY(-160%); transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }
.scroll-progress {
  position: fixed; z-index: 90; left: 0; top: 0; width: 0; height: 2px;
  background: var(--red); pointer-events: none;
}
.site-loader {
  position: fixed; z-index: 180; inset: 0; display: none; place-items: center;
  background: #fff; opacity: 1; visibility: visible;
  transition: opacity .38s ease, visibility .38s ease;
}
.js .site-loader { display: grid; }
.site-loader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-mark { display: grid; gap: 10px; text-align: center; transform: translateY(-5px); }
.loader-mark strong { font-size: clamp(24px, 4vw, 42px); letter-spacing: .13em; }
.loader-mark strong span { color: #777; font-weight: 400; }
.loader-mark small { color: #6d747a; font-size: 10px; letter-spacing: .24em; text-transform: uppercase; }
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s cubic-bezier(.2,.7,.2,1); }
.js .reveal.is-visible { opacity: 1; transform: none; }
.form-help { grid-column: 1 / -1; display: block; margin-top: -14px; color: #7a8084; font-size: 11px; line-height: 1.5; }
.form-status { grid-column: 1 / -1; min-height: 20px; margin: -8px 0 0; color: #596168; font-size: 13px; line-height: 1.5; }
.form-status.error { color: #9c1218; }
.form-honeypot { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
input[aria-invalid="true"], textarea[aria-invalid="true"] { border-color: var(--red); }
.project-card, .example-project, .submit, .nav a, .service-toggle, .gallery-close, .modal-close, .stage-button { -webkit-tap-highlight-color: transparent; }
.modal-card { overscroll-behavior: contain; }
 
@media (max-width: 980px) {
  .nav {
    display: flex; visibility: hidden; opacity: 0; pointer-events: none;
    transform: translateY(-8px); transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }
  .nav.open { visibility: visible; opacity: 1; pointer-events: auto; transform: none; }
  .menu-button[aria-expanded="true"]::before { transform: translateY(7px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span { opacity: 0; }
  .menu-button[aria-expanded="true"]::after { transform: translateY(-7px) rotate(-45deg); }
}
@media (max-width: 620px) {
  .form-help { grid-column: 1; }
  .site-header { padding-top: env(safe-area-inset-top); height: calc(var(--nav-height) + env(safe-area-inset-top)); }
  .nav { top: calc(var(--nav-height) + env(safe-area-inset-top)); }
  section { scroll-margin-top: calc(var(--nav-height) + env(safe-area-inset-top)); }
  .modal-content { padding-bottom: max(34px, env(safe-area-inset-bottom)); }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; scroll-snap-type: none; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js .reveal { opacity: 1; transform: none; }
  .site-loader { display: none; }
}
 
/* Live Featured Work - photos published from the FENTON LTD CRM */
.live-gallery {
  margin: 0 0 34px;
}
 
.live-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
 
.live-project-card {
  min-width: 0;
}
 
.live-project-image-link {
  display: block;
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f0f0ee;
  border: 1px solid #e3e4e3;
}
 
.live-project-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .55s cubic-bezier(.2,.7,.2,1);
}
 
.live-project-image-link:hover .live-project-image {
  transform: scale(1.035);
}
 
.live-project-image-link:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 4px;
}
 
.live-project-copy {
  padding-top: 14px;
}
 
.live-project-copy .eyebrow {
  margin-bottom: 7px;
  font-size: 10px;
}
 
.live-project-copy h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.3;
}
 
.live-project-copy > p:not(.eyebrow) {
  margin: 8px 0 0;
  max-width: 42ch;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}
 
@media (max-width: 980px) {
  .live-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
 
@media (max-width: 620px) {
  .live-gallery {
    margin-bottom: 30px;
  }
 
  .live-gallery-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
 
  .live-project-image-link {
    aspect-ratio: 4 / 3;
  }
 
  .live-project-copy {
    padding-top: 12px;
  }
}
 
