:root{
  --bg:#f4f1eb;
  --paper:#faf8f4;
  --ink:#11110f;
  --muted:#6f6b63;
  --line:rgba(17,17,15,.14);
  --dark:#121310;
  --dark-2:#050505;
  --accent:#b59a73;
  --radius:2px;
  --wrap:min(1240px,calc(100vw - 64px));
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family:Inter,ui-sans-serif,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
}

body.menu-open{
  overflow:hidden;
}

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

button{
  font:inherit;
}

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

/* =========================================================
   HEADER / BRAND
========================================================= */

.site-header{
  position:absolute;
  z-index:20;
  top:0;
  left:0;
  right:0;
  height:108px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  width:var(--wrap);
  margin:auto;
  /* color:white; */
  color:black;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:180px;
}

.brand-logo{
  display:block;
  width:auto;
  height:58px;
  max-width:230px;
  object-fit:contain;
  object-position:left center;
  filter:brightness(0) invert(0);
}
.brand-logoMain{
  display:block;
  width:auto;
  height:58px;
  max-width:230px;
  object-fit:contain;
  object-position:left center;
  filter:brightness(0) invert(1);
}

.brand-fallback{
  display:flex;
  align-items:center;
  gap:14px;
}

.brand-mark{
  width:42px;
  height:42px;
  border:1px solid rgba(255,255,255,.7);
  display:grid;
  place-items:center;
  font-family:Georgia,serif;
  font-size:14px;
  letter-spacing:.08em;
}

.brand-copy{
  display:grid;
  line-height:1.05;
}

.brand-copy strong{
  text-transform:uppercase;
  letter-spacing:.16em;
  font-size:12px;
}

.brand-copy small{
  margin-top:5px;
  font-family:Georgia,serif;
  font-style:italic;
  font-size:13px;
  opacity:.8;
}

/* =========================================================
   NAVIGATION
========================================================= */

.nav{
  display:flex;
  gap:36px;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.16em;
}

.nav a{
  position:relative;
}

.nav a:after{
  content:"";
  position:absolute;
  left:0;
  right:100%;
  bottom:-7px;
  height:1px;
  background:currentColor;
  transition:.3s;
}

.nav a:hover:after{
  right:0;
}

.menu-toggle{
  display:none;
  background:none;
  border:0;
  color:white;
  width:44px;
  height:44px;
  padding:10px;
}

.menu-toggle span{
  display:block;
  height:1px;
  background:currentColor;
  margin:7px 0;
}

/* =========================================================
   HERO
========================================================= */

.hero{
  min-height:94vh;
  height:820px;
  position:relative;
  display:flex;
  align-items:flex-end;
  overflow:hidden;
  background:#242620;
  color:white;
}

.hero-media{
  position:absolute;
  inset:0;
}

.hero-image{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  display:block;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,rgba(5,7,5,.70) 0%,rgba(5,7,5,.28) 52%,rgba(5,7,5,.10) 100%),
    linear-gradient(0deg,rgba(5,7,5,.50),transparent 50%);
}

.hero-content{
  position:relative;
  z-index:2;
  width:var(--wrap);
  margin:0 auto 11vh;
}

.eyebrow{
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.22em;
  font-weight:700;
  margin:0 0 22px;
  color:var(--muted);
}

.hero .eyebrow,
.contact-section .eyebrow{
  color:rgba(255,255,255,.70);
}

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

h1,
h2{
  font-family:Georgia,"Times New Roman",serif;
  font-weight:400;
  line-height:.98;
  letter-spacing:-.035em;
}

h1{
  font-size:clamp(58px,8vw,116px);
  max-width:1000px;
  margin-bottom:32px;
}

h1 em,
h2 em,
.statement em{
  font-weight:400;
  color:var(--accent);
}

.hero-copy{
  font-size:17px;
  max-width:570px;
  color:rgba(255,255,255,.82);
  margin-bottom:34px;
}

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

