:root{
  --bg:#11110f;
  --bg2:#1b1b18;
  --ink:#f2f0e9;
  --muted:#aaa9a2;
  --gold:#c8a25c;
  --line:#45443d;
  --display:'Barlow Condensed','Arial Narrow',sans-serif;
  --body:'DM Sans',Arial,sans-serif;
  --gutter:clamp(22px,5vw,84px)
}


*{
  box-sizing:border-box
}

html{
  scroll-behavior:smooth;
  scroll-padding-top:84px
}

body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family:var(--body);
  font-size:16px;
  overflow-x:hidden
}

body.is-locked{
  overflow:hidden
}

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

button,a{
  touch-action:manipulation
}

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

button{
  font:inherit;
  cursor:pointer
}

button:focus-visible,a:focus-visible{
  outline:3px solid var(--gold);
  outline-offset:4px
}

h1,h2,h3,p{
  margin-top:0
}

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

h1 em,h2 em{
  font-style:normal;
  color:var(--gold)
}

.wrap{
  width:min(100%,1600px);
  padding-inline:var(--gutter);
  margin-inline:auto
}

.skip-link{
  position:fixed;
  z-index:100;
  left:12px;
  top:-60px;
  background:var(--gold);
  color:#111;
  padding:12px
}

.skip-link:focus{
  top:12px
}

.site-header{
  position:absolute;
  z-index:20;
  left:0;
  top:0;
  width:100%;
  height:94px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding-inline:var(--gutter);
  border-bottom:1px solid rgba(255,255,255,.18);
  transition:background .25s,height .25s
}

.site-header.is-scrolled{
  position:fixed;
  height:74px;
  background:rgba(17,17,15,.97);
  border-color:var(--line)
}

.brand{
  display:flex;
  align-items:center;
  position:relative;
  z-index:22
}

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

.site-header.is-scrolled .brand img{
  width:62px;
  height:62px
}

.desktop-nav{
  display:flex;
  gap:clamp(22px,3vw,54px);
  align-items:center
}

.desktop-nav a,.header-cta,.mobile-nav a{
  font-family:var(--display);
  font-size:17px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase
}

.desktop-nav a:hover,.desktop-nav a[aria-current=page]{
  color:var(--gold)
}

.header-cta{
  background:var(--gold);
  color:#17150f;
  padding:13px 20px
}

.header-cta span{
  margin-left:20px
}

.menu-toggle{
  display:none;
  position:relative;
  z-index:22;
  width:44px;
  height:44px;
  background:none;
  border:0;
  padding:10px
}

.menu-toggle span{
  display:block;
  height:2px;
  background:var(--ink);
  margin:6px 0;
  transition:transform .2s
}

.menu-toggle[aria-expanded=true] span:first-child{
  transform:translateY(4px) rotate(45deg)
}

.menu-toggle[aria-expanded=true] span:last-child{
  transform:translateY(-4px) rotate(-45deg)
}

.mobile-nav{
  position:fixed;
  z-index:19;
  inset:0;
  background:var(--bg);
  padding:115px var(--gutter) 40px;
  display:flex;
  flex-direction:column;
  gap:14px
}

.mobile-nav[hidden]{
  display:none
}

.mobile-nav a{
  font-size:clamp(36px,9vw,64px);
  border-bottom:1px solid var(--line);
  padding:7px 0
}

.hero{
  min-height:min(810px,100svh);
  height:100svh;
  max-height:930px;
  position:relative;
  display:flex;
  align-items:end;
  overflow:hidden;
  background:#292a28
}

.hero-image,.hero-shade{
  position:absolute;
  inset:0;
  width:100%;
  height:100%
}

.hero-image{
  object-fit:cover;
  object-position:center 47%
}

.hero-shade{
  background:linear-gradient(90deg,rgba(0,0,0,.82),rgba(0,0,0,.44) 48%,rgba(0,0,0,.08) 100%),linear-gradient(0deg,rgba(0,0,0,.7),transparent 30%)
}

.hero-content{
  position:relative;
  z-index:2;
  padding-bottom:130px
}

.hero-index,.hero-bottom,.hero-side,.section-label,.photo-credit,.gallery-caption,.footer-base,.site-footer nav>span,.footer-contact>span{
  font-family:var(--display);
  font-weight:700;
  letter-spacing:.16em;
  font-size:14px
}

.hero-index{
  display:block;
  margin-bottom:28px;
  color:var(--gold)
}

