

:root{
  --bg-deep:#0c0e13;
  --bg-panel:#14171f;
  --bg-panel-2:#191c26;
  --line:#2a2d38;
  --gold:#c6a15b;
  --gold-bright:#e6c98a;
  --burgundy:#7a2632;
  --cream:#f3eee2;
  --stone:#9a9788;
  --stone-dim:#6b6960;
}

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

html{
  scroll-behavior:smooth;
}

body{
  background:var(--bg-deep);
  color:var(--cream);
  font-family:'Jost',sans-serif;
  line-height:1.6;
}

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

img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

h1,h2,h3{
  font-family:'Cormorant Garamond',serif;
}

.wrap{
  max-width:1180px;
  margin:auto;
  padding:0 32px;
}

/* NAVBAR */

header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(12,14,19,.95);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--line);
}

.nav-row{
  height:88px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.logo{
  font-family:'Cormorant Garamond',serif;
  font-size:26px;
  font-weight:600;
  letter-spacing:2px;
}

.logo span{
  color:var(--gold);
}

nav ul{
  list-style:none;
  display:flex;
  gap:28px;
}

nav a{
  color:var(--stone);
  font-size:12px;
  letter-spacing:1px;
  text-transform:uppercase;
  transition:.3s;
}

nav a:hover,
nav a.active{
  color:var(--gold);
}

.btn{
  display:inline-block;
  padding:12px 24px;
  font-size:12px;
  letter-spacing:1px;
  text-transform:uppercase;
  transition:.3s;
}

.btn-gold{
  background:var(--gold);
  color:#1a1206;
  font-weight:600;
}

.btn-gold:hover{
  background:var(--gold-bright);
  transform:translateY(-2px);
}

/* HERO */

.page-hero{
  min-height:450px;
  display:flex;
  align-items:center;
  text-align:center;
  position:relative;
  overflow:hidden;
}

.page-hero::before{
  content:"";
  position:absolute;
  inset:0;

  background:
  linear-gradient(
    rgba(12,14,19,.55),
    rgba(12,14,19,.92)
  ),
  url("https://images.unsplash.com/photo-1519741497674-611481863552?q=80&w=1800&auto=format&fit=crop");

  background-size:cover;
  background-position:center;
}

.hero-content{
  position:relative;
  z-index:2;
  width:100%;
}

.eyebrow{
  color:var(--gold);
  font-size:12px;
  letter-spacing:3px;
  text-transform:uppercase;
  margin-bottom:18px;
}

.page-hero h1{
  font-size:64px;
  line-height:1;
  margin-bottom:18px;
}

.page-hero p{
  max-width:650px;
  margin:auto;
  color:var(--stone);
  font-size:16px;
}

/* SECTION */

section{
  padding:100px 0;
}

.section-head{
  text-align:center;
  max-width:700px;
  margin:0 auto 40px;
}

.section-head h2{
  font-size:46px;
  margin-bottom:14px;
}

.section-head p{
  color:var(--stone);
  font-size:15px;
}

/* FILTERS */

.filters{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:12px;
  margin-bottom:50px;
}

.filter-btn{
  padding:10px 20px;
  border:1px solid var(--line);
  background:transparent;
  color:var(--stone);
  font-family:'Jost',sans-serif;
  font-size:12px;
  letter-spacing:1px;
  text-transform:uppercase;
  cursor:pointer;
  transition:.3s;
}

.filter-btn:hover,
.filter-btn.active{
  border-color:var(--gold);
  background:var(--gold);
  color:#1a1206;
}

/* GALLERY */

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  grid-auto-rows:210px;
  gap:16px;
}

.gallery-item{
  position:relative;
  overflow:hidden;
  background:var(--bg-panel);
  border:1px solid var(--line);
  cursor:pointer;
}

.gallery-item.large{
  grid-column:span 2;
  grid-row:span 2;
}

.gallery-item.tall{
  grid-row:span 2;
}

.gallery-item img{
  transition:transform .6s ease;
}

.gallery-item:hover img{
  transform:scale(1.08);
}

