/* =========================================================
   Label — Light + Living | Coming Soon
   ========================================================= */

:root{
  --bg-dark:      #211a16;
  --bg-darker:    rgba(30, 28, 24, 1);
  --panel:        #2c2420;
  --cream:        rgba(232, 223, 208, 1);
  --cream-dim:    rgba(138, 128, 112, 1);
  --gold:         rgba(156, 138, 110, 1);
  --gold-line:    #8a7455;
  --stone:        #6f6155;
  --wood:         #7c5b3d;
  --wood-dark:    #4a3324;
  --serif: "Playfair Display", serif;
  --sans:  "Jost", sans-serif;
}

*,*::before,*::after{ box-sizing:border-box; }

html{ scroll-behavior:smooth; }

body{
  margin:0;
  background:var(--bg-dark);
  color:var(--cream);
  font-family:var(--sans);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

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

/* ---------- Header / Logo ---------- */

.logo{
  display:flex;
  flex-direction:column;
  line-height:1;
}

.site-header{
  position:relative;
  z-index:5;
  padding:35px 96px 0;
}

/* ---------- Hero ---------- */

.hero{
  position:relative;
  overflow:hidden;
  background-image: url(bg-img.webp);
    background-repeat:no-repeat;
    background-size: cover;
    background-position: center;
 
}

.hero:after, .hero:before{
    background: linear-gradient(180deg, rgba(12, 10, 8, 0.45) 0%, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0) 75%, rgba(12, 10, 8, 0.35) 100%);
    content: '';
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    height: 100%;
}
.hero:before{
    background: linear-gradient(90deg, rgba(12, 10, 8, 0.82) 0%, rgba(12, 10, 8, 0.55) 38%, rgba(12, 10, 8, 0.18) 65%, rgba(12, 10, 8, 0.08) 100%);
}

.hero-grid{
  position:relative;
  display:grid;
  grid-template-columns:minmax(320px, 640px) 1fr;
  align-items:center;
    padding: 136px 95px 168px;
  z-index:2;
}

.hero-copy{
  max-width:560px;
}

.eyebrow{
    color:var(--gold);
    margin:0 0 24px;
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    leading-trim: NONE;
    line-height: 24px;
    letter-spacing: 4.16px;
    text-transform: uppercase;

}

.eyebrow--small{
  margin-bottom:15px;
    
font-size: 16px;
line-height: 13.92px;
letter-spacing: 3.25px;

    
    
}

.headline{
    font-family:var(--serif);
    margin:0 0 25px;
    color:var(--cream);
    letter-spacing:0.2px;
    font-weight: 400;
    font-style: Regular;
    font-size: 59.72px;
    leading-trim: NONE;
    line-height: 63.3px;
    letter-spacing: tracking/regular;
}

.headline em{
  font-style:italic;
  font-weight:400;
  color:var(--cream);
}

.rule{
  width:40px;
  height:1px;
  background:rgba(156, 138, 110, 0.4);
  margin:0 0 25px;
}

.tagline{
  font-family:var(--serif);
  color:var(--cream);
  margin:0 0 20px;
    
font-weight: 400;
font-style: Italic;
font-size: 19.2px;
leading-trim: NONE;
line-height: 26.4px;
letter-spacing: tracking/regular;

    
}

.body-copy{
    color:var(--cream-dim);
    max-width:360px;
    margin:0 0 48px;
    
    font-weight: 300;
    font-style: Light;
    font-size: 14px;
    leading-trim: NONE;
    line-height: 20.8px;
    letter-spacing: tracking/regular;
    
}

.catalogues{ margin-top:6px; }

.cat-buttons{
  display:flex;
  gap: 24px;
}

.cat-btn{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:15px;
  text-transform:uppercase;
  color:var(--cream);
  font-weight:400;
  transition:border-color 0.35s ease, background-color 0.35s ease, transform 0.25s ease;
    
    
  width:195px;
  border:1px solid rgba(245, 241, 235, 0.3);
  padding:12px 24px;
font-weight: 400;
font-style: Regular;
font-size: 14px;
leading-trim: NONE;
line-height: 20px;
letter-spacing: 2.18px;
text-transform: uppercase;

    
    
}

.cat-btn span:first-child{ line-height:1.5; }

.cat-btn .arrow{
  font-size:1rem;
  transform:translateX(0);
  transition:transform 0.3s ease;
  color:var(--gold);
}