.hero h1{
  font-size:clamp(90px,12.5vw,196px);
  line-height:.77;
  margin:0 0 35px;
  letter-spacing:-.045em;
  max-width:850px
}

.hero p{
  max-width:440px;
  font-size:clamp(17px,1.5vw,22px);
  line-height:1.5
}

.hero-actions{
  display:flex;
  align-items:center;
  gap:34px;
  margin-top:30px
}

.button{
  display:inline-flex;
  align-items:center;
  justify-content:space-between;
  gap:32px;
  min-height:52px;
  padding:15px 22px;
  border:1px solid var(--gold);
  font-family:var(--display);
  font-size:18px;
  letter-spacing:.05em;
  text-transform:uppercase;
  font-weight:800;
  transition:background .2s,color .2s
}

.button-gold{
  background:var(--gold);
  color:#15140f
}

.button-gold:hover{
  background:#e1bd78
}

.text-link{
  display:inline-flex;
  align-items:center;
  gap:20px;
  border-bottom:1px solid var(--gold);
  padding:10px 0;
  font-family:var(--display);
  font-size:18px;
  font-weight:700;
  letter-spacing:.07em;
  text-transform:uppercase
}

.text-link:hover{
  color:var(--gold)
}

.hero-bottom{
  position:absolute;
  z-index:2;
  bottom:28px;
  left:0;
  right:0;
  display:flex;
  justify-content:space-between;
  color:#dedbd3
}

.hero-side{
  position:absolute;
  right:var(--gutter);
  top:136px;
  z-index:2;
  writing-mode:vertical-rl
}

.hero-side span{
  color:var(--gold);
  padding:10px
}

.section-pad{
  padding-block:clamp(90px,10vw,160px)
}

.section-label{
  display:flex;
  align-items:center;
  gap:12px;
  color:var(--gold);
  white-space:nowrap
}

.section-label b{
  color:var(--muted);
  font-weight:600;
  margin-left:auto
}

.label-line{
  height:1px;
  width:28px;
  background:var(--gold);
  flex:none
}

.manifesto{
  border-bottom:1px solid var(--line);
  background:#191916
}

.manifesto-grid{
  display:grid;
  grid-template-columns:1fr 2fr;
  gap:5vw
}

.manifesto h2,.experience h2,.gallery-preview h2,.about h2,.gallery-page h2{
  font-size:clamp(64px,7vw,118px);
  line-height:.85
}

.manifesto h2{
  margin:0 0 65px
}

.manifesto h2 span,.experience h2 span,.gallery-preview h2 span,.about h2 span{
  color:var(--gold)
}

.manifesto-bottom{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:30px
}

.manifesto-bottom p{
  font-size:clamp(18px,1.7vw,24px);
  line-height:1.5;
  max-width:590px;
  margin:0
}

.percent-mark{
  font:800 clamp(90px,12vw,190px)/.7 var(--display);
  letter-spacing:-.07em;
  color:rgba(200,162,92,.22);
  white-space:nowrap
}

.camp-section{
  display:grid;
  grid-template-columns:1fr 1fr;
  min-height:720px
}

.camp-media{
  position:relative;
  overflow:hidden
}

.camp-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:53% center;
  filter:contrast(1.04)
}

.photo-credit{
  position:absolute;
  bottom:28px;
  left:var(--gutter);
  text-shadow:0 1px 5px #000
}

.camp-content{
  padding:clamp(80px,7vw,125px) clamp(30px,6vw,110px);
  background:#22221e;
  display:flex;
  flex-direction:column;
  align-items:flex-start
}

.camp-content .section-label{
  margin-bottom:auto
}

.camp-status{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--gold);
  font-family:var(--display);
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
  margin-block:44px 16px
}

.camp-status i{
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--gold)
}

.camp-content h2{
  font-size:clamp(66px,6.2vw,112px);
  line-height:.83;
  margin:0 0 28px
}

.camp-content h2 em{
  font-size:.72em
}

.camp-lede{
  max-width:490px;
  font-size:18px;
  line-height:1.6;
  color:#dad8d0
}

.camp-facts{
  width:100%;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:0 20px;
  margin:18px 0 35px
}

.camp-facts div{
  border-top:1px solid var(--line);
  padding:13px 0
}

.camp-facts dt{
  font:700 13px var(--display);
  letter-spacing:.13em;
  color:var(--muted);
  text-transform:uppercase
}

.camp-facts dd{
  margin:6px 0 0;
  font-size:16px
}

.camp-actions{
  display:flex;
  align-items:center;
  gap:25px;
  flex-wrap:wrap
}

