

: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,.96);
  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;
  text-transform:uppercase;
  letter-spacing:1px;
  transition:.3s;
}

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

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

.btn-outline{
  border:1px solid var(--gold);
  color:var(--gold);
}

.btn-outline:hover{
  background:rgba(198,161,91,.08);
}

/* HERO */

.page-hero{
  min-height:460px;
  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,.58),
    rgba(12,14,19,.94)
  ),
  url("https://images.unsplash.com/photo-1519167758481-83f550bb49b3?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:680px;
  margin:auto;
  color:var(--stone);
  font-size:16px;
}

/* GENERAL */

section{
  padding:100px 0;
}

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

.section-head h2{
  font-size:46px;
  line-height:1.1;
  margin-bottom:15px;
}

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

/* STORY */

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

.story-image{
  height:520px;
  overflow:hidden;
  border:1px solid var(--line);
}

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

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

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

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

/* VALUES */

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

.values-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1px;
  background:var(--line);
}

.value-card{
  background:var(--bg-panel-2);
  padding:45px 32px;
  min-height:270px;
  transition:.3s;
}

.value-card:hover{
  background:#1d202a;
}

.value-number{
  color:var(--gold);
  font-family:'Cormorant Garamond',serif;
  font-size:42px;
  margin-bottom:18px;
}

.value-card h3{
  font-size:29px;
  margin-bottom:12px;
}

.value-card p{
  color:var(--stone);
  font-size:14px;
}

/* STATS */

.stats-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
}

.stat-card{
  border:1px solid var(--line);
  background:var(--bg-panel);
  padding:38px 25px;
  text-align:center;
}

.stat-card h3{
  font-size:48px;
  color:var(--gold);
  line-height:1;
  margin-bottom:10px;
}

.stat-card p{
  color:var(--stone);
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:1px;
}

/* PROMISE */

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

.promise-box{
  max-width:900px;
  margin:auto;
  text-align:center;
}

.promise-box h2{
  font-size:52px;
  line-height:1.1;
  margin-bottom:20px;
}

.promise-box p{
  color:var(--stone);
  font-size:16px;
  margin-bottom:28px;
}

/* CTA */

.cta{
  padding:90px 0;
}

.cta-box{
  text-align:center;
  padding:70px 35px;

  background:linear-gradient(
    135deg,
    var(--burgundy),
    #3d1119
  );
}

.cta-box h2{
  font-size:50px;
  margin-bottom:15px;
}

.cta-box p{
  color:#e2c4ca;
  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;
  }

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

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

  .stats-grid{
    grid-template-columns:repeat(2,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,
  .promise-box h2,
  .cta-box h2{
    font-size:38px;
  }

  .story-image{
    height:400px;
  }

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

  .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;}
}

.since-badge{
  margin:0 0 22px;
  padding:13px 16px;
  border-left:3px solid var(--gold);
  background:rgba(201,164,92,.08);
  color:#f0e4cf;
  letter-spacing:.02em;
}
.since-badge strong{
  color:var(--gold);
  font-size:1.15em;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.venue-story{
  margin-top:80px;
}
.venue-story .venue-copy{
  max-width:850px;
}