.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:0 25px;
  border:1px solid var(--ink);
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.16em;
  transition:.25s;
}

.button-light{
  border-color:white;
  background:white;
  color:#111;
}

.button-light:hover{
  background:transparent;
  color:white;
}

.text-link{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.14em;
  border-bottom:1px solid currentColor;
  padding-bottom:6px;
}

.text-link span{
  transition:transform .25s;
}

.text-link:hover span{
  transform:translate(3px,-3px);
}

.text-link-light{
  color:white;
}

.scroll-cue{
  position:absolute;
  z-index:3;
  right:max(32px,calc((100vw - 1240px)/2));
  bottom:45px;
  font-size:10px;
  text-transform:uppercase;
  letter-spacing:.18em;
  writing-mode:vertical-rl;
  display:flex;
  gap:12px;
  align-items:center;
}

/* =========================================================
   GENERIC SECTIONS
========================================================= */

.section{
  width:var(--wrap);
  margin:0 auto;
  padding:130px 0;
}

.section-head{
  display:grid;
  grid-template-columns:1.4fr .8fr;
  gap:80px;
  align-items:end;
  margin-bottom:64px;
}

.section-head h2,
.about-copy h2,
.contact-inner h2{
  font-size:clamp(52px,6vw,86px);
  margin:0;
}

.section-head>p{
  color:var(--muted);
  max-width:440px;
  margin:0;
}

/* =========================================================
   PORTFOLIO FILTER
========================================================= */

.filters{
  display:flex;
  flex-wrap:wrap;
  gap:28px;
  margin-bottom:48px;
}

.filter-btn{
  appearance:none;
  border:0;
  border-bottom:1px solid transparent;
  background:transparent;
  padding:0 0 8px;
  color:var(--ink);
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.14em;
  cursor:pointer;
  opacity:.48;
  transition:
    opacity .25s ease,
    border-color .25s ease,
    transform .25s ease;
}

.filter-btn:hover{
  opacity:.82;
  transform:translateY(-1px);
}

.filter-btn.active{
  opacity:1;
  border-bottom-color:currentColor;
}

/* =========================================================
   PORTFOLIO GRID
========================================================= */

.portfolio-grid{
  display:grid;
  grid-template-columns:repeat(12,1fr);
  gap:24px;
  align-items:stretch;
}

.portfolio-item{
  grid-column:span 4;
  position:relative;
  overflow:hidden;
  cursor:zoom-in;
  background:#111;

  height:360px;

  transition:
    transform .35s ease,
    box-shadow .35s ease;
}

.portfolio-item.wide{
  grid-column:span 8;
  height:360px;
}

.portfolio-item.tall{
  grid-column:span 4;
  height:360px;
}

.portfolio-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;

  transition:transform .6s ease;
}

.portfolio-item:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 40px rgba(0,0,0,.10);
}

.portfolio-item:hover img{
  transform:scale(1.025);
}

@media(max-width:1000px){
  .portfolio-item,
  .portfolio-item.tall{
    grid-column:span 6;
    height:320px;
  }

  .portfolio-item.wide{
    grid-column:span 12;
    height:380px;
  }
}

@media(max-width:650px){
  .portfolio-grid{
    grid-template-columns:1fr;
    gap:16px;
  }

  .portfolio-item,
  .portfolio-item.wide,
  .portfolio-item.tall{
    grid-column:auto;
    height:300px;
  }
}

.portfolio-caption{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  padding:75px 24px 22px;
  color:white;
  background:linear-gradient(
    to top,
    rgba(0,0,0,.72) 0%,
    rgba(0,0,0,.22) 56%,
    transparent 100%
  );
  opacity:0;
  transform:translateY(10px);
  transition:
    opacity .30s ease,
    transform .30s ease;
}

.portfolio-item:hover .portfolio-caption{
  opacity:1;
  transform:none;
}

.portfolio-caption strong{
  font-family:Georgia,serif;
  font-size:22px;
  font-weight:400;
  display:block;
}