.experience{
  background:var(--bg)
}

.experience-intro{
  display:flex;
  justify-content:space-between;
  gap:30px;
  align-items:end;
  margin:55px 0
}

.experience-intro h2{
  margin:0
}

.experience-intro p{
  max-width:340px;
  line-height:1.6;
  color:#c8c6bd;
  margin:0 0 8px
}

.experience-layout{
  display:grid;
  grid-template-columns:1.25fr .75fr;
  gap:clamp(30px,5vw,90px);
  align-items:stretch
}

.experience-photo img{
  width:100%;
  height:100%;
  min-height:440px;
  object-fit:cover;
  object-position:40% center
}

.experience-list{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
  justify-content:space-between
}

.experience-list li{
  display:grid;
  grid-template-columns:80px 1fr;
  gap:12px;
  padding:25px 0;
  border-top:1px solid var(--line)
}

.experience-list li:last-child{
  border-bottom:1px solid var(--line)
}

.experience-list li>span{
  font:700 50px/.9 var(--display);
  color:var(--gold)
}

.experience-list h3{
  font-size:34px;
  margin:0 0 4px
}

.experience-list p{
  margin:0;
  color:var(--muted);
  font-size:15px
}

.gallery-preview{
  background:#24241f
}

.gallery-heading{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:30px;
  margin:50px 0
}

.gallery-heading h2{
  margin:0
}

.preview-grid{
  display:grid;
  grid-template-columns:1.5fr 1fr;
  grid-template-rows:220px 220px;
  gap:12px
}

.preview-grid a{
  overflow:hidden
}

.preview-grid .preview-large{
  grid-row:span 2
}

.preview-grid img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .35s
}

.preview-grid a:hover img{
  transform:scale(1.035)
}

.gallery-caption{
  display:block;
  margin-top:20px;
  color:var(--muted)
}

.about{
  background:#d7d0bf;
  color:#171712
}

.about .section-label{
  color:#594829
}

.about .label-line{
  background:#594829
}

.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10vw;
  align-items:end
}

.about h2{
  margin:60px 0 0
}

.about h2 span{
  color:#7f6335
}

.about-copy{
  max-width:560px;
  padding-bottom:10px
}

.about-copy p{
  font-size:clamp(18px,1.7vw,25px);
  line-height:1.5
}

.about-copy .text-link{
  border-color:#7f6335
}

.final-cta{
  padding-block:clamp(90px,10vw,160px);
  background:radial-gradient(circle at 85% 20%,#333027,#11110f 60%)
}

.final-cta h2{
  font-size:clamp(80px,11vw,174px);
  line-height:.8;
  margin:55px 0
}

.final-row{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:25px
}

.final-row p{
  font-size:21px;
  margin:0
}

.site-footer{
  padding:65px 0 25px;
  border-top:1px solid var(--line);
  background:#090a09
}

.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  gap:40px
}

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

.footer-brand p{
  font-size:15px;
  line-height:1.5;
  color:var(--muted)
}

.site-footer nav,.footer-contact{
  display:flex;
  flex-direction:column;
  gap:12px
}

.site-footer nav>span,.footer-contact>span{
  color:var(--gold);
  margin-bottom:8px
}

.site-footer a:hover{
  color:var(--gold)
}

.footer-base{
  display:flex;
  justify-content:space-between;
  gap:20px;
  border-top:1px solid var(--line);
  padding-top:20px;
  margin-top:60px;
  color:var(--muted);
  font-size:12px
}

.modal-backdrop,.lightbox-backdrop{
  position:fixed;
  z-index:100;
  inset:0;
  background:rgba(0,0,0,.87);
  display:grid;
  place-items:center;
  padding:20px
}

.modal-backdrop[hidden],.lightbox-backdrop[hidden]{
  display:none
}

.modal{
  width:min(100%,960px);
  max-height:min(90vh,850px);
  background:#1d1d1a;
  position:relative;
  display:grid;
  grid-template-columns:40% 60%;
  overflow:auto
}

.modal-close,.lightbox-close{
  position:absolute;
  top:12px;
  right:12px;
  z-index:2;
  width:44px;
  height:44px;
  border:1px solid var(--line);
  background:#111;
  color:white;
  font-size:31px;
  line-height:1
}

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

.modal-content{
  padding:55px 48px
}

.modal-content h2{
  font-size:clamp(48px,5vw,78px);
  line-height:.9;
  margin:25px 0
}

.modal-content p{
  line-height:1.6;
  color:#ddd
}

