*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

:root{
  --black:#050607;
  --deep:#090b0c;
  --gold:#d7a044;
  --gold2:#b97820;
  --cream:#f1e8db;
  --white:#f7f3ec;
  --muted:#d7d0c4;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:"Vazirmatn", sans-serif;
  background:#111;
  color:var(--white);
  overflow-x:auto;
}

.desktop-page{
  width:1365px;
  min-height:1200px;
  margin:0 auto;
  background:#050607;
  position:relative;
  overflow:hidden;
  box-shadow:0 0 0 1px rgba(255,255,255,.06);
}

.header{
  position:absolute;
  top:0;
  left:0;
  z-index:30;
  width:100%;
  height:88px;
  padding:0 68px;
  display:flex;
  align-items:center;
  justify-content:flex-end;
  direction:ltr;
}

.header-solid{
  position:relative;
  background:#060708;
  border-bottom:1px solid rgba(255,255,255,.06);
}

.header-nav-only{
  justify-content:flex-end;
}

.brand{
  display:none;
  direction:rtl;
  color:var(--gold);
  font-size:33px;
  font-weight:900;
  letter-spacing:-1px;
  transform:rotate(-4deg);
  white-space:nowrap;
}

nav{
  direction:rtl;
  display:flex;
  align-items:center;
  gap:34px;
}

nav a{
  color:#eee;
  opacity:.92;
  text-decoration:none;
  font-size:16px;
  position:relative;
  padding:8px 0;
  white-space:nowrap;
}

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

nav a.active::after{
  content:"";
  position:absolute;
  right:0;
  bottom:-13px;
  width:100%;
  height:2px;
  background:var(--gold);
}

.socials{
  position:absolute;
  left:52px;
  top:285px;
  z-index:25;
  display:flex;
  flex-direction:column;
  gap:22px;
}

.socials span{
  color:white;
  font-size:29px;
  line-height:1;
}

.hero{
  height:585px;
  position:relative;
  background-color:#050607;
  background-image:
    linear-gradient(90deg,
      rgba(0,0,0,0) 0%,
      rgba(0,0,0,.02) 34%,
      rgba(0,0,0,.52) 56%,
      rgba(0,0,0,.91) 76%,
      rgba(0,0,0,1) 100%),
    linear-gradient(180deg,
      rgba(0,0,0,0) 0%,
      rgba(0,0,0,0) 66%,
      rgba(0,0,0,.78) 100%),
    url("assets/hero-wide.png");
  background-repeat:no-repeat;
  background-size:auto 100%;
  background-position:left center;
  overflow:hidden;
}

.hero::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(circle at 31% 38%, rgba(213,150,68,.13), transparent 17%),
    linear-gradient(180deg, rgba(0,0,0,.04) 0%, rgba(0,0,0,.02) 70%, rgba(0,0,0,.62) 100%);
  z-index:1;
}

.hero-copy{
  position:absolute;
  z-index:3;
  top:152px;
  right:78px;
  width:575px;
  text-align:right;
}

.eyebrow{
  color:var(--gold);
  font-size:27px;
  font-weight:500;
  line-height:1;
  margin-bottom:17px;
}

.hero-copy h1{
  color:#fff;
  font-size:73px;
  font-weight:900;
  line-height:1.05;
  letter-spacing:-4px;
  text-shadow:0 16px 42px rgba(0,0,0,.55);
}

.hero-copy h2{
  color:var(--gold);
  font-size:22px;
  font-weight:500;
  margin-top:21px;
}

.hero-copy p{
  color:#f0f0f0;
  font-size:18px;
  font-weight:300;
  line-height:2.1;
  margin-top:23px;
}

.actions{
  margin-top:32px;
  display:flex;
  gap:25px;
  justify-content:flex-start;
  direction:rtl;
}

.btn{
  width:185px;
  height:58px;
  border-radius:7px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  text-decoration:none;
  font-size:18px;
  font-weight:500;
  transition:.25s;
}

.btn:hover{
  transform:translateY(-3px);
}

