*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
:root {
  --black:#0A0A0A; --charcoal:#1A1A1A; --cream:#F5F0EA; --off-white:#FAFAF7;
  --gold:#B59A6A; --gold-light:#CAB183; --gray:#6B6B6B; --light-gray:#D8D3CE;
  --serif:'Cormorant Garant',Georgia,serif; --sans:'Montserrat',system-ui,sans-serif;
}
html { scroll-behavior:smooth; }
body { font-family:var(--sans); background:var(--off-white); color:var(--charcoal); line-height:1.6; overflow-x:hidden; }
nav { position:fixed; top:0; left:0; right:0; z-index:100; display:flex; align-items:center; justify-content:space-between; padding:28px 64px; transition:background .4s,padding .4s,box-shadow .4s; }
nav.scrolled { background:rgba(10,10,10,.96); backdrop-filter:blur(12px); padding:18px 64px; box-shadow:0 1px 0 rgba(255,255,255,.06); }
.nav-logo img { height:48px; filter:brightness(0) invert(1); display:block; }
.nav-logo { position:relative; z-index:102; }
.nav-links { display:flex; align-items:center; gap:28px; list-style:none; }
.nav-links a { text-decoration:none; color:#fff; font-size:10px; font-weight:600; letter-spacing:2.5px; text-transform:uppercase; transition:color .3s; }
.nav-links a:hover, .nav-links a.active { color:#FFDE71; }
.nav-cta { border:1px solid rgba(255,255,255,.45)!important; padding:10px 26px!important; }
.nav-cta:hover { background:var(--gold)!important; border-color:var(--gold)!important; }
.menu-toggle { display:none; position:relative; z-index:102; width:44px; height:44px; border:1px solid rgba(255,255,255,.45); background:rgba(0,0,0,.18); align-items:center; justify-content:center; flex-direction:column; gap:5px; cursor:pointer; }
.menu-toggle span { width:18px; height:1px; background:#fff; display:block; transition:transform .28s ease, opacity .28s ease; }
.project-hero { position:relative; height:62vh; min-height:500px; overflow:hidden; }
.project-hero-bg { position:absolute; inset:0; background-size:cover; background-position:center; transform:scale(1.04); animation:heroSettle 1.2s ease both; }
.project-hero-overlay { position:absolute; inset:0; background:radial-gradient(circle at bottom left,rgba(0,0,0,.8) 0%,rgba(0,0,0,.58) 34%,rgba(0,0,0,.22) 70%,rgba(0,0,0,.06) 100%); }
.project-hero-content { position:relative; z-index:2; height:100%; display:flex; flex-direction:column; justify-content:flex-end; padding:0 64px 78px; }
.project-back { color:rgba(255,255,255,.74); text-decoration:none; font-size:10px; font-weight:600; letter-spacing:2.6px; text-transform:uppercase; margin-bottom:28px; }
.project-eyebrow { font-size:12px; font-weight:900; letter-spacing:4px; text-transform:uppercase; color:#ffdea3; margin-bottom:3px; }
.project-title { font-family:var(--serif); font-size:clamp(40px,4.5vw,62px); font-weight:300; color:#fff; line-height:1.05; }
.project-title em { font-style:italic; }
@keyframes heroSettle { from { transform:scale(1.09); } to { transform:scale(1.04); } }
.project-intro { padding:88px 64px 72px; max-width:1220px; margin:0 auto; display:grid; grid-template-columns:minmax(0,1.1fr) minmax(300px,.9fr); gap:72px; align-items:start; }
.label { font-size:9px; font-weight:600; letter-spacing:3.5px; text-transform:uppercase; color:var(--gold); margin-bottom:18px; display:block; }
.heading { font-family:var(--serif); font-size:clamp(30px,3vw,48px); font-weight:300; line-height:1.15; color:var(--charcoal); margin-bottom:24px; }
.heading em { font-style:italic; }
.body-text { font-size:14px; font-weight:300; line-height:1.95; color:var(--gray); }
.project-meta { display:grid; grid-template-columns:1fr; border-top:1px solid var(--light-gray); }
.meta-row { display:grid; grid-template-columns:140px 1fr; gap:24px; padding:22px 0; border-bottom:1px solid var(--light-gray); }
.meta-label { font-size:9px; font-weight:600; letter-spacing:3px; text-transform:uppercase; color:var(--gold); }
.meta-value { font-family:var(--serif); font-size:24px; font-weight:300; line-height:1.25; color:var(--charcoal); }
.project-gallery { width:100%; padding:0 40px 108px; display:grid; grid-template-columns:repeat(12,1fr); gap:6px; }
.gallery-item { overflow:hidden; background:var(--cream); min-height:260px; opacity:0; transform:translateY(24px); transition:opacity .7s ease, transform .7s ease; }
.gallery-item.visible { opacity:1; transform:translateY(0); }
.gallery-item img { width:100%; height:100%; object-fit:cover; display:block; transition:transform .75s ease, filter .75s ease; filter:grayscale(8%) brightness(.96); cursor:zoom-in; }
.gallery-item:hover img { transform:scale(1.045); filter:grayscale(0) brightness(1); }
.gallery-wide { grid-column:span 8; aspect-ratio:16/10; }
.gallery-tall { grid-column:span 4; aspect-ratio:4/5; }
.gallery-half { grid-column:span 6; aspect-ratio:4/3; }
.gallery-third { grid-column:span 4; aspect-ratio:4/3; }
.gallery-full { grid-column:span 12; aspect-ratio:16/7; }
.project-navigation { width:100%; display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); background:var(--charcoal); }
.project-nav-card { position:relative; min-width:0; min-height:430px; overflow:hidden; display:flex; align-items:flex-end; padding:58px 64px; color:#fff; text-decoration:none; }
.project-nav-image { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; display:block; transform:scale(1.01); transition:transform .75s cubic-bezier(.2,.7,.2,1), filter .75s ease; filter:grayscale(18%); }
.project-nav-overlay { position:absolute; inset:0; background:linear-gradient(to top,rgba(10,10,10,.82),rgba(10,10,10,.08) 72%); transition:background .45s ease; }
.project-nav-content { position:relative; z-index:1; width:100%; display:flex; flex-direction:column; align-items:flex-start; }
.project-nav-next .project-nav-content { align-items:flex-end; text-align:right; }
.project-nav-direction { margin-bottom:18px; color:var(--gold-light); font-size:9px; font-weight:600; letter-spacing:3px; text-transform:uppercase; }
.project-nav-title { max-width:520px; font-family:var(--serif); font-size:clamp(34px,4vw,58px); font-weight:300; line-height:1; }
.project-nav-title em { font-style:italic; }
.project-nav-action { margin-top:24px; padding-bottom:5px; border-bottom:1px solid rgba(255,255,255,.6); font-size:9px; font-weight:600; letter-spacing:2.5px; text-transform:uppercase; }
.project-nav-card:hover .project-nav-image { transform:scale(1.065); filter:grayscale(0); }
.project-nav-card:hover .project-nav-overlay { background:linear-gradient(to top,rgba(10,10,10,.88),rgba(10,10,10,.14) 72%); }
.btn-gold { display:inline-block; padding:16px 48px; background:var(--gold); color:#fff; text-decoration:none; font-size:10px; font-weight:600; letter-spacing:2.5px; text-transform:uppercase; transition:background .3s,transform .3s; }
.btn-gold:hover { background:var(--gold-light); transform:translateY(-2px); }
footer { background:var(--black); padding:72px 64px 40px; }
.footer-grid { display:grid; grid-template-columns:1fr auto 1fr; align-items:start; gap:64px; padding-bottom:56px; border-bottom:1px solid rgba(255,255,255,.07); margin-bottom:36px; }
.footer-col-left { display:flex; flex-direction:column; gap:10px; }
.footer-col-title { font-size:9px; font-weight:600; letter-spacing:3px; text-transform:uppercase; color:var(--gold); margin-bottom:8px; }
.footer-col-left a { font-size:13px; font-weight:300; color:rgba(255,255,255,.45); text-decoration:none; transition:color .3s; }
.footer-col-left a:hover { color:rgba(255,255,255,.85); }
.footer-logo-wrap { text-align:center; }
.footer-logo-wrap img { height:72px; filter:brightness(0) invert(1); opacity:.75; display:block; margin:0 auto; }
.footer-col-right { text-align:right; }
.footer-col-right p { font-size:13px; font-weight:300; color:rgba(255,255,255,.45); line-height:2; }
.footer-col-right a { color:rgba(255,255,255,.45); text-decoration:none; transition:color .3s; }
.footer-col-right a:hover { color:var(--gold); }
.footer-bottom { display:flex; align-items:center; justify-content:space-between; }
.footer-copy { font-size:11px; font-weight:300; color:rgba(255,255,255,.25); }
.footer-socials { display:flex; gap:24px; }
.footer-socials a { font-size:10px; font-weight:500; letter-spacing:2px; text-transform:uppercase; color:rgba(255,255,255,.3); text-decoration:none; transition:color .3s; }
.footer-socials a:hover { color:var(--gold); }
.reveal { opacity:0; transform:translateY(28px); transition:opacity .7s ease,transform .7s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }
.lightbox { position:fixed; inset:0; z-index:300; display:none; align-items:center; justify-content:center; padding:56px 96px; background:rgba(10,10,10,.92); opacity:0; transition:opacity .24s ease; }
.lightbox.is-open { display:flex; opacity:1; }
.lightbox img { max-width:100%; max-height:calc(100vh - 140px); object-fit:contain; box-shadow:0 24px 80px rgba(0,0,0,.45); }
.lightbox-caption { position:absolute; left:50%; bottom:26px; transform:translateX(-50%); color:rgba(255,255,255,.68); font-size:10px; font-weight:600; letter-spacing:2.6px; text-transform:uppercase; white-space:nowrap; }
.lightbox-btn { position:absolute; display:grid; place-items:center; width:48px; height:48px; border:1px solid rgba(255,255,255,.35); border-radius:50%; background:rgba(0,0,0,.22); color:#fff; font-family:var(--sans); font-size:24px; line-height:1; cursor:pointer; transition:background .25s ease,border-color .25s ease,transform .25s ease; }
.lightbox-btn:hover { background:var(--gold); border-color:var(--gold); transform:translateY(-1px); }
.lightbox-close { top:28px; right:32px; }
.lightbox-prev { left:32px; top:50%; transform:translateY(-50%); }
.lightbox-prev:hover { transform:translateY(calc(-50% - 1px)); }
.lightbox-next { right:32px; top:50%; transform:translateY(-50%); }
.lightbox-next:hover { transform:translateY(calc(-50% - 1px)); }
@media (min-width:961px) {
  .project-hero { height:90vh; }
}
@media (max-width:960px) {
  nav { padding:22px 28px; } nav.scrolled { padding:16px 28px; }
  .menu-toggle { display:flex; }
  .nav-links { position:fixed; top:0; left:0; right:0; z-index:101; display:flex!important; flex-direction:column; align-items:center; justify-content:flex-start; gap:0; padding:112px 28px 34px; min-height:100svh; background:rgba(10,10,10,.98); backdrop-filter:blur(14px); opacity:0; pointer-events:none; transform:translateY(-100%); transition:opacity .28s ease, transform .34s cubic-bezier(.2,.7,.2,1); }
  body.menu-open { overflow:hidden; }
  body.menu-open .nav-links { opacity:1; pointer-events:auto; transform:translateY(0); }
  .nav-links li, .nav-links li:not(:last-child) { display:block!important; width:100%; text-align:center; }
  .nav-links a { display:block; width:100%; padding:22px 0; font-size:16px; letter-spacing:3.2px; text-align:center; }
  .nav-cta { display:inline-block!important; width:auto!important; margin-top:22px; padding:15px 38px!important; }
  body.menu-open .menu-toggle span:nth-child(1) { transform:translateY(6px) rotate(45deg); }
  body.menu-open .menu-toggle span:nth-child(2) { opacity:0; }
  body.menu-open .menu-toggle span:nth-child(3) { transform:translateY(-6px) rotate(-45deg); }
  .project-hero { min-height:440px; }
  .project-hero-content { padding:0 28px 58px; }
  .project-intro { padding:64px 28px 52px; grid-template-columns:1fr; gap:38px; }
  .meta-row { grid-template-columns:1fr; gap:8px; }
  .project-gallery { padding:0 40px 76px; grid-template-columns:1fr; gap:6px; }
  .gallery-wide, .gallery-tall, .gallery-half, .gallery-third, .gallery-full { grid-column:1; aspect-ratio:4/3; }
  .project-nav-card { min-height:320px; padding:38px 22px; }
  .project-nav-direction { margin-bottom:14px; font-size:8px; letter-spacing:2px; }
  .project-nav-title { font-size:clamp(25px,7vw,38px); }
  .project-nav-action { margin-top:18px; font-size:8px; letter-spacing:1.8px; }
  footer { padding:56px 28px 32px; }
  .footer-grid { grid-template-columns:1fr; text-align:center; }
  .footer-col-right { text-align:center; }
  .footer-bottom { flex-direction:column; gap:16px; }
  .footer-col-title { font-size:14px; }
  .footer-col-left a { font-size:20px; }
  .footer-col-right p { font-size:16px; }
  .footer-logo-wrap img { height:180px; }
  .lightbox { padding:58px 18px; }
  .lightbox img { max-height:calc(100vh - 150px); }
  .lightbox-btn { width:42px; height:42px; font-size:22px; }
  .lightbox-close { top:16px; right:18px; }
  .lightbox-prev { left:14px; }
  .lightbox-next { right:14px; }
  .lightbox-caption { bottom:18px; }
}