.modal-content .camp-facts{
  margin:30px 0
}

.gallery-hero{
  height:min(700px,80vh);
  min-height:480px;
  position:relative;
  display:flex;
  align-items:end;
  background:#292a28
}

.gallery-hero>img,.gallery-hero-shade{
  position:absolute;
  inset:0;
  width:100%;
  height:100%
}

.gallery-hero>img{
  object-fit:cover;
  object-position:center 55%
}

.gallery-hero-shade{
  background:linear-gradient(90deg,rgba(0,0,0,.8),rgba(0,0,0,.15) 75%),linear-gradient(0deg,rgba(0,0,0,.7),transparent 40%)
}

.gallery-hero-content{
  position:relative;
  z-index:1;
  padding-bottom:90px
}

.gallery-hero h1{
  font-size:clamp(85px,12vw,180px);
  line-height:.8;
  margin:45px 0 25px
}

.gallery-hero p{
  max-width:430px;
  font-size:20px;
  line-height:1.5
}

.gallery-page-head{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:30px;
  margin-bottom:50px
}

.gallery-page h2{
  margin:25px 0 0
}

.filter-bar{
  display:flex;
  gap:8px;
  flex-wrap:wrap
}

.filter-button{
  border:1px solid var(--line);
  background:transparent;
  color:var(--ink);
  padding:10px 18px;
  font-family:var(--display);
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.06em;
  font-size:18px
}

.filter-button.is-active,.filter-button:hover{
  background:var(--gold);
  color:#111;
  border-color:var(--gold)
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(12,1fr);
  gap:15px
}

.gallery-item{
  position:relative;
  grid-column:span 6;
  appearance:none;
  border:0;
  padding:0;
  background:#282924;
  overflow:hidden;
  text-align:left;
  color:var(--ink)
}

.gallery-item:nth-child(4n+1){
  grid-column:span 7
}

.gallery-item:nth-child(4n+2){
  grid-column:span 5
}

.gallery-item:nth-child(4n+3){
  grid-column:span 5
}

.gallery-item:nth-child(4n+4){
  grid-column:span 7
}

.gallery-item img{
  width:100%;
  height:clamp(280px,37vw,560px);
  object-fit:cover;
  transition:transform .3s
}

.gallery-item:hover img{
  transform:scale(1.03)
}

.gallery-item span{
  position:absolute;
  left:18px;
  bottom:17px;
  padding:8px 10px;
  background:rgba(0,0,0,.68);
  font:700 15px var(--display);
  letter-spacing:.08em;
  text-transform:uppercase
}

.gallery-end{
  background:#24241f;
  padding:55px 0
}

.gallery-end .wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:25px
}

.gallery-end p{
  font:700 clamp(30px,4vw,52px) var(--display);
  text-transform:uppercase;
  margin:0
}

.lightbox{
  position:relative;
  width:min(100%,1200px);
  height:min(95vh,850px);
  display:grid;
  grid-template-columns:60px 1fr 60px;
  align-items:center
}

.lightbox figure{
  margin:0;
  min-width:0
}

.lightbox figure img{
  width:100%;
  max-height:75vh;
  object-fit:contain
}

.lightbox figcaption{
  display:flex;
  justify-content:space-between;
  gap:10px;
  margin-top:10px;
  font:700 16px var(--display);
  letter-spacing:.08em;
  text-transform:uppercase
}

.lightbox-prev,.lightbox-next{
  width:48px;
  height:48px;
  border:1px solid var(--line);
  background:#1d1d1a;
  color:white;
  font-size:24px
}

.lightbox-close{
  right:0;
  top:0
}


@media(max-width:1000px){
  .desktop-nav{
  gap:18px
}

.manifesto-grid{
  grid-template-columns:1fr;
  gap:50px
}

.camp-section{
  grid-template-columns:1fr
}

.camp-media{
  height:470px
}

.camp-content .section-label{
  margin-bottom:30px
}

.about-grid{
  gap:5vw
}


}