.btn.gold{
  color:white;
  background:linear-gradient(135deg,#e2ae56,#ba7b22);
  box-shadow:0 18px 45px rgba(215,160,68,.25);
}

.btn.outline{
  color:white;
  border:1px solid var(--gold);
  background:rgba(0,0,0,.08);
}

.works{
  height:290px;
  background:linear-gradient(180deg,#121617 0%, #090a0b 100%);
  display:grid;
  grid-template-columns:95px 785px 1fr;
  align-items:center;
  gap:24px;
  padding:0 68px;
}

.slider-controls{
  display:flex;
  gap:15px;
  justify-content:flex-start;
}

.slider-controls button{
  width:42px;
  height:42px;
  border-radius:50%;
  border:1px solid var(--gold);
  background:transparent;
  color:var(--gold);
  font-size:28px;
  line-height:1;
}

.cards{
  display:flex;
  gap:24px;
  align-items:center;
}

.work-card{
  width:145px;
  height:210px;
  flex:0 0 145px;
  border-radius:8px;
  overflow:hidden;
  position:relative;
  display:flex;
  align-items:flex-end;
  padding:15px 12px;
  background-size:cover!important;
  background-position:center!important;
  box-shadow:0 18px 48px rgba(0,0,0,.45);
}

.work-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,.04) 0%, rgba(0,0,0,.33) 48%, rgba(0,0,0,.9) 100%);
  z-index:1;
}

.work-card div{
  position:relative;
  z-index:2;
  text-align:right;
}

.work-card h3{
  color:#fff;
  font-size:18px;
  line-height:1.65;
  font-weight:600;
}

.work-card p{
  color:#efefef;
  font-size:13px;
  line-height:1.5;
}

.poster-one{
  background:
    linear-gradient(135deg,rgba(14,19,28,.52),rgba(0,0,0,.22)),
    url("assets/portrait-main.jpeg");
}

.poster-two{
  background:
    linear-gradient(135deg,rgba(74,30,50,.55),rgba(0,0,0,.25)),
    url("assets/portrait-hat.jpeg");
}

.poster-three{
  background:
    linear-gradient(135deg,rgba(126,86,34,.55),rgba(0,0,0,.25)),
    url("assets/portrait-main.jpeg");
}

.poster-four{
  background:
    linear-gradient(135deg,rgba(30,32,34,.45),rgba(0,0,0,.25)),
    url("assets/hero-wide.png");
}

.poster-five{
  background:
    linear-gradient(135deg,rgba(123,86,38,.52),rgba(0,0,0,.25)),
    url("assets/portrait-hat.jpeg");
}

.works-title{
  text-align:right;
  padding-right:10px;
}

.works-title h2{
  color:var(--gold);
  font-size:23px;
  font-weight:500;
  margin-bottom:28px;
}

.works-title a{
  color:#fff;
  text-decoration:none;
  font-size:15px;
}

.bio-band{
  height:430px;
  background:var(--cream);
  color:#151515;
  display:grid;
  grid-template-columns:420px 1fr;
  gap:48px;
  align-items:center;
  padding:20px 68px 30px;
}

.bio-copy{
  text-align:right;
  padding-top:15px;
}

.bio-copy h2{
  font-size:31px;
  line-height:1.35;
  font-weight:800;
  margin-bottom:24px;
}

.bio-copy p{
  color:#252525;
  font-size:15px;
  line-height:2.25;
  max-width:360px;
}

.read-more{
  width:205px;
  height:54px;
  margin-top:26px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  border:1px solid #bf8b47;
  border-radius:7px;
  color:#7c531d;
  text-decoration:none;
  font-size:16px;
}

.quote-box{
  height:360px;
  background:#0b0d0f;
  border-radius:7px;
  overflow:hidden;
  display:grid;
  grid-template-columns:280px 1fr;
  box-shadow:0 20px 58px rgba(0,0,0,.18);
}

.quote-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center top;
  filter:sepia(.10) saturate(.86) contrast(1.08);
}

.quote-content{
  background:#0b0d0f;
  color:#fff;
  text-align:right;
  padding:38px 54px;
}

.quote-mark{
  color:var(--gold);
  font-size:74px;
  line-height:.45;
  font-weight:900;
  margin-bottom:28px;
}