.portfolio-caption span{
  display:block;
  margin-top:5px;
  font-size:10px;
  text-transform:uppercase;
  letter-spacing:.16em;
  opacity:.78;
}

.portfolio-foot{
  display:flex;
  justify-content:space-between;
  align-items:center;
  border-top:1px solid var(--line);
  margin-top:52px;
  padding-top:28px;
}

.portfolio-foot p{
  margin:0;
  color:var(--muted);
}

/* =========================================================
   PLACEHOLDERS
========================================================= */

.placeholder-image{
  position:relative;
  background:linear-gradient(135deg,#8a8c84,#353833);
  overflow:hidden;
}

.placeholder-image:before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 30% 25%,rgba(255,255,255,.2),transparent 28%),
    linear-gradient(120deg,transparent 42%,rgba(255,255,255,.08) 43%,transparent 60%);
}

.placeholder-image:after{
  content:attr(data-label);
  position:absolute;
  inset:auto 18px 18px;
  color:rgba(255,255,255,.78);
  font-size:10px;
  letter-spacing:.18em;
}

.hero-placeholder{
  background:linear-gradient(120deg,#4b5048 0%,#272b27 44%,#606057 100%);
}

/* =========================================================
   STATEMENT
========================================================= */

.statement-section{
  background:
    linear-gradient(
      to bottom,
      #20231f 0%,
      #10110f 60%,
      #080808 100%
    );

  color:white;
padding:110px 0 95px;
}

.statement{
  width:min(980px,calc(100vw - 64px));
  margin:auto;
  position:relative;
}

.statement p{
  font-family:Georgia,serif;
  font-size:clamp(40px,5.2vw,76px);
  line-height:1.08;
  margin:0;
}

.quote-mark{
  font-family:Georgia,serif;
  font-size:140px;
  line-height:.45;
  color:var(--accent);
  position:absolute;
  left:-80px;
  top:0;
}

/* =========================================================
   ABOUT - DARK
========================================================= */

.about-section{
  background:
    linear-gradient(
      to bottom,
      #080808 0%,
      #050505 18%,
      #050505 100%
    );

  color:#f4f1ea;
padding:95px 0 120px;
}

.about-inner{
  width:var(--wrap);
  margin:0 auto;
  display:grid;
  grid-template-columns:minmax(320px,480px) minmax(0,1fr);
  gap:clamp(60px,8vw,130px);
  align-items:center;
}

.about-media{
  width:100%;
  max-width:480px;
  justify-self:center;
  background:transparent;
  border:0;
  box-shadow:none;
  aspect-ratio:auto;
}

.portrait-image-wrap{
  aspect-ratio:4/5;
  overflow:hidden;
  background:var(--dark-2);
  border:0;
  box-shadow:none;
}

.portrait-image{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  object-position:center 38%;
}

.about-copy{
  max-width:760px;
}

.about-copy .eyebrow{
  color:#b7a98d;
  letter-spacing:.26em;
}

.about-copy h2{
  color:#f4f1ea;
  font-size:clamp(44px,5vw,72px);
  margin-bottom:34px;
}

.about-copy>p:not(.eyebrow){
  color:rgba(244,241,234,.72);
  font-size:16px;
  max-width:660px;
}

.about-copy .text-link{
  margin-top:18px;
  color:#f4f1ea;
}

/* =========================================================
   SERVICES
========================================================= */

.services-section{
  border-top:1px solid var(--line);
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  border-top:1px solid var(--line);
  border-left:1px solid var(--line);
}

.service-card{
  padding:44px 44px 50px;
  border-right:1px solid var(--line);
  border-bottom:1px solid var(--line);
  min-height:280px;
}

.service-card>span{
  font-size:10px;
  letter-spacing:.16em;
  color:var(--muted);
}

.service-card h3{
  font-family:Georgia,serif;
  font-size:38px;
  font-weight:400;
  margin:48px 0 18px;
}

.service-card p{
  color:var(--muted);
  max-width:480px;
  margin:0;
}

/* =========================================================
   CONTACT
========================================================= */

.contact-section{
  background:#20231f;
  color:white;
  padding:135px 0;
}

.contact-inner{
  width:var(--wrap);
  margin:auto;
}

.contact-inner h2{
  font-size:clamp(64px,9vw,130px);
  margin-bottom:28px;
}

.contact-inner>p:not(.eyebrow){
  max-width:600px;
  color:rgba(255,255,255,.72);
  font-size:17px;
}

.mail-link{
  display:flex;
  justify-content:space-between;
  align-items:center;
  border-bottom:1px solid rgba(255,255,255,.3);
  padding:28px 0 22px;
  margin:65px 0 30px;
  font-family:Georgia,serif;
  font-size:clamp(25px,4vw,54px);
}

.mail-link span{
  font-family:Inter,sans-serif;
  font-size:.6em;
}

.contact-meta{
  display:flex;
  gap:35px;
  flex-wrap:wrap;
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.14em;
  color:rgba(255,255,255,.6);
}

/* =========================================================
   FOOTER
========================================================= */

.footer{
  width:var(--wrap);
  margin:auto;
  padding:30px 0 42px;
  display:flex;
  justify-content:space-between;
  gap:30px;
  font-size:10px;
  text-transform:uppercase;
  letter-spacing:.13em;
}

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

/* =========================================================
   LIGHTBOX
========================================================= */

.lightbox{
  border:0;
  padding:0;
  background:rgba(8,9,8,.96);
  width:100vw;
  max-width:none;
  height:100vh;
  max-height:none;
  color:white;
}

.lightbox::backdrop{
  background:rgba(0,0,0,.75);
}

.lightbox img{
  width:100%;
  height:calc(100% - 86px);
  object-fit:contain;
  padding:36px 6vw 8px;
}

.lightbox-close{
  position:absolute;
  right:26px;
  top:18px;
  color:white;
  border:0;
  background:transparent;
  font-size:34px;
  cursor:pointer;
}

.lightbox-caption{
  height:70px;
  width:min(980px,88vw);
  margin:auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
  border-top:1px solid rgba(255,255,255,.15);
}

.lightbox-caption strong{
  font-family:Georgia,serif;
  font-size:20px;
  font-weight:400;
}

.lightbox-caption span{
  font-size:10px;
  text-transform:uppercase;
  letter-spacing:.15em;
  color:rgba(255,255,255,.6);
}

/* =========================================================
   REVEAL ANIMATION
========================================================= */

.reveal{
  opacity:0;
  transform:translateY(18px);
  transition:
    opacity .7s ease,
    transform .7s ease;
}

.reveal.visible{
  opacity:1;
  transform:none;
}

/* =========================================================
   LEGAL PAGES
========================================================= */

.legal{
  width:min(900px,calc(100vw - 48px));
  margin:auto;
  padding:150px 0 100px;
}

.legal h1{
  font-size:70px;
  color:var(--ink);
}

.legal h2{
  font-size:32px;
  margin-top:50px;
}

.legal p,
.legal li{
  color:var(--muted);
}

.legal-header{
  position:static;
  color:var(--ink);
  width:min(900px,calc(100vw - 48px));
  height:100px;
}

.legal-header .brand-mark{
  border-color:var(--ink);
}

.legal-header .brand-logo{
  filter:none;
}

/* =========================================================
   TABLET
========================================================= */

@media(max-width:1000px){
  .portfolio-item,
  .portfolio-item.tall{
    grid-column:span 6;
  }

  .portfolio-item.wide{
    grid-column:span 12;
  }
}

@media(max-width:900px){
  :root{
    --wrap:min(100% - 38px,1240px);
  }

  .site-header{
    height:82px;
  }

   .nav{
    position:fixed;
    inset:0;
    background:#181a17;

    display:none;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    gap:30px;

    color:#f4f1ea;

    font-family:Georgia,serif;
    font-size:34px;
    text-transform:none;
    letter-spacing:0;
  }

   .menu-open .nav{
    display:flex;
  }

  .menu-toggle{
    display:block;
    position:relative;
    z-index:30;
  }

  .brand{
    position:relative;
    z-index:30;
  }

  .hero{
    height:760px;
  }

  .hero-content{
    margin-bottom:95px;
  }

  .scroll-cue{
    display:none;
  }

  .section{
    padding:92px 0;
  }

  .section-head{
    grid-template-columns:1fr;
    gap:25px;
  }

  .filters{
    gap:18px 24px;
    margin-bottom:38px;
  }

  .statement{
    width:var(--wrap);
  }

  .quote-mark{
    position:static;
    display:block;
    height:55px;
  }

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

  .about-media{
    max-width:420px;
  }

  .about-copy{
    max-width:100%;
  }

  .service-card{
    padding:32px;
  }

  .footer{
    flex-direction:column;
  }

  .legal-header .nav{
    color:white;
  }

.nav a{
    color:#f4f1ea;
    opacity:.92;
    transition:
      color .25s ease,
      opacity .25s ease,
      transform .25s ease;
  }

  .nav a:hover{
    color:#b59a73;
    opacity:1;
    transform:translateX(3px);
  }


}

/* =========================================================
   MOBILE
========================================================= */

@media(max-width:650px){
  :root{
    --wrap:calc(100% - 28px);
  }

  .brand-copy{
    display:none;
  }

  .brand-logo{
    height:46px;
    max-width:180px;
  }

  .hero{
    height:720px;
    min-height:90vh;
  }

  .hero-content{
    margin-bottom:70px;
  }

  .hero-copy{
    font-size:15px;
  }

  .hero-actions{
    align-items:flex-start;
    flex-direction:column;
    gap:20px;
  }

  .section{
    padding:74px 0;
  }

  .section-head{
    margin-bottom:45px;
  }

  .filters{
    gap:16px 20px;
    margin-bottom:32px;
  }

  .filter-btn{
    font-size:10px;
  }

  .portfolio-grid{
    grid-template-columns:1fr;
    gap:18px;
  }

  .portfolio-item,
  .portfolio-item.wide,
  .portfolio-item.tall{
    grid-column:auto;
    aspect-ratio:4/3;
  }

  .portfolio-item.tall{
    aspect-ratio:4/5;
  }

  .portfolio-caption{
    opacity:1;
    transform:none;
    padding:70px 18px 17px;
  }

  .portfolio-caption strong{
    font-size:19px;
  }

  .portfolio-foot{
    align-items:flex-start;
    flex-direction:column;
    gap:18px;
    margin-top:35px;
  }

  .statement-section{
    padding:85px 0;
  }

  .about-section{
    padding:75px 0;
  }

  .about-inner{
    gap:42px;
  }

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

  .service-card{
    min-height:0;
  }

  .contact-section{
    padding:90px 0;
  }

  .mail-link{
    font-size:21px;
    overflow-wrap:anywhere;
  }

  .contact-meta{
    flex-direction:column;
    gap:14px;
  }

  .footer-links{
    flex-wrap:wrap;
  }

  .legal h1{
    font-size:50px;
  }

@media(max-width:650px){

  .portfolio-grid{
    display:block;
    width:100%;
  }

  .portfolio-item,
  .portfolio-item.wide,
  .portfolio-item.tall{
    width:100%;
    max-width:none;
    height:auto;
    aspect-ratio:auto;

    margin:0 0 18px 0;
  }

  .portfolio-item img{
    width:100%;
    height:auto;
    display:block;
    object-fit:cover;
  }

  .portfolio-item.tall img,
  .portfolio-item.wide img{
    width:100%;
    height:auto;
    aspect-ratio:auto;
  }
}

@media(max-width:650px){

  #portfolio.section{
    width:100%;
    padding-left:14px;
    padding-right:14px;
  }

  .portfolio-grid{
    width:100%;
  }
}
  
}