:root {
  --bg: #030303;
  --bg2: #080808;
  --panel: #090909;
  --text: #f0efec;
  --muted: #a9a59f;
  --gold: #b78938;
  --gold2: #d1a34d;
  --line: #222;
  --goldline: rgba(183, 137, 56, .55);
  --shell: 1440px
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  background: #000;
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased
}

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

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

.site-shell {
  width: min(var(--shell), calc(100% - 48px));
  margin: auto
}

.header {
  height: 68px;
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(2, 2, 2, .95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #111
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center
}

.monogram {
  font-family: Allura, cursive;
  color: var(--gold2);
  font-size: 2.2rem;
  line-height: 1;
  transform: rotate(-7deg);
  display: inline-block
}

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

.nav a {
  font-size: .73rem;
  text-transform: uppercase;
  letter-spacing: .085em;
  color: #efefef;
  transition: .2s
}

.nav a:hover {
  color: var(--gold2)
}

.nav-cta {
  border: 1px solid var(--goldline);
  padding: 10px 17px;
  border-radius: 2px
}

.menu {
  display: none;
  background: none;
  color: #fff;
  border: 1px solid #333;
  padding: 7px 10px;
  margin-left: auto
}

.hero {
  height: 590px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #1d1d1d;
  background: #030303
}

.hero-photo {
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            90deg,
            #030303 0%,
            rgba(3, 3, 3, .98) 27%,
            rgba(3, 3, 3, .3) 50%,
            rgba(3, 3, 3, .08) 78%,
            #050505 100%
        ),
        linear-gradient(
            0deg,
            #050505 0%,
            transparent 22%
        ),
        url('../img/ryan-hero.jpg');

    background-size: auto 105%;
    background-position: 65% center;
    background-repeat: no-repeat;
    background-color: #050505;

    filter: saturate(.78) contrast(1.05);
}

.hero-layout {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: 50%;
  padding-left: 48px;
  margin-top: -4px
}

.hero h1 {
  margin: 0;
  color: #f4f4f4;
  text-transform: uppercase;
  font-size: 4.55rem;
  line-height: .89;
  letter-spacing: -.035em;
  font-weight: 800
}

.hero h1 span {
  display: block
}

.hero-statement {
  margin: 20px 0 15px;
  color: var(--gold2);
  font-size: 1.31rem;
  text-transform: uppercase;
  letter-spacing: .02em;
  line-height: 1.25
}

.hero-statement strong {
  font-weight: 500
}

.gold-rule {
  display: block;
  width: 52px;
  height: 1px;
  background: var(--gold);
  margin: 20px 0
}

.hero-intro {
  margin-bottom: 22px
}

.hero-role {
  color: #bdbab5;
  font-size: .92rem;
  line-height: 1.5
}

.signature-wrap {
  position: absolute;
  right: 76px;
  bottom: 26px;
  z-index: 3
}

.signature {
  font-family: Allura, cursive;
  font-size: 3.2rem;
  color: var(--gold2);
  transform: rotate(-8deg);
  text-shadow: 0 2px 10px #000
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: .07em;
  font-size: .73rem;
  font-weight: 600
}

.btn-outline {
  border: 1px solid var(--goldline);
  padding: 10px 18px;
  color: #f5f5f5;
  border-radius: 2px
}

.btn-outline:hover {
  background: rgba(183, 137, 56, .12)
}

.compact {
  padding: 9px 15px;
  font-size: .67rem
}

.circle-play {
  width: 19px;
  height: 19px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  font-size: .5rem;
  color: var(--gold2)
}

.proofbar {
  background: #070707;
  border-bottom: 1px solid #1f1f1f
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr)
}

.proof {
  height: 78px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 26px;
  border-right: 1px solid #202020
}

.proof:last-child {
  border-right: 0
}

.proof-icon {
  color: #ad9467;
  font-size: 1.5rem
}

.proof small,
.proof b {
  display: block;
  text-transform: uppercase
}

.proof small {
  font-size: .61rem;
  color: #b8b5af;
  letter-spacing: .05em
}

.proof b {
  font-size: .74rem;
  color: #fff;
  letter-spacing: .015em
}

