/* ═══════════════════════════════════════
   NJOY CREATION — GLOBAL STYLES
   #39211f | #E5bc88 | #Bea47f | #ffffff
═══════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=Outfit:wght@200;300;400;500;600;700&family=Bebas+Neue&display=swap');

:root {
  --brown:    #39211f;
  --brown2:   #2e1a18;
  --gold:     #E5bc88;
  --gold2:    #Bea47f;
  --cream:    #faf4ec;
  --cream2:   #f3ead9;
  --white:    #ffffff;
  --muted-d:  rgba(255,255,255,0.52);
  --muted-l:  rgba(57,33,31,0.55);
  --border-d: rgba(229,188,136,0.2);
  --border-l: rgba(57,33,31,0.12);
}

*,*::before,*::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  color: var(--brown);
  background: var(--cream);
  overflow-x: hidden;
  /* cursor: none; */
}
a { text-decoration: none; color: inherit; }

/* Grain */
body::after {
  content: ''; position: fixed; inset: 0;
  pointer-events: none; z-index: 9000;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
}



/* page transition */
#page-trans{
  position:fixed;
  inset:0;
  z-index:99999;
  overflow:hidden;
  pointer-events:none;
}

#trans-panel{
  position:absolute;
  inset:0;
  background:var(--brown);
  transform:translateY(-100%);
}

#trans-label{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  font-family:'Bebas Neue',sans-serif;
  font-size:clamp(24px,5vw,60px);
  letter-spacing:14px;
  color:var(--gold);
  opacity:0;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  height: 70px; padding: 0 64px;
  display: flex; justify-content: space-between; align-items: center;
  background: var(--white);
  border-bottom: 1px solid var(--border-l);
  transition: height .4s, box-shadow .4s;
}
nav.scrolled {
  height: 58px;
  box-shadow: 0 4px 32px rgba(57,33,31,.1);
}
.nav-logo {
  display: flex; align-items: center; gap: 12px; cursor: pointer;
}
.nav-logo-img { width: 42px; height: 42px; object-fit: contain; flex-shrink: 0; }
.nav-brand-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 17px; letter-spacing: 5px; color: var(--brown); line-height: 1;
}
.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-link {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted-l); padding: 8px 14px;
  background: none; border: none; cursor: pointer;
  font-family: 'Outfit', sans-serif;
  position: relative; transition: color .3s;
}
.nav-link::after {
  content: ''; position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 1px; background: var(--brown);
  transform: scaleX(0); transition: transform .3s; transform-origin: left;
}
.nav-link:hover, .nav-link.active { color: var(--brown); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-cta {
  background: var(--brown) !important; color: var(--gold) !important;
  padding: 10px 22px !important;
  transition: background .3s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--brown2) !important; }

/* ── SECTION LABELS ── */
.sec-label {
  font-size: 9px; letter-spacing: 5px; color: var(--gold2);
  text-transform: uppercase; margin-bottom: 16px;
  display: flex; align-items: center; gap: 14px;
}
.sec-label::before { content: ''; display: block; width: 26px; height: 1px; background: var(--gold2); }
.sec-label.dark { color: var(--muted-l); }
.sec-label.dark::before { background: var(--muted-l); }
.sec-label.center { justify-content: center; }
.sec-label.center::before { display: none; }

.sec-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px,5vw,58px); font-weight: 700;
  line-height: 1.05; margin-bottom: 16px;
}
.sec-title em { font-style: italic; color: var(--gold2); }
.sec-title.on-dark { color: var(--white); }
.sec-title.on-dark em { color: var(--gold); }

.sec-body { font-size: 14px; line-height: 1.85; font-weight: 300; max-width: 520px; }
.sec-body.on-dark  { color: var(--muted-d); }
.sec-body.on-light { color: var(--muted-l); }

/* ── BUTTONS ── */
.btn { display: inline-block; padding: 15px 38px; font-size: 10px; letter-spacing: 4px; text-transform: uppercase; font-weight: 600; cursor: pointer; font-family: 'Outfit', sans-serif; border: none; transition: background .3s, transform .25s, box-shadow .3s; }
.btn-gold { background: var(--gold); color: var(--brown); }
.btn-gold:hover { background: var(--gold2); transform: translateY(-3px); box-shadow: 0 12px 36px rgba(229,188,136,.25); }
.btn-ghost { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.3); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-dark { display: inline-block; background: var(--brown); color: var(--gold); padding: 14px 36px; font-size: 10px; letter-spacing: 4px; text-transform: uppercase; font-weight: 600; cursor: pointer; font-family: 'Outfit', sans-serif; transition: background .3s, transform .25s; }
.btn-dark:hover { background: var(--brown2); transform: translateY(-2px); }
.btn-outline-dark { display: inline-block; background: transparent; color: var(--brown); border: 1.5px solid var(--brown); padding: 13px 34px; font-size: 10px; letter-spacing: 4px; text-transform: uppercase; cursor: pointer; font-family: 'Outfit', sans-serif; transition: background .3s, color .3s; }
.btn-outline-dark:hover { background: var(--brown); color: var(--gold); }

