    :root {
      --warm: #f7f5f2;
      --cream: #f3f1ee;
      --soft: #efebe8;
      --anthracite: #34393b;
      --ink: #1a1a1a;
      --secondary: #555;
      --muted: #8a8a8a;
      --line: #e6e6e6;
      --accent: #af9780;
      --hero-h: 899px;
      --ease-out: cubic-bezier(.22, 1, .36, 1);
    }

    * {
      box-sizing: border-box;
    }

    html {
      background: var(--warm);
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      background: var(--warm);
      color: var(--ink);
      font-family: "Gill Sans Nova", "Gill Sans", "Gill Sans MT", Lato, Arial, sans-serif;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

    img,
    svg {
      display: block;
      max-width: 100%;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button,
    input {
      font: inherit;
    }

    .skip-link {
      position: fixed;
      left: 16px;
      top: 16px;
      z-index: 100;
      transform: translateY(-150%);
      background: var(--anthracite);
      color: #fff;
      padding: 12px 16px;
      transition: transform .2s ease;
    }

    .skip-link:focus {
      transform: translateY(0);
    }

    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      height: 94px;
      border-bottom: 1px solid rgba(230, 230, 230, .6);
      background: rgba(247, 245, 242, .96);
      backdrop-filter: blur(12px);
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: min(100%, 1440px);
      height: 100%;
      margin: 0 auto;
      padding: 16px 32px;
      gap: 28px;
    }

    .brand-logo {
      width: 210px;
      height: 57px;
      object-fit: contain;
      mix-blend-mode: multiply;
    }

    .desktop-nav {
      display: flex;
      align-items: center;
      gap: 34px;
      margin-left: auto;
    }

    .nav-link,
    .eyebrow,
    .button-label {
      font-size: 11px;
      font-weight: 600;
      line-height: 18px;
      text-transform: uppercase;
    }

    .nav-link {
      letter-spacing: .22px;
      transition: color .22s ease;
    }

    .nav-link:hover,
    .nav-link:focus-visible {
      color: var(--accent);
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 30px;
      margin-left: 2px;
    }

    .icon-link,
    .mobile-phone-link,
    .mobile-toggle {
      display: grid;
      place-items: center;
      width: 48px;
      min-width: 48px;
      height: 48px;
      color: var(--anthracite);
      transition: color .22s ease, opacity .22s ease, transform .22s ease;
    }

    .icon-link:hover,
    .icon-link:focus-visible,
    .mobile-phone-link:hover,
    .mobile-phone-link:focus-visible,
    .mobile-toggle:hover,
    .mobile-toggle:focus-visible {
      color: var(--accent);
      transform: translateY(-1px);
    }

    .icon-link img,
    .mobile-phone-link img {
      width: 24px;
      height: 24px;
      object-fit: contain;
    }

    .mobile-phone-link {
      display: none;
    }

    .mobile-toggle {
      display: none;
      border: 0;
      background: transparent;
      padding: 0;
      cursor: pointer;
    }

    .mobile-toggle::before {
      display: block;
      width: 24px;
      height: 24px;
      background: currentColor;
      content: "";
      mask: url("../mobile-landing/menu.svg") center / contain no-repeat;
      -webkit-mask: url("../mobile-landing/menu.svg") center / contain no-repeat;
    }

    .mobile-toggle[aria-expanded="true"]::before {
      mask-image: url("../mobile-landing/close-menu.svg");
      -webkit-mask-image: url("../mobile-landing/close-menu.svg");
    }

    .mobile-menu {
      display: none;
      border-top: 1px solid var(--line);
      background: var(--warm);
    }

    .mobile-menu.is-open {
      display: block;
    }

    .mobile-menu nav {
      display: grid;
      gap: 6px;
      padding: 18px 24px 24px;
    }

    .mobile-menu .nav-link {
      padding: 10px 0;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: space-between;
      min-height: 52px;
      border: 1px solid transparent;
      padding: 16px 24px;
      text-transform: uppercase;
      transition: background .22s ease, border-color .22s ease, color .22s ease, box-shadow .22s ease, transform .22s ease;
    }

    .btn-dark {
      background: var(--anthracite);
      color: #fff;
    }

    .btn-dark:hover,
    .btn-dark:focus-visible {
      background: #1f2325;
      box-shadow: 0 9px 22px rgba(0, 0, 0, .16);
      transform: translateY(-1px);
    }

    .btn-light {
      border-color: var(--muted);
      color: var(--muted);
      background: transparent;
    }

    .btn-light:hover,
    .btn-light:focus-visible {
      border-color: var(--anthracite);
      background: var(--anthracite);
      color: #fff;
      transform: translateY(-1px);
    }

    .text-link {
      position: relative;
      display: inline-flex;
      align-items: center;
      gap: 16px;
      min-height: 24px;
      color: var(--secondary);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 1.8px;
      line-height: 16px;
      text-transform: uppercase;
      transition: color .22s ease;
    }

    .text-link::after {
      position: absolute;
      right: 0;
      bottom: -6px;
      left: 0;
      height: 1px;
      background: currentColor;
      content: "";
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .22s ease;
    }

    .text-link:hover,
    .text-link:focus-visible {
      color: var(--anthracite);
    }

    .text-link:hover::after,
    .text-link:focus-visible::after {
      transform: scaleX(1);
    }

    .hero-section {
      overflow: hidden;
      background: linear-gradient(180deg, #ece9e6 0%, #efedeb 24.168%, #efedeb 100%);
    }

    .hero-shell {
      position: relative;
      width: min(100%, 1440px);
      min-height: var(--hero-h);
      margin: 0 auto;
      overflow: hidden;
    }

    .hero-media {
      position: absolute;
      inset: 0;
      max-width: none;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: opacity .45s ease, transform 5s ease;
    }

    .hero-media.is-changing {
      opacity: .58;
      transform: scale(1.025);
    }

    .hero-card {
      position: absolute;
      top: 138px;
      left: 109px;
      z-index: 10;
      width: 403px;
      background: var(--cream);
      padding: 64px 36px;
    }

    .eyebrow {
      margin: 0;
      letter-spacing: 2.2px;
      color: var(--accent);
    }

    .hero-title {
      margin: 45px 0 0;
      color: var(--anthracite);
      font-size: 36px;
      font-weight: 400;
      letter-spacing: -.5px;
      line-height: 47px;
      text-transform: uppercase;
    }

    .hero-copy {
      margin: 26px 0 0;
      color: var(--anthracite);
      font-size: 16px;
      font-weight: 400;
      line-height: 28px;
    }

    .short-rule {
      width: 38px;
      height: 1px;
      margin-top: 21px;
      background: var(--accent);
    }

    .hero-actions-stack {
      display: grid;
      width: 290px;
      gap: 16px;
      margin-top: 37px;
    }

    .hero-actions-stack .btn {
      width: 100%;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 1.8px;
      line-height: 16px;
    }

    .hero-actions-stack .btn-dark {
      font-size: 12px;
      font-weight: 400;
      letter-spacing: .48px;
      line-height: 18px;
    }

    .hero-carousel {
      --card-w: 249px;
      --pos-1-x: 122px;
      --pos-2-x: 224px;
      --pos-3-x: 314px;
      position: absolute;
      top: 534px;
      left: 810px;
      z-index: 20;
      width: 563px;
      height: 286px;
    }

    .carousel-card {
      position: absolute;
      top: 0;
      left: 0;
      width: var(--card-w);
      height: 210px;
      border: 0;
      background: var(--warm);
      box-shadow: 0 1px 9px rgba(0, 0, 0, .25);
      cursor: pointer;
      overflow: hidden;
      padding: 8px;
      text-align: left;
      transform-origin: left top;
      transition: height .56s var(--ease-out), transform .56s var(--ease-out), opacity .32s ease, box-shadow .32s ease;
      will-change: transform;
    }

    .carousel-card[data-mobile-only="true"] {
      display: none;
    }

    .carousel-card.is-promoting {
      z-index: 10 !important;
    }

    .carousel-card[data-position="0"] {
      z-index: 4;
      height: 258px;
      opacity: 1;
      transform: translate3d(0, 0, 0) scale(1);
    }

    .carousel-card[data-position="1"] {
      z-index: 3;
      height: 230px;
      opacity: .96;
      transform: translate3d(var(--pos-1-x), 22px, 0) scale(.96);
    }

    .carousel-card[data-position="2"] {
      z-index: 2;
      height: 230px;
      opacity: .92;
      transform: translate3d(var(--pos-2-x), 33px, 0) scale(.91);
    }

    .carousel-card[data-position="3"] {
      z-index: 1;
      opacity: .88;
      transform: translate3d(var(--pos-3-x), 48px, 0) scale(.86);
    }

    .carousel-card:hover,
    .carousel-card:focus-visible {
      box-shadow: 0 14px 30px rgba(0, 0, 0, .22);
      outline: 1px solid rgba(175, 151, 128, .45);
      outline-offset: 3px;
    }

    .card-media {
      display: block;
      width: 100%;
      height: 98px;
      overflow: hidden;
      transition: height .56s var(--ease-out);
    }

    .card-media picture {
      display: block;
      width: 100%;
      height: 100%;
    }

    .carousel-card[data-position="0"] .card-media {
      height: 157px;
    }

    .carousel-card[data-position="1"] .card-media {
      height: 129px;
    }

    .carousel-card[data-position="2"] .card-media {
      height: 115px;
    }

    .carousel-card[data-position="3"] .card-media {
      height: 98px;
    }

    .card-media img {
      display: block;
      max-width: none;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .card-body {
      display: grid;
      gap: 7px;
      padding: 14px 8px 12px;
    }

    .carousel-card:not([data-position="0"]) .card-body {
      max-height: 94px;
      overflow: hidden;
    }

    .carousel-card .card-title {
      color: var(--ink);
      font-size: 16px;
      font-weight: 400;
      letter-spacing: .56px;
      line-height: 21.8px;
      text-transform: uppercase;
    }

    .card-copy {
      color: var(--secondary);
      font-size: 14px;
      font-weight: 400;
      line-height: 22.75px;
    }

    .card-line {
      width: 68px;
      height: 1px;
      margin-top: 4px;
      background: var(--accent);
    }

    .benefits {
      background: #f5f3f2;
      padding: 0 clamp(40px, 6.95vw, 100px);
    }

    .benefits-inner {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      align-items: center;
      gap: 30px;
      width: min(100%, 1240px);
      min-height: 142px;
      margin: 0 auto;
      padding: 34px 0;
    }

    .benefit {
      display: flex;
      align-items: center;
      gap: 27px;
      min-width: 0;
    }

    .benefit-icon {
      display: grid;
      place-items: center;
      flex: 0 0 68px;
      width: 68px;
      height: 68px;
    }

    .benefit-icon img {
      width: 52px;
      height: 52px;
      object-fit: contain;
    }

    .benefit-title {
      margin: 0;
      color: var(--ink);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .44px;
      line-height: 18px;
      text-transform: uppercase;
    }

    .benefit-copy {
      margin: 4px 0 0;
      color: var(--secondary);
      font-size: 14px;
      line-height: 16px;
    }

    .projects {
      background: #f8f7f5;
      padding: 39px clamp(40px, 6.95vw, 100px);
    }

    .projects-grid {
      display: grid;
      grid-template-columns: 283px minmax(0, 1fr) 301px;
      align-items: stretch;
      gap: 30px;
      width: min(100%, 1240px);
      margin: 0 auto;
    }

    .project-copy,
    .journal-card {
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 32px;
    }

    .section-title {
      margin: 0;
      color: var(--ink);
      font-size: 24px;
      font-weight: 400;
      letter-spacing: -.5px;
      line-height: 40px;
      text-transform: uppercase;
    }

    .section-copy {
      margin: 16px 0 0;
      color: var(--secondary);
      font-size: 14px;
      letter-spacing: .28px;
      line-height: 22px;
    }

    .project-image {
      width: 100%;
      height: 444px;
      object-fit: cover;
    }

    .journal-card {
      background: var(--soft);
      padding: 0 36px;
    }

    .logo-band {
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      background: var(--warm);
    }

    .logo-row {
      display: grid;
      grid-template-columns: 150px minmax(0, 1fr);
      align-items: center;
      gap: 98px;
      width: min(100%, 1240px);
      min-height: 111px;
      margin: 0 auto;
    }

    .logo-row + .logo-row {
      border-top: 1px solid var(--line);
    }

    .logo-heading {
      margin: 0;
      color: #111;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 1.44px;
      line-height: 18px;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .logo-list {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 26px;
      min-width: 0;
    }

    .logo-mark {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      min-width: 86px;
      min-height: 76px;
      filter: grayscale(1);
      opacity: .62;
      outline-offset: 8px;
      transition: filter .24s ease, opacity .24s ease, transform .24s ease;
    }

    .logo-mark::after {
      position: absolute;
      right: 16px;
      bottom: 7px;
      left: 16px;
      height: 1px;
      background: var(--accent);
      content: "";
      transform: scaleX(0);
      transform-origin: center;
      transition: transform .24s ease;
    }

    .logo-mark:hover,
    .logo-mark:focus-visible {
      filter: grayscale(0);
      opacity: 1;
      transform: translateY(-4px) scale(1.035);
    }

    .logo-mark:hover::after,
    .logo-mark:focus-visible::after {
      transform: scaleX(1);
    }

    .brand-logo-grid {
      display: grid;
      grid-template-columns: repeat(6, minmax(0, 1fr));
      gap: 22px;
    }

    .brand-logo-item {
      min-width: 0;
      background: transparent;
      filter: grayscale(1);
      mix-blend-mode: normal;
      opacity: .62;
    }

    .brand-logo-item:hover,
    .brand-logo-item:focus-within,
    .brand-logo-item.is-color {
      background: transparent;
      filter: none;
      mix-blend-mode: normal;
      opacity: 1;
    }

    .brand-logo-item.brand-logo--miele {
      filter: none;
      opacity: 1;
    }

    .brand-logo-item.brand-logo--miele::before {
      position: absolute;
      color: #858585;
      content: attr(data-brand-name);
      line-height: 1;
      opacity: 1;
      transition: opacity .24s ease;
    }

    .brand-logo-item.brand-logo--miele::before {
      font-family: Georgia, 'Times New Roman', serif;
      font-size: 31px;
      font-weight: 700;
    }

    .brand-logo-item.brand-logo--miele .brand-logo {
      opacity: 0;
      transition: opacity .24s ease;
    }

    .brand-logo-item.brand-logo--miele:hover,
    .brand-logo-item.brand-logo--miele:focus-within,
    .brand-logo-item.brand-logo--miele.is-color {
      filter: none;
      opacity: 1;
    }

    .brand-logo-item.brand-logo--miele:hover::before,
    .brand-logo-item.brand-logo--miele:focus-within::before,
    .brand-logo-item.brand-logo--miele.is-color::before {
      opacity: 0;
    }

    .brand-logo-item.brand-logo--miele:hover .brand-logo,
    .brand-logo-item.brand-logo--miele:focus-within .brand-logo,
    .brand-logo-item.brand-logo--miele.is-color .brand-logo {
      opacity: 1;
    }

    .logo-hg {
      width: 130px;
      max-height: 39px;
    }

    .logo-elle {
      width: 132px;
      max-height: 54px;
    }

    .logo-living {
      width: 132px;
      max-height: 54px;
    }

    .logo-telegraph {
      width: 100px;
      max-height: 51px;
    }

    .logo-dwell {
      width: 100px;
      max-height: 75px;
    }

    .logo-kbbreview {
      width: 132px;
      max-height: 32px;
    }

    .logo-hampshire {
      width: 132px;
      max-height: 38px;
    }

    .logo-bku {
      width: 104px;
      max-height: 50px;
    }

    .logo-kitchens-review {
      width: 120px;
      max-height: 54px;
    }

    .logo-brand {
      background: transparent;
      width: min(145px, 100%);
      max-width: 145px;
      max-height: 58px;
      mix-blend-mode: normal;
      object-fit: contain;
    }

    .location {
      display: grid;
      grid-template-columns: 513px minmax(0, 1fr);
      min-height: 376px;
      background: #f2f0ee;
      border-bottom: 1px solid var(--line);
    }

    .location-copy {
      display: flex;
      flex-direction: column;
      gap: 24px;
      padding: 36px 86px;
    }

    .location-title {
      margin: 6px 0 0;
      color: var(--ink);
      font-size: 24px;
      font-weight: 400;
      line-height: 32px;
      text-transform: uppercase;
    }

    .location-intro {
      margin: 7px 0 0;
      color: var(--secondary);
      font-size: 14px;
      line-height: 24px;
    }

    .address-line {
      display: flex;
      gap: 16px;
      align-items: center;
      font-style: normal;
    }

    .address-line img {
      flex: 0 0 34px;
      width: 34px;
      height: 34px;
      object-fit: contain;
    }

    .address-line strong {
      display: block;
      color: var(--secondary);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 1.44px;
      line-height: 18px;
      text-transform: uppercase;
    }

    .address-line span {
      color: var(--secondary);
      font-size: 14px;
      line-height: 23px;
    }

    .location .btn {
      width: 100%;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 1.8px;
      line-height: 16px;
    }

    .map-frame {
      position: relative;
      min-width: 0;
      overflow: hidden;
      background: #e7e2dd;
    }

    .map-frame iframe,
    .map-fallback {
      display: block;
      width: 100%;
      height: 376px;
    }

    .map-frame iframe {
      border: 0;
    }

    .map-fallback {
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 18px;
      padding: 48px;
      color: var(--secondary);
      background: #e7e2dd;
    }

    .map-fallback p {
      margin: 0;
      font-size: 14px;
      line-height: 24px;
    }

    .map-fallback strong {
      display: block;
      color: var(--anthracite);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 1.44px;
      line-height: 18px;
      text-transform: uppercase;
    }

    .chat-button {
      position: fixed;
      right: 32px;
      bottom: 32px;
      z-index: 40;
      display: grid;
      place-items: center;
      width: 62px;
      height: 62px;
      border: 1px solid #fff;
      border-radius: 999px;
      background: var(--anthracite);
      box-shadow: 0 10px 28px rgba(0, 0, 0, .18);
      color: #fff;
      transition: transform .22s ease, box-shadow .22s ease;
    }

    .chat-button:hover,
    .chat-button:focus-visible {
      background: #1f2325;
      box-shadow: 0 14px 30px rgba(0, 0, 0, .24);
      transform: translateY(-2px) scale(1.03);
    }

    .chat-button.is-chat-launcher-active,
    .chat-button.is-chat-launcher-loading {
      border-color: var(--anthracite);
      background: #fff;
      color: var(--anthracite);
      box-shadow: 0 14px 32px rgba(0, 0, 0, .22);
    }

    .chat-button.is-chat-launcher-active:hover,
    .chat-button.is-chat-launcher-active:focus-visible,
    .chat-button.is-chat-launcher-loading:hover,
    .chat-button.is-chat-launcher-loading:focus-visible {
      background: #fff;
      box-shadow: 0 16px 34px rgba(0, 0, 0, .26);
    }

    .chat-button[aria-expanded="true"] {
      z-index: 2147483000;
    }

    .chat-button img {
      width: 40px;
      height: 40px;
      filter: invert(1);
    }

    .chat-button.is-chat-launcher-active img,
    .chat-button.is-chat-launcher-loading img {
      filter: none;
    }

    .chat-button.is-chat-launcher-pulsing::after {
      content: "";
      position: absolute;
      inset: -6px;
      border: 1px solid rgba(52, 57, 59, .42);
      border-radius: inherit;
      box-shadow: 0 0 0 0 rgba(52, 57, 59, .18);
      pointer-events: none;
      animation: chat-launcher-pulse .55s var(--ease-out) both;
    }

    .chat-status {
      position: fixed;
      right: 32px;
      bottom: 108px;
      z-index: 2147483001;
      max-width: min(280px, calc(100vw - 40px));
      margin: 0;
      padding: 10px 12px;
      border: 1px solid rgba(255, 255, 255, .32);
      border-radius: 4px;
      background: var(--anthracite);
      box-shadow: 0 12px 28px rgba(0, 0, 0, .22);
      color: #fff;
      font-size: 13px;
      line-height: 18px;
    }

    .chat-status[hidden] {
      display: none !important;
    }

    @keyframes chat-launcher-pulse {
      0% {
        opacity: .7;
        transform: scale(.96);
      }

      100% {
        opacity: 0;
        transform: scale(1.26);
        box-shadow: 0 0 0 14px rgba(52, 57, 59, 0);
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .chat-button,
      .chat-button img {
        transition-duration: .01ms;
      }

      .chat-button.is-chat-launcher-pulsing::after {
        animation: none;
        opacity: 0;
      }
    }

    @media (max-width: 767px) {
      .chat-button {
        right: 18px;
        bottom: calc(92px + env(safe-area-inset-bottom));
        z-index: 60;
        width: 56px;
        height: 56px;
      }

      .chat-status {
        right: 18px;
        bottom: calc(160px + env(safe-area-inset-bottom));
        max-width: min(280px, calc(100vw - 36px));
      }

      .chat-button img {
        width: 36px;
        height: 36px;
      }

      .chat-button[aria-expanded="true"] {
        top: 16px;
        right: 16px;
        bottom: auto;
        width: 52px;
        height: 52px;
      }

      .chat-button[aria-expanded="true"] img {
        width: 34px;
        height: 34px;
      }
    }

    .site-footer {
      background: #f7f6f4;
      padding: 32px 48px;
    }

    .site-footer-main-section {
      padding-bottom: 0;
    }

    .site-footer-legal {
      padding-top: 38px;
    }

    .footer-main {
      display: grid;
      grid-template-columns: 243px 1fr 1fr 1fr 155px;
      gap: 0;
      width: min(100%, 1344px);
      margin: 0 auto;
    }

    .footer-col {
      min-width: 0;
      padding: 0 32px;
      border-left: 1px solid var(--line);
    }

    .footer-brand {
      padding: 0 40px 0 0;
      border-left: 0;
    }

    .footer-logo {
      width: 243px;
      aspect-ratio: 1100 / 300;
      object-fit: contain;
      mix-blend-mode: multiply;
    }

    .footer-desc {
      margin: 20px 0 0;
      padding: 0 40px;
      color: var(--secondary);
      font-size: 12px;
      line-height: 21px;
    }

    .footer-heading {
      margin: 0;
      color: var(--ink);
      font-size: 10px;
      font-weight: 600;
      line-height: 18px;
      text-transform: uppercase;
    }

    .footer-text {
      margin: 16px 0 0;
      color: var(--secondary);
      font-size: 11px;
      line-height: 24px;
    }

    .footer-col .text-link {
      margin-top: 18px;
    }

    .social-grid {
      display: grid;
      grid-template-columns: repeat(2, 48px);
      gap: 12px 20px;
      margin-top: 14px;
    }

    .social-link {
      display: grid;
      place-items: center;
      width: 48px;
      height: 48px;
      transition: opacity .22s ease, transform .22s ease;
    }

    .social-link:hover,
    .social-link:focus-visible {
      opacity: .65;
      transform: translateY(-2px);
    }

    .social-link img {
      width: 24px;
      height: 24px;
      object-fit: contain;
    }

    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      width: min(100%, 1344px);
      margin: 0 auto;
      border-top: 1px solid var(--line);
      padding: 24px 23px 0;
      color: var(--secondary);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 1.32px;
      line-height: 18px;
      text-transform: uppercase;
    }

    .footer-bottom p {
      margin: 0;
    }

    .footer-links {
      display: flex;
      gap: 40px;
    }

    .footer-cookie-settings,
    .cookie-settings-inline {
      appearance: none;
      border: 0;
      background: transparent;
      cursor: pointer;
      font: inherit;
      padding: 0;
    }

    .cookie-banner {
      position: fixed;
      right: max(24px, env(safe-area-inset-right));
      bottom: max(24px, env(safe-area-inset-bottom));
      left: max(24px, env(safe-area-inset-left));
      z-index: 70;
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 24px;
      align-items: center;
      width: min(calc(100vw - 48px), 1180px);
      margin: 0 auto;
      border: 1px solid rgba(52, 57, 59, .14);
      border-radius: 8px;
      background: #f7f6f4;
      box-shadow: 0 18px 50px rgba(0, 0, 0, .18);
      padding: 22px 24px;
    }

    .cookie-banner[hidden],
    .cookie-dialog[hidden] {
      display: none;
    }

    .cookie-banner-copy {
      min-width: 0;
    }

    .cookie-banner .eyebrow,
    .cookie-panel .eyebrow,
    .cookie-panel-body > .section-title,
    .cookie-title,
    .cookie-choice h3,
    .cookie-choice strong,
    .cookie-required,
    .cookie-policy-links .text-link,
    .cookie-action {
      letter-spacing: 0;
    }

    .cookie-title {
      margin: 6px 0 0;
      color: var(--ink);
      font-size: 22px;
      font-weight: 400;
      line-height: 30px;
    }

    .cookie-banner-copy p:last-child,
    .cookie-panel-body > .section-copy {
      margin: 10px 0 0;
      color: var(--secondary);
      font-size: 14px;
      line-height: 22px;
    }

    .cookie-banner-actions,
    .cookie-modal-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: flex-end;
    }

    .cookie-action {
      min-height: 44px;
      padding: 12px 18px;
      white-space: normal;
      text-align: center;
    }

    .cookie-action.btn-light {
      background: #fff;
    }

    .cookie-action.btn-light:hover,
    .cookie-action.btn-light:focus-visible {
      border-color: var(--anthracite);
      background: #f1eee9;
      color: var(--anthracite);
      box-shadow: 0 9px 22px rgba(0, 0, 0, .08);
    }

    .cookie-dialog {
      width: min(92vw, 680px);
      max-height: min(88vh, 760px);
      border: 0;
      background: transparent;
      overflow: auto;
      padding: 0;
    }

    .cookie-dialog::backdrop {
      background: rgba(0, 0, 0, .48);
    }

    .cookie-panel {
      position: relative;
      display: flex;
      flex-direction: column;
      background: var(--warm);
      box-shadow: 0 18px 48px rgba(0, 0, 0, .22);
    }

    .cookie-panel-body {
      padding: 42px 42px 0;
    }

    .cookie-dialog-close {
      top: 14px;
      right: 14px;
    }

    .cookie-choice {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 18px;
      align-items: center;
      margin-top: 18px;
      border: 1px solid var(--line);
      background: #fff;
      padding: 18px;
    }

    .cookie-choice h3,
    .cookie-choice strong {
      display: block;
      margin: 0;
      color: var(--ink);
      font-size: 14px;
      font-weight: 600;
      line-height: 20px;
      text-transform: uppercase;
    }

    .cookie-choice p,
    .cookie-choice-toggle > span:first-child span {
      display: block;
      margin: 8px 0 0;
      color: var(--secondary);
      font-size: 13px;
      line-height: 21px;
    }

    .cookie-required {
      min-width: 88px;
      color: var(--secondary);
      font-size: 11px;
      font-weight: 600;
      line-height: 18px;
      text-align: right;
      text-transform: uppercase;
    }

    .cookie-switch {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 54px;
      height: 44px;
    }

    .cookie-switch input {
      position: absolute;
      inset: 0;
      z-index: 1;
      width: 100%;
      height: 100%;
      margin: 0;
      cursor: pointer;
      opacity: 0;
    }

    .cookie-switch span {
      width: 48px;
      height: 26px;
      border: 1px solid var(--muted);
      border-radius: 999px;
      background: #ebe8e3;
      pointer-events: none;
      transition: background .22s ease, border-color .22s ease;
    }

    .cookie-switch span::after {
      display: block;
      width: 20px;
      height: 20px;
      margin: 2px;
      border-radius: 50%;
      background: var(--muted);
      content: "";
      transition: background .22s ease, transform .22s ease;
    }

    .cookie-switch input:checked + span {
      border-color: var(--anthracite);
      background: var(--anthracite);
    }

    .cookie-switch input:checked + span::after {
      background: #fff;
      transform: translateX(22px);
    }

    .cookie-switch input:focus-visible + span {
      outline: 2px solid var(--anthracite);
      outline-offset: 3px;
    }

    .cookie-policy-links {
      display: flex;
      flex-wrap: wrap;
      gap: 18px 28px;
      margin-top: 22px;
    }

    .cookie-modal-actions {
      margin: 28px 42px 42px;
    }

    .calendly-fallback .cookie-settings-inline {
      margin-right: 16px;
    }

    .brochure-dialog {
      width: min(92vw, 780px);
      max-height: min(92vh, 840px);
      border: 0;
      background: transparent;
      overflow: auto;
      padding: 0;
    }

    .brochure-dialog[data-variant="consultation"] {
      width: min(94vw, 1060px);
    }

    .brochure-dialog::backdrop {
      background: rgba(0, 0, 0, .5);
    }

    .brochure-form {
      display: grid;
      grid-template-columns: 1fr 1fr;
      background: var(--warm);
      box-shadow: 0 16px 40px rgba(0, 0, 0, .22);
    }

    .brochure-form[hidden] {
      display: none;
    }

    .brochure-preview {
      display: block;
      width: 100%;
      height: 100%;
      min-height: 460px;
      background: #571820;
    }

    .brochure-form img {
      width: 100%;
      height: 100%;
      min-height: 460px;
      object-fit: cover;
    }

    .brochure-preview img {
      object-fit: contain;
      object-position: center;
    }

    .brochure-fields {
      position: relative;
      padding: 40px;
    }

    .dialog-close {
      position: absolute;
      top: 12px;
      right: 12px;
      display: grid;
      place-items: center;
      width: 44px;
      height: 44px;
      border: 0;
      background: transparent;
      color: var(--anthracite);
      cursor: pointer;
      font-size: 32px;
      line-height: 1;
    }

    .form-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
      margin-top: 24px;
    }

    .form-grid input {
      min-height: 48px;
      border: 1px solid var(--line);
      background: #fff;
      padding: 0 14px;
    }

    .form-grid input[aria-invalid="true"] {
      border-color: #9f2f2f;
      outline: 1px solid #9f2f2f;
    }

    .form-grid .full {
      grid-column: 1 / -1;
    }

    .honeypot {
      position: absolute;
      left: -10000px;
      width: 1px;
      height: 1px;
      overflow: hidden;
    }

    .consent {
      display: flex;
      gap: 12px;
      margin-top: 18px;
      color: var(--secondary);
      font-size: 14px;
      line-height: 22px;
    }

    .consent input {
      width: 20px;
      height: 20px;
      margin-top: 2px;
    }

    .submit-brochure {
      width: 100%;
      margin-top: 24px;
    }

    .submit-brochure:disabled {
      cursor: wait;
      opacity: .72;
    }

    .brochure-status {
      margin: 18px 0 0;
      color: var(--secondary);
      font-size: 14px;
      line-height: 22px;
    }

    .brochure-status[data-state="success"] {
      color: #2f6b3c;
    }

    .brochure-status[data-state="error"] {
      color: #9f2f2f;
    }

    .brochure-status p {
      margin: 0;
    }

    .brochure-status-actions {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 14px;
      margin-top: 16px;
    }

    .brochure-access-link {
      min-height: 42px;
      padding: 0 18px;
      font-size: 10px;
    }

    .brochure-upsell-link {
      margin-top: 0;
    }

    .consultation-modal {
      grid-template-columns: minmax(280px, .86fr) minmax(0, 1.34fr);
      min-height: min(82vh, 760px);
    }

    .consultation-info {
      position: relative;
      padding: 40px;
    }

    .consultation-helper {
      margin: 22px 0 0;
      color: var(--secondary);
      font-size: 15px;
      line-height: 24px;
    }

    .consultation-details {
      display: grid;
      gap: 18px;
      margin: 28px 0 0;
    }

    .consultation-details div {
      display: grid;
      gap: 4px;
    }

    .consultation-details dt {
      color: var(--secondary);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1.2px;
      line-height: 16px;
      text-transform: uppercase;
    }

    .consultation-details dd {
      margin: 0;
      color: var(--anthracite);
      font-size: 15px;
      line-height: 23px;
    }

    .consultation-scheduler {
      position: relative;
      display: flex;
      flex-direction: column;
      min-height: 700px;
      background: #fff;
      padding: 28px;
    }

    .calendly-inline-widget {
      flex: 1;
      min-height: 700px;
    }

    .calendly-inline-widget iframe {
      width: 100%;
      height: 100%;
      min-height: 700px;
      border: 0;
    }

    .calendly-loading,
    .calendly-fallback,
    .calendly-status {
      color: var(--secondary);
      font-size: 14px;
      line-height: 22px;
    }

    .calendly-loading {
      display: grid;
      place-items: center;
      min-height: 180px;
      border: 1px solid var(--line);
      background: var(--warm);
    }

    .calendly-loading[hidden],
    .calendly-fallback[hidden],
    .calendly-status[hidden] {
      display: none;
    }

    .calendly-fallback {
      display: grid;
      gap: 12px;
      border: 1px solid var(--line);
      background: var(--warm);
      padding: 18px;
    }

    .calendly-fallback p {
      margin: 0;
    }

    .calendly-status {
      margin: 12px 0 0;
    }

    .calendly-status[data-state="success"] {
      color: #2f6b3c;
    }

    .calendly-status[data-state="error"] {
      color: #9f2f2f;
    }

    .resource-access-page {
      display: flex;
      flex-direction: column;
      min-height: 100vh;
      overflow: hidden;
      background: var(--warm);
    }

    .resource-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex: 0 0 auto;
      height: 76px;
      border-bottom: 1px solid rgba(230, 230, 230, .8);
      padding: 12px 48px;
      background: rgba(247, 245, 242, .98);
    }

    .resource-header .brand-logo {
      width: 172px;
      height: auto;
    }

    .resource-back-link {
      margin-top: 0;
      white-space: nowrap;
    }

    .resource-main {
      flex: 1 1 auto;
      min-height: 0;
      padding: 24px 48px 18px;
    }

    .resource-shell {
      display: grid;
      grid-template-rows: auto minmax(0, 1fr) auto;
      gap: 14px;
      width: min(100%, 1180px);
      height: 100%;
      min-height: 0;
      margin: 0 auto;
    }

    .resource-copy {
      display: grid;
      gap: 6px;
    }

    .resource-title {
      margin: 0;
      color: var(--anthracite);
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(30px, 3vw, 44px);
      font-weight: 400;
      letter-spacing: 0;
      line-height: 1.08;
    }

    .resource-description,
    .resource-expiry,
    .resource-viewer-fallback {
      margin: 0;
      color: var(--secondary);
      font-size: 14px;
      line-height: 22px;
    }

    .resource-content {
      display: grid;
      grid-template-columns: minmax(0, 1fr);
      gap: 18px;
      min-height: 0;
    }

    .resource-preview-wrap:not([hidden]) + .resource-viewer {
      min-width: 0;
    }

    .resource-content:has(.resource-preview-wrap:not([hidden])) {
      grid-template-columns: 220px minmax(0, 1fr);
    }

    .resource-preview-wrap {
      min-height: 0;
      border: 1px solid var(--line);
      background: #fff;
      padding: 10px;
    }

    .resource-preview {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .resource-viewer {
      display: grid;
      place-items: center;
      min-height: 0;
      overflow: auto;
      border: 1px solid var(--line);
      background: #fff;
    }

    .resource-viewer iframe {
      width: 100%;
      height: 100%;
      min-height: 420px;
      border: 0;
      background: #fff;
    }

    .resource-actions {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 14px;
      min-height: 50px;
    }

    .resource-actions .btn {
      min-height: 48px;
      padding: 0 24px;
    }

    .resource-upsell-link {
      margin-top: 0;
    }

    .resource-access-page .site-footer {
      flex: 0 0 auto;
      padding: 0 48px 18px;
    }

    .resource-access-page .site-footer-legal {
      padding-top: 0;
    }

    .resource-access-page .footer-bottom {
      padding-top: 16px;
    }

    .resource-shell[data-state="expired"],
    .resource-shell[data-state="invalid"],
    .resource-shell[data-state="unavailable"],
    .resource-shell[data-state="error"] {
      align-content: center;
      justify-items: center;
      text-align: center;
    }

    .resource-shell[data-state="expired"] .resource-copy,
    .resource-shell[data-state="invalid"] .resource-copy,
    .resource-shell[data-state="unavailable"] .resource-copy,
    .resource-shell[data-state="error"] .resource-copy {
      max-width: 620px;
      justify-items: center;
    }

    .resource-shell[data-state="expired"] .resource-content,
    .resource-shell[data-state="invalid"] .resource-content,
    .resource-shell[data-state="unavailable"] .resource-content,
    .resource-shell[data-state="error"] .resource-content {
      display: none;
    }

    .resource-shell[data-state="expired"] .resource-actions,
    .resource-shell[data-state="invalid"] .resource-actions,
    .resource-shell[data-state="unavailable"] .resource-actions,
    .resource-shell[data-state="error"] .resource-actions {
      justify-content: center;
    }

    .campaign-promo-banner {
      background: var(--anthracite);
      color: #fff;
    }

    .campaign-promo-banner a {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 8px;
      min-height: 48px;
      width: 100%;
      margin: 0 auto;
      padding: 7px 24px;
      text-align: center;
    }

    .campaign-promo-banner [data-campaign-banner-link][hidden] {
      display: none !important;
    }

    .campaign-promo-banner a:hover {
      background: rgba(0, 0, 0, .12);
    }

    .campaign-promo-banner a:focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: -4px;
    }

    .campaign-promo-note,
    .campaign-promo-terms {
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0;
      line-height: 20px;
      text-transform: uppercase;
    }

    .campaign-promo-text {
      font-size: 23px;
      font-weight: 700;
      letter-spacing: 0;
      line-height: 28px;
      text-transform: uppercase;
    }

    .campaign-promo-note,
    .campaign-promo-terms {
      color: rgba(255, 255, 255, .88);
    }

    .campaign-promo-note::before,
    .campaign-promo-terms::before {
      content: "|";
      margin-right: 8px;
      color: var(--accent);
    }

    .campaign-landing-page {
      background: var(--warm);
    }

    .campaign-main {
      min-height: calc(100vh - 94px);
    }

    .campaign-unavailable {
      min-height: calc(100vh - 94px);
      padding: clamp(72px, 9vw, 118px) 24px;
      background: var(--warm);
    }

    .campaign-unavailable-inner {
      width: min(100%, 760px);
      margin: 0 auto;
      text-align: center;
    }

    .campaign-unavailable h1 {
      margin: 18px 0 0;
      color: var(--anthracite);
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(40px, 6vw, 72px);
      font-weight: 400;
      letter-spacing: 0;
      line-height: 1;
    }

    .campaign-unavailable p:not(.eyebrow) {
      max-width: 560px;
      margin: 24px auto 0;
      color: var(--secondary);
      font-size: 17px;
      line-height: 28px;
    }

    .campaign-unavailable .campaign-actions {
      justify-content: center;
    }

    .campaign-landing-shell {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(320px, 470px);
      gap: clamp(32px, 6vw, 88px);
      align-items: stretch;
      width: min(100%, 1220px);
      min-height: 620px;
      margin: 0 auto;
      padding: clamp(56px, 8vw, 104px) 40px clamp(48px, 7vw, 86px);
    }

    .campaign-copy {
      display: flex;
      flex-direction: column;
      justify-content: center;
      min-width: 0;
    }

    .campaign-title {
      max-width: 760px;
      margin: 22px 0 0;
      color: var(--anthracite);
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(42px, 6vw, 78px);
      font-weight: 400;
      letter-spacing: 0;
      line-height: .98;
    }

    .campaign-offer {
      max-width: 620px;
      margin: 28px 0 0;
      color: var(--secondary);
      font-size: 18px;
      line-height: 30px;
    }

    .campaign-expiry {
      max-width: 620px;
      margin: 18px 0 0;
      color: var(--anthracite);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0;
      line-height: 20px;
      text-transform: uppercase;
    }

    .campaign-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 34px;
    }

    .campaign-actions .btn,
    .campaign-resource-panel .btn {
      min-width: min(100%, 230px);
    }

    .campaign-creative,
    .campaign-text-panel {
      min-height: 100%;
      margin: 0;
      border: 1px solid rgba(52, 57, 59, .12);
      background: #fff;
    }

    .campaign-creative {
      display: grid;
      grid-template-rows: minmax(0, 1fr) auto;
    }

    .campaign-creative img {
      width: 100%;
      height: 100%;
      min-height: 520px;
      object-fit: contain;
      object-position: center;
    }

    .campaign-pdf-creative iframe {
      width: 100%;
      height: 100%;
      min-height: 520px;
      border: 0;
      background: #fff;
    }

    .campaign-creative figcaption {
      margin: 0;
      padding: 14px 18px;
      color: var(--secondary);
      font-size: 13px;
      line-height: 20px;
    }

    .campaign-pdf-link {
      color: inherit;
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .campaign-text-panel {
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      min-height: 520px;
      padding: 36px;
      background:
        linear-gradient(135deg, rgba(255, 255, 255, .82), rgba(255, 255, 255, .18)),
        #d9d0c7;
      color: var(--anthracite);
    }

    .campaign-panel-kicker {
      margin: 0 0 12px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0;
      line-height: 18px;
      text-transform: uppercase;
    }

    .campaign-text-panel p:last-child {
      max-width: 320px;
      margin: 0;
      font-family: Georgia, "Times New Roman", serif;
      font-size: 28px;
      line-height: 36px;
    }

    .campaign-supporting {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
      gap: clamp(28px, 5vw, 64px);
      width: min(100%, 1220px);
      margin: 0 auto;
      padding: 0 40px 72px;
    }

    .campaign-supporting-copy {
      display: grid;
      gap: 18px;
      align-content: start;
      color: var(--secondary);
      font-size: 16px;
      line-height: 28px;
    }

    .campaign-supporting-copy p,
    .campaign-resource-panel p {
      margin: 0;
    }

    .campaign-resource-panel {
      display: grid;
      gap: 18px;
      align-content: start;
      border-left: 1px solid var(--line);
      padding-left: 32px;
    }

    .campaign-resource-panel h2 {
      margin: 0;
      color: var(--anthracite);
      font-family: Georgia, "Times New Roman", serif;
      font-size: 28px;
      font-weight: 400;
      letter-spacing: 0;
      line-height: 36px;
    }

    .campaign-resource-panel p {
      color: var(--secondary);
      font-size: 15px;
      line-height: 24px;
    }

    @media (max-width: 1180px) {
      .desktop-nav {
        gap: 22px;
      }

      .header-actions {
        gap: 18px;
      }

      .hero-card {
        left: 48px;
      }

      .hero-carousel {
        left: auto;
        right: 32px;
      }

      .benefits-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .projects-grid {
        grid-template-columns: 260px minmax(0, 1fr);
      }

      .journal-card {
        grid-column: 1 / -1;
        min-height: 260px;
        padding: 40px;
      }

      .logo-row {
        gap: 42px;
        padding: 0 40px;
      }

      .logo-list {
        flex-wrap: wrap;
        justify-content: flex-start;
      }

      .brand-logo-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        width: 100%;
      }

      .footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 32px 0;
      }

      .footer-brand {
        grid-column: 1 / -1;
      }
    }

    @media (max-width: 1023px) {
      .site-header {
        height: 78px;
      }

      .header-inner {
        padding: 12px 20px;
      }

      .brand-logo {
        width: 170px;
        height: auto;
      }

      .desktop-nav,
      .header-cta {
        display: none;
      }

      .mobile-toggle {
        display: grid;
      }

      .mobile-phone-link {
        display: grid;
      }

      .hero-shell {
        display: grid;
        min-height: 0;
        overflow: visible;
        padding: 0 clamp(20px, 6vw, 48px) 56px;
      }

      .hero-media {
        position: relative;
        width: calc(100% + clamp(40px, 12vw, 96px));
        height: min(62vw, 470px);
        min-height: 300px;
        margin-left: calc(-1 * clamp(20px, 6vw, 48px));
      }

      .hero-card {
        position: relative;
        top: auto;
        left: auto;
        width: min(100%, 440px);
        margin-top: -96px;
        padding: 48px 34px;
      }

      .hero-title {
        margin-top: 34px;
        font-size: 32px;
        line-height: 41px;
      }

      .hero-carousel {
        position: relative;
        top: auto;
        left: auto;
        width: min(100%, 563px);
        height: 300px;
        margin-top: 30px;
      }

      .projects-grid {
        grid-template-columns: 1fr;
      }

      .project-copy,
      .journal-card {
        padding: 0;
      }

      .journal-card {
        padding: 40px;
      }

      .project-image {
        height: min(56vw, 444px);
        min-height: 300px;
      }

      .logo-row {
        grid-template-columns: 1fr;
        gap: 18px;
        min-height: 0;
        padding: 28px 40px;
      }

      .location {
        grid-template-columns: 1fr;
      }

      .location-copy {
        padding: 40px;
      }

      .map-frame iframe,
      .map-fallback {
        height: 330px;
      }

      .campaign-promo-banner a {
        gap: 4px 7px;
        min-height: 44px;
        padding: 9px 16px;
      }

      .campaign-promo-note,
      .campaign-promo-terms {
        font-size: 11px;
        line-height: 18px;
      }

      .campaign-promo-text {
        flex-basis: 100%;
        font-size: 23px;
        line-height: 28px;
      }

      .campaign-promo-note::before {
        content: none;
        margin-right: 0;
      }

      .campaign-main {
        min-height: 0;
      }

      .campaign-landing-shell {
        grid-template-columns: 1fr;
        min-height: 0;
        padding: 88px 24px 38px;
      }

      .campaign-title {
        font-size: clamp(36px, 11vw, 52px);
        line-height: 1;
      }

      .campaign-offer {
        font-size: 16px;
        line-height: 26px;
      }

      .campaign-actions {
        display: grid;
        grid-template-columns: 1fr;
      }

      .campaign-actions .btn,
      .campaign-resource-panel .btn {
        width: 100%;
      }

      .campaign-creative img,
      .campaign-pdf-creative iframe,
      .campaign-text-panel {
        min-height: 330px;
      }

      .campaign-supporting {
        grid-template-columns: 1fr;
        padding: 0 24px 48px;
      }

      .campaign-resource-panel {
        border-top: 1px solid var(--line);
        border-left: 0;
        padding-top: 28px;
        padding-left: 0;
      }
    }

    @media (max-width: 700px) {
      .benefits {
        padding: 0 24px;
      }

      .benefits-inner {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 32px 0;
      }

      .benefit {
        gap: 18px;
      }

      .benefit-icon {
        flex-basis: 52px;
        width: 52px;
        height: 52px;
      }

      .benefit-icon img {
        width: 42px;
        height: 42px;
      }

      .projects {
        padding: 34px 24px;
      }

      .project-image {
        height: 285px;
        min-height: 0;
      }

      .journal-card {
        padding: 32px 24px;
      }

      .section-title,
      .location-title {
        font-size: 22px;
        line-height: 31px;
      }

      .logo-row {
        padding: 28px 24px;
      }

      .logo-list {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px 20px;
      }

      .brand-logo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .logo-mark {
        min-width: 0;
        min-height: 64px;
      }

      .location-copy {
        padding: 34px 24px;
      }

      .map-frame iframe,
      .map-fallback {
        height: 260px;
      }

      .map-fallback {
        padding: 32px 24px;
      }

      .site-footer {
        padding: 32px 24px;
      }

      .footer-main {
        grid-template-columns: 1fr;
      }

      .footer-col,
      .footer-brand {
        border-left: 0;
        border-top: 1px solid var(--line);
        padding: 24px 0 0;
      }

      .footer-brand {
        border-top: 0;
        padding-top: 0;
      }

      .footer-desc {
        padding: 0;
      }

      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        padding-right: 0;
        padding-left: 0;
      }

      .footer-links {
        flex-wrap: wrap;
        gap: 20px;
      }

      .cookie-banner {
        right: 0;
        bottom: 0;
        left: 0;
        grid-template-columns: 1fr;
        width: 100%;
        border-right: 0;
        border-bottom: 0;
        border-left: 0;
        border-radius: 8px 8px 0 0;
        padding: 22px 20px calc(22px + env(safe-area-inset-bottom));
      }

      .cookie-banner-actions,
      .cookie-modal-actions {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
      }

      .cookie-action {
        justify-content: center;
        width: 100%;
        min-height: 48px;
      }

      .cookie-dialog {
        width: 100vw;
        max-width: 100vw;
        max-height: min(88vh, 760px);
        margin: auto 0 0;
        overflow: hidden;
      }

      .cookie-panel {
        display: grid;
        grid-template-rows: minmax(0, 1fr) auto;
        max-height: min(88vh, 760px);
        overflow: hidden;
        border-radius: 8px 8px 0 0;
      }

      .cookie-panel-body {
        overflow-y: auto;
        padding: 36px 20px 20px;
      }

      .cookie-choice {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 16px;
      }

      .cookie-required {
        text-align: left;
      }

      .cookie-switch {
        justify-content: flex-start;
      }

      .cookie-policy-links {
        display: grid;
        gap: 14px;
      }

      .cookie-modal-actions {
        margin: 0;
        border-top: 1px solid var(--line);
        background: var(--warm);
        padding: 14px 20px calc(16px + env(safe-area-inset-bottom));
      }

      .brochure-form {
        grid-template-columns: 1fr;
      }

      .brochure-form > .brochure-preview {
        height: 160px;
        min-height: 160px;
      }

      .brochure-form > .brochure-preview img {
        min-height: 160px;
      }

      .brochure-fields,
      .consultation-info {
        padding: 32px 24px;
      }

      .form-grid {
        grid-template-columns: 1fr;
      }

      .consultation-modal {
        min-height: 0;
      }

      .consultation-scheduler {
        min-height: 580px;
        padding: 18px;
      }

      .calendly-inline-widget,
      .calendly-inline-widget iframe {
        min-height: 560px;
      }

      .resource-access-page {
        overflow: auto;
      }

      .resource-header {
        height: auto;
        min-height: 64px;
        padding: 12px 20px;
        gap: 16px;
      }

      .resource-header .brand-logo {
        width: 112px;
      }

      .resource-back-link {
        white-space: normal;
        text-align: right;
      }

      .resource-main {
        flex: 0 0 auto;
        min-height: 620px;
        padding: 26px 20px;
      }

      .resource-shell {
        height: auto;
        min-height: 580px;
      }

      .resource-title {
        font-size: 32px;
      }

      .resource-content,
      .resource-content:has(.resource-preview-wrap:not([hidden])) {
        grid-template-columns: 1fr;
      }

      .resource-preview-wrap {
        max-height: 180px;
      }

      .resource-viewer {
        min-height: 380px;
      }

      .resource-viewer iframe {
        min-height: 380px;
      }

      .resource-actions {
        align-items: stretch;
        flex-direction: column;
      }

      .resource-actions .btn,
      .resource-actions .text-link {
        justify-content: center;
        width: 100%;
      }

      .resource-access-page .site-footer {
        padding: 0 24px 24px;
      }
    }

    @media (max-width: 520px) {
      .header-actions {
        gap: 4px;
      }

      .icon-link,
      .mobile-phone-link {
        width: 44px;
        min-width: 44px;
      }

      .mobile-phone-link {
        display: grid;
      }

      .mobile-toggle {
        color: var(--ink);
      }

      .landing-page .hero-section {
        background: #efedeb;
      }

      .landing-page .hero-shell {
        display: block;
        height: 788px;
        min-height: 788px;
        padding: 0;
        overflow: hidden;
      }

      .landing-page .hero-media {
        position: absolute;
        inset: 0;
        width: 100%;
        max-width: none;
        height: 100%;
        min-height: 0;
        margin-left: 0;
        object-fit: cover;
      }

      .landing-page .hero-card {
        position: absolute;
        top: 50%;
        left: 50%;
        z-index: 10;
        width: calc(100% - 37px);
        max-width: 353px;
        margin-top: 0;
        padding: 64px 36px;
        transform: translate(-50%, -50%);
        transition: opacity .24s ease, visibility .24s ease;
      }

      .landing-page .hero-shell.is-mobile-carousel-active .hero-card {
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
      }

      .landing-page .hero-title {
        margin-top: 45px;
        font-size: 36px;
        line-height: 47px;
      }

      .landing-page .hero-copy {
        margin-top: 26px;
        font-size: 16px;
        line-height: 28px;
      }

      .landing-page .hero-actions-stack {
        width: 100%;
      }

      .landing-page .hero-carousel {
        position: absolute;
        top: auto;
        right: 0;
        bottom: 8px;
        left: 0;
        z-index: 20;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 44px;
        margin-top: 0;
        gap: 0;
      }

      .landing-page .carousel-card,
      .landing-page .carousel-card[data-mobile-only="true"],
      .landing-page .carousel-card[data-position] {
        position: static;
        display: grid;
        place-items: center;
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
        border: 0;
        border-radius: 999px;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        overflow: hidden;
        padding: 0;
        transform: none;
      }

      .landing-page .carousel-card::after {
        width: 10px;
        height: 10px;
        border-radius: 999px;
        background: rgba(248, 247, 245, .72);
        box-shadow: 0 1px 5px rgba(0, 0, 0, .22);
        content: "";
        transition: background .22s ease, box-shadow .22s ease, transform .22s ease;
      }

      .landing-page .carousel-card[aria-pressed="true"] {
        background: transparent;
      }

      .landing-page .carousel-card[aria-pressed="true"]::after {
        background: #fff;
        box-shadow: 0 2px 8px rgba(0, 0, 0, .26);
        transform: scale(1.2);
      }

      .landing-page .carousel-card:hover,
      .landing-page .carousel-card:focus-visible {
        box-shadow: none;
        outline: 2px solid rgba(255, 255, 255, .9);
        outline-offset: -9px;
        transform: none;
      }

      .landing-page .card-media {
        position: absolute;
        inset: 0;
        display: block;
        width: 1px;
        height: 1px;
        opacity: 0;
        pointer-events: none;
      }

      .landing-page .card-body {
        display: none;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        scroll-behavior: auto !important;
        transition: none !important;
        animation: none !important;
      }
    }

    .projects-page {
      background: #f7f5f2;
    }

    .projects-page .eyebrow {
      color: #af9780;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 2.4px;
      line-height: 18px;
      text-transform: uppercase;
    }

    .projects-hero {
      background: #f2efed;
      padding: 48px clamp(50px, 6.95vw, 100px) 54px;
    }

    .projects-hero-inner {
      display: grid;
      grid-template-columns: minmax(0, 460px) minmax(280px, 1fr);
      align-items: end;
      gap: 50px;
      width: min(100%, 1240px);
      margin: 0 auto;
    }

    .projects-hero h1 {
      margin: 34px 0 0;
      color: #202020;
      font-size: 48px;
      font-weight: 400;
      letter-spacing: .4px;
      line-height: 56px;
      text-transform: uppercase;
    }

    .projects-hero-copy {
      max-width: 294px;
      margin: 0 0 17px 4px;
      color: #4d4d4d;
      font-size: 14px;
      letter-spacing: .55px;
      line-height: 24px;
    }

    .projects-featured {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 398px;
      background: #f2efed;
    }

    .projects-featured-media {
      position: relative;
      min-width: 0;
      height: 660px;
      overflow: hidden;
      background: #ddd8d1;
    }

    .projects-featured-media picture,
    .projects-featured-media img:not(.projects-play-icon) {
      display: block;
      width: 100%;
      height: 100%;
    }

    .projects-featured-media img:not(.projects-play-icon) {
      max-width: none;
      object-fit: cover;
      object-position: center center;
    }

    .projects-play-icon {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 66px;
      height: 66px;
      transform: translate(-50%, -50%);
    }

    .projects-featured-panel {
      background: #f2efed;
      padding: 38px 50px 32px 36px;
    }

    .projects-featured-panel h2 {
      margin: 22px 0 0;
      color: #202020;
      font-size: 24px;
      font-weight: 600;
      letter-spacing: -.2px;
      line-height: 32px;
    }

    .projects-rule {
      width: 38px;
      height: 1px;
      margin-top: 15px;
      background: #af9780;
    }

    .projects-meta,
    .projects-location,
    .project-card-body > p:first-child,
    .project-card-body h3,
    .projects-filter-row,
    .projects-detail-card h3,
    .projects-text-link,
    .projects-outline-link,
    .projects-load-more,
    .projects-benefit h3 {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 1.2px;
      line-height: 18px;
      text-transform: uppercase;
    }

    .projects-meta {
      margin: 18px 0 0;
      color: #202020;
    }

    .projects-location {
      margin: 5px 0 0;
      color: #34393b;
    }

    .projects-featured-copy {
      margin: 24px 0 0;
      color: #4f4f4f;
      font-size: 14px;
      letter-spacing: .3px;
      line-height: 22px;
    }

    .projects-outline-link {
      display: inline-flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      min-height: 52px;
      margin-top: 23px;
      border: 1px solid #8c8c8c;
      color: #111;
      padding: 16px 24px;
      transition: background .22s ease, color .22s ease, transform .22s ease;
    }

    .projects-outline-link:hover,
    .projects-outline-link:focus-visible {
      background: #34393b;
      color: #fff;
      transform: translateY(-1px);
    }

    .projects-detail-card {
      margin-top: 47px;
    }

    .projects-detail-card h3 {
      margin: 0 0 12px;
      color: #34393b;
    }

    .projects-detail-media {
      position: relative;
      display: block;
      height: 102px;
      overflow: hidden;
      border: 1px solid #a7a7a7;
      border-bottom: 0;
      background: #ddd8d1;
    }

    .projects-detail-media picture,
    .projects-detail-media picture img {
      display: block;
      width: 100%;
      height: 100%;
    }

    .projects-detail-media picture img {
      max-width: none;
      object-fit: cover;
      object-position: center bottom;
    }

    .projects-magnify-icon {
      position: absolute;
      right: 18px;
      bottom: 12px;
      width: 34px;
      height: 34px;
    }

    .projects-detail-body {
      border: 1px solid #a7a7a7;
      border-top: 0;
      padding: 17px 16px 19px;
      background: #f2efed;
    }

    .projects-detail-body .projects-meta {
      margin-top: 0;
      letter-spacing: 1.15px;
    }

    .projects-detail-body p:not(.projects-meta) {
      margin: 8px 0 0;
      color: #4d4d4d;
      font-size: 13px;
      letter-spacing: .28px;
      line-height: 21px;
    }

    .projects-text-link {
      display: inline-flex;
      align-items: center;
      gap: 16px;
      margin-top: 15px;
      color: #111;
    }

    .projects-catalog {
      background: #fafafa;
      padding: 31px clamp(50px, 3.48vw, 50px) 0;
    }

    .projects-filter-row,
    .projects-card-grid,
    .projects-cta-section {
      width: min(100%, 1340px);
      margin: 0 auto;
    }

    .projects-filter-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
      color: #111;
    }

    .projects-tabs {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 43px;
    }

    .projects-tabs a {
      position: relative;
      padding-bottom: 6px;
    }

    .projects-tabs a[aria-current="page"]::after {
      position: absolute;
      right: 0;
      bottom: 0;
      left: 0;
      height: 1px;
      background: #af9780;
      content: "";
    }

    .projects-filters {
      display: flex;
      align-items: center;
      gap: 22px;
      color: #8a8a8a;
    }

    .projects-filters label {
      position: relative;
      display: block;
    }

    .projects-filters label::after {
      position: absolute;
      top: 50%;
      right: 18px;
      width: 8px;
      height: 8px;
      border-right: 2px solid #9d9d9c;
      border-bottom: 2px solid #9d9d9c;
      content: "";
      pointer-events: none;
      transform: translateY(-65%) rotate(45deg);
    }

    .projects-filters select {
      width: 145px;
      height: 34px;
      border: 1px solid #8c8c8c;
      border-radius: 0;
      appearance: none;
      background: transparent;
      color: #8a8a8a;
      cursor: pointer;
      font-size: 10px;
      font-weight: 500;
      letter-spacing: .8px;
      line-height: 18px;
      padding: 0 42px 0 16px;
      text-transform: uppercase;
    }

    .projects-card-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 32px 16px;
      margin-top: 31px;
      margin-bottom: 48px;
    }

    .project-card {
      display: flex;
      min-width: 0;
      flex-direction: column;
      background: #efedeb;
      transition: transform .22s ease, box-shadow .22s ease;
    }

    .project-card-media {
      position: relative;
      display: block;
      height: 225px;
      overflow: hidden;
      background: #ddd8d1;
      isolation: isolate;
    }

    .project-card-media picture {
      position: relative;
      z-index: 0;
      display: block;
      width: 100%;
      height: 100%;
    }

    .project-card-media img:not(.project-card-plus) {
      max-width: none;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center;
    }

    .project-card-plus {
      position: absolute;
      right: 16px;
      bottom: 14px;
      z-index: 1;
      width: 34px;
      height: 34px;
      pointer-events: none;
    }

    .project-card-body {
      display: flex;
      min-height: 177px;
      flex: 1;
      flex-direction: column;
      padding: 17px 16px 18px;
    }

    .project-card-body > p:first-child {
      margin: 0;
      color: #af9780;
      letter-spacing: 1.8px;
    }

    .project-card-body h2 {
      margin: 13px 0 0;
      color: #202020;
      font-size: 18px;
      font-weight: 400;
      letter-spacing: .1px;
      line-height: 24px;
    }

    .project-card-body h3 {
      margin: 6px 0 0;
      color: #34393b;
    }

    .project-card-copy {
      margin: 3px 0 0;
      color: #4d4d4d;
      font-size: 12px;
      letter-spacing: .1px;
      line-height: 16px;
    }

    .project-card-body .projects-text-link {
      margin-top: auto;
    }

    .projects-load-more {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: min(100%, 290px);
      min-height: 52px;
      margin: 32px auto 48px;
      border: 1px solid #8c8c8c;
      background: transparent;
      color: #111;
      cursor: pointer;
      padding: 0 24px;
      transition: background .22s ease, color .22s ease, transform .22s ease;
    }

    .projects-load-more:hover,
    .projects-load-more:focus-visible {
      background: #34393b;
      color: #fff;
      transform: translateY(-1px);
    }

    .projects-chevron {
      display: block;
      width: 12px;
      height: 12px;
      border-right: 2px solid currentColor;
      border-bottom: 2px solid currentColor;
      transform: translateY(-4px) rotate(45deg);
    }

    .projects-cta-section {
      display: grid;
      grid-template-columns: 380px 500px minmax(0, 1fr);
      min-height: 328px;
      margin-bottom: 72px;
      background: #f2efed;
    }

    .projects-cta-copy {
      padding: 64px 26px 48px;
    }

    .projects-cta-copy h2 {
      margin: 24px 0 0;
      color: #202020;
      font-family: "Times New Roman", Georgia, serif;
      font-size: 30px;
      font-weight: 400;
      letter-spacing: .1px;
      line-height: 38px;
    }

    .projects-cta-copy p:not(.eyebrow) {
      margin: 20px 0 0;
      color: #4d4d4d;
      font-size: 14px;
      letter-spacing: .3px;
      line-height: 24px;
    }

    .projects-cta-copy .btn {
      width: 300px;
      margin-top: 27px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 2px;
      line-height: 18px;
    }

    .projects-cta-media,
    .projects-cta-media img {
      display: block;
      width: 100%;
      height: 100%;
    }

    .projects-cta-media {
      min-height: 328px;
      overflow: hidden;
    }

    .projects-cta-media img {
      max-width: none;
      object-fit: cover;
      object-position: center center;
    }

    .projects-benefit-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 44px 32px;
      padding: 63px 42px 42px 40px;
    }

    .projects-benefit {
      display: grid;
      grid-template-columns: 40px minmax(0, 1fr);
      gap: 13px;
      min-width: 0;
    }

    .projects-benefit img {
      width: 34px;
      height: 34px;
      object-fit: contain;
    }

    .projects-benefit h3 {
      margin: 0;
      color: #111;
    }

    .projects-benefit p {
      margin: 10px 0 0;
      color: #4d4d4d;
      font-size: 13px;
      letter-spacing: .12px;
      line-height: 17px;
    }

    @media (max-width: 1180px) {
      .projects-hero-inner {
        grid-template-columns: 1fr;
      }

      .projects-hero-copy {
        max-width: 520px;
        margin: 0;
      }

      .projects-featured {
        grid-template-columns: 1fr;
      }

      .projects-featured-media {
        height: min(66vw, 660px);
        min-height: 430px;
      }

      .projects-featured-panel {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 320px;
        gap: 24px 42px;
        padding: 38px 50px;
      }

      .projects-featured-panel > .eyebrow,
      .projects-featured-panel h2,
      .projects-rule,
      .projects-featured-panel > .projects-meta,
      .projects-location,
      .projects-featured-copy,
      .projects-outline-link {
        grid-column: 1;
      }

      .projects-detail-card {
        grid-row: 1 / span 7;
        grid-column: 2;
        margin-top: 0;
      }

      .projects-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .projects-cta-section {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      }

      .projects-benefit-grid {
        grid-column: 1 / -1;
      }
    }

    @media (max-width: 760px) {
      .projects-hero {
        padding: 40px 24px 42px;
      }

      .projects-hero h1 {
        margin-top: 28px;
        font-size: 34px;
        line-height: 42px;
      }

      .projects-featured-media {
        height: 420px;
        min-height: 0;
      }

      .projects-featured-panel {
        display: block;
        padding: 34px 24px 38px;
      }

      .projects-detail-card {
        margin-top: 34px;
      }

      .projects-catalog {
        padding: 28px 24px 0;
      }

      .projects-filter-row {
        align-items: flex-start;
        flex-direction: column;
      }

      .projects-tabs {
        gap: 22px;
      }

      .projects-filters {
        width: 100%;
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
      }

      .projects-filters label,
      .projects-filters select {
        width: 100%;
      }

      .projects-card-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 32px;
      }

      .project-card-media {
        height: auto;
        aspect-ratio: 322 / 225;
      }

      .project-card-media img:not(.project-card-plus) {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      .projects-cta-section {
        grid-template-columns: 1fr;
        margin-bottom: 40px;
      }

      .projects-cta-copy {
        padding: 42px 26px 34px;
      }

      .projects-cta-copy .btn {
        width: 100%;
      }

      .projects-cta-media {
        min-height: 260px;
      }

      .projects-benefit-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 34px 26px 38px;
      }
    }

    @media (max-width: 480px) {
      .projects-hero h1 {
        font-size: 31px;
        line-height: 39px;
      }

      .projects-featured-media {
        height: 330px;
      }

      .projects-featured-media img:not(.projects-play-icon) {
        object-position: 43% center;
      }

      .projects-play-icon {
        width: 56px;
        height: 56px;
      }

      .projects-tabs {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
      }

      .projects-cta-copy h2 {
        font-size: 28px;
        line-height: 35px;
      }
    }

    .project-detail-page {
      background: #f7f5f2;
    }

    .project-detail-page .project-detail-eyebrow {
      margin: 0;
      color: #af9780;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 2.4px;
      line-height: 18px;
      text-transform: uppercase;
    }

    .project-detail-hero {
      height: 674px;
      overflow: hidden;
      background: #d8d2c8;
    }

    .project-detail-hero picture,
    .project-detail-hero img {
      display: block;
      width: 100%;
      height: 100%;
    }

    .project-detail-hero img {
      max-width: none;
      object-fit: cover;
      object-position: 52% 50%;
    }

    .project-detail-overview {
      display: grid;
      grid-template-columns: minmax(0, 43%) minmax(0, 57%);
      gap: 54px;
      background: #f1eeee;
      padding: 38px clamp(50px, 6.95vw, 100px) 49px;
    }

    .project-detail-intro {
      max-width: 470px;
    }

    .project-detail-intro h1 {
      margin: 28px 0 0;
      color: #202020;
      font-size: 40px;
      font-weight: 400;
      letter-spacing: .1px;
      line-height: 48px;
      text-transform: uppercase;
    }

    .project-detail-rule {
      width: 38px;
      height: 1px;
      margin-top: 19px;
      background: #af9780;
    }

    .project-detail-intro p:not(.project-detail-eyebrow) {
      max-width: 430px;
      margin: 21px 0 0;
      color: #4d4d4d;
      font-size: 14px;
      letter-spacing: .42px;
      line-height: 24px;
    }

    .project-detail-button {
      display: inline-flex;
      align-items: center;
      justify-content: space-between;
      min-width: 300px;
      min-height: 52px;
      margin-top: 31px;
      background: #34393b;
      color: #fff;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 2.35px;
      line-height: 18px;
      padding: 17px 24px;
      text-transform: uppercase;
      transition: background .22s ease, box-shadow .22s ease, transform .22s ease;
    }

    .project-detail-button:hover,
    .project-detail-button:focus-visible {
      background: #1f2325;
      box-shadow: 0 9px 22px rgba(0, 0, 0, .16);
      transform: translateY(-1px);
    }

    .project-detail-download {
      margin-top: 19px;
      color: #111;
      letter-spacing: 1.7px;
    }

    .project-detail-download img {
      width: 18px;
      height: 18px;
    }

    .project-detail-facts {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      align-content: center;
      gap: 0;
      margin: 27px 0 0;
      border-top: 0;
    }

    .project-detail-fact {
      min-height: 118px;
      padding: 0 21px 29px 0;
    }

    .project-detail-fact:nth-child(n + 4) {
      border-top: 1px solid #d9d4d0;
      padding-top: 35px;
    }

    .project-detail-fact dt {
      display: grid;
      grid-template-columns: 42px minmax(0, 1fr);
      align-items: center;
      gap: 21px;
      color: #111;
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 1.2px;
      line-height: 18px;
      text-transform: uppercase;
    }

    .project-detail-fact dt img {
      width: 40px;
      height: 40px;
      object-fit: contain;
    }

    .project-detail-fact dd {
      margin: 6px 0 0 63px;
      color: #4d4d4d;
      font-size: 14px;
      letter-spacing: .2px;
      line-height: 20px;
      overflow-wrap: break-word;
    }

    .project-detail-materials {
      overflow-wrap: anywhere;
    }

    .project-detail-gallery,
    .project-detail-card-grid,
    .project-detail-walkthrough,
    .project-detail-related,
    .project-detail-cta {
      width: min(100%, 1340px);
      margin-right: auto;
      margin-left: auto;
    }

    .project-detail-gallery {
      position: relative;
      display: grid;
      grid-template-columns: 3.4fr repeat(3, 1fr);
      gap: 16px;
      background: #fafafa;
      padding-top: 0;
      transform: translateY(-1px);
    }

    .project-detail-gallery picture {
      height: 270px;
      overflow: hidden;
      background: #ddd8d1;
    }

    .project-detail-gallery picture,
    .project-detail-gallery img {
      display: block;
      width: 100%;
    }

    .project-detail-gallery img {
      height: 100%;
      max-width: none;
      object-fit: cover;
    }

    .project-detail-gallery-main img {
      object-position: center center;
    }

    .project-detail-gallery-next {
      position: absolute;
      right: 18px;
      bottom: 99px;
      display: grid;
      place-items: center;
      width: 34px;
      height: 34px;
      border: 0;
      border-radius: 50%;
      background: #fff;
      color: #34393b;
      cursor: pointer;
      font-size: 19px;
      line-height: 1;
      box-shadow: 0 9px 22px rgba(0, 0, 0, .16);
    }

    .project-detail-card-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 32px;
      background: #fafafa;
      padding-top: 32px;
    }

    .project-detail-info-card {
      min-height: 295px;
      border: 1px solid #e2dedb;
      background: #f1eeee;
    }

    .project-detail-info-card-split {
      display: grid;
      grid-template-columns: 1fr 1fr;
    }

    .project-detail-info-copy {
      display: flex;
      min-width: 0;
      flex-direction: column;
      padding: 33px 28px 28px;
    }

    .project-detail-info-copy h2 {
      margin: 22px 0 0;
      color: #202020;
      font-family: "Times New Roman", Georgia, serif;
      font-size: 24px;
      font-weight: 400;
      letter-spacing: 0;
      line-height: 30px;
    }

    .project-detail-info-copy p:not(.project-detail-eyebrow) {
      margin: 18px 0 0;
      color: #4d4d4d;
      font-size: 13px;
      letter-spacing: .2px;
      line-height: 18px;
    }

    .project-detail-info-copy .text-link {
      margin-top: auto;
      color: #111;
      letter-spacing: 1.6px;
    }

    .project-detail-info-card picture,
    .project-detail-info-card img {
      display: block;
      width: 100%;
      height: 100%;
    }

    .project-detail-info-card picture {
      overflow: hidden;
      background: #ddd8d1;
    }

    .project-detail-info-card img {
      max-width: none;
      object-fit: cover;
      object-position: center center;
    }

    .project-detail-plan-card img {
      object-position: 48% center;
    }

    .project-detail-walkthrough {
      display: grid;
      grid-template-columns: minmax(0, 2.15fr) minmax(360px, .95fr);
      margin-top: 32px;
      background: #f1eeee;
    }

    .project-detail-walkthrough picture,
    .project-detail-walkthrough img {
      display: block;
      width: 100%;
      height: 100%;
    }

    .project-detail-walkthrough picture {
      min-height: 306px;
      overflow: hidden;
    }

    .project-detail-walkthrough img {
      max-width: none;
      object-fit: cover;
      object-position: left center;
    }

    .project-detail-walkthrough-copy {
      padding: 41px 50px 40px;
    }

    .project-detail-walkthrough-copy h2 {
      margin: 24px 0 0;
      color: #202020;
      font-family: "Times New Roman", Georgia, serif;
      font-size: 29px;
      font-weight: 400;
      letter-spacing: 0;
      line-height: 36px;
    }

    .project-detail-walkthrough-copy p:not(.project-detail-eyebrow) {
      margin: 18px 0 0;
      color: #4d4d4d;
      font-size: 14px;
      letter-spacing: .32px;
      line-height: 24px;
    }

    .project-detail-walkthrough-copy .project-detail-button {
      min-width: 190px;
      margin-top: 24px;
    }

    .project-detail-related {
      background: #fafafa;
      padding-top: 31px;
    }

    .project-detail-related-heading {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .project-detail-related-heading h2 {
      margin: 0;
      color: #111;
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 1.2px;
      line-height: 18px;
      text-transform: uppercase;
    }

    .project-detail-related-heading .text-link {
      color: #111;
      letter-spacing: 1.5px;
    }

    .project-detail-related-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
      margin-top: 31px;
    }

    .project-detail-related-card a {
      position: relative;
      display: block;
      height: 128px;
      overflow: hidden;
      background: #ddd8d1;
      isolation: isolate;
      transition: transform .22s ease, box-shadow .22s ease;
    }

    .project-detail-related-card picture,
    .project-detail-related-card img {
      display: block;
      width: 100%;
      height: 100%;
    }

    .project-detail-related-card img {
      max-width: none;
      background: #ddd8d1;
      object-fit: contain;
      object-position: center center;
    }

    .project-detail-related-body {
      position: absolute;
      right: 0;
      bottom: 0;
      left: 0;
      z-index: 1;
      min-height: 70px;
      background: rgba(255, 255, 255, .86);
      color: #111;
      padding: 19px 62px 14px 16px;
    }

    .project-detail-related-body span {
      display: block;
      font-size: 10px;
      font-weight: 600;
      letter-spacing: .6px;
      line-height: 14px;
      text-transform: uppercase;
    }

    .project-detail-related-body .project-detail-related-title {
      margin-bottom: 5px;
      font-size: 14px;
      letter-spacing: 2px;
      line-height: 17px;
      text-transform: none;
    }

    .project-detail-plus {
      position: absolute;
      right: 19px;
      bottom: 18px;
      z-index: 2;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: #fff;
      box-shadow: 0 8px 18px rgba(0, 0, 0, .15);
      pointer-events: none;
    }

    .project-detail-plus::before,
    .project-detail-plus::after {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 14px;
      height: 1px;
      background: #34393b;
      content: "";
      transform: translate(-50%, -50%);
    }

    .project-detail-plus::after {
      transform: translate(-50%, -50%) rotate(90deg);
    }

    .project-detail-cta {
      display: grid;
      grid-template-columns: 370px minmax(0, 1fr) 400px;
      min-height: 328px;
      margin-top: 32px;
      margin-bottom: 74px;
      background: #f1eeee;
    }

    .project-detail-cta-heading {
      display: grid;
      grid-template-columns: 52px minmax(0, 1fr);
      gap: 42px;
      align-items: start;
      padding: 64px 32px 48px 38px;
    }

    .project-detail-cta-heading img {
      width: 52px;
      height: 52px;
      margin-top: 38px;
    }

    .project-detail-cta-heading h2 {
      margin: 19px 0 0;
      color: #202020;
      font-family: "Times New Roman", Georgia, serif;
      font-size: 32px;
      font-weight: 400;
      letter-spacing: 0;
      line-height: 39px;
    }

    .project-detail-cta-copy {
      padding: 63px 42px 48px 22px;
    }

    .project-detail-cta-copy p {
      max-width: 430px;
      margin: 0;
      color: #4d4d4d;
      font-size: 16px;
      letter-spacing: .2px;
      line-height: 28px;
    }

    .project-detail-cta-copy .project-detail-button {
      min-width: 240px;
      margin-top: 31px;
    }

    .project-detail-cta picture,
    .project-detail-cta picture img {
      display: block;
      width: 100%;
      height: 100%;
    }

    .project-detail-cta picture {
      min-height: 328px;
      overflow: hidden;
    }

    .project-detail-cta picture img {
      max-width: none;
      object-fit: cover;
      object-position: 42% center;
    }

    @media (max-width: 1180px) {
      .project-detail-overview {
        grid-template-columns: 1fr;
        gap: 34px;
      }

      .project-detail-intro {
        max-width: none;
      }

      .project-detail-card-grid {
        grid-template-columns: 1fr;
      }

      .project-detail-info-card {
        min-height: 286px;
      }

      .project-detail-walkthrough {
        grid-template-columns: 1fr;
      }

      .project-detail-cta {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      }

      .project-detail-cta picture {
        grid-column: 1 / -1;
        min-height: 260px;
      }
    }

    @media (max-width: 900px) {
      .project-detail-hero {
        height: 560px;
      }

      .project-detail-hero img {
        object-position: 34% center;
      }

      .project-detail-facts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .project-detail-fact:nth-child(n + 3) {
        border-top: 1px solid #d9d4d0;
        padding-top: 28px;
      }

      .project-detail-gallery {
        grid-template-columns: 1.5fr 1fr;
        padding: 0 24px;
      }

      .project-detail-gallery picture {
        height: 230px;
      }

      .project-detail-gallery-main {
        grid-column: 1 / -1;
      }

      .project-detail-gallery picture:nth-of-type(4) {
        display: none;
      }

      .project-detail-gallery-next {
        display: none;
      }

      .project-detail-card-grid,
      .project-detail-walkthrough,
      .project-detail-related,
      .project-detail-cta {
        width: auto;
        margin-right: 24px;
        margin-left: 24px;
      }

      .project-detail-related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 700px) {
      .project-detail-hero {
        height: 674px;
      }

      .project-detail-hero img {
        object-fit: contain;
        object-position: center center;
      }

      .project-detail-overview {
        padding: 34px 50px 40px;
      }

      .project-detail-intro h1 {
        font-size: 38px;
        line-height: 46px;
      }

      .project-detail-button {
        width: 100%;
        min-width: 0;
      }

      .project-detail-facts {
        grid-template-columns: 1fr;
      }

      .project-detail-fact,
      .project-detail-fact:nth-child(n + 3),
      .project-detail-fact:nth-child(n + 4) {
        min-height: auto;
        border-top: 1px solid #d9d4d0;
        padding: 22px 0;
      }

      .project-detail-fact:first-child {
        border-top: 0;
      }

      .project-detail-gallery {
        display: block;
        padding: 0 50px;
      }

      .project-detail-gallery picture {
        height: auto;
        aspect-ratio: 290 / 270;
        margin-top: 24px;
      }

      .project-detail-gallery picture:not(:first-child) {
        display: none;
      }

      .project-detail-card-grid,
      .project-detail-walkthrough,
      .project-detail-related,
      .project-detail-cta {
        margin-right: 50px;
        margin-left: 50px;
      }

      .project-detail-info-card-split {
        grid-template-columns: minmax(0, 1fr) minmax(126px, 38%);
      }

      .project-detail-info-copy {
        padding: 33px 17px 26px;
      }

      .project-detail-info-copy h2 {
        font-size: 20px;
        line-height: 27px;
      }

      .project-detail-walkthrough-copy {
        padding: 34px 28px 36px;
      }

      .project-detail-related-heading {
        align-items: flex-start;
        flex-direction: column;
      }

      .project-detail-related-grid {
        grid-template-columns: 1fr;
      }

      .project-detail-related-card a {
        height: 144px;
      }

      .project-detail-cta {
        grid-template-columns: 1fr;
      }

      .project-detail-cta-heading {
        gap: 20px;
        padding: 42px 28px 16px;
      }

      .project-detail-cta-heading img {
        margin-top: 33px;
      }

      .project-detail-cta-copy {
        padding: 8px 28px 34px;
      }
    }

    @media (max-width: 480px) {
      .project-detail-hero {
        height: 674px;
      }

      .project-detail-overview {
        overflow: visible;
      }

      .project-detail-intro h1 {
        max-width: 100%;
        font-size: 28px;
        line-height: 45px;
        overflow-wrap: break-word;
        white-space: nowrap;
      }

      .project-generated-page .project-detail-intro h1 {
        text-wrap: balance;
        white-space: normal;
      }

      .project-detail-button {
        gap: 18px;
        font-size: 10px;
        letter-spacing: 1.2px;
        padding-right: 16px;
        padding-left: 16px;
      }

      .project-detail-gallery picture {
        aspect-ratio: 290 / 270;
      }

      .project-detail-info-copy .project-detail-eyebrow {
        font-size: 10px;
        letter-spacing: 2px;
      }

      .project-detail-walkthrough-copy h2,
      .project-detail-cta-heading h2 {
        font-size: 27px;
        line-height: 34px;
      }
    }

    .blog-page {
      background: #f9f7f5;
    }

    .blog-shell,
    .article-shell,
    .story-cta-shell,
    .related-shell {
      width: min(100%, 1240px);
      margin: 0 auto;
    }

    .blog-hero {
      background: linear-gradient(180deg, #ece9e6 0%, #efedeb 100%);
      padding: 0 clamp(24px, 3.5vw, 50px) 34px;
    }

    .blog-hero-grid {
      display: grid;
      grid-template-columns: 410px minmax(0, 1fr);
      min-height: 472px;
      background: #f1eeec;
    }

    .blog-hero-copy {
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 22px;
      padding: 58px 50px;
    }

    .blog-hero-title,
    .article-title,
    .story-cta-title {
      margin: 0;
      color: var(--ink);
      font-family: "Times New Roman", Georgia, serif;
      font-weight: 400;
    }

    .blog-hero-title {
      font-size: clamp(34px, 4vw, 52px);
      letter-spacing: 2.6px;
      line-height: .98;
      text-transform: uppercase;
    }

    .blog-hero-text,
    .article-dek,
    .article-body p,
    .card-excerpt,
    .story-cta-copy {
      color: var(--secondary);
      font-size: 14px;
      letter-spacing: .28px;
      line-height: 22px;
    }

    .blog-hero-media,
    .article-hero-media {
      width: 100%;
      height: 100%;
      min-height: 372px;
      object-fit: cover;
    }

    .blog-toolbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      padding: 28px 0;
    }

    .blog-tabs,
    .blog-filters {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 26px;
    }

    .blog-tab,
    .blog-select {
      border: 0;
      background: transparent;
      color: var(--ink);
      font-size: 10px;
      font-weight: 600;
      letter-spacing: .4px;
      line-height: 18px;
      text-transform: uppercase;
    }

    .blog-tab.is-active {
      border-bottom: 1px solid var(--accent);
      padding-bottom: 3px;
    }

    .blog-select {
      min-width: 142px;
      border: 1px solid var(--line);
      padding: 11px 34px 11px 16px;
      color: var(--secondary);
    }

    .blog-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 24px;
    }

    .blog-card,
    .quote-card,
    .testimonial-card,
    .consult-card,
    .related-card,
    .story-cta {
      background: #f1eeec;
      border: 1px solid var(--line);
    }

    .blog-card {
      display: flex;
      flex-direction: column;
      min-height: 469px;
      transition: transform .24s ease, box-shadow .24s ease;
    }

    .blog-card:hover,
    .blog-card:focus-within,
    .related-card:hover,
    .related-card:focus-within {
      box-shadow: 0 16px 34px rgba(0, 0, 0, .08);
      transform: translateY(-3px);
    }

    .blog-card picture,
    .blog-card img {
      display: block;
      width: 100%;
    }

    .blog-card img {
      aspect-ratio: 354 / 208;
      object-fit: cover;
    }

    .blog-card-body {
      display: flex;
      flex: 1;
      flex-direction: column;
      gap: 12px;
      padding: 24px 26px 22px;
    }

    .card-label,
    .breadcrumb,
    .article-meta,
    .related-heading,
    .table-card a,
    .read-time {
      color: var(--accent);
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 1.2px;
      line-height: 18px;
      text-transform: uppercase;
    }

    .blog-page .card-title {
      margin: 0;
      color: var(--ink);
      font-family: "Times New Roman", Georgia, serif;
      font-size: 24px;
      font-weight: 400;
      letter-spacing: .2px;
      line-height: 29px;
      text-transform: none;
    }

    .blog-card .text-link,
    .related-card .text-link {
      margin-top: auto;
      color: #111;
      font-size: 10px;
      letter-spacing: 1.2px;
    }

    .feature-band {
      display: grid;
      grid-template-columns: minmax(0, 1.18fr) minmax(320px, .82fr);
      gap: 24px;
      margin-top: 24px;
    }

    .story-card {
      display: grid;
      grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
      gap: 24px;
      min-height: 314px;
      padding: 30px 34px;
      background: #f1eeec;
      border: 1px solid var(--line);
    }

    .story-card-media {
      align-self: end;
      width: 100%;
      aspect-ratio: 480 / 226;
      object-fit: cover;
    }

    .quote-card {
      position: relative;
      padding: 40px 44px;
    }

    .quote-card::before,
    .article-quote::before {
      content: "“";
      display: block;
      color: var(--accent);
      font-family: Georgia, serif;
      font-size: 56px;
      line-height: .7;
    }

    .quote-card blockquote,
    .article-quote blockquote {
      margin: 8px 0 20px;
      color: var(--anthracite);
      font-family: "Times New Roman", Georgia, serif;
      font-size: 22px;
      line-height: 30px;
    }

    .quote-card cite,
    .article-quote cite {
      color: var(--secondary);
      font-size: 10px;
      font-style: normal;
      font-weight: 600;
      letter-spacing: .4px;
      line-height: 16px;
      text-transform: uppercase;
    }

    .testimonial-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
      margin-top: 12px;
    }

    .testimonial-card {
      min-height: 134px;
      padding: 22px;
    }

    .testimonial-card p {
      margin: 8px 0 14px;
      color: var(--secondary);
      font-size: 13px;
      line-height: 18px;
    }

    .experience-band,
    .reviews-band {
      display: grid;
      grid-template-columns: 210px repeat(4, minmax(0, 1fr));
      gap: 22px;
      align-items: center;
      margin-top: 24px;
      border: 1px solid var(--line);
      background: #f8f7f5;
      padding: 24px 30px;
    }

    .experience-item {
      display: flex;
      gap: 16px;
      align-items: flex-start;
    }

    .experience-item img {
      width: 34px;
      height: 34px;
    }

    .more-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr)) 310px;
      gap: 21px;
      margin-top: 24px;
    }

    .consult-card {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: 379px;
      background: var(--anthracite);
      color: #fff;
      padding: 34px;
    }

    .consult-card h2 {
      margin: 0;
      font-size: 22px;
      font-weight: 400;
      line-height: 30px;
      text-transform: uppercase;
    }

    .consult-card p {
      color: #fff;
      font-size: 14px;
      letter-spacing: .28px;
      line-height: 22px;
    }

    .consult-card .btn {
      background: #fff;
      color: var(--anthracite);
    }

    .reviews-band {
      grid-template-columns: 250px repeat(3, minmax(0, 1fr)) 190px;
      background: #f1eeec;
      margin-bottom: 34px;
    }

    .review-logo {
      max-width: 84px;
      max-height: 32px;
      object-fit: contain;
    }

    .stars {
      color: #111;
      letter-spacing: 1px;
      font-size: 13px;
    }

    .breadcrumb-wrap {
      background: #f7f5f2;
      border-bottom: 1px solid var(--line);
      padding: 14px clamp(24px, 3.5vw, 50px);
    }

    .breadcrumb {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 10px;
      width: min(100%, 1340px);
      margin: 0 auto;
      padding: 0;
      list-style: none;
      color: var(--muted);
    }

    .breadcrumb a {
      color: var(--secondary);
    }

    .article-hero {
      background: #f1eeec;
      padding: 0 clamp(24px, 3.5vw, 50px) 34px;
    }

    .article-hero-grid {
      display: grid;
      grid-template-columns: 530px minmax(0, 1fr);
      align-items: stretch;
      width: min(100%, 1340px);
      margin: 0 auto;
      min-height: 534px;
    }

    .article-hero-copy {
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 24px;
      padding: 58px 50px 58px 0;
    }

    .article-title {
      font-size: clamp(38px, 4.1vw, 58px);
      line-height: 1.02;
    }

    .article-byline {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 14px;
      color: var(--secondary);
      font-size: 10px;
      font-weight: 600;
      letter-spacing: .4px;
      line-height: 18px;
      text-transform: uppercase;
    }

    .author-avatar {
      width: 32px;
      height: 32px;
      border-radius: 999px;
      object-fit: cover;
    }

    .article-layout {
      display: grid;
      grid-template-columns: 220px minmax(0, 1fr) 290px;
      gap: 56px;
      padding: 42px 0;
    }

    .table-card {
      position: sticky;
      top: 126px;
      align-self: start;
      background: #f1eeec;
      border: 1px solid var(--line);
      padding: 28px 24px;
    }

    .table-card ol {
      display: grid;
      gap: 18px;
      margin: 18px 0 0;
      padding: 0;
      list-style: none;
    }

    .article-body {
      min-width: 0;
    }

    .article-body > p:first-child::first-letter {
      float: left;
      padding: 7px 9px 0 0;
      color: var(--ink);
      font-family: "Times New Roman", Georgia, serif;
      font-size: 62px;
      line-height: 48px;
    }

    .article-body h2 {
      margin: 44px 0 14px;
      color: var(--ink);
      font-family: "Times New Roman", Georgia, serif;
      font-size: 30px;
      font-weight: 400;
      line-height: 34px;
    }

    .article-gallery {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
      margin: 42px 0;
    }

    .article-gallery img {
      width: 100%;
      aspect-ratio: 257 / 200;
      object-fit: cover;
    }

    .article-quote {
      align-self: start;
      padding-top: 14px;
    }

    .story-cta {
      display: grid;
      grid-template-columns: 452px minmax(0, 1fr) minmax(320px, 390px);
      gap: 24px;
      align-items: center;
      padding-right: 30px;
    }

    .story-cta img {
      width: 100%;
      height: 329px;
      object-fit: cover;
    }

    .story-cta-title {
      font-size: 30px;
      line-height: 31px;
    }

    .story-cta-benefits {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 28px 22px;
      border-left: 1px solid var(--line);
      padding-left: 30px;
    }

    .related-heading-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 28px 0 16px;
    }

    .related-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 21px;
      padding-bottom: 36px;
    }

    .related-card {
      display: grid;
      grid-template-columns: 1fr 1fr;
      background: #f1eeec;
      min-height: 164px;
      overflow: hidden;
    }

    .related-card img {
      width: 100%;
      height: 100%;
      min-height: 164px;
      object-fit: cover;
    }

    .related-card-body {
      display: flex;
      flex-direction: column;
      gap: 8px;
      padding: 17px;
    }

    .related-card h3 {
      margin: 0;
      color: var(--ink);
      font-family: "Times New Roman", Georgia, serif;
      font-size: 18px;
      font-weight: 400;
      line-height: 20px;
    }

    @media (max-width: 1180px) {
      .blog-hero-grid,
      .article-hero-grid,
      .feature-band,
      .story-card,
      .story-cta {
        grid-template-columns: 1fr;
      }

      .blog-grid,
      .more-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .consult-card {
        min-height: 300px;
      }

      .experience-band,
      .reviews-band {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .article-layout {
        grid-template-columns: minmax(0, 1fr);
      }

      .table-card,
      .article-quote {
        position: static;
      }

      .story-cta {
        padding-right: 0;
      }

      .story-cta-benefits {
        border-left: 0;
        padding: 0 30px 30px;
      }

      .related-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 760px) {
      .blog-hero,
      .article-hero,
      .breadcrumb-wrap {
        padding-right: 20px;
        padding-left: 20px;
      }

      .blog-hero-copy,
      .article-hero-copy {
        padding: 38px 24px;
      }

      .blog-toolbar {
        align-items: flex-start;
        flex-direction: column;
      }

      .blog-grid,
      .more-grid,
      .testimonial-grid,
      .experience-band,
      .reviews-band,
      .article-gallery,
      .story-cta-benefits {
        grid-template-columns: 1fr;
      }

      .story-card {
        padding: 26px 22px;
      }

      .article-hero-grid {
        min-height: 0;
      }

      .article-hero-copy {
        order: 2;
      }

      .article-gallery {
        gap: 12px;
      }

      .story-cta img {
        height: 260px;
      }

      .story-cta > div {
        padding: 0 24px;
      }

      .story-cta-benefits {
        padding: 0 24px 28px;
      }

      .related-card {
        grid-template-columns: 1fr;
      }
    }

    /* Figma-faithful blog listing layout. Shared header/footer/showroom remain injected by site-layout.js. */
    .journal-shell {
      width: min(100% - 40px, 1240px);
      margin: 0 auto;
    }

    .journal-copy,
    .journal-card-copy,
    .journal-small-body p,
    .journal-consult-card p,
    .journal-review p {
      color: var(--secondary);
      font-size: 14px;
      letter-spacing: .28px;
      line-height: 22px;
    }

    .journal-hero {
      background: #f9f7f5;
    }

    .journal-hero-grid {
      display: grid;
      grid-template-columns: 410px 830px;
      height: 471px;
      background: #f1eeec;
    }

    .journal-hero-copy {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 48px 38px;
    }

    .journal-hero-copy .short-rule {
      margin-top: 19px;
    }

    .journal-hero-title {
      margin: 30px 0 0;
      color: var(--anthracite);
      font-size: 30px;
      font-weight: 400;
      letter-spacing: 2.1px;
      line-height: 40px;
      text-transform: uppercase;
    }

    .journal-hero-title span {
      display: block;
      white-space: nowrap;
    }

    .journal-hero-copy .journal-copy {
      width: 288px;
      margin: 22px 0 0;
      line-height: 24px;
    }

    .journal-hero-cta {
      width: 250px;
      margin-top: 25px;
    }

    .journal-hero-link {
      margin-top: 27px;
    }

    .journal-hero-media {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }

    .journal-story-section {
      padding-top: 24px;
    }

    .journal-toolbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      height: 48px;
      margin-bottom: 24px;
    }

    .journal-tabs,
    .journal-filters {
      display: flex;
      align-items: center;
      gap: 30px;
    }

    .journal-tab,
    .journal-filter-label,
    .journal-select {
      color: var(--ink);
      font-size: 10px;
      font-weight: 600;
      letter-spacing: .4px;
      line-height: 18px;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .journal-tab.is-active {
      border-bottom: 1px solid var(--accent);
      padding-bottom: 4px;
    }

    .journal-filter-label {
      color: var(--muted);
    }

    .journal-filters {
      gap: 22px;
    }

    .journal-select {
      width: 145px;
      height: 36px;
      border: 1px solid #bdbdbd;
      background: transparent;
      color: var(--muted);
      padding: 0 17px;
    }

    .journal-card-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 24px;
    }

    .journal-story-card {
      display: flex;
      flex-direction: column;
      min-height: 379px;
      background: #f9f7f5;
      border: 1px solid var(--line);
      padding: 0;
      transition: transform .22s ease, box-shadow .22s ease;
    }

    .journal-story-card[hidden] {
      display: none;
    }

    .journal-story-card:hover,
    .journal-story-card:focus-within,
    .journal-small-card:hover,
    .journal-small-card:focus-within {
      box-shadow: 0 14px 28px rgba(0, 0, 0, .08);
      transform: translateY(-2px);
    }

    .journal-card-image,
    .journal-card-image picture,
    .journal-small-image,
    .journal-small-image picture {
      display: block;
      overflow: hidden;
    }

    .journal-card-image img {
      width: 100%;
      height: 208px;
      object-fit: cover;
    }

    .journal-card-body {
      display: flex;
      flex: 1;
      flex-direction: column;
      gap: 9px;
      padding: 24px 26px 22px;
    }

    .journal-card-title {
      margin: 0;
      color: var(--ink);
      font-family: "Times New Roman", Georgia, serif;
      font-size: 24px;
      font-weight: 400;
      letter-spacing: .2px;
      line-height: 29px;
    }

    .journal-story-card .text-link,
    .journal-small-card .text-link,
    .journal-consult-card .text-link {
      margin-top: auto;
      color: #111;
      font-size: 10px;
      letter-spacing: 1.2px;
    }

    .journal-feature-band {
      display: grid;
      grid-template-columns: 585px 631px;
      gap: 24px;
      margin-top: 16px;
    }

    .journal-feature-card {
      display: grid;
      grid-template-rows: auto 196px;
      min-height: 379px;
      background: #eeece9;
      border: 1px solid var(--line);
      padding: 31px 34px 34px;
    }

    .journal-feature-copy {
      display: grid;
      gap: 15px;
      align-content: start;
    }

    .journal-feature-copy h2 {
      margin: 0;
      color: var(--ink);
      font-family: "Times New Roman", Georgia, serif;
      font-size: 24px;
      font-weight: 400;
      line-height: 30px;
    }

    .journal-feature-video {
      width: 100%;
      height: 196px;
      align-self: end;
      object-fit: cover;
      background: #d7d2ce;
    }

    .journal-testimonials {
      display: grid;
      grid-template-rows: minmax(195px, auto) auto;
      gap: 16px;
    }

    .journal-quote-card,
    .journal-mini-quote {
      box-sizing: border-box;
      min-width: 0;
      background: #f1eeec;
      border: 1px solid var(--line);
      overflow-wrap: break-word;
    }

    .journal-quote-card {
      min-height: 195px;
      padding: 38px 44px;
    }

    .journal-quote-card::before {
      display: block;
      color: var(--accent);
      content: "“";
      font-family: Georgia, serif;
      font-size: 42px;
      line-height: .5;
    }

    .journal-quote-card blockquote {
      width: min(485px, 100%);
      margin: 6px 0 16px;
      color: var(--anthracite);
      font-family: "Times New Roman", Georgia, serif;
      font-size: 22px;
      line-height: 30px;
      overflow-wrap: break-word;
    }

    .journal-quote-card cite,
    .journal-mini-quote cite {
      display: block;
      max-width: 100%;
      color: var(--secondary);
      font-size: 10px;
      font-style: normal;
      font-weight: 600;
      letter-spacing: .4px;
      line-height: 16px;
      overflow-wrap: anywhere;
      text-transform: uppercase;
    }

    .journal-mini-testimonials {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

    .journal-mini-quote {
      min-height: 168px;
      padding: 28px 22px 24px;
    }

    .journal-quote-mark {
      margin: 0 0 17px;
      color: var(--anthracite);
      font-family: Georgia, serif;
      font-size: 24px;
      line-height: 1;
    }

    .journal-mini-quote p:not(.journal-quote-mark) {
      margin: 0 0 18px;
      color: var(--secondary);
      font-family: "Times New Roman", Georgia, serif;
      font-size: 17px;
      line-height: 23px;
    }

    .journal-experience-strip {
      display: grid;
      grid-template-columns: 210px repeat(4, 1fr);
      align-items: center;
      gap: 35px;
      min-height: 161px;
      margin-top: 18px;
      background: #f1eeec;
      border: 1px solid var(--line);
      padding: 28px 32px;
    }

    .journal-experience-title h2 {
      margin: 0;
      color: var(--anthracite);
      font-size: 18px;
      font-weight: 400;
      line-height: 23px;
      text-transform: uppercase;
    }

    .journal-experience-title .short-rule {
      margin-top: 28px;
      width: 24px;
    }

    .journal-experience-item {
      display: grid;
      grid-template-columns: 36px minmax(0, 1fr);
      gap: 18px;
      align-items: start;
    }

    .journal-experience-item img {
      width: 36px;
      height: 36px;
    }

    .journal-experience-item h3 {
      margin: 0 0 7px;
      color: var(--ink);
      font-size: 10px;
      font-weight: 600;
      letter-spacing: .4px;
      line-height: 18px;
      text-transform: uppercase;
    }

    .journal-experience-item p {
      margin: 0;
      color: var(--secondary);
      font-size: 14px;
      line-height: 16px;
    }

    .journal-lower-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr) 339px;
      gap: 21px;
      margin-top: 16px;
    }

    .journal-small-card {
      min-height: 379px;
      background: #f1eeec;
      border: 1px solid var(--line);
      transition: transform .22s ease, box-shadow .22s ease;
    }

    .journal-related-project-link {
      display: flex;
      flex-direction: column;
      min-height: 100%;
      color: inherit;
      text-decoration: none;
    }

    .journal-related-project-link:focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: 4px;
    }

    .journal-small-image img {
      width: 100%;
      height: 156px;
      background: #ddd8d1;
      object-fit: contain;
      object-position: center center;
    }

    .journal-small-body {
      display: flex;
      flex-direction: column;
      min-height: 223px;
      padding: 24px 25px 23px;
    }

    .journal-small-body h3 {
      margin: 8px 0 10px;
      color: var(--ink);
      font-family: "Times New Roman", Georgia, serif;
      font-size: 20px;
      font-weight: 400;
      line-height: 26px;
    }

    .journal-small-body p {
      margin: 0;
      font-size: 13px;
      line-height: 18px;
    }

    .journal-related-project-description {
      display: block;
      margin: 0;
      color: var(--secondary);
      font-size: 13px;
      letter-spacing: .28px;
      line-height: 18px;
    }

    .journal-consult-card {
      display: flex;
      flex-direction: column;
      min-height: 379px;
      background: var(--anthracite);
      border: 1px solid var(--line);
      color: #fff;
      padding: 33px;
    }

    .journal-consult-card h2 {
      margin: 0;
      color: #fff;
      font-size: 21px;
      font-weight: 400;
      line-height: 30px;
      text-transform: uppercase;
    }

    .journal-consult-card .short-rule {
      width: 38px;
      margin-top: 28px;
      background: #fff;
      opacity: .7;
    }

    .journal-consult-card p {
      margin: 27px 0 0;
      color: #fff;
    }

    .journal-consult-card .btn {
      width: 100%;
      margin-top: 28px;
      background: #fff;
      color: var(--anthracite);
    }

    .journal-consult-card .text-link {
      margin-top: 24px;
      color: #fff;
    }

    .journal-showroom-address {
      margin-top: 12px !important;
      color: #fff !important;
    }

    .journal-trust-strip {
      display: grid;
      grid-template-columns: 250px minmax(160px, 1fr) 180px;
      align-items: center;
      gap: 42px;
      min-height: 112px;
      margin-top: 18px;
      margin-bottom: 34px;
      background: #f1eeec;
      border: 1px solid var(--line);
      padding: 24px 32px;
    }

    .journal-trust-title h2 {
      margin: 0;
      color: var(--anthracite);
      font-size: 14px;
      font-weight: 400;
      line-height: 22px;
      text-transform: uppercase;
    }

    .journal-trust-title .short-rule {
      width: 24px;
      margin-top: 19px;
    }

    .journal-review {
      display: grid;
      gap: 6px;
      justify-items: start;
    }

    .journal-review .review-logo {
      width: 86px;
      height: 24px;
      object-fit: contain;
    }

    .journal-review p {
      margin: 0;
      font-size: 12px;
      line-height: 16px;
    }

    .journal-review .stars {
      display: flex;
      gap: 3px;
      color: #d6a900;
      font-size: 17px;
      letter-spacing: 0;
      line-height: 16px;
    }

    .journal-recommended {
      display: flex;
      align-items: center;
      gap: 18px;
    }

    .journal-recommended img {
      width: 43px;
      height: 43px;
    }

    .journal-recommended h3 {
      margin: 0;
      color: var(--ink);
      font-size: 10px;
      font-weight: 600;
      letter-spacing: .4px;
      line-height: 18px;
      text-transform: uppercase;
    }

    @media (max-width: 1180px) {
      .journal-shell {
        width: min(100% - 48px, 900px);
      }

      .journal-hero-grid,
      .journal-feature-band,
      .journal-experience-strip,
      .journal-lower-grid,
      .journal-trust-strip {
        grid-template-columns: 1fr;
      }

      .journal-hero-grid {
        height: auto;
        min-height: 0;
      }

      .journal-hero-media {
        height: min(54vw, 440px);
      }

      .journal-toolbar {
        height: auto;
        align-items: flex-start;
        flex-direction: column;
      }

      .journal-tabs {
        gap: 18px 24px;
        flex-wrap: wrap;
      }

      .journal-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .journal-feature-card,
      .journal-testimonials {
        min-height: 0;
      }

      .journal-testimonials {
        grid-template-rows: auto auto;
      }

      .journal-quote-card blockquote {
        width: auto;
      }

      .journal-experience-strip,
      .journal-trust-strip {
        gap: 24px;
      }

      .journal-lower-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 760px) {
      .journal-shell {
        width: calc(100% - 40px);
      }

      .journal-hero-copy {
        padding: 40px 24px;
      }

      .journal-hero-title {
        font-size: 27px;
        letter-spacing: 1.2px;
        line-height: 36px;
      }

      .journal-hero-title span {
        white-space: normal;
      }

      .journal-hero-copy .journal-copy,
      .journal-hero-cta {
        width: 100%;
      }

      .journal-hero-copy .journal-copy {
        max-width: 280px;
      }

      .journal-hero-cta {
        max-width: 300px;
      }

      .journal-hero-media {
        height: 300px;
      }

      .journal-filters {
        width: 100%;
        align-items: stretch;
        flex-direction: column;
        gap: 12px;
      }

      .journal-tabs {
        display: grid;
        grid-template-columns: repeat(2, auto);
        justify-content: start;
        width: 100%;
        gap: 14px 20px;
      }

      .journal-select {
        width: 100%;
      }

      .journal-card-grid,
      .journal-mini-testimonials,
      .journal-lower-grid {
        grid-template-columns: 1fr;
      }

      .journal-feature-card {
        padding: 28px 24px;
      }

      .journal-feature-video {
        height: 190px;
        margin-top: 20px;
      }

      .journal-quote-card {
        padding: 32px 24px;
      }

      .journal-quote-card blockquote {
        font-size: 20px;
        line-height: 28px;
      }

      .journal-experience-strip,
      .journal-trust-strip {
        padding: 28px 24px;
      }

      .journal-card-image img,
      .journal-small-image img {
        height: 205px;
      }
    }

    /* Figma-faithful blog detail page. Header and footer remain shared via site-layout.js. */
    .case-page {
      background: #f9f8f7;
      color: var(--ink);
    }

    .case-breadcrumb-wrap,
    .case-hero,
    .case-intro-grid,
    .case-gallery,
    .case-lower-grid,
    .case-story-cta,
    .case-related {
      width: min(100% - 100px, 1340px);
      margin-right: auto;
      margin-left: auto;
    }

    .case-breadcrumb-wrap {
      padding: 30px 0 18px;
    }

    .case-breadcrumb {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
      margin: 0;
      padding: 0;
      color: var(--muted);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 1.8px;
      line-height: 18px;
      list-style: none;
      text-transform: uppercase;
    }

    .case-breadcrumb a {
      position: relative;
      color: var(--accent);
      transition: color .22s ease;
    }

    .case-breadcrumb a::after {
      position: absolute;
      right: 0;
      bottom: -4px;
      left: 0;
      height: 1px;
      background: currentColor;
      content: "";
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .22s ease;
    }

    .case-breadcrumb a:hover,
    .case-breadcrumb a:focus-visible {
      color: var(--anthracite);
    }

    .case-breadcrumb a:hover::after,
    .case-breadcrumb a:focus-visible::after {
      transform: scaleX(1);
    }

    .case-hero {
      display: grid;
      grid-template-columns: 585px minmax(0, 755px);
      height: 466px;
      min-height: 466px;
      background: #f1eeec;
      overflow: hidden;
    }

    .case-hero-copy {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 48px 48px 30px 50px;
    }

    .case-eyebrow {
      margin: 0;
      color: var(--accent);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 1.44px;
      line-height: 18px;
      text-transform: uppercase;
    }

    .case-hero h1 {
      margin: 30px 0 0;
      color: var(--ink);
      font-size: 40px;
      font-weight: 400;
      letter-spacing: -1px;
      line-height: 50px;
    }

    .case-rule {
      width: 38px;
      height: 1px;
      margin-top: 24px;
      background: var(--accent);
    }

    .case-dek {
      width: 317px;
      margin: 22px 0 0;
      color: var(--secondary);
      font-size: 14px;
      letter-spacing: .28px;
      line-height: 22px;
    }

    .case-byline {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-top: 24px;
      color: var(--secondary);
      font-size: 10px;
      font-weight: 600;
      letter-spacing: .4px;
      line-height: 18px;
      text-transform: uppercase;
    }

    .case-byline span[aria-hidden="true"] {
      width: 1px;
      height: 18px;
      background: var(--line);
    }

    .case-author-avatar {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      object-fit: cover;
    }

    .case-hero-picture,
    .case-hero-picture img,
    .case-hero-video {
      display: block;
      width: 100%;
      height: 466px;
    }

    .case-hero-picture img,
    .case-hero-video {
      background: #d3d0cc;
      object-fit: cover;
      object-position: center;
    }

    .blog-generated-page .case-hero-picture img {
      object-position: center top;
    }

    .case-intro-grid {
      display: grid;
      grid-template-columns: 236px 650px 250px;
      column-gap: 54px;
      align-items: start;
      padding-top: 34px;
    }

    .case-toc {
      position: sticky;
      top: 126px;
      min-height: 300px;
      padding: 40px 36px;
      background: #f1eeec;
      border: 1px solid var(--line);
    }

    .case-toc h2,
    .case-related-heading h2,
    .case-related-card > div > p,
    .case-read-time,
    .case-text-link {
      margin: 0;
      color: var(--ink);
      font-size: 10px;
      font-weight: 600;
      letter-spacing: .4px;
      line-height: 18px;
      text-transform: uppercase;
    }

    .case-toc ol {
      display: grid;
      gap: 28px;
      margin: 34px 0 0;
      padding: 0;
      list-style: none;
    }

    .case-toc a {
      display: grid;
      grid-template-columns: 26px 1fr;
      gap: 18px;
      align-items: start;
      color: var(--secondary);
      font-size: 12px;
      letter-spacing: .1px;
      line-height: 20px;
    }

    .case-toc span {
      color: var(--ink);
      font-size: 10px;
      font-weight: 600;
      line-height: 18px;
    }

    .case-copy {
      color: var(--secondary);
      font-size: 14px;
      letter-spacing: .28px;
      line-height: 24px;
    }

    .case-copy p,
    .case-numbered-row p,
    .case-video-card-body p,
    .case-story-cta-copy p,
    .case-benefit p {
      margin: 0;
      color: var(--secondary);
      font-size: 14px;
      letter-spacing: .28px;
      line-height: 22px;
    }

    .case-copy p + p {
      margin-top: 28px;
    }

    .case-source-note {
      margin-bottom: 28px;
      padding: 18px 20px;
      background: #f1eeec;
      border-left: 2px solid var(--accent);
    }

    .case-source-note p {
      margin: 0;
      color: var(--secondary);
      font-size: 12px;
      letter-spacing: .2px;
      line-height: 20px;
    }

    .case-source-note a {
      color: var(--anthracite);
      font-weight: 600;
      text-transform: uppercase;
    }

    .case-dropcap::first-letter {
      float: left;
      padding: 7px 13px 0 0;
      color: var(--ink);
      font-family: "Times New Roman", Georgia, serif;
      font-size: 70px;
      line-height: 52px;
    }

    .case-section-label {
      display: flex;
      align-items: center;
      gap: 20px;
      margin: 33px 0 14px;
      color: var(--ink);
      font-size: 10px;
      font-weight: 600;
      line-height: 18px;
    }

    .case-section-label i {
      display: block;
      width: 38px;
      height: 1px;
      background: var(--accent);
    }

    .case-copy h2,
    .case-numbered-row h2,
    .case-video-card-body h2,
    .case-story-cta-copy h2,
    .case-related-card h3 {
      margin: 0;
      color: var(--ink);
      font-family: "Times New Roman", Georgia, serif;
      font-weight: 400;
    }

    .case-copy h2 {
      margin-bottom: 23px;
      font-size: 30px;
      letter-spacing: .2px;
      line-height: 34px;
    }

    .case-pullquote {
      padding-top: 17px;
    }

    .case-pullquote::before {
      display: block;
      margin-bottom: 25px;
      color: var(--accent);
      content: "“";
      font-family: Georgia, serif;
      font-size: 58px;
      line-height: 24px;
    }

    .case-pullquote blockquote {
      margin: 0;
      color: var(--anthracite);
      font-family: "Times New Roman", Georgia, serif;
      font-size: 26px;
      line-height: 34px;
    }

    .case-pullquote blockquote::after {
      display: block;
      width: 38px;
      height: 1px;
      margin: 26px 0 22px;
      background: var(--accent);
      content: "";
    }

    .case-pullquote cite {
      display: grid;
      gap: 7px;
      color: var(--secondary);
      font-size: 12px;
      font-style: normal;
      line-height: 18px;
    }

    .case-pullquote strong {
      color: var(--anthracite);
      font-size: 10px;
      font-weight: 600;
      letter-spacing: .4px;
      line-height: 18px;
      text-transform: uppercase;
    }

    .case-gallery {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
      margin-top: 38px;
    }

    .case-gallery picture,
    .case-gallery img {
      display: block;
      width: 100%;
    }

    .blog-generated-page .case-gallery picture {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 200px;
      overflow: hidden;
      background: #f4f1ed;
    }

    .case-gallery img {
      height: 200px;
      object-fit: cover;
      object-position: center;
    }

    .blog-generated-page .case-gallery img {
      height: 100%;
      object-fit: contain;
      object-position: center;
    }

    .blog-generated-page .case-related-card img {
      object-position: center top;
    }

    .case-gallery-count-1 {
      grid-template-columns: minmax(0, 1fr);
    }

    .case-gallery-count-1 img {
      height: 360px;
    }

    .case-gallery-count-2 {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .case-gallery-count-3 {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .blog-generated-page .case-gallery-count-1,
    .blog-generated-page .case-gallery-count-2,
    .blog-generated-page .case-gallery-count-3 {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .blog-generated-page .case-gallery-count-1 img {
      height: 100%;
    }

    .case-lower-grid {
      display: grid;
      grid-template-columns: minmax(0, 762px) minmax(430px, 548px);
      gap: 30px;
      align-items: start;
      margin-top: 35px;
    }

    .case-numbered-sections {
      display: grid;
      grid-template-columns: minmax(260px, 305px) minmax(0, 403px);
      column-gap: 54px;
      row-gap: 53px;
      align-items: start;
    }

    .case-numbered-row {
      display: contents;
    }

    .case-numbered-row .case-section-label {
      margin-top: 0;
      margin-bottom: 14px;
    }

    .case-numbered-row h2 {
      font-size: 30px;
      letter-spacing: .2px;
      line-height: 34px;
    }

    .case-numbered-row p {
      line-height: 23px;
    }

    .case-video-card {
      background: #e1e1e1;
      border: 0;
      overflow: hidden;
    }

    .case-video-card video {
      display: block;
      width: 100%;
      height: 208px;
      background: #d3d0cc;
      object-fit: cover;
    }

    .case-video-card-body {
      display: grid;
      gap: 11px;
      padding: 24px 24px 22px;
    }

    .case-video-card-body h2 {
      font-size: 24px;
      line-height: 30px;
    }

    .case-video-card-body p {
      line-height: 20px;
    }

    .case-text-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--anthracite);
      letter-spacing: .22px;
    }

    .case-story-cta {
      display: grid;
      grid-template-columns: 452px minmax(300px, 361px) minmax(360px, 1fr);
      gap: 24px;
      align-items: center;
      min-height: 329px;
      margin-top: 40px;
      background: #f1eeec;
      border: 1px solid var(--line);
    }

    .case-story-cta-media,
    .case-story-cta-media img {
      display: block;
      width: 100%;
      height: 329px;
    }

    .case-story-cta-media img {
      object-fit: cover;
      object-position: center;
    }

    .case-story-cta-copy {
      display: grid;
      gap: 16px;
      align-content: center;
      padding: 24px 0 24px 0;
    }

    .case-story-cta-copy h2 {
      font-size: 30px;
      letter-spacing: .6px;
      line-height: 31px;
    }

    .case-story-cta-copy .btn {
      width: fit-content;
      margin-top: 8px;
    }

    .case-benefits {
      display: grid;
      grid-template-columns: repeat(2, minmax(130px, 172px));
      gap: 30px 22px;
      align-items: start;
      min-height: 229px;
      border-left: 1px solid var(--line);
      padding: 0 30px;
    }

    .case-benefit {
      display: grid;
      grid-template-columns: 36px 1fr;
      gap: 16px;
      align-items: start;
    }

    .case-benefit img {
      width: 36px;
      height: 36px;
      object-fit: contain;
    }

    .case-benefit h3 {
      margin: 0 0 8px;
      color: var(--ink);
      font-size: 10px;
      font-weight: 600;
      letter-spacing: .4px;
      line-height: 18px;
      text-transform: uppercase;
    }

    .case-benefit p {
      line-height: 16px;
    }

    .case-related {
      margin-top: 16px;
      margin-bottom: 32px;
    }

    .case-related-heading {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 0 16px;
    }

    .case-related-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 21px;
      justify-content: center;
    }

    .case-related-card {
      display: grid;
      grid-template-columns: 232px minmax(0, 1fr);
      min-height: 164px;
      background: #f1eeec;
      overflow: hidden;
      transition: transform .22s ease, box-shadow .22s ease;
    }

    .case-related-card picture,
    .case-related-card img {
      display: block;
      width: 100%;
      height: 100%;
    }

    .case-related-card img {
      object-fit: cover;
    }

    .case-related-card > div {
      display: grid;
      gap: 7px;
      align-content: start;
      padding: 16px;
    }

    .case-related-card > div > p {
      color: var(--accent);
      letter-spacing: 1.2px;
    }

    .case-related-card h3 {
      font-size: 18px;
      line-height: 20px;
    }

    @media (min-width: 761px) {
      .project-card:hover,
      .project-card:focus-within,
      .project-detail-related-card a:hover,
      .project-detail-related-card a:focus-visible,
      .case-related-card:hover,
      .case-related-card:focus-within {
        box-shadow: 0 14px 28px rgba(0, 0, 0, .08);
        transform: translateY(-2px);
      }
    }

    .case-read-time {
      display: inline-flex;
      gap: 8px;
      align-items: center;
      padding-top: 12px;
      color: var(--anthracite);
      letter-spacing: 0;
    }

    @media (max-width: 1180px) {
      .case-breadcrumb-wrap,
      .case-hero,
      .case-intro-grid,
      .case-gallery,
      .case-lower-grid,
      .case-story-cta,
      .case-related {
        width: min(100% - 48px, 900px);
      }

      .case-hero,
      .case-intro-grid,
      .case-lower-grid,
      .case-story-cta {
        grid-template-columns: 1fr;
      }

      .case-hero {
        height: auto;
      }

      .case-hero-copy {
        padding: 48px;
      }

      .case-hero-picture img,
      .case-hero-video {
        height: min(55vw, 470px);
        min-height: 320px;
      }

      .case-toc {
        position: static;
      }

      .case-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .case-gallery-count-1,
      .case-gallery-count-2,
      .case-gallery-count-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .case-numbered-sections {
        grid-template-columns: 1fr;
        row-gap: 18px;
      }

      .case-numbered-row {
        display: grid;
        gap: 12px;
      }

      .case-story-cta-media img {
        height: 320px;
      }

      .case-story-cta-copy {
        padding: 0 30px 10px;
      }

      .case-benefits {
        width: 100%;
        min-height: 0;
        border-top: 1px solid var(--line);
        border-left: 0;
        padding: 30px;
      }

      .case-related-grid {
        grid-template-columns: 1fr;
      }

      .case-related-card {
        grid-template-columns: 232px 1fr;
      }
    }

    @media (max-width: 760px) {
      .case-breadcrumb-wrap,
      .case-hero,
      .case-intro-grid,
      .case-gallery,
      .case-lower-grid,
      .case-story-cta,
      .case-related {
        width: calc(100% - 40px);
      }

      .case-breadcrumb {
        gap: 8px;
        font-size: 9px;
        letter-spacing: 1.2px;
      }

      .case-hero-copy {
        padding: 38px 24px;
      }

      .case-hero h1 {
        font-size: 34px;
        letter-spacing: -.5px;
        line-height: 42px;
      }

      .case-dek {
        width: auto;
      }

      .case-byline {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
      }

      .case-byline span[aria-hidden="true"] {
        display: none;
      }

      .case-toc {
        padding: 30px 26px;
      }

      .case-intro-grid {
        padding-top: 24px;
      }

      .case-pullquote blockquote {
        font-size: 24px;
        line-height: 32px;
      }

      .case-gallery {
        grid-template-columns: 1fr;
      }

      .case-gallery-count-1,
      .case-gallery-count-2,
      .case-gallery-count-3 {
        grid-template-columns: 1fr;
      }

      .case-gallery img,
      .case-hero-video,
      .case-video-card video,
      .case-story-cta-media img {
        height: 240px;
      }

      .blog-generated-page .case-gallery-count-1,
      .blog-generated-page .case-gallery-count-2,
      .blog-generated-page .case-gallery-count-3 {
        grid-template-columns: 1fr;
      }

      .blog-generated-page .case-gallery picture {
        height: 240px;
      }

      .blog-generated-page .case-gallery img {
        height: 100%;
      }

      .case-story-cta-copy {
        padding: 0 24px 8px;
      }

      .case-story-cta-copy h2 {
        font-size: 27px;
        line-height: 31px;
      }

      .case-benefits {
        grid-template-columns: 1fr;
        padding: 24px;
      }

      .case-related-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
      }

      .case-related-card {
        grid-template-columns: 1fr;
      }

      .case-related-card img {
        height: 205px;
      }
    }