.quote-content p{
  color:#efefef;
  font-size:21px;
  line-height:2.06;
}

.quote-content strong{
  display:block;
  color:var(--gold);
  font-size:16px;
  font-weight:500;
  margin-top:16px;
}

.quote-content i{
  display:block;
  width:58px;
  height:2px;
  background:var(--gold);
  margin-top:17px;
}

/* Biography page */
.biography-page{
  background:#070809;
}

.bio-hero{
  height:460px;
  background:
    linear-gradient(90deg, rgba(0,0,0,.10) 0%, rgba(0,0,0,.35) 42%, rgba(0,0,0,.88) 100%),
    linear-gradient(180deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.72) 100%),
    url("assets/portrait-hat.jpeg");
  background-size:cover;
  background-position:center 24%;
  display:flex;
  align-items:center;
  justify-content:flex-end;
  padding:0 85px;
}

.bio-hero-copy{
  width:650px;
  text-align:right;
}

.bio-hero-copy span,
.section-kicker{
  color:var(--gold);
  font-size:18px;
  font-weight:600;
}

.bio-hero-copy h1{
  font-size:72px;
  line-height:1.1;
  margin-top:10px;
}

.bio-hero-copy p{
  color:#eee;
  font-size:20px;
  line-height:2.05;
  margin-top:22px;
}

.article-intro{
  background:#f1e8db;
  color:#151515;
  padding:70px 90px;
}

.intro-card{
  max-width:980px;
  margin:0 auto;
  text-align:right;
  display:grid;
  grid-template-columns:260px 1fr;
  gap:42px;
  align-items:center;
}

.intro-image{
  height:330px;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 20px 60px rgba(0,0,0,.18);
}

.intro-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center top;
}

.intro-card h2,
.story-text h2,
.wide-text-section h2,
.style-card h2,
.timeline-section h2,
.selected-works-section h2,
.legacy-section h2{
  font-size:34px;
  line-height:1.35;
  margin-bottom:22px;
}

.intro-card p,
.story-text p,
.wide-text-section p,
.style-card p,
.legacy-section p{
  font-size:18px;
  line-height:2.35;
}

.story-section{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:55px;
  padding:85px 90px;
  align-items:center;
}

.dark-block{
  background:#090b0c;
}

.cream-block{
  background:#f7efe4;
  color:#151515;
}

.story-text{
  text-align:right;
}

.story-text p + p{
  margin-top:20px;
}

.story-image{
  border-radius:18px;
  overflow:hidden;
  height:440px;
  box-shadow:0 25px 80px rgba(0,0,0,.35);
}

.story-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center top;
}

.wide-text-section{
  padding:90px;
  background:#0c0e10;
  display:grid;
  grid-template-columns:390px 1fr;
  gap:58px;
  align-items:center;
  text-align:right;
  direction:ltr;
}

.work-years-collage{
  grid-column:1;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  grid-template-rows:repeat(2,minmax(0,1fr));
  gap:12px;
  height:390px;
  direction:ltr;
}

.work-years-collage img{
  width:100%;
  height:100%;
  min-width:0;
  object-fit:cover;
  object-position:center top;
  border-radius:12px;
  box-shadow:0 18px 52px rgba(0,0,0,.28);
}

.work-years-collage img:nth-child(n+3){
  object-position:center top;
}

.work-years-collage img:nth-child(3){
  object-fit:contain;
  object-position:center center;
  background:#f7efe4;
}

.work-years-copy{
  grid-column:2;
  direction:rtl;
}

.wide-text-section p{
  color:#e7e7e7;
}

.wide-text-section p + p,
.legacy-section p + p{
  margin-top:22px;
}

.style-section{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:40px;
  background:#f1e8db;
  color:#151515;
  padding:80px 90px;
  align-items:stretch;
}

.style-card{
  text-align:right;
  background:#fffaf2;
  border:1px solid rgba(0,0,0,.06);
  padding:42px;
  border-radius:18px;
}

.quote-large{
  background:#090b0c;
  color:#fff;
  border-radius:18px;
  padding:45px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  text-align:right;
}

