:root{
  --bone:#F3EFE7;
  --ink:#211F1C;
  --rust:#C9A05B;
  --rust-deep:#A67F3E;
  --stone:#8B8578;
  --hairline:#E2DACB;
  --white:#FFFFFF;
  --charcoal:#5C5955;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:'Inter',sans-serif;
  color:var(--ink);
  background:var(--bone);
  overflow-x:hidden;
}
a{text-decoration:none; color:inherit;}
img{display:block; max-width:100%;}
h1,h2,h3{font-family:'Fraunces', serif; margin:0;}
p{margin:0;}

.eyebrow{
  display:inline-block;
  font-size:.74rem;
  letter-spacing:.14em;
  text-transform:uppercase;
  font-weight:600;
  color:var(--rust);
  margin-bottom:.9rem;
}

/* ---------------- NAV ---------------- */
.site-nav{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(237,232,223,.88);
  backdrop-filter:blur(8px);
  border-bottom:1px solid var(--hairline);
}
.nav-inner{
  max-width:1280px;
  margin:0 auto;
  padding:1.1rem 2rem;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.wordmark{
  font-family:'Fraunces', serif;
  font-weight:600;
  font-size:1.5rem;
  letter-spacing:.03em;
  background:linear-gradient(115deg, #A67F3E 0%, #E4C583 35%, #C9A05B 60%, #8F6E31 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.nav-links{
  gap:2.2rem;
  font-size:.9rem;
  font-weight:500;
}
.nav-links a{
  position:relative;
  padding-bottom:.2rem;
}
.nav-links a::after{
  content:"";
  position:absolute;
  left:0; bottom:0;
  width:0%;
  height:1.5px;
  background:var(--rust);
  transition:width .2s ease;
}
.nav-links a:hover::after{width:100%;}

.nav-actions{display:flex; align-items:center; gap:1rem;}

.btn-outline{
  border:1px solid var(--ink);
  background:transparent;
  padding:.55rem 1.3rem;
  border-radius:100px;
  font-size:.85rem;
  font-weight:600;
  cursor:pointer;
  transition:background .15s ease, color .15s ease;
}
.btn-outline:hover{background:var(--ink); color:var(--bone);}

.nav-burger{
  width:34px; height:34px;
  border:none;
  background:none;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:5px;
  cursor:pointer;
}
.nav-burger span{
  height:2px;
  background:var(--ink);
  border-radius:2px;
}

.nav-mobile{
  max-height:0;
  overflow:hidden;
  transition:max-height .25s ease;
  display:flex;
  flex-direction:column;
  padding:0 2rem;
  gap:1rem;
  font-weight:500;
}
.nav-mobile.is-open{
  max-height:320px;
  padding:1rem 2rem 1.5rem;
}

/* ---------------- HERO ---------------- */
.hero{
  position:relative;
  min-height:92vh;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  overflow:hidden;
}
.hero-img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 25%;
}
.hero-scrim{
  position:absolute;
  inset:0;
  background:linear-gradient(0deg, rgba(26,24,21,.82) 0%, rgba(26,24,21,.05) 45%, rgba(26,24,21,.15) 100%);
}
.hero-content{
  position:relative;
  z-index:2;
  padding:0 2rem;
  max-width:1280px;
  margin:0 auto;
  width:100%;
  color:var(--bone);
}
.hero-content .eyebrow{color:var(--rust);}
.hero-title{
  font-size:clamp(2.6rem, 6vw, 5.2rem);
  font-weight:500;
  line-height:1.02;
  letter-spacing:-.01em;
  color:var(--bone);
}
.hero-meta{
  position:relative;
  z-index:2;
  max-width:1280px;
  margin:0 auto;
  width:100%;
  padding:2rem 2rem 3rem;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap:1.5rem;
  color:var(--bone);
  border-top:1px solid rgba(237,232,223,.25);
}
.hero-meta p{
  font-size:.95rem;
  max-width:22rem;
  color:rgba(237,232,223,.85);
}

.btn-primary{
  display:inline-flex;
  align-items:center;
  gap:.6rem;
  background:var(--rust);
  color:var(--bone);
  border:none;
  padding:.85rem 1.5rem;
  border-radius:100px;
  font-size:.92rem;
  font-weight:600;
  cursor:pointer;
  transition:background .15s ease, transform .1s ease;
  white-space:nowrap;
}
.btn-primary:hover{background:var(--rust-deep); transform:translateY(-1px);}
.btn-primary svg{transition:transform .15s ease;}
.btn-primary:hover svg{transform:translateX(3px);}

/* ---------------- MARQUEE ---------------- */
.marquee{
  background:var(--ink);
  color:var(--bone);
  overflow:hidden;
  white-space:nowrap;
  padding:.85rem 0;
  border-top:1px solid var(--rust);
  border-bottom:1px solid var(--rust);
}
.marquee-track{
  display:inline-flex;
  gap:1rem;
  animation:scrollMarquee 22s linear infinite;
  font-size:.82rem;
  letter-spacing:.08em;
  font-weight:600;
}
.marquee-track span{padding:0 .2rem;}
.marquee-track .dot{color:var(--rust);}
@keyframes scrollMarquee{
  from{transform:translateX(0);}
  to{transform:translateX(-50%);}
}
@media (prefers-reduced-motion: reduce){
  .marquee-track{animation:none;}
}

/* ---------------- COLLECTION ---------------- */
.collection{
  max-width:1280px;
  margin:0 auto;
  padding:6rem 2rem 5rem;
}
.section-head{
  margin-bottom:3rem;
  max-width:34rem;
}
.section-head h2{
  font-size:clamp(1.9rem, 3.4vw, 2.6rem);
  font-weight:500;
  line-height:1.15;
}

.product-row{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:1.75rem;
}

.product-card{
  display:flex;
  flex-direction:column;
  gap:1rem;
}
.product-media{
  position:relative;
  aspect-ratio:3/4;
  overflow:hidden;
  border-radius:4px;
  background:var(--hairline);
}
.product-media img{
  width:100%; height:100%;
  object-fit:cover;
  transition:transform .5s ease;
}
.product-card:hover .product-media img{transform:scale(1.045);}

.tag{
  position:absolute;
  top:.9rem; left:.9rem;
  z-index:2;
  background:var(--rust);
  color:var(--bone);
  font-size:.68rem;
  font-weight:700;
  letter-spacing:.05em;
  text-transform:uppercase;
  padding:.35rem .7rem;
  border-radius:100px;
  transform:rotate(-3deg);
  box-shadow:0 3px 8px rgba(0,0,0,.15);
}

.product-info h3{
  font-size:1.05rem;
  font-weight:500;
  margin-bottom:.15rem;
}
.product-sub{
  font-size:.82rem;
  color:var(--stone);
  margin-bottom:.5rem;
}
.price{
  font-weight:600;
  font-size:.92rem;
}

/* ---------------- STORY ---------------- */
.story{
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:stretch;
  background:var(--white);
}
.story-media{overflow:hidden;}
.story-media img{
  width:100%; height:100%;
  min-height:420px;
  object-fit:cover;
}
.story-copy{
  padding:5rem 4rem;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:1.4rem;
  max-width:34rem;
}
.story-copy h2{
  font-size:clamp(1.9rem, 3vw, 2.5rem);
  font-weight:500;
  line-height:1.15;
}
.story-copy p{
  font-size:.98rem;
  line-height:1.65;
  color:#4A463F;
}
.link-underline{
  font-weight:600;
  font-size:.92rem;
  color:var(--rust);
  border-bottom:1px solid var(--rust);
  display:inline-block;
  width:fit-content;
}

/* ---------------- CTA BAND ---------------- */
.cta-band{
  background:var(--charcoal);
  color:var(--bone);
  padding:6rem 2rem;
}
.cta-inner{
  max-width:640px;
  margin:0 auto;
  text-align:center;
}
.cta-inner h2{
  font-size:clamp(1.9rem, 3.4vw, 2.6rem);
  font-weight:500;
  margin-bottom:.8rem;
}
.cta-inner p{
  color:rgba(237,232,223,.7);
  margin-bottom:2.2rem;
  font-size:.98rem;
}
.cta-form{
  display:flex;
  gap:.75rem;
  max-width:420px;
  margin:0 auto;
}
.cta-form input{
  flex:1;
  border:1px solid rgba(237,232,223,.3);
  background:transparent;
  color:var(--bone);
  padding:.85rem 1.1rem;
  border-radius:100px;
  font-size:.92rem;
}
.cta-form input::placeholder{color:rgba(237,232,223,.5);}
.cta-form input:focus{outline:none; border-color:var(--rust);}
.cta-form button{
  background:var(--rust);
  color:var(--bone);
  border:none;
  padding:.85rem 1.6rem;
  border-radius:100px;
  font-weight:600;
  font-size:.92rem;
  cursor:pointer;
  white-space:nowrap;
  transition:background .15s ease;
}
.cta-form button:hover{background:var(--rust-deep);}
.cta-confirm{
  display:none;
  margin-top:1.2rem;
  font-size:.88rem;
  color:var(--rust);
  font-weight:500;
}
.cta-confirm.is-visible{display:block;}

/* ---------------- FOOTER ---------------- */
.site-footer{
  background:var(--bone);
  border-top:1px solid var(--hairline);
  padding:4rem 2rem 1.5rem;
}
.footer-inner{
  max-width:1280px;
  margin:0 auto;
  display:flex;
  justify-content:space-between;
  gap:3rem;
  flex-wrap:wrap;
  padding-bottom:2.5rem;
}
.footer-brand{max-width:22rem;}
.footer-brand .wordmark{display:block; margin-bottom:.9rem;}
.footer-brand p{color:var(--stone); font-size:.9rem; line-height:1.5;}

.footer-cols{
  display:flex;
  gap:3.5rem;
  flex-wrap:wrap;
}
.footer-cols h4{
  font-family:'Inter',sans-serif;
  font-size:.78rem;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-weight:700;
  margin-bottom:1rem;
  color:var(--stone);
}
.footer-cols a{
  display:block;
  font-size:.9rem;
  margin-bottom:.65rem;
  color:var(--ink);
}
.footer-cols a:hover{color:var(--rust);}

.footer-bottom{
  max-width:1280px;
  margin:0 auto;
  display:flex;
  justify-content:space-between;
  padding-top:1.5rem;
  border-top:1px solid var(--hairline);
  font-size:.8rem;
  color:var(--stone);
}

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 991px){
  .product-row{grid-template-columns:repeat(2, 1fr);}
  .story{grid-template-columns:1fr;}
  .story-media img{min-height:280px;}
  .story-copy{padding:3rem 2rem;}
}

@media (max-width: 600px){
  .nav-inner{padding:1rem 1.25rem;}
  .hero{min-height:88vh;}
  .hero-content, .hero-meta{padding-left:1.25rem; padding-right:1.25rem;}
  .hero-meta{flex-direction:column; align-items:flex-start;}
  .collection{padding:4rem 1.25rem 3rem;}
  .product-row{grid-template-columns:1fr 1fr; gap:1rem;}
  .cta-band{padding:4rem 1.25rem;}
  .cta-form{flex-direction:column;}
  .footer-inner{padding-bottom:2rem;}
  .footer-cols{gap:2rem;}
  .footer-bottom{flex-direction:column; gap:.4rem; text-align:center;}
}