.gallery-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    180deg,
    rgba(0,0,0,0) 40%,
    rgba(0,0,0,.8)
  );

  opacity:0;
  transition:.3s;
}

.gallery-item:hover .gallery-overlay{
  opacity:1;
}

.gallery-label{
  position:absolute;
  bottom:20px;
  left:20px;
  z-index:2;
  transform:translateY(15px);
  opacity:0;
  transition:.3s;
}

.gallery-item:hover .gallery-label{
  transform:translateY(0);
  opacity:1;
}

.gallery-label span{
  display:block;
  color:var(--gold);
  font-size:10px;
  letter-spacing:2px;
  text-transform:uppercase;
  margin-bottom:5px;
}

.gallery-label h3{
  font-size:25px;
}

/* STORY SECTION */

.story-section{
  background:var(--bg-panel);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.story-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
}

.story-image{
  height:500px;
  overflow:hidden;
}

.story-image img{
  transition:.6s;
}

.story-image:hover img{
  transform:scale(1.04);
}

.story-content h2{
  font-size:48px;
  line-height:1.1;
  margin-bottom:20px;
}

.story-content p{
  color:var(--stone);
  margin-bottom:18px;
  font-size:15px;
}

.story-stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  margin-top:30px;
  border-top:1px solid var(--line);
  padding-top:25px;
}

.story-stat h3{
  color:var(--gold);
  font-size:32px;
}

.story-stat p{
  font-size:12px;
  margin:0;
  color:var(--stone-dim);
}

/* CTA */

.cta{
  padding:90px 0;
}

.cta-box{
  text-align:center;
  padding:65px 30px;

  background:linear-gradient(
    135deg,
    var(--burgundy),
    #40111a
  );
}

.cta-box h2{
  font-size:48px;
  margin-bottom:14px;
}

.cta-box p{
  color:#e0c3c9;
  margin-bottom:28px;
}

/* FOOTER */

footer{
  background:var(--bg-panel);
  border-top:1px solid var(--line);
  padding:60px 0 25px;
}

.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  gap:50px;
  margin-bottom:45px;
}

.footer-col h4{
  color:var(--gold);
  font-size:12px;
  letter-spacing:1px;
  text-transform:uppercase;
  margin-bottom:18px;
}

.footer-col ul{
  list-style:none;
}

.footer-col li{
  margin-bottom:10px;
}

.footer-col a{
  color:var(--stone);
  font-size:14px;
}

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

.footer-bottom{
  border-top:1px solid var(--line);
  padding-top:22px;
  text-align:center;
  color:var(--stone-dim);
  font-size:12px;
}

/* RESPONSIVE */

@media(max-width:900px){

  nav{
    display:none;
  }

  .gallery-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .story-grid{
    grid-template-columns:1fr;
  }

  .footer-grid{
    grid-template-columns:1fr;
  }

}

@media(max-width:600px){

  .wrap{
    padding:0 18px;
  }

  section{
    padding:70px 0;
  }

  .page-hero h1{
    font-size:46px;
  }

  .section-head h2,
  .story-content h2,
  .cta-box h2{
    font-size:38px;
  }

  .gallery-grid{
    grid-template-columns:1fr;
    grid-auto-rows:260px;
  }

  .gallery-item.large,
  .gallery-item.tall{
    grid-column:auto;
    grid-row:auto;
  }

  .story-image{
    height:380px;
  }

  .story-stats{
    grid-template-columns:1fr;
    gap:20px;
  }

  .cta-box{
    padding:50px 20px;
  }

}


.brand-logo{
  height:75px;
  width:auto;
  max-width:220px;
  object-fit:contain;
  object-position:center;
  display:block;
  filter:drop-shadow(0 3px 10px rgba(0,0,0,.35));
  transition:transform .25s ease, filter .25s ease;
}
.logo:hover .brand-logo{
  transform:translateY(-1px);
  filter:drop-shadow(0 5px 14px rgba(201,164,92,.28));
}
.footer-brand .brand-logo{
  height:82px;
  max-width:260px;
}
@media(max-width:700px){
  .brand-logo{height:64px;max-width:210px;}
  .footer-brand .brand-logo{height:70px;max-width:225px;}
}