.quote-large div{
  color:var(--gold);
  font-size:96px;
  line-height:.5;
}

.quote-large p{
  color:#f2f2f2;
  font-size:24px;
  line-height:2.15;
  margin-top:26px;
}

.timeline-section{
  padding:85px 90px;
  background:#08090a;
  text-align:right;
}

.timeline{
  display:grid;
  gap:18px;
  margin-top:35px;
}

.time-item{
  display:grid;
  grid-template-columns:190px 1fr;
  gap:30px;
  align-items:center;
  padding:22px 28px;
  border-right:4px solid var(--gold);
  background:#111416;
  border-radius:12px;
}

.time-item strong{
  color:var(--gold);
  font-size:20px;
}

.time-item span{
  color:#e6e6e6;
  font-size:17px;
}

.selected-works-section{
  padding:85px 90px;
  background:#f7efe4;
  color:#151515;
  text-align:right;
}

.selected-works{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  margin-top:35px;
}

.selected-works article{
  background:#fffaf2;
  border:1px solid rgba(0,0,0,.06);
  border-radius:16px;
  padding:28px;
  min-height:160px;
}

.selected-works h3{
  color:#9a641c;
  font-size:22px;
  margin-bottom:12px;
}

.selected-works p{
  color:#272727;
  font-size:16px;
  line-height:2;
}

.legacy-section{
  padding:90px 90px 110px;
  background:#08090a;
  display:grid;
  grid-template-columns:430px 1fr;
  gap:58px;
  align-items:center;
  text-align:right;
}

.legacy-image{
  grid-column:1;
  height:520px;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 25px 80px rgba(0,0,0,.42);
}

.legacy-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center top;
}

.legacy-copy{
  grid-column:2;
}

.legacy-section p{
  color:#f0f0f0;
  max-width:900px;
}

.biography-page p{
  text-wrap:pretty;
}

/* Interviews page */
.interviews-page{
  background:#070809;
}

.interviews-hero{
  min-height:390px;
  padding:95px 90px 70px;
  display:flex;
  align-items:center;
  justify-content:flex-end;
  direction:ltr;
  background:
    linear-gradient(90deg,
      rgba(0,0,0,0) 0%,
      rgba(0,0,0,.18) 38%,
      rgba(0,0,0,.76) 64%,
      rgba(0,0,0,.96) 100%),
    url("assets/hero-wide.png");
  background-color:#050607;
  background-size:auto 100%;
  background-position:left top;
  background-repeat:no-repeat;
  text-align:right;
}

.interviews-hero div{
  max-width:720px;
  direction:rtl;
}

.interviews-hero h1{
  font-size:60px;
  line-height:1.2;
  margin-top:12px;
}

.interviews-hero p{
  color:#eee;
  font-size:20px;
  line-height:2.1;
  margin-top:22px;
}

.interviews-section{
  padding:85px 90px 110px;
  background:#f1e8db;
  color:#151515;
}

.interview-card{
  display:grid;
  grid-template-columns:1.25fr .75fr;
  gap:42px;
  align-items:center;
  background:#fffaf2;
  border:1px solid rgba(0,0,0,.06);
  border-radius:18px;
  padding:34px;
  text-align:right;
  box-shadow:0 24px 70px rgba(0,0,0,.12);
}

.video-preview,
.video-frame{
  position:relative;
  aspect-ratio:16/9;
  overflow:hidden;
  border-radius:14px;
  background:#090b0c;
  box-shadow:0 22px 65px rgba(0,0,0,.28);
}

.video-preview{
  display:block;
  width:100%;
  padding:0;
  border:0;
  cursor:pointer;
}

.video-preview img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  filter:saturate(.9) contrast(1.05);
  transition:transform .32s ease, filter .32s ease;
}

.video-preview:hover img{
  transform:scale(1.035);
  filter:saturate(1) contrast(1.08);
}

.video-preview::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.38));
}

.play-mark{
  position:absolute;
  z-index:2;
  left:50%;
  top:50%;
  width:74px;
  height:74px;
  transform:translate(-50%,-50%);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,#e2ae56,#ba7b22);
  color:white;
  font-size:30px;
  line-height:1;
  box-shadow:0 18px 50px rgba(0,0,0,.34);
}