.content-frame {
  border-left: 1px solid #161616;
  border-right: 1px solid #161616
}

.dual-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid #222
}

.panel {
  padding: 22px 40px 24px;
  background: linear-gradient(180deg, #070707, #050505)
}

.panel+.panel {
  border-left: 1px solid #242424
}

.section-label {
  text-transform: uppercase;
  font-size: 1.07rem;
  letter-spacing: .04em;
  color: var(--gold2);
  margin: 0 0 12px
}

.thesis-list {
  list-style: none;
  margin: 0 0 13px;
  padding: 0
}

.thesis-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  min-height: 47px;
  border-bottom: 1px solid #252525
}

.thesis-list li:last-child {
  border-bottom: 0
}

.thesis-list span {
  color: #af9566;
  text-align: center;
  font-size: 1.2rem
}

.thesis-list p {
  margin: 0;
  font-size: .79rem;
  color: #ddd
}

.systems-list {
  display: grid;
  gap: 9px;
  margin-bottom: 14px
}

.systems-list article {
  display: grid;
  grid-template-columns: 55px 1fr;
  align-items: center;
  min-height: 63px
}

.system-icon {
  font-size: 1.65rem;
  color: #b59a68;
  text-align: center
}

.systems-list h3 {
  margin: 0;
  text-transform: uppercase;
  font-size: .83rem;
  letter-spacing: .035em
}

.systems-list p {
  margin: 3px 0 0;
  color: #b7b3ad;
  font-size: .76rem;
  max-width: 310px
}

.work-panel {
  background: #070707;
  border-bottom: 1px solid #222;
  padding: 22px 36px 16px
}

.work-heading {
  display: flex;
  align-items: flex-start;
  gap: 55px
}

.work-heading .section-label {
  min-width: 155px
}

.work-heading p {
  margin: 0;
  font-size: .78rem;
  color: #ddd
}

.book-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 8px
}

.book {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 18px;
  align-items: center
}

.book img {
  width: 132px;
  height: 194px;
  object-fit: cover;
  box-shadow: 0 18px 32px #000
}

.book h3 {
  text-transform: uppercase;
  color: var(--gold2);
  font-size: .83rem;
  margin: 0 0 10px
}

.book p {
  font-size: .75rem;
  color: #ccc;
  margin: 0 0 17px;
  max-width: 155px
}

.work-note {
  text-align: center;
  border-top: 1px solid #1e1e1e;
  margin: 13px -36px -16px;
  padding: 13px 20px;
  color: #bbb;
  font-size: .78rem
}

.work-note strong {
  color: #d2ccc2;
  font-weight: 500
}

.lower-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid #222
}

.panel-kicker {
  color: #d7d4ce;
  margin: -6px 0 8px;
  font-size: .74rem
}

.field-panel {
  position: relative;
  overflow: hidden
}

.field-panel:after {
  content: "";
  position: absolute;
  inset: 40% 0 0;
  background: radial-gradient(circle at 50% 100%, rgba(183, 137, 56, .09), transparent 55%);
  pointer-events: none
}

.field-links {
  position: relative;
  z-index: 2;
  margin-bottom: 12px
}

.field-links a {
  min-height: 31px;
  border-bottom: 1px solid #1e1e1e;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .76rem
}

.field-links b {
  color: var(--gold2)
}

.media-panel {
  padding-bottom: 23px
}

.featured-video {
  height: 220px;
  border: 1px solid #2c2c2c;
  position: relative;
  overflow: hidden;
  margin-bottom: 10px
}

.featured-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
  filter: grayscale(1) contrast(1.05) brightness(.7)
}

.big-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 62px;
  height: 62px;
  border: 1px solid #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, .38);
  font-size: 1.25rem
}

.projects-strip {
  border-bottom: 1px solid #222;
  background: #060606;
  padding: 20px 28px
}

.projects-title {
  display: flex;
  gap: 28px;
  align-items: baseline
}

.projects-title p {
  margin: 0;
  color: #aaa;
  font-size: .75rem
}

.project-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  margin-top: 8px
}