@media(max-width:720px){
  :root{
  --gutter:22px
}

.site-header{
  height:76px
}

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

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

.menu-toggle{
  display:block
}

.hero{
  min-height:0;
  height:760px;
  max-height:95svh;
  align-items:end
}

.hero-image{
  object-position:56% center
}

.hero-shade{
  background:linear-gradient(0deg,rgba(0,0,0,.88),rgba(0,0,0,.06) 75%),linear-gradient(90deg,rgba(0,0,0,.25),transparent)
}

.hero-side{
  display:none
}

.hero-content{
  padding-bottom:110px
}

.hero-index{
  font-size:12px;
  margin-bottom:18px
}

.hero h1{
  font-size:clamp(74px,17vw,126px);
  margin-bottom:22px
}

.hero p{
  font-size:17px;
  max-width:290px
}

.hero-actions{
  gap:14px;
  align-items:flex-start;
  flex-direction:column;
  margin-top:22px
}

.hero-bottom{
  font-size:11px;
  bottom:20px
}

.hero-bottom span:last-child{
  display:none
}

.section-pad{
  padding-block:85px
}

.manifesto h2,.experience h2,.gallery-preview h2,.about h2,.gallery-page h2{
  font-size:clamp(64px,13vw,95px)
}

.manifesto h2{
  margin-bottom:30px
}

.manifesto-bottom{
  align-items:flex-end
}

.manifesto-bottom p{
  font-size:17px
}

.percent-mark{
  font-size:80px
}

.camp-media{
  height:340px
}

.camp-content{
  padding:75px var(--gutter)
}

.camp-content h2{
  font-size:clamp(66px,13vw,94px)
}

.camp-status{
  margin-top:20px
}

.camp-facts{
  grid-template-columns:1fr 1fr
}

.camp-actions{
  align-items:flex-start
}

.experience-intro{
  display:block;
  margin:40px 0
}

.experience-intro p{
  margin-top:25px
}

.experience-layout{
  grid-template-columns:1fr
}

.experience-photo img{
  min-height:0;
  height:360px
}

.experience-list li{
  grid-template-columns:65px 1fr
}

.gallery-heading{
  display:block;
  margin:35px 0
}

.gallery-heading .text-link{
  margin-top:18px
}

.preview-grid{
  grid-template-columns:1fr 1fr;
  grid-template-rows:230px 150px;
  gap:8px
}

.preview-grid .preview-large{
  grid-column:span 2;
  grid-row:span 1
}

.about-grid{
  grid-template-columns:1fr;
  gap:45px
}

.about h2{
  margin:35px 0 0
}

.about-copy p{
  font-size:18px
}

.final-cta h2{
  font-size:clamp(72px,15vw,116px);
  margin:40px 0
}

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

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

.footer-brand{
  grid-column:span 2
}

.footer-base{
  flex-direction:column;
  margin-top:50px
}

.modal{
  grid-template-columns:1fr;
  max-height:92vh
}

.modal-image{
  height:170px
}

.modal-content{
  padding:28px 25px
}

.modal-content h2{
  font-size:56px
}

.gallery-hero{
  height:640px;
  min-height:0
}

.gallery-hero>img{
  object-position:50% center
}

.gallery-hero-content{
  padding-bottom:70px
}

.gallery-hero h1{
  font-size:clamp(78px,15vw,125px)
}

.gallery-page-head{
  display:block
}

.filter-bar{
  margin-top:25px
}

.gallery-item,.gallery-item:nth-child(n){
  grid-column:span 12
}

.gallery-item img{
  height:330px
}

.gallery-end .wrap{
  align-items:flex-start;
  flex-direction:column
}

.lightbox{
  grid-template-columns:40px 1fr 40px
}

.lightbox-prev,.lightbox-next{
  width:36px;
  height:36px
}


}


@media(max-width:390px){
  .hero{
  height:710px
}

.hero h1{
  font-size:74px
}

.hero-actions .button{
  font-size:16px;
  min-height:48px
}

.manifesto-bottom{
  display:block
}

.percent-mark{
  display:block;
  margin-top:30px
}

.camp-facts{
  grid-template-columns:1fr
}

.final-cta h2{
  font-size:70px
}


}


@media(max-width:720px){
  .lightbox{
  display:block;
  height:auto;
  max-height:95vh;
  padding-top:58px
}

.lightbox figure img{
  max-height:72vh
}

.lightbox-prev,.lightbox-next{
  position:absolute;
  top:50%;
  z-index:1;
  background:rgba(17,17,15,.9)
}

.lightbox-prev{
  left:0
}

.lightbox-next{
  right:0
}

.lightbox figcaption{
  padding-inline:5px
}

.gallery-hero-content>.section-label{
  background:rgba(0,0,0,.43);
  display:inline-flex;
  padding:6px 8px 6px 0
}


}


@media(min-width:721px) and (max-height:700px){
  .hero{min-height:700px;height:700px}
  .hero h1{font-size:clamp(90px,10vw,140px)}
  .hero-content{padding-bottom:160px}
}

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

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


}
