:root{
  --bg:#0b0b0d;
  --bg-alt:#131316;
  --ink:#f2ede4;
  --muted:#a9a29a;
  --gold:#c9a24b;
  --gold-soft:#e8cf95;
  --line:rgba(242,237,228,0.12);
  --serif:'Playfair Display', serif;
  --sans:'Montserrat', sans-serif;
}

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

html{scroll-behavior:smooth;}

body{
  background:var(--bg);
  color:var(--ink);
  font-family:var(--sans);
  line-height:1.6;
  overflow-x:hidden;
}

a{color:inherit; text-decoration:none;}
img{max-width:100%; display:block;}

.eyebrow{
  color:var(--gold);
  font-size:12px;
  letter-spacing:0.22em;
  text-transform:uppercase;
  font-weight:600;
  margin-bottom:14px;
}

h1, h2, h3{
  font-family:var(--serif);
  font-weight:600;
  line-height:1.15;
}

/* ---------- reveal on scroll ---------- */
.reveal{
  opacity:0;
  transform:translateY(28px);
  transition:opacity .8s cubic-bezier(.2,.7,.3,1), transform .8s cubic-bezier(.2,.7,.3,1);
}
.reveal.in{
  opacity:1;
  transform:translateY(0);
}

/* ---------- nav ---------- */
.nav{
  position:fixed;
  top:0; left:0; right:0;
  z-index:100;
  background:rgba(11,11,13,0);
  border-bottom:1px solid transparent;
  transition:background .3s, border-color .3s;
}
.nav.scrolled{
  background:rgba(11,11,13,0.85);
  backdrop-filter:blur(14px);
  border-bottom-color:var(--line);
}
.nav-inner{
  max-width:1280px;
  margin:0 auto;
  padding:18px 32px;
  display:flex;
  align-items:center;
  gap:32px;
}
.logo{
  font-family:var(--serif);
  font-weight:600;
  letter-spacing:0.06em;
  font-size:16px;
  white-space:nowrap;
}
.logo span{color:var(--gold); margin-left:6px;}
.nav-links{
  display:flex;
  gap:28px;
  margin-left:auto;
  font-size:13px;
  font-weight:500;
}
.nav-links a{
  color:var(--muted);
  transition:color .2s;
}
.nav-links a:hover{color:var(--ink);}
.nav-cta{
  border:1px solid var(--gold);
  color:var(--gold-soft);
  font-size:13px;
  font-weight:600;
  padding:9px 18px;
  border-radius:999px;
  transition:background .2s, color .2s;
  white-space:nowrap;
}
.nav-cta:hover{background:var(--gold); color:#0b0b0d;}
.burger{
  display:none;
  flex-direction:column;
  gap:5px;
  background:none;
  border:none;
  cursor:pointer;
  padding:6px;
}
.burger span{width:22px; height:2px; background:var(--ink);}

/* ---------- hero ---------- */
.hero{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  padding:120px 32px 80px;
  overflow:hidden;
}
.hero-bg{
  position:absolute;
  inset:0;
  z-index:0;
}
.hero-img{
  position:absolute;
  width:340px;
  height:440px;
  object-fit:cover;
  border-radius:18px;
  opacity:0.55;
  filter:grayscale(0.15) brightness(0.6);
  box-shadow:0 40px 80px rgba(0,0,0,0.6);
}
.hero-img.h1{top:8%; right:6%; transform:rotate(6deg);}
.hero-img.h2{bottom:-6%; right:26%; width:260px; height:340px; transform:rotate(-8deg); opacity:0.4;}
.hero-img.h3{top:38%; right:-4%; width:220px; height:300px; transform:rotate(3deg); opacity:0.35;}
.hero::after{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(100deg, var(--bg) 30%, rgba(11,11,13,0.55) 55%, rgba(11,11,13,0.15) 100%);
  z-index:1;
}
.hero-content{
  position:relative;
  z-index:2;
  max-width:640px;
}
.hero-content.reveal{transition-delay:.1s;}
.hero h1{
  font-size:clamp(40px, 6vw, 68px);
  margin-bottom:22px;
}
.hero h1 em{
  color:var(--gold);
  font-style:italic;
}
.hero-sub{
  color:var(--muted);
  font-size:16px;
  max-width:480px;
  margin-bottom:36px;
}
.hero-actions{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}
.scroll-cue{
  position:absolute;
  bottom:36px;
  left:32px;
  width:26px;
  height:42px;
  border:1px solid var(--line);
  border-radius:20px;
  z-index:2;
}
.scroll-cue span{
  display:block;
  width:4px;
  height:8px;
  background:var(--gold);
  border-radius:2px;
  margin:8px auto 0;
  animation:scrollcue 1.8s infinite;
}
@keyframes scrollcue{
  0%{transform:translateY(0); opacity:1;}
  70%{transform:translateY(14px); opacity:0;}
  100%{opacity:0;}
}

/* ---------- buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:15px 30px;
  font-size:14px;
  font-weight:600;
  border-radius:999px;
  transition:transform .2s, background .2s, color .2s, border-color .2s;
}
.btn-primary{
  background:var(--gold);
  color:#0b0b0d;
}
.btn-primary:hover{transform:translateY(-2px); background:var(--gold-soft);}
.btn-ghost{
  border:1px solid var(--line);
  color:var(--ink);
}
.btn-ghost:hover{border-color:var(--gold); color:var(--gold-soft);}

/* ---------- stat strip ---------- */
.strip{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.strip-item{
  padding:32px 16px;
  text-align:center;
  border-right:1px solid var(--line);
}
.strip-item:last-child{border-right:none;}
.strip-item strong{
  display:block;
  font-family:var(--serif);
  font-size:30px;
  color:var(--gold);
  margin-bottom:6px;
}
.strip-item span{
  font-size:12px;
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:0.08em;
}

/* ---------- section shared ---------- */
section{padding:110px 32px;}
.section-head{
  max-width:640px;
  margin:0 auto 56px;
  text-align:center;
}
.section-head h2{
  font-size:clamp(28px, 4vw, 42px);
  margin-bottom:16px;
}
.section-sub{color:var(--muted); font-size:15px;}
.section-link{
  display:inline-block;
  margin-top:18px;
  font-size:13px;
  font-weight:600;
  color:var(--gold-soft);
  border-bottom:1px solid var(--gold-soft);
  padding-bottom:2px;
}

/* ---------- models ---------- */
.model-grid{
  max-width:1280px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:20px;
}
.model-card{
  position:relative;
  border-radius:16px;
  overflow:hidden;
  aspect-ratio:3/4;
  transition-delay:calc(var(--i, 0) * .08s);
}
.model-card img{
  width:100%; height:100%;
  object-fit:cover;
  transition:transform .6s ease;
  filter:brightness(0.75);
}
.model-card:hover img{transform:scale(1.06);}
.model-info{
  position:absolute;
  left:0; right:0; bottom:0;
  padding:22px;
  background:linear-gradient(0deg, rgba(0,0,0,0.85), rgba(0,0,0,0));
}
.model-info h3{
  color:var(--gold-soft);
  font-size:22px;
  margin-bottom:8px;
}
.model-info p{
  color:#d8d3ca;
  font-size:13px;
  line-height:1.5;
}

/* ---------- gallery ---------- */
.filter-row{
  display:flex;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:44px;
}
.filter{
  background:none;
  border:1px solid var(--line);
  color:var(--muted);
  padding:9px 18px;
  border-radius:999px;
  font-size:13px;
  font-family:inherit;
  cursor:pointer;
  transition:border-color .2s, color .2s;
}
.filter:hover{color:var(--ink);}
.filter.active{
  border-color:var(--gold);
  color:var(--gold-soft);
}
.gallery-grid{
  max-width:1280px;
  margin:0 auto;
  columns:4 240px;
  column-gap:18px;
}
.g-item{
  break-inside:avoid;
  margin-bottom:18px;
  border-radius:14px;
  overflow:hidden;
  position:relative;
  cursor:zoom-in;
}
.g-item img{
  width:100%;
  display:block;
  transition:transform .5s ease;
}
.g-item:hover img{transform:scale(1.05);}
.g-item figcaption{
  position:absolute;
  left:0; right:0; bottom:0;
  padding:14px 16px;
  background:linear-gradient(0deg, rgba(0,0,0,0.8), rgba(0,0,0,0));
  color:#eee;
  font-size:12px;
  opacity:0;
  transition:opacity .2s;
}
.g-item:hover figcaption{opacity:1;}
.g-item.hidden{display:none;}

/* ---------- process ---------- */
.process-grid{
  max-width:1100px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:28px;
}
.process-item{
  border-top:1px solid var(--line);
  padding-top:20px;
}
.p-num{
  display:block;
  font-family:var(--serif);
  font-size:15px;
  color:var(--gold);
  margin-bottom:14px;
}
.process-item h3{font-size:18px; margin-bottom:10px;}
.process-item p{color:var(--muted); font-size:14px;}

/* ---------- cta band ---------- */
.cta-band{
  text-align:center;
  background:var(--bg-alt);
  border-radius:24px;
  max-width:1000px;
  margin:0 auto;
  padding:80px 32px;
}
.cta-band h2{
  font-size:clamp(26px, 4vw, 38px);
  max-width:520px;
  margin:0 auto 32px;
}

/* ---------- footer ---------- */
.footer{
  border-top:1px solid var(--line);
  padding:70px 32px 30px;
}
.footer-inner{
  max-width:1280px;
  margin:0 auto;
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  gap:40px;
}
.footer-brand p{
  color:var(--muted);
  font-size:13px;
  margin-top:14px;
  max-width:320px;
}
.footer-links h4{
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:0.1em;
  color:var(--muted);
  margin-bottom:16px;
}
.footer-links a{
  display:block;
  font-size:14px;
  color:var(--ink);
  margin-bottom:10px;
  opacity:0.85;
}
.footer-links a:hover{color:var(--gold-soft);}
.footer-bottom{
  max-width:1280px;
  margin:50px auto 0;
  padding-top:20px;
  border-top:1px solid var(--line);
  font-size:12px;
  color:var(--muted);
}

/* ---------- unified photo grade ---------- */
/* Applied to every product/portfolio photo so mixed sources (studio shots,
   phone photos, wrist shots) read as one consistent visual family. */
.uniform-photo{
  filter:saturate(0.9) contrast(1.06) brightness(0.97) sepia(0.06);
}

/* ---------- lightbox ---------- */
.lightbox{
  position:fixed;
  inset:0;
  background:rgba(6,6,7,0.94);
  display:none;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:16px;
  z-index:1000;
  padding:40px;
}
.lightbox.open{display:flex;}
.lightbox img{
  max-width:min(88vw, 640px);
  max-height:74vh;
  border-radius:12px;
  object-fit:contain;
}
.lightbox p{color:var(--muted); font-size:14px;}
.lightbox-close{
  position:absolute;
  top:24px; right:32px;
  background:none;
  border:none;
  color:var(--ink);
  font-size:32px;
  cursor:pointer;
  line-height:1;
}

/* ---------- responsive ---------- */
@media (max-width: 980px){
  .nav-links{display:none;}
  .burger{display:flex;}
  .model-grid{grid-template-columns:repeat(2, 1fr);}
  .strip{grid-template-columns:repeat(2, 1fr);}
  .strip-item:nth-child(2){border-right:none;}
  .process-grid{grid-template-columns:repeat(2, 1fr);}
  .footer-inner{grid-template-columns:1fr; gap:32px;}
  .gallery-grid{columns:2 200px;}
  .hero-img{display:none;}
  .hero::after{background:var(--bg);}
}

@media (max-width: 560px){
  section{padding:70px 20px;}
  .nav-inner{padding:16px 20px;}
  .nav-cta{display:none;}
  .model-grid{grid-template-columns:1fr;}
  .process-grid{grid-template-columns:1fr;}
  .gallery-grid{columns:1;}
}