.project-cards article {
  border: 1px solid #222;
  background: #090909;
  min-height: 138px;
  display: grid;
  grid-template-columns: 42% 1fr
}

.project-cards img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.6) contrast(1.1) brightness(.68)
}

.project-cards div {
  padding: 15px
}

.project-cards small {
  font-size: .57rem;
  text-transform: uppercase;
  color: var(--gold2);
  letter-spacing: .08em
}

.project-cards h3 {
  margin: 5px 0 6px;
  font-size: .9rem
}

.project-cards p,
.project-cards a {
  font-size: .69rem;
  color: #aaa;
  margin: 0
}

.project-cards a {
  color: var(--gold2)
}

.research-card {
  display: block !important;
  background: radial-gradient(circle at 10% 30%, rgba(183, 137, 56, .13), transparent 45%), #080808 !important
}

.contact {
  text-align: center;
  padding: 19px 30px 20px;
  background: linear-gradient(180deg, #070707, #030303)
}

.contact h2 {
  text-transform: uppercase;
  color: var(--gold2);
  font-size: 1.62rem;
  letter-spacing: .035em;
  margin: 0
}

.contact>p {
  margin: 2px 0 12px;
  color: #d2cfca;
  font-size: .75rem
}

.contact i {
  font-style: normal;
  color: #777;
  padding: 0 7px
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr;
  max-width: 1040px;
  margin: auto;
  border: 1px solid var(--goldline);
  border-radius: 3px
}

.contact-grid a {
  height: 48px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 0 20px;
  border-right: 1px solid #252525;
  text-align: left
}

.contact-grid a:last-child {
  border-right: 0
}

.contact-grid>a>span {
  font-size: 1.3rem;
  color: var(--gold2)
}

.contact-grid small,
.contact-grid b {
  display: block
}

.contact-grid small {
  text-transform: uppercase;
  color: var(--gold2);
  font-size: .57rem;
  letter-spacing: .07em
}

.contact-grid b {
  font-size: .77rem
}

.footer {
  border-top: 1px solid #222;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 13px 32px;
  color: #85817a;
  font-size: .7rem
}

.footer-mark {
  font-size: 2rem
}

.footer-social {
  text-align: right;
  color: #b58b42;
  font-size: 1rem
}

.sticky {
  display: none
}

.article-shell {
  padding: 115px 0 90px;
  background: #050505;
  min-height: 100vh
}

.article-shell>.wrap,
.article-shell>.site-shell {
  width: min(980px, calc(100% - 40px));
  margin: auto
}

.article-shell h1 {
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  line-height: .96;
  letter-spacing: -.045em;
  max-width: 900px;
  margin: 12px 0
}

.article-shell .dek {
  font-size: 1.14rem;
  color: var(--muted);
  max-width: 780px
}

.article-body {
  max-width: 780px;
  margin-top: 46px
}

.article-body h2 {
  margin-top: 42px;
  color: var(--gold2)
}

.article-body p {
  color: #d2cbc1
}

.article-body .draft {
  border: 1px solid var(--goldline);
  padding: 18px;
  color: var(--gold2);
  margin-bottom: 32px
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 36px
}

.note-card {
  border: 1px solid #222;
  background: #090909;
  padding: 22px;
  min-height: 215px;
  display: flex;
  flex-direction: column
}

.note-card small {
  color: var(--gold2);
  text-transform: uppercase;
  letter-spacing: .11em
}

.note-card h3 {
  font-size: 1.12rem;
  margin: 22px 0 9px
}

.note-card p {
  color: var(--muted);
  font-size: .86rem
}

.note-card a {
  margin-top: auto;
  color: var(--gold2);
  font-size: .72rem;
  text-transform: uppercase
}

.gold {
  color: var(--gold2)
}

.eyebrow {
  color: var(--gold2);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .72rem;
  font-weight: 700
}

.wrap {
  width: min(1240px, calc(100% - 40px));
  margin: auto
}

.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px
}