/* ── SCROLL REVEAL ── */
.r   { opacity:0; transform:translateY(38px); transition:opacity .75s ease, transform .75s ease; }
.rl  { opacity:0; transform:translateX(-38px); transition:opacity .75s ease, transform .75s ease; }
.rr  { opacity:0; transform:translateX(38px); transition:opacity .75s ease, transform .75s ease; }
.r.v,.rl.v,.rr.v { opacity:1; transform:none; }
.d1{transition-delay:.1s!important;} .d2{transition-delay:.2s!important;}
.d3{transition-delay:.3s!important;} .d4{transition-delay:.4s!important;}

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

.footer{
    background: var(--cream);
    color: var(--brown);
    padding:80px 8% 25px;
    border-top:1px solid rgba(57,33,31,.08);
}
.footer-container{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:80px;
    align-items:flex-start;
}

/* LEFT */
.footer-brand h2{
    color:var(--brown);
}
.footer-brand span{
    color:var(--gold);
}

.footer-brand p{
    color:rgba(57,33,31,.72);
    font-size:15px;
    line-height:1.9;
    max-width:420px;
    margin-bottom:28px;
    font-family:'Outfit',sans-serif;
}

/* SOCIAL */

.footer-social{
    display:flex;
    gap:16px;
}

.footer-social a{
    width:50px;
    height:50px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
border:1px solid rgba(57,33,31,.12);
background: white;
    color:var(--brown);
    font-size:20px;
    transition:.35s;
}
.footer-social a:hover{
    background:var(--gold);
    color:var(--brown);
        border-color:var(--gold);
    transform:translateY(-5px);
}

/* LINKS */
.footer-links h3,
.footer-contact h3{
    color:var(--gold);
    margin-bottom:22px;
    font-size:24px;
    font-family:'Playfair Display',serif;
}

.footer-links{
    display:flex;
    flex-direction:column;
}
.footer-links a{
  color:rgba(57,33,31,.8);
    margin-bottom:14px;
    transition:.3s;
    font-size:15px;
    font-family:'Outfit',sans-serif;
}

.footer-links a:hover{
    color:var(--gold);
    padding-left:8px;
}

/* CONTACT */
.footer-contact p{
  color:rgba(57,33,31,.8);
    margin-bottom:18px;
    display:flex;
    align-items:center;
    gap:12px;
    line-height:1.7;
    font-family:'Outfit',sans-serif;
}
.footer-contact i{
    color:var(--gold);
    width:18px;
}
/* BOTTOM */

.footer-bottom{
    margin-top:60px;
    padding-top:24px;
    border-top:1px solid rgba(57,33,31,.12);
    text-align:center;
    color:rgba(57,33,31,.6);
    font-size:14px;
    letter-spacing:1px;
}
/* ==========================
   TABLET
=========================== */
@media (max-width:992px){
.footer{
    padding:50px 40px 18px;
}
.footer-container{
    grid-template-columns:1fr;
    gap:30px;
    text-align:center;
}
.footer-brand p{
    margin:0 auto 18px;
}
.footer-social{
    justify-content:center;
}
.footer-contact p{
    justify-content:center;
    margin-bottom:12px;
}
.footer-bottom{
    margin-top:35px;
    padding-top:18px;
}
}

/* ===========================
   MOBILE
=========================== */
@media (max-width:576px){
.footer{
    padding:40px 22px 15px;
}
.footer-container{
    gap:24px;
}
.footer-brand h2{
    font-size:30px;
    margin-bottom:14px;
}
.footer-brand p{
    margin-bottom:16px;
    line-height:1.7;
}
.footer-links h3,
.footer-contact h3{
    margin-bottom:12px;
}
.footer-links a{
    margin-bottom:10px;
}
.footer-contact p{
    margin-bottom:10px;
}
.footer-social{
    gap:12px;
}
.footer-social a{
    width:42px;
    height:42px;
    font-size:17px;
}
.footer-bottom{
    margin-top:25px;
    padding-top:15px;
    font-size:13px;
}
}