.cat-btn:hover{
  border-color:var(--gold);
  background:rgba(183,154,114,0.08);
}

.cat-btn:hover .arrow{
  transform:translateX(6px);
}

.cat-btn:focus-visible{
  outline:2px solid var(--gold);
  outline-offset:3px;
}

/* ---------- Footer ---------- */

.site-footer{
  background:var(--bg-darker);
}

.footer-grid{
  display:grid;
  grid-template-columns:3fr 1fr 1fr;
  gap:48px;
  padding-bottom:64px;
  border-bottom:1px solid rgba(244,237,227,0.08);

  padding:80px 70px;
}

.footer-brand .logo{ margin-bottom:16px; }

.footer-blurb{
  color:var(--cream-dim);
  font-size: 14px;
  max-width:340px;
  margin:0;
font-weight: 300;
leading-trim: NONE;
line-height: 22.75px;
letter-spacing: tracking/regular;
color: rgba(196, 180, 154, 1);
    
    
}

.footer-heading{
  font-size:16px;
  color:var(--gold);
  margin:0 0 16px;
font-weight: 500;
font-style: Medium;
leading-trim: NONE;
line-height: 15px;
letter-spacing: 2.5px;
text-transform: uppercase;

    
}

.footer-line{
  display:block;
  font-size: 14px;
  color: rgba(245, 241, 235, 1);
  font-weight:300;
  margin-bottom:8px;
  transition:color 0.25s ease;
  line-height:1.65;
    leading-trim: NONE;
    letter-spacing: 0.35px;

    
}

a.footer-line:hover{ color:var(--gold); }

.footer-address{ max-width:280px; }

.footer-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:12px;
    color: rgba(122, 112, 96, 1);
    padding: 20px 64px;
}

.footer-bottom p{ margin:0; }

.crafted{
    letter-spacing:2px;
    font-size: 12px;
    color: rgba(122, 112, 96, 1);
    
font-weight: 300;
line-height: 15px;
letter-spacing: 1.5px;
text-transform: uppercase;

}

/* ---------- Reveal-on-load motion ---------- */

.reveal{
  opacity:0;
  transform:translateY(16px);
  transition:opacity 0.9s ease, transform 0.9s ease;
}
.reveal.is-visible{
  opacity:1;
  transform:translateY(0);
}

@media (prefers-reduced-motion: reduce){
  .reveal{ opacity:1; transform:none; transition:none; }
  .cat-btn, .cat-btn .arrow, a.footer-line{ transition:none; }
}

/* ---------- Responsive ---------- */

@media (max-width: 1199px){
    .site-header{
         padding: 35px 60px 0;
    }
.hero-grid {
  padding: 120px 60px 150px;
    }
    .footer-grid {
  grid-template-columns: 2fr 1fr 1fr;
    }
}

@media (max-width: 980px){
  .hero-grid{ grid-template-columns:1fr; }
  .hero-visual{ min-height:60vh; order:-1; }
  .footer-grid{ grid-template-columns: 1.3fr 1fr 1fr; gap:40px; }
    
    .logo img{
        width: 82px;
    }
    .site-header {
    padding: 14px 32px;
  }
    
    .hero-grid {
    padding: 100px 32px 180px;
  }
    
    .eyebrow{
        font-size: 16px;
        letter-spacing: 6.4px;
    }
    
    .headline {
  font-size: 38px;
  line-height: 40px;
    }
    .tagline {
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 22px;
  max-width: 142px;
}
    .body-copy{
        font-size: 14px;
        line-height: 20px;
        max-width: 218px;
    }
      .eyebrow--small {
    font-size: 12px;
    letter-spacing: 3.25px;
    line-height: 14px;
  }
    .cat-buttons {
  gap: 12px;
  flex-wrap: wrap;
}
   .footer-grid {
  padding: 64px 24px;
}
    .footer-brand .logo {
  margin-bottom: 24px;
}
    
}
@media (max-width: 768px) {
    .footer-grid{ grid-template-columns:  1fr; gap: 50px;}
    
    .footer-bottom {
  display: block;
  text-align: center;
}
    .crafted{
        margin-top: 12px !important;
    }
}

@media (max-width: 480px) {
  .cat-btn {
    width: 100%;
          max-width: 330px;
    text-align: center;
    justify-content: center;
  }
}