@media(max-width:1100px) {
  .nav {
    gap: 16px
  }
  .nav a {
    font-size: .65rem
  }
  .hero-copy {
    padding-left: 8px
  }
  .proof {
    padding: 0 12px
  }
  .book {
    grid-template-columns: 100px 1fr
  }
  .book img {
    width: 100px;
    height: 150px
  }
  .project-cards article {
    grid-template-columns: 35% 1fr
  }
}

@media(max-width:850px) {
  .header {
    height: 60px
  }
  .menu {
    display: block
  }
  .nav {
    display: none
  }
  .nav.open {
    display: flex;
    position: absolute;
    top: 60px;
    left: 16px;
    right: 16px;
    flex-direction: column;
    align-items: stretch;
    background: #080808;
    border: 1px solid #2c2c2c;
    padding: 14px;
    gap: 0
  }
  .nav.open a {
    padding: 11px;
    border-bottom: 1px solid #202020
  }
 .hero {
    height: 760px;
}

.hero-photo {
    background-image:
        linear-gradient(
            180deg,
            #030303 0%,
            rgba(3, 3, 3, .94) 30%,
            rgba(3, 3, 3, .15) 55%,
            #050505 95%
        ),
        url('../img/ryan-hero.jpg');

    background-position: right center;
    background-size: 92% auto;
    background-repeat: no-repeat;
    background-color: #030303;
}

.hero-layout {
    align-items: flex-start;
}

.hero-copy {
    width: 100%;
    padding-top: 52px;
}

.hero h1 {
    font-size: 4.05rem;
}
  .signature-wrap {
    right: 28px;
    bottom: 52px
  }
  .proof-grid {
    grid-template-columns: 1fr 1fr
  }
  .proof:nth-child(4) {
    border-right: 0
  }
  .proof:nth-child(5) {
    grid-column: 1/-1
  }
  .dual-panel,
  .lower-grid {
    grid-template-columns: 1fr
  }
  .panel+.panel {
    border-left: 0;
    border-top: 1px solid #222
  }
  .book-row {
    grid-template-columns: 1fr
  }
  .book {
    grid-template-columns: 120px 1fr
  }
  .book img {
    width: 120px;
    height: 180px
  }
  .project-cards {
    grid-template-columns: 1fr
  }
  .contact-grid {
    grid-template-columns: 1fr
  }
  .contact-grid a {
    border-right: 0;
    border-bottom: 1px solid #252525
  }
  .contact-grid a:last-child {
    border-bottom: 0
  }
  .footer {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 5px
  }
  .footer-social {
    text-align: center
  }
  .archive-grid {
    grid-template-columns: 1fr
  }
}

@media(max-width:560px) {
  .site-shell {
    width: min(100% - 24px, var(--shell))
  }
  .header-inner {
    width: calc(100% - 28px)
  }
  .hero {
    height: 790px
  }
  .hero-copy {
    padding-top: 34px
  }
  .hero h1 {
    font-size: 3.55rem
  }
  .hero-statement {
    font-size: 1rem
  }
  .hero-role {
    font-size: .8rem;
    max-width: 310px
  }
  .signature {
    font-size: 2.55rem
  }
  .signature-wrap {
    bottom: 84px
  }
  .proof-grid {
    grid-template-columns: 1fr 1fr
  }
  .proof {
    height: 65px
  }
  .proof:nth-child(5) {
    grid-column: 1/-1
  }
  .content-frame {
    width: 100%;
    border: 0
  }
  .panel {
    padding: 24px 18px
  }
  .work-panel {
    padding: 24px 18px
  }
  .work-heading {
    display: block
  }
  .book {
    grid-template-columns: 92px 1fr
  }
  .book img {
    width: 92px;
    height: 138px
  }
  .work-note {
    margin: 16px -18px -24px
  }
  .projects-strip {
    padding: 22px 14px
  }
  .contact {
    padding: 25px 14px 85px
  }
  .contact h2 {
    font-size: 1.32rem
  }
  .sticky {
    display: block;
    position: fixed;
    z-index: 90;
    bottom: 12px;
    left: 12px;
    right: 12px;
    background: var(--gold);
    color: #060606;
    padding: 13px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: .08em;
    border-radius: 3px
  }
  .footer {
    padding-bottom: 80px
  }
  
}