.video-frame iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
}

.interview-copy span{
  color:#9a641c;
  font-size:16px;
  font-weight:700;
}

.interview-copy h2{
  font-size:32px;
  line-height:1.35;
  margin-top:12px;
  margin-bottom:18px;
}

.interview-copy p{
  color:#2b2b2b;
  font-size:17px;
  line-height:2.2;
}

/* Gallery page */
.gallery-page{
  background:#070809;
}

.gallery-hero{
  min-height:520px;
  padding:120px 90px 80px;
  display:flex;
  align-items:center;
  justify-content:flex-end;
  position:relative;
  overflow:hidden;
  direction:ltr;
  background:
    linear-gradient(90deg,
      rgba(0,0,0,0) 0%,
      rgba(0,0,0,.02) 34%,
      rgba(0,0,0,.52) 56%,
      rgba(0,0,0,.91) 76%,
      rgba(0,0,0,1) 100%),
    linear-gradient(180deg,
      rgba(0,0,0,0) 0%,
      rgba(0,0,0,0) 66%,
      rgba(0,0,0,.78) 100%),
    url("assets/hero-wide.png");
  background-color:#050607;
  background-size:auto 100%;
  background-position:left center;
  background-repeat:no-repeat;
  text-align:right;
}

.gallery-hero::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(circle at 31% 38%, rgba(213,150,68,.13), transparent 17%),
    linear-gradient(180deg, rgba(0,0,0,.04) 0%, rgba(0,0,0,.02) 70%, rgba(0,0,0,.62) 100%);
  z-index:1;
}

.gallery-hero div{
  position:relative;
  z-index:2;
  max-width:720px;
  direction:rtl;
}

.gallery-hero h1{
  font-size:60px;
  line-height:1.2;
  margin-top:12px;
}

.gallery-hero p{
  color:#eee;
  font-size:20px;
  line-height:2.1;
  margin-top:22px;
}

.gallery-section{
  padding:80px 90px 120px;
  background:
    linear-gradient(90deg, rgba(5,6,7,.04) 0 1px, transparent 1px 100%),
    #f1e8db;
  color:#151515;
}

