  :root {
    color-scheme: dark;
    --black: #080808;
    --black-soft: #101010;
    --black-raised: #171717;
    --white: #ffffff;
    --white-soft: #d7d5cf;
    --white-muted: #9f9d97;
    --gold: #d4af37;
    --gold-deep: #6e5015;
    --gold-rich: #b88a2a;
    --gold-highlight: #f4e3a1;
    --gold-shadow: #80611b;
    --gold-gradient: linear-gradient(135deg, #6e5015 0%, #b88a2a 22%, #f4e3a1 48%, #d4af37 68%, #80611b 100%);
    --gold-gradient-hover: linear-gradient(135deg, #8a681f 0%, #d0a33a 24%, #fff0b8 48%, #e1bf4d 70%, #967326 100%);
    --gold-soft: rgba(212, 175, 55, 0.12);
    --line: rgba(212, 175, 55, 0.24);
    --line-soft: rgba(255, 255, 255, 0.1);
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'Montserrat', Arial, sans-serif;
    --maxw: 1240px;
    --header-height: 76px;
  }

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

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

  body {
    margin: 0;
    background: var(--black);
    color: var(--white);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
  }

  body,
  button,
  input,
  textarea {
    font-family: var(--sans);
  }

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

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

  button,
  input,
  textarea {
    font: inherit;
  }

  button,
  a {
    -webkit-tap-highlight-color: transparent;
  }

  :focus-visible {
    outline: 2px solid var(--gold-highlight);
    outline-offset: 4px;
  }

  ::selection {
    background: var(--gold);
    color: var(--black);
  }

  .site-wrapper {
    min-height: 100vh;
    overflow: clip;
  }

  .wrap {
    width: min(var(--maxw), calc(100% - 48px));
    margin-inline: auto;
  }

  .skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 10000;
    transform: translateY(-150%);
    padding: 10px 16px;
    background: var(--gold);
    color: var(--black);
    font-size: .8rem;
    font-weight: 700;
  }

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

  main {
    overflow: clip;
  }

  section {
    position: relative;
    padding: 132px 0;
    scroll-margin-top: var(--header-height);
  }

  h1,
  h2,
  h3,
  h4,
  p,
  figure {
    margin: 0;
  }

  h1,
  h2,
  h3,
  h4 {
    font-family: var(--serif);
    font-weight: 500;
    letter-spacing: -.025em;
  }

  .eyebrow,
  .hero-eyebrow,
  .project-kicker,
  .footer-label {
    color: var(--gold);
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .22em;
    line-height: 1.4;
    text-transform: uppercase;
  }

  .section-intro {
    max-width: 790px;
    margin-bottom: 78px;
  }

  .section-intro h2 {
    max-width: 760px;
    margin-top: 14px;
    font-size: clamp(2.8rem, 5.3vw, 5rem);
    line-height: .98;
  }

  .section-intro h2 em,
  .history-copy h3 em {
    color: var(--gold);
    font-style: italic;
  }

  .section-intro>p:last-child {
    max-width: 620px;
    margin-top: 26px;
    color: var(--white-soft);
    font-size: 1rem;
  }

  .split-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
    gap: 80px;
    align-items: end;
    max-width: none;
  }

  .split-intro>p:last-child {
    margin: 0 0 7px;
    padding-left: 26px;
    border-left: 1px solid var(--line);
  }

  .btn,
  .submit-btn {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 26px;
    border: 1px solid transparent;
    border-radius: 0;
    cursor: pointer;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .14em;
    line-height: 1.2;
    text-transform: uppercase;
    transition: background .3s ease, border-color .3s ease, color .3s ease, transform .3s ease, box-shadow .3s ease;
  }

  .btn-gold,
  .submit-btn {
    background: var(--gold-gradient);
    border-color: var(--gold-highlight);
    color: var(--black);
    box-shadow: 0 10px 30px rgba(110, 80, 21, .24), inset 0 1px 0 rgba(255, 255, 255, .35);
  }

  .btn-gold:hover,
  .submit-btn:hover {
    background: var(--gold-gradient-hover);
    box-shadow: 0 14px 38px rgba(212, 175, 55, .22), inset 0 1px 0 rgba(255, 255, 255, .45);
    transform: translateY(-2px);
  }

  .btn-ghost {
    background: rgba(8, 8, 8, .3);
    border-color: rgba(255, 255, 255, .34);
    color: var(--white);
    backdrop-filter: blur(8px);
  }

  .btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold-highlight);
    transform: translateY(-2px);
  }

  .text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 7px;
    border-bottom: 1px solid var(--gold);
    color: var(--gold-highlight);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    transition: gap .25s ease, color .25s ease;
  }

  .text-link:hover {
    gap: 15px;
    color: var(--white);
  }

  /* Header */
  header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    height: var(--header-height);
    background: rgba(8, 8, 8, .88);
    border-bottom: 1px solid var(--line-soft);
    backdrop-filter: blur(18px);
  }

  header nav {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: space-between;
  }

  .brand {
    display: block;
    width: 70px;
    height: 70px;
    flex: 0 0 auto;
  }

  .brand img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .navlinks {
    display: flex;
    align-items: center;
    gap: clamp(24px, 3vw, 44px);
  }

  .navlinks a {
    position: relative;
    padding: 28px 0 24px;
    color: rgba(255, 255, 255, .78);
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    transition: color .25s ease;
  }

  .navlinks a::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 17px;
    left: 0;
    height: 1px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .3s ease;
  }

  .navlinks a:hover,
  .navlinks a.active {
    color: var(--gold-highlight);
  }

  .navlinks a:hover::after,
  .navlinks a.active::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .navtoggle {
    display: none;
    width: 46px;
    height: 42px;
    padding: 10px;
    border: 1px solid var(--line);
    background: transparent;
    cursor: pointer;
  }

  .navtoggle span {
    display: block;
    width: 100%;
    height: 1px;
    min-height: 1px;
    flex: 0 0 1px;
    margin: 5px 0;
    background: var(--gold);
    transition: transform .25s ease, opacity .25s ease;
  }

  .navtoggle[aria-expanded='true'] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .navtoggle[aria-expanded='true'] span:nth-child(2) {
    opacity: 0;
  }

  .navtoggle[aria-expanded='true'] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .side-social {
    position: fixed;
    top: 50%;
    left: 0;
    z-index: 90;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(8, 8, 8, .9);
    border: 1px solid var(--line);
    border-left: 0;
    transform: translateY(-50%);
    backdrop-filter: blur(12px);
  }

  .side-social>span {
    padding: 16px 8px;
    color: var(--white-muted);
    font-size: .55rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
  }

  .side-social a {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-top: 1px solid var(--line-soft);
    color: var(--gold);
    font-size: .76rem;
    transition: background .25s ease, color .25s ease;
  }

  .side-social a:hover {
    background: var(--gold-gradient);
    color: var(--black);
  }

  /* Hero */
  .hero {
    display: flex;
    min-height: 100svh;
    align-items: center;
    padding: calc(var(--header-height) + 78px) 0 80px;
    isolation: isolate;
    background: var(--black) url('../branding/dnr-holdings-office-hero.webp') center / cover no-repeat;
  }

  .hero::before {
    content: '';
    position: absolute;
    z-index: -1;
    inset: 0;
    background:
      linear-gradient(90deg, rgba(5, 5, 5, .93) 0%, rgba(5, 5, 5, .72) 43%, rgba(5, 5, 5, .36) 76%, rgba(5, 5, 5, .64) 100%),
      linear-gradient(0deg, rgba(5, 5, 5, .86) 0%, transparent 38%);
  }

  .hero-inner {
    position: relative;
    z-index: 1;
  }

  .hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 26px;
  }

  .hero-eyebrow span,
  .project-kicker span {
    display: inline-block;
    width: 34px;
    height: 1px;
    background: var(--gold-gradient);
  }

  .hero h1 {
    max-width: 980px;
    font-size: clamp(3.7rem, 7.4vw, 7.2rem);
    line-height: .86;
    text-wrap: balance;
  }

  .hero h1 em {
    display: inline-block;
    margin-top: 15px;
    background: var(--gold-gradient);
    background-clip: text;
    color: var(--gold);
    font-style: italic;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .hero-lead {
    max-width: 680px;
    margin-top: 34px;
    color: var(--white-soft);
    font-size: clamp(.98rem, 1.4vw, 1.12rem);
    font-weight: 300;
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 38px;
  }

  .hero-sectors {
    display: flex;
    max-width: 760px;
    margin-top: 68px;
    border-top: 1px solid var(--line-soft);
  }

  .hero-sectors span {
    flex: 1;
    padding: 16px 14px 0 0;
    color: var(--white-muted);
    font-size: .63rem;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
  }

  .scroll-cue {
    position: absolute;
    right: 36px;
    bottom: 38px;
    display: grid;
    width: 40px;
    height: 58px;
    place-items: center;
    border: 1px solid var(--line);
  }

  .scroll-cue span {
    width: 1px;
    height: 20px;
    background: var(--gold);
    animation: scrollCue 1.8s ease-in-out infinite;
  }

  @keyframes scrollCue {

    0%,
    100% {
      transform: translateY(-5px);
      opacity: .35;
    }

    50% {
      transform: translateY(6px);
      opacity: 1;
    }
  }

  /* About */
  .section-dark {
    background:
      radial-gradient(circle at 82% 18%, rgba(212, 175, 55, .055), transparent 27%),
      var(--black);
  }

  .founder-grid {
    display: grid;
    grid-template-columns: minmax(320px, .82fr) minmax(0, 1.18fr);
    gap: clamp(58px, 8vw, 118px);
    align-items: center;
  }

  .image-frame {
    position: relative;
    overflow: hidden;
    background: var(--black-raised);
  }

  .image-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid var(--line);
    pointer-events: none;
  }

  .image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .founder-portrait {
    aspect-ratio: 4 / 5;
  }

  .founder-portrait::before {
    content: '';
    position: absolute;
    z-index: 2;
    right: 18px;
    bottom: 18px;
    width: 56px;
    height: 56px;
    border-right: 1px solid var(--gold);
    border-bottom: 1px solid var(--gold);
  }

  .founder-portrait figcaption {
    position: absolute;
    z-index: 3;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 40px 28px 24px;
    background: linear-gradient(transparent, rgba(0, 0, 0, .88));
    color: var(--white-muted);
    font-size: .64rem;
    letter-spacing: .13em;
    text-transform: uppercase;
  }

  .founder-portrait figcaption span {
    display: block;
    color: var(--white);
    font-family: var(--serif);
    font-size: 1.45rem;
    letter-spacing: 0;
    text-transform: none;
  }

  .founder-copy h3,
  .history-copy h3,
  .project-copy h3,
  .feature-copy h3,
  .event-intro h3 {
    margin: 12px 0 24px;
    font-size: clamp(2.6rem, 4.8vw, 4.5rem);
    line-height: .98;
  }

  .founder-copy>p,
  .history-copy>p,
  .project-copy>p,
  .feature-copy>p,
  .event-intro>p {
    max-width: 650px;
    color: var(--white-soft);
  }

  .founder-copy .founder-lead {
    margin-bottom: 20px;
    color: var(--white);
    font-family: var(--serif);
    font-size: clamp(1.45rem, 2.2vw, 2rem);
    line-height: 1.3;
  }

  .founder-principles {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 34px;
  }

  .founder-principles span {
    padding: 9px 14px;
    border: 1px solid var(--line);
    color: var(--white-muted);
    font-size: .62rem;
    letter-spacing: .12em;
    text-transform: uppercase;
  }

  .history-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, .72fr);
    gap: clamp(58px, 8vw, 118px);
    align-items: center;
    margin-top: 150px;
    padding-top: 120px;
    border-top: 1px solid var(--line-soft);
  }

  .history-copy>p+p {
    margin-top: 16px;
  }

  .history-image {
    aspect-ratio: 3 / 4;
  }

  .history-image figcaption {
    position: absolute;
    z-index: 2;
    right: 18px;
    bottom: 18px;
    padding: 8px 12px;
    background: rgba(8, 8, 8, .8);
    color: var(--gold-highlight);
    font-size: .6rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
  }

  .legacy-list {
    margin-top: 38px;
    border-top: 1px solid var(--line-soft);
  }

  .legacy-list>div {
    display: grid;
    grid-template-columns: 42px minmax(150px, .8fr) 1.2fr;
    gap: 16px;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid var(--line-soft);
  }

  .legacy-list span {
    color: var(--gold);
    font-family: var(--serif);
    font-size: 1.2rem;
  }

  .legacy-list strong {
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
  }

  .legacy-list small {
    color: var(--white-muted);
    font-size: .75rem;
    line-height: 1.5;
  }

  .giving-note {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 30px;
    align-items: center;
    margin-top: 88px;
    padding: 34px 38px;
    background: linear-gradient(110deg, rgba(212, 175, 55, .11), rgba(212, 175, 55, .025));
    border: 1px solid var(--line);
  }

  .giving-mark {
    background: var(--gold-gradient);
    background-clip: text;
    color: var(--gold);
    font-family: var(--serif);
    font-size: clamp(3rem, 6vw, 5.2rem);
    line-height: 1;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .giving-note>div>p:last-child {
    max-width: 720px;
    margin-top: 8px;
    color: var(--white-soft);
    font-size: .86rem;
  }

  /* Portfolio */
  .portfolio-section {
    background: var(--black-soft);
  }

  .portfolio-category,
  .portfolio-feature {
    padding-top: 18px;
  }

  .portfolio-heading {
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 26px;
    align-items: start;
    margin-bottom: 52px;
  }

  .portfolio-heading>span {
    color: var(--gold);
    font-family: var(--serif);
    font-size: 2rem;
    line-height: 1;
  }

  .portfolio-heading h3 {
    max-width: 760px;
    margin-top: 8px;
    font-size: clamp(2rem, 3.8vw, 3.5rem);
    line-height: 1.05;
  }

  .cat-tabs {
    display: flex;
    margin-bottom: 44px;
    border-bottom: 1px solid var(--line-soft);
    overflow-x: auto;
    scrollbar-width: none;
  }

  .cat-tabs::-webkit-scrollbar {
    display: none;
  }

  .cat-tab {
    position: relative;
    flex: 0 0 auto;
    min-height: 52px;
    padding: 0 28px 17px 0;
    border: 0;
    background: transparent;
    color: var(--white-muted);
    cursor: pointer;
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    transition: color .25s ease;
  }

  .cat-tab+.cat-tab {
    padding-left: 28px;
  }

  .cat-tab::after {
    content: '';
    position: absolute;
    right: 28px;
    bottom: -1px;
    left: 0;
    height: 1px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .3s ease;
  }

  .cat-tab+.cat-tab::after {
    left: 28px;
  }

  .cat-tab:hover,
  .cat-tab.active {
    color: var(--gold-highlight);
  }

  .cat-tab.active::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .cat-panel {
    display: none;
  }

  .cat-panel.active {
    display: block;
    animation: panelIn .45s ease both;
  }

  .cat-panel[hidden] {
    display: none !important;
  }

  @keyframes panelIn {
    from {
      opacity: 0;
      transform: translateY(12px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .project-showcase {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(310px, .8fr);
    gap: clamp(48px, 7vw, 92px);
    align-items: center;
  }

  .project-kicker {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .project-copy>p:not(.project-kicker):not(.gallery-hint),
  .feature-copy>p:not(.project-kicker),
  .event-intro>p:not(.project-kicker) {
    margin-bottom: 14px;
    font-size: .9rem;
  }

  .gallery-hint {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 26px;
    color: var(--gold-highlight) !important;
    font-size: .67rem !important;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  .video-container,
  .featured-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #050505;
    border: 1px solid var(--line);
  }

  .video-container {
    cursor: pointer;
  }

  .video-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
  }

  .video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    pointer-events: none;
    transition: background 0.3s ease, transform 0.3s ease;
  }

  .play-overlay i {
    margin-left: 5px;
    /* visually center the play icon */
  }

  .video-container:hover .play-overlay {
    background: rgba(255, 60, 0, 0.9);
    transform: translate(-50%, -50%) scale(1.1);
  }

  .inline-gallery {
    min-width: 0;
  }

  .slider-track {
    display: flex;
    width: 100%;
    height: 100%;
    will-change: transform;
    touch-action: pan-y;
    user-select: none;
  }

  .slider-track.dragging,
  .slider-track.dragging * {
    cursor: grabbing !important;
  }

  .featured-img-wrap>img.main-img,
  .slider-track img {
    width: 100%;
    height: 100%;
    flex: 0 0 100%;
    object-fit: cover;
    cursor: pointer;
    user-select: none;
    -webkit-user-drag: none;
  }

  .inline-arrow {
    position: absolute;
    z-index: 6;
    top: 50%;
    display: grid;
    width: 44px;
    height: 44px;
    padding: 0;
    place-items: center;
    background: rgba(8, 8, 8, .78);
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--gold-highlight);
    cursor: pointer;
    transform: translateY(-50%);
    backdrop-filter: blur(8px);
    transition: background .25s ease, color .25s ease, border-color .25s ease;
  }

  .inline-arrow.prev {
    left: 18px;
  }

  .inline-arrow.next {
    right: 18px;
  }

  .inline-arrow:hover {
    background: var(--gold-gradient);
    border-color: var(--gold-highlight);
    color: var(--black);
  }

  .gallery-count {
    position: absolute;
    z-index: 5;
    right: 18px;
    bottom: 18px;
    padding: 7px 11px;
    background: rgba(8, 8, 8, .74);
    color: var(--white-soft);
    font-size: .56rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    backdrop-filter: blur(7px);
  }

  .inline-thumbnails {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    overflow-x: auto;
    scrollbar-color: var(--gold) var(--black-raised);
    scrollbar-width: thin;
  }

  .inline-thumb {
    width: 66px;
    height: 44px;
    flex: 0 0 auto;
    object-fit: cover;
    border: 1px solid transparent;
    opacity: .42;
    cursor: pointer;
    transition: opacity .25s ease, border-color .25s ease;
  }

  .inline-thumb:hover {
    opacity: .76;
  }

  .inline-thumb.active {
    border-color: var(--gold);
    opacity: 1;
  }

  .portfolio-divider {
    height: 1px;
    margin: 132px 0;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: .55;
  }

  .feature-editorial {
    display: grid;
    grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr);
    gap: clamp(58px, 8vw, 110px);
    align-items: center;
  }

  .feature-tall {
    aspect-ratio: 5 / 3.8;
  }

  .feature-copy .text-link,
  .event-intro .text-link,
  .project-copy .text-link {
    margin-top: 20px;
  }

  .event-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(310px, .75fr);
    gap: clamp(48px, 7vw, 92px);
    align-items: center;
  }

  .event-gallery {
    aspect-ratio: 16 / 9;
  }

  .event-logo {
    position: absolute;
    z-index: 5;
    top: 50%;
    left: 50%;
    width: min(35%, 280px) !important;
    height: auto !important;
    object-fit: contain !important;
    pointer-events: none;
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.85)) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.6));
    transform: translate(-50%, -50%);
  }

  .event-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 72px;
  }

  .event-info-card {
    background: #121212;
    border: 1px solid var(--line-soft);
  }

  .event-info-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    filter: saturate(.78);
    transition: filter .35s ease, transform .5s ease;
  }

  .event-info-card:hover img {
    filter: saturate(1);
  }

  .event-info-card>div {
    padding: 26px;
  }

  .event-info-card span {
    color: var(--gold);
    font-family: var(--serif);
    font-size: 1.25rem;
  }

  .event-info-card h4 {
    margin: 7px 0 12px;
    font-size: 1.6rem;
  }

  .event-info-card p {
    color: var(--white-muted);
    font-size: .77rem;
    line-height: 1.65;
  }

  /* Vision */
  .section-gold-wash {
    background:
      radial-gradient(circle at 50% -20%, rgba(212, 175, 55, .13), transparent 46%),
      var(--black);
  }

  .vision-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .vision-card {
    min-height: 350px;
    padding: 34px 28px;
    border-right: 1px solid var(--line);
    transition: background .3s ease, transform .3s ease;
  }

  .vision-card:last-child {
    border-right: 0;
  }

  .vision-card:hover {
    background: linear-gradient(180deg, rgba(212, 175, 55, .1), rgba(212, 175, 55, .025));
    transform: translateY(-5px);
  }

  .vision-card .mark {
    color: var(--gold);
    font-family: var(--serif);
    font-size: 1.45rem;
  }

  .vision-card h3 {
    margin: 40px 0 18px;
    font-size: 1.8rem;
  }

  .vision-card p {
    color: var(--white-muted);
    font-size: .8rem;
    line-height: 1.7;
  }

  /* Contact */
  .contact-section {
    background: var(--black-soft);
  }

  .contact-wrap {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
    gap: clamp(50px, 8vw, 110px);
    align-items: start;
  }

  .contact-visual figure {
    aspect-ratio: 4 / 3;
  }

  .contact-details {
    margin-top: 28px;
    border-top: 1px solid var(--line-soft);
  }

  .contact-details>* {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 17px 0;
    border-bottom: 1px solid var(--line-soft);
    color: var(--white-soft);
    font-size: .8rem;
  }

  .contact-details i {
    width: 20px;
    color: var(--gold);
    text-align: center;
  }

  .contact-details small {
    display: block;
    color: var(--white-muted);
    font-size: .56rem;
    letter-spacing: .13em;
    text-transform: uppercase;
  }

  .contact-form-card {
    padding: clamp(30px, 4vw, 54px);
    background: #141414;
    border: 1px solid var(--line);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .28);
  }

  .contact-form-card h3 {
    margin: 8px 0 32px;
    font-size: clamp(2.2rem, 4vw, 3.3rem);
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 19px;
  }

  label {
    color: var(--white-muted);
    font-size: .61rem;
    font-weight: 600;
    letter-spacing: .13em;
    text-transform: uppercase;
  }

  input,
  textarea {
    width: 100%;
    padding: 13px 0;
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .22);
    border-radius: 0;
    color: var(--white);
    font-size: .9rem;
    transition: border-color .25s ease;
  }

  input:focus,
  textarea:focus {
    border-color: var(--gold);
    outline: 0;
  }

  textarea {
    min-height: 100px;
    resize: vertical;
  }

  .honeypot {
    position: absolute !important;
    left: -9999px !important;
  }

  .submit-btn {
    margin-top: 10px;
  }

  /* Footer */
  footer {
    padding: 76px 0 28px;
    background: #050505;
    border-top: 1px solid var(--line);
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1.4fr .6fr 1fr;
    gap: 60px;
  }

  .footer-brand img {
    width: 84px;
    height: 84px;
    object-fit: contain;
  }

  .footer-brand p {
    margin-top: 16px;
    color: var(--white-muted);
    font-family: var(--serif);
    font-size: 1.3rem;
    line-height: 1.3;
  }

  .footer-label {
    margin-bottom: 18px;
  }

  .footer-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-nav a,
  address,
  address a {
    color: var(--white-muted);
    font-size: .75rem;
    font-style: normal;
    line-height: 2;
    transition: color .25s ease;
  }

  .footer-nav a:hover,
  address a:hover {
    color: var(--gold-highlight);
  }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
    padding-top: 22px;
    border-top: 1px solid var(--line-soft);
    color: #74726d;
    font-size: .62rem;
    letter-spacing: .06em;
  }

  .footer-bottom a {
    color: var(--gold);
    text-transform: uppercase;
  }

  /* Lightbox */
  .lightbox {
    position: fixed;
    z-index: 9999;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 80px 90px 100px;
    background: rgba(0, 0, 0, .96);
    backdrop-filter: blur(12px);
  }

  .lightbox.active {
    display: flex;
  }

  .lightbox-content {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
  }

  .lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    object-fit: contain;
    cursor: grab;
    touch-action: pan-y;
    user-select: none;
    -webkit-user-drag: none;
  }

  .lightbox-content img:active {
    cursor: grabbing;
  }

  .lightbox-close {
    position: absolute;
    top: 26px;
    right: 34px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--gold-highlight);
    cursor: pointer;
    font-family: var(--sans);
    font-size: 2.5rem;
    font-weight: 200;
    line-height: 1;
  }

  .lightbox-prev,
  .lightbox-next {
    position: absolute;
    z-index: 2;
    top: 50%;
    display: grid;
    width: 50px;
    height: 50px;
    padding: 0;
    place-items: center;
    background: rgba(8, 8, 8, .8);
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--gold-highlight);
    cursor: pointer;
    transform: translateY(-50%);
  }

  .lightbox-prev {
    left: 28px;
  }

  .lightbox-next {
    right: 28px;
  }

  .lightbox-thumbnails {
    position: absolute;
    right: 0;
    bottom: 22px;
    left: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 0 24px;
    overflow-x: auto;
  }

  .lightbox-thumbnails .inline-thumb {
    width: 62px;
    height: 42px;
  }

  @media (max-width: 1020px) {
    section {
      padding: 110px 0;
    }

    .founder-grid,
    .history-grid {
      gap: 58px;
    }

    .project-showcase,
    .event-hero {
      grid-template-columns: minmax(0, 1.08fr) minmax(280px, .92fr);
      gap: 48px;
    }

    .vision-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .vision-card:nth-child(2) {
      border-right: 0;
    }

    .vision-card:nth-child(-n+2) {
      border-bottom: 1px solid var(--line);
    }
  }

  @media (max-width: 820px) {
    :root {
      --header-height: 70px;
    }

    .wrap {
      width: min(calc(100% - 32px), var(--maxw));
    }

    section {
      padding: 88px 0;
    }

    .section-intro {
      margin-bottom: 52px;
    }

    .section-intro h2 {
      font-size: clamp(2.65rem, 12vw, 4rem);
    }

    .split-intro {
      grid-template-columns: 1fr;
      gap: 24px;
    }

    .split-intro>p:last-child {
      padding-left: 18px;
    }

    .brand {
      width: 62px;
      height: 62px;
    }

    .navtoggle {
      position: absolute;
      top: 14px;
      right: 16px;
      z-index: 3;
      display: flex !important;
      flex: 0 0 46px;
      flex-direction: column;
      justify-content: center;
      visibility: visible;
      opacity: 1;
    }

    .navlinks {
      position: absolute;
      top: var(--header-height);
      right: 0;
      left: 0;
      display: block;
      max-height: 0;
      padding: 0 16px;
      overflow: hidden;
      background: rgba(8, 8, 8, .98);
      border-bottom: 1px solid var(--line);
      transition: max-height .35s ease, padding .35s ease;
    }

    .navlinks.open {
      max-height: 430px;
      padding-top: 10px;
      padding-bottom: 14px;
    }

    .navlinks a {
      display: block;
      padding: 15px 4px;
      border-bottom: 1px solid var(--line-soft);
    }

    .navlinks a::after {
      display: none;
    }

    .side-social {
      display: none;
    }

    .hero {
      min-height: 100svh;
      padding: calc(var(--header-height) + 60px) 0 58px;
      background-position: 58% center;
    }

    .hero::before {
      background: linear-gradient(90deg, rgba(5, 5, 5, .91), rgba(5, 5, 5, .55)), linear-gradient(0deg, rgba(5, 5, 5, .88), transparent 50%);
    }

    .hero h1 {
      max-width: 100%;
      font-size: clamp(3rem, 14vw, 4.6rem);
      line-height: .9;
      overflow-wrap: anywhere;
    }

    .hero h1 em {
      margin-top: 10px;
    }

    .hero-lead {
      max-width: 560px;
      margin-top: 26px;
    }

    .hero-actions {
      margin-top: 30px;
    }

    .hero-sectors {
      display: grid;
      grid-template-columns: 1fr 1fr;
      margin-top: 48px;
    }

    .hero-sectors span {
      padding-top: 12px;
    }

    .scroll-cue {
      display: none;
    }

    .founder-grid,
    .history-grid,
    .project-showcase,
    .feature-editorial,
    .event-hero,
    .contact-wrap {
      grid-template-columns: 1fr;
    }

    .founder-grid,
    .history-grid {
      gap: 44px;
    }

    .founder-portrait {
      max-width: 520px;
    }

    .history-grid {
      margin-top: 90px;
      padding-top: 82px;
    }

    .history-image {
      grid-row: 1;
      max-width: 520px;
    }

    .legacy-list>div {
      grid-template-columns: 36px 1fr;
    }

    .legacy-list small {
      grid-column: 2;
    }

    .giving-note {
      grid-template-columns: 1fr;
      padding: 28px;
    }

    .portfolio-heading {
      grid-template-columns: 48px 1fr;
      gap: 14px;
    }

    .cat-tab {
      padding-right: 20px;
    }

    .cat-tab+.cat-tab {
      padding-left: 20px;
    }

    .cat-tab::after {
      right: 20px;
    }

    .cat-tab+.cat-tab::after {
      left: 20px;
    }

    .project-showcase,
    .event-hero {
      gap: 38px;
    }

    .project-copy,
    .event-intro {
      padding-bottom: 8px;
    }

    .portfolio-divider {
      margin: 90px 0;
    }

    .feature-copy {
      order: 2;
    }

    .event-info-grid {
      display: flex;
      flex-wrap: nowrap;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      gap: 16px;
      padding-bottom: 24px;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      margin: 0 -24px;
      /* Bleed to screen edges */
      padding: 0 calc(50vw - 41vw) 24px;
      /* Center the 82vw items */
    }

    .event-info-grid::-webkit-scrollbar {
      display: none;
    }

    .event-info-card {
      flex: 0 0 82vw;
      scroll-snap-align: center;
    }

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

    .vision-card {
      min-height: 260px;
      border-right: 0;
      border-bottom: 1px solid var(--line);
    }

    .vision-card:nth-child(3) {
      border-bottom: 1px solid var(--line);
    }

    .vision-card:last-child {
      border-bottom: 0;
    }

    .vision-card h3 {
      margin-top: 25px;
    }

    .contact-wrap {
      gap: 48px;
    }

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

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

  @media (max-width: 520px) {
    body {
      font-size: 15px;
    }

    .wrap {
      width: min(calc(100% - 28px), var(--maxw));
    }

    .hero {
      padding-top: calc(var(--header-height) + 42px);
    }

    .hero-eyebrow {
      margin-bottom: 20px;
      font-size: .62rem;
    }

    .hero h1 {
      font-size: clamp(2.72rem, 13.5vw, 4rem);
    }

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

    .hero-actions .btn {
      width: 100%;
    }

    .cat-tabs {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px 12px;
      border-bottom: 0;
      margin-bottom: 36px;
    }

    .cat-tab {
      padding: 0 0 12px 0;
      text-align: left;
      border-bottom: 1px solid var(--line-soft);
      min-height: auto;
    }

    .cat-tab + .cat-tab {
      padding-left: 0;
    }

    .cat-tab::after,
    .cat-tab + .cat-tab::after {
      left: 0 !important;
      right: 0 !important;
      bottom: -1px;
    }

    .hero-sectors span {
      font-size: .56rem;
    }

    .section-intro h2 {
      font-size: 2.5rem;
    }

    .founder-copy h3,
    .history-copy h3,
    .project-copy h3,
    .feature-copy h3,
    .event-intro h3 {
      font-size: 2.55rem;
    }

    .giving-mark {
      font-size: 4rem;
    }

    .portfolio-heading h3 {
      font-size: 2rem;
    }

    .featured-img-wrap,
    .video-container,
    .event-gallery,
    .feature-tall {
      aspect-ratio: 4 / 3;
    }

    .inline-arrow {
      width: 40px;
      height: 40px;
    }

    .inline-arrow.prev {
      left: 10px;
    }

    .inline-arrow.next {
      right: 10px;
    }

    .event-info-card {
      display: block;
    }

    .event-info-card img {
      aspect-ratio: 16 / 10;
    }

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

    .contact-form-card {
      padding: 28px 22px;
    }

    .footer-grid {
      grid-template-columns: 1fr;
      gap: 38px;
    }

    .footer-brand {
      grid-column: auto;
    }

    .footer-bottom {
      flex-direction: column;
      gap: 14px;
    }

    .lightbox {
      padding: 70px 14px 90px;
    }

    .lightbox-prev {
      left: 8px;
    }

    .lightbox-next {
      right: 8px;
    }

    .lightbox-close {
      top: 20px;
      right: 20px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    html {
      scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
      scroll-behavior: auto !important;
      animation-duration: .01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: .01ms !important;
    }
  }