.gallery-grid{
  max-width:1120px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.gallery-item{
  position:relative;
  display:block;
  width:100%;
  aspect-ratio:1;
  padding:0;
  border:1px solid rgba(0,0,0,.08);
  min-width:0;
  overflow:hidden;
  border-radius:8px;
  background:#090b0c;
  cursor:pointer;
  box-shadow:0 24px 70px rgba(0,0,0,.18);
  transition:transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.gallery-item::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:linear-gradient(180deg, rgba(0,0,0,.10) 0%, rgba(0,0,0,0) 38%, rgba(0,0,0,.20) 100%);
  opacity:.62;
  transition:opacity .28s ease, box-shadow .28s ease;
}

.gallery-item img{
  width:100%;
  height:100%;
  display:block;
  object-fit:contain;
  object-position:center center;
  filter:saturate(.9) contrast(1.04);
  transition:transform .34s ease, filter .34s ease;
}

.gallery-item-wide{
  grid-column:span 2;
  aspect-ratio:2.05/1;
}

.gallery-item:hover,
.gallery-item:focus-visible,
.gallery-item.selected{
  transform:translateY(-4px);
  border-color:rgba(215,160,68,.86);
  box-shadow:0 28px 90px rgba(0,0,0,.24), 0 0 0 4px rgba(215,160,68,.18);
  outline:0;
}

.gallery-item:hover img,
.gallery-item:focus-visible img{
  transform:scale(1.018);
  filter:saturate(1) contrast(1.08);
}

.gallery-item:hover::after,
.gallery-item:focus-visible::after,
.gallery-item.selected::after{
  opacity:.20;
}

.gallery-lightbox{
  position:fixed;
  inset:0;
  z-index:100;
  display:grid;
  grid-template-columns:88px 1fr 88px;
  align-items:center;
  gap:18px;
  padding:42px;
  background:rgba(5,6,7,.94);
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:opacity .24s ease, visibility .24s ease;
}

.gallery-lightbox.is-open{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}

.gallery-lightbox figure{
  height:calc(100vh - 84px);
  min-width:0;
  display:grid;
  grid-template-rows:minmax(0,1fr);
  justify-items:center;
  margin:0;
}

.gallery-lightbox img{
  width:100%;
  height:100%;
  max-height:calc(100vh - 170px);
  object-fit:contain;
  object-position:center center;
  filter:saturate(.96) contrast(1.04);
}

.lightbox-close,
.lightbox-nav{
  border:1px solid rgba(215,160,68,.58);
  color:#fff;
  background:rgba(255,255,255,.06);
  cursor:pointer;
  transition:background .22s ease, border-color .22s ease, transform .22s ease;
}

.lightbox-close:hover,
.lightbox-nav:hover,
.lightbox-close:focus-visible,
.lightbox-nav:focus-visible{
  background:rgba(215,160,68,.22);
  border-color:var(--gold);
  outline:0;
}

.lightbox-close{
  position:absolute;
  top:28px;
  left:32px;
  width:46px;
  height:46px;
  border-radius:50%;
  font-size:34px;
  line-height:1;
}

.lightbox-nav{
  width:62px;
  height:92px;
  justify-self:center;
  border-radius:8px;
  font-size:58px;
  line-height:1;
}

.lightbox-prev{
  grid-column:1;
  grid-row:1;
}

.lightbox-next{
  grid-column:3;
  grid-row:1;
}

.lightbox-open{
  overflow:hidden;
}

/* Works page */
.works-page{
  background:#070809;
}

.works-hero{
  min-height:430px;
  padding:100px 90px 75px;
  display:flex;
  align-items:center;
  justify-content:flex-end;
  direction:ltr;
  background:
    linear-gradient(90deg,
      rgba(0,0,0,0) 0%,
      rgba(0,0,0,.18) 38%,
      rgba(0,0,0,.78) 64%,
      rgba(0,0,0,.97) 100%),
    linear-gradient(180deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.68) 100%),
    url("assets/hero-wide.png");
  background-color:#050607;
  background-size:auto 100%;
  background-position:left center;
  background-repeat:no-repeat;
  text-align:right;
}

.works-hero div{
  max-width:720px;
  direction:rtl;
}

.works-hero h1{
  font-size:60px;
  line-height:1.2;
  margin-top:12px;
}

.works-hero p{
  color:#eee;
  font-size:20px;
  line-height:2.1;
  margin-top:22px;
}

.works-archive{
  padding:72px 90px 115px;
  background:#f1e8db;
  color:#151515;
}

.works-jump{
  position:sticky;
  top:0;
  z-index:20;
  display:flex;
  justify-content:center;
  gap:10px;
  padding:0 0 34px;
  margin-bottom:26px;
  background:linear-gradient(180deg,#f1e8db 0%, rgba(241,232,219,.92) 74%, rgba(241,232,219,0) 100%);
}

.works-jump a{
  min-width:116px;
  height:42px;
  border-radius:999px;
  border:1px solid rgba(151,99,29,.28);
  color:#7c531d;
  background:rgba(255,250,242,.82);
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-size:15px;
  font-weight:800;
  transition:background .22s ease, color .22s ease, border-color .22s ease;
}

.works-jump a:hover{
  background:#111416;
  color:#fff;
  border-color:#111416;
}

.work-category{
  scroll-margin-top:96px;
  margin-top:54px;
}

.work-category-head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:24px;
  margin-bottom:22px;
}

.work-category-head span{
  color:#9a641c;
  font-size:17px;
  font-weight:800;
}

.work-category-head h2{
  font-size:42px;
  line-height:1.2;
}

.work-list{
  border-radius:8px;
  overflow:hidden;
  border:1px solid rgba(0,0,0,.08);
  background:#fffaf2;
  box-shadow:0 22px 70px rgba(0,0,0,.11);
}

.work-row{
  position:relative;
  min-height:76px;
  display:grid;
  grid-template-columns:138px minmax(0,1fr) 260px;
  gap:24px;
  align-items:center;
  padding:18px 26px;
  border-bottom:1px solid rgba(0,0,0,.07);
  background:
    linear-gradient(90deg, rgba(215,160,68,.10), transparent 34%),
    #fffaf2;
  transition:background .22s ease, transform .22s ease;
}

.work-row:last-child{
  border-bottom:0;
}

.work-row::before{
  content:"";
  position:absolute;
  right:0;
  top:0;
  bottom:0;
  width:4px;
  background:transparent;
  transition:background .22s ease;
}

.work-row:hover{
  background:#111416;
  color:#fff;
  transform:translateX(-3px);
}

.work-row:hover::before{
  background:var(--gold);
}

.work-row time{
  color:#9a641c;
  font-size:20px;
  font-weight:900;
  white-space:nowrap;
}

.work-row h3{
  color:inherit;
  font-size:23px;
  line-height:1.45;
  font-weight:800;
}

.work-row p{
  color:#5b5044;
  font-size:15px;
  line-height:1.8;
}

.work-row:hover time,
.work-row:hover p{
  color:#d8c7ae;
}

.theater-feature{
  display:grid;
  grid-template-columns:170px 1fr;
  gap:32px;
  align-items:center;
  min-height:190px;
  padding:36px;
  border-radius:8px;
  color:#fff;
  background:
    linear-gradient(90deg, rgba(215,160,68,.18), transparent 42%),
    #111416;
  box-shadow:0 22px 70px rgba(0,0,0,.16);
}

.theater-feature time{
  color:var(--gold);
  font-size:24px;
  font-weight:900;
}

.theater-feature h3{
  font-size:34px;
  line-height:1.35;
  margin-bottom:12px;
}

.theater-feature p{
  color:#e8ded0;
  font-size:17px;
  line-height:2;
}

@media(max-width:1100px){
  .desktop-page{
    width:100%;
    padding-bottom:92px;
  }

  .header{
    position:fixed;
    height:76px;
    padding:0 24px;
    background:transparent;
    backdrop-filter:none;
    pointer-events:none;
  }

  .header > nav{
    position:fixed;
    left:16px;
    right:16px;
    bottom:calc(14px + env(safe-area-inset-bottom));
    z-index:80;
    min-height:62px;
    padding:8px;
    border:1px solid rgba(255,255,255,.10);
    border-radius:18px;
    background:rgba(5,6,7,.86);
    backdrop-filter:blur(18px);
    box-shadow:0 18px 55px rgba(0,0,0,.38);
    pointer-events:auto;
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:4px;
  }

  .header > nav a{
    min-width:0;
    height:46px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:0 5px;
    border-radius:12px;
    font-size:12px;
    font-weight:800;
    white-space:normal;
    text-align:center;
    line-height:1.35;
    color:#e9e3d9;
  }

  .header > nav a.active,
  .header > nav a:hover{
    background:rgba(215,160,68,.16);
    color:var(--gold);
  }

  .header > nav a.active::after{
    display:none;
  }

  .socials{
    display:none;
  }

  .brand{
    font-size:26px;
  }

  .hero{
    min-height:720px;
    height:auto;
    display:flex;
    align-items:flex-end;
    background-image:
      linear-gradient(180deg,
        rgba(0,0,0,.04) 0%,
        rgba(0,0,0,.08) 36%,
        rgba(0,0,0,.70) 66%,
        rgba(0,0,0,.98) 100%),
      url("assets/portrait-main.jpeg");
    background-size:cover;
    background-position:center 18%;
  }

  .hero::after{
    background:
      linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.10) 46%, rgba(0,0,0,.72) 100%);
  }

  .hero-copy{
    position:relative;
    top:auto;
    right:auto;
    width:auto;
    max-width:520px;
    margin:0 auto;
    padding:0 24px 46px;
    text-align:right;
  }

  .eyebrow{
    font-size:18px;
    margin-bottom:8px;
  }

  .hero-copy h1{
    font-size:43px;
    line-height:1.12;
    letter-spacing:0;
  }

  .hero-copy h2{
    font-size:17px;
    line-height:1.8;
    margin-top:12px;
  }

  .hero-copy p{
    font-size:14px;
    line-height:2;
    margin-top:12px;
  }

  .actions{
    justify-content:flex-start;
    gap:12px;
    margin-top:22px;
  }

  .btn{
    width:auto;
    min-width:132px;
    height:48px;
    padding:0 18px;
    font-size:15px;
  }

  .works{
    height:auto;
    grid-template-columns:1fr;
    padding:34px 24px;
  }

  .slider-controls{
    display:none;
  }

  .cards{
    overflow-x:auto;
    padding-bottom:10px;
  }

  .works-title{
    text-align:center;
  }

  .bio-band{
    height:auto;
    grid-template-columns:1fr;
    padding:42px 24px;
  }

  .quote-box{
    height:auto;
    grid-template-columns:1fr;
  }

  .quote-image img{
    height:320px;
  }

  .bio-hero{
    padding:120px 24px 60px;
    height:auto;
    min-height:520px;
  }

  .bio-hero-copy{
    width:auto;
  }

  .bio-hero-copy h1{
    font-size:48px;
  }

  .article-intro,
  .story-section,
  .wide-text-section,
  .style-section,
  .timeline-section,
  .selected-works-section,
  .legacy-section,
  .interviews-hero,
  .interviews-section,
  .gallery-hero,
  .gallery-section,
  .works-hero,
  .works-archive{
    padding:55px 24px;
  }

  .story-section,
  .style-section,
  .wide-text-section,
  .legacy-section,
  .interview-card{
    grid-template-columns:1fr;
  }

  .interviews-hero,
  .works-hero{
    min-height:460px;
  }

  .interviews-hero h1,
  .gallery-hero h1,
  .works-hero h1{
    font-size:42px;
  }

  .gallery-hero,
  .works-hero{
    min-height:460px;
    background-size:cover;
    background-position:left center;
  }

  .works-jump{
    position:relative;
    top:auto;
    overflow-x:auto;
    justify-content:flex-start;
    padding:8px 0 24px;
  }

  .works-jump a{
    flex:0 0 auto;
  }

  .work-category{
    scroll-margin-top:90px;
  }

  .work-category-head{
    align-items:flex-start;
    flex-direction:column-reverse;
    gap:8px;
  }

  .work-category-head h2{
    font-size:34px;
  }

  .work-row{
    grid-template-columns:1fr;
    gap:8px;
    padding:20px 22px;
    transform:none!important;
  }

  .work-row h3{
    font-size:22px;
  }

  .theater-feature{
    grid-template-columns:1fr;
    gap:14px;
    padding:28px 24px;
  }

  .theater-feature h3{
    font-size:28px;
  }

  .gallery-grid{
    grid-template-columns:repeat(2,1fr);
    gap:14px;
  }

  .gallery-item-wide{
    grid-column:span 2;
  }

  .gallery-lightbox{
    grid-template-columns:58px 1fr 58px;
    gap:8px;
    padding:22px 12px;
  }

  .gallery-lightbox figure{
    height:calc(100vh - 44px);
    gap:14px;
  }

  .gallery-lightbox img{
    max-height:calc(100vh - 150px);
  }

  .lightbox-close{
    top:16px;
    left:16px;
    width:42px;
    height:42px;
  }

  .lightbox-nav{
    width:48px;
    height:74px;
    font-size:44px;
  }

  .interview-card{
    padding:22px;
  }

  .work-years-collage,
  .work-years-copy{
    grid-column:auto;
  }

  .work-years-collage{
    height:auto;
    aspect-ratio:1;
  }

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

  .intro-image{
    height:360px;
  }

  .legacy-image,
  .legacy-copy{
    grid-column:auto;
  }

  .legacy-image{
    height:420px;
  }

  .selected-works{
    grid-template-columns:1fr;
  }

  .time-item{
    grid-template-columns:1fr;
    gap:8px;
  }
}

@media(max-width:430px){
  .hero{
    min-height:660px;
    background-position:center 12%;
  }

  .hero-copy{
    padding-bottom:34px;
  }

  .hero-copy h1{
    font-size:38px;
  }

  .hero-copy p br{
    display:none;
  }

  .actions{
    flex-wrap:wrap;
  }
}
