
:root{
  --black:#050403;
  --black2:#0b0704;
  --ink:#15100b;
  --cream:#f6efe3;
  --paper:#fffaf0;
  --muted:#c9bdab;
  --gold:#c99136;
  --gold2:#f4d27e;
  --line:rgba(201,145,54,.34);
  --white:#ffffff;
  --shadow:0 22px 70px rgba(0,0,0,.5);
  --max:1180px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--black);
  color:var(--cream);
  font-family:Inter,Arial,sans-serif;
  line-height:1.6;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
p{margin:0 0 18px}
h1,h2,h3{font-family:Georgia,"Times New Roman",serif;line-height:1.05;margin:0 0 18px}
h1{font-size:clamp(3.2rem,8vw,7.8rem);letter-spacing:-.06em}
h2{font-size:clamp(2.1rem,4.2vw,4rem);letter-spacing:-.035em}
h3{font-size:1.45rem}
.container{width:min(var(--max),calc(100% - 42px));margin:auto}
.eyebrow{
  color:var(--gold2);
  text-transform:uppercase;
  letter-spacing:.18em;
  font-weight:800;
  font-size:.78rem;
  margin-bottom:12px;
}
.gold{color:var(--gold2)}
.muted{color:var(--muted)}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:48px;
  padding:13px 22px;
  border:1px solid var(--gold);
  border-radius:2px;
  background:linear-gradient(135deg,#d59a3a,#9d661f);
  color:#080604;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.04em;
  font-size:.82rem;
  box-shadow:0 10px 26px rgba(201,145,54,.22);
}
.btn.secondary{
  background:transparent;
  color:var(--gold2);
  box-shadow:none;
}
.btn.dark{
  background:#000;
  color:var(--gold2);
}
.note{font-size:.9rem;color:var(--muted)}

.site-header{
  position:sticky;
  top:0;
  z-index:40;
  background:rgba(0,0,0,.92);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line);
}
.nav{
  height:94px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.brand img{
  width:330px;
  max-height:86px;
  object-fit:contain;
}
.nav-links{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:20px;
  font-size:.79rem;
  text-transform:uppercase;
  font-weight:900;
  letter-spacing:.055em;
  white-space:nowrap;
}
.nav-links a{opacity:.9}
.nav-links a:hover,.nav-links a.active{color:var(--gold2)}
.nav-actions{display:flex;align-items:center;gap:12px}
.menu-toggle{display:none;background:transparent;color:var(--gold2);border:1px solid var(--line);padding:10px 12px;text-transform:uppercase;font-weight:900}

.hero{
  min-height:calc(100vh - 94px);
  display:grid;
  align-items:center;
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 70% 20%,rgba(201,145,54,.22),transparent 32%),
    linear-gradient(90deg,#050403 0%,#090604 52%,#160d06 100%);
}
.hero .container{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:52px;
  align-items:center;
  padding:70px 0;
}
.hero-copy{position:relative;z-index:2}
.hero-copy p.lead{
  font-size:clamp(1.1rem,2vw,1.45rem);
  color:#eee1ce;
  max-width:680px;
}
.hero-media{
  border:1px solid var(--line);
  padding:12px;
  background:#000;
  box-shadow:var(--shadow);
}
.hero-media img{
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap;margin-top:28px}
.stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin-top:32px;
  max-width:650px;
}
.stat{
  border:1px solid rgba(201,145,54,.27);
  padding:18px;
  background:rgba(0,0,0,.35);
}
.stat strong{display:block;color:var(--gold2);font-size:1.3rem;font-family:Georgia,serif}
.stat span{display:block;color:var(--muted);font-size:.82rem;text-transform:uppercase;letter-spacing:.08em;font-weight:800}

.section{padding:92px 0}
.section.compact{padding:60px 0}
.section.paper{
  background:var(--paper);
  color:#16100b;
}
.section.goldwash{
  background:
    linear-gradient(180deg,rgba(201,145,54,.08),rgba(201,145,54,.02)),
    var(--black2);
}
.section-head{
  max-width:760px;
  margin-bottom:34px;
}
.section-head.center{text-align:center;margin-left:auto;margin-right:auto}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:28px;align-items:center}
.card{
  border:1px solid var(--line);
  background:linear-gradient(180deg,rgba(255,255,255,.035),rgba(255,255,255,.01));
  padding:26px;
}
.card h3{color:var(--gold2)}
.card p{color:var(--muted)}
.paper .card{background:#fff;border-color:#eadac0;box-shadow:0 18px 42px rgba(92,63,21,.08)}
.paper .card p{color:#5f5141}
.paper .card h3{color:#4b2e0d}

.feature-card{
  display:grid;
  grid-template-columns:1fr;
  border:1px solid var(--line);
  background:#080604;
  overflow:hidden;
}
.feature-card img{aspect-ratio:16/10;object-fit:cover;width:100%}
.feature-card .body{padding:24px}
.feature-card .body p{color:var(--muted)}
.feature-card h3{color:var(--gold2)}

.product-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}
.product-card{
  border:1px solid var(--line);
  background:#070504;
  overflow:hidden;
}
.product-card .product-img{
  background:#000;
  height:310px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:16px;
}
.product-card .product-img img{
  max-height:100%;
  width:auto;
  object-fit:contain;
}
.product-card .body{padding:20px}
.product-card h3{font-size:1.28rem;color:var(--gold2);margin-bottom:6px}
.product-meta{
  display:flex;
  flex-wrap:wrap;
  gap:7px;
  margin:12px 0 0;
}
.product-meta span{
  border:1px solid rgba(201,145,54,.32);
  color:var(--muted);
  padding:4px 8px;
  font-size:.72rem;
  text-transform:uppercase;
  letter-spacing:.07em;
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:14px;
}
.gallery-small{
  grid-template-columns:repeat(6,1fr);
}
.gallery-item{
  cursor:pointer;
  border:1px solid rgba(201,145,54,.28);
  background:#000;
  padding:0;
  color:var(--cream);
  position:relative;
  overflow:hidden;
  min-height:0;
}
.gallery-item img{
  width:100%;
  aspect-ratio:1/1;
  object-fit:cover;
  transition:transform .25s ease, opacity .25s ease;
}
.gallery-item:hover img{transform:scale(1.04);opacity:.86}
.gallery-item span{
  position:absolute;
  left:8px;
  right:8px;
  bottom:8px;
  background:rgba(0,0,0,.68);
  border:1px solid rgba(201,145,54,.24);
  color:#fff4de;
  padding:6px 8px;
  font-size:.66rem;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-weight:900;
}
.gallery-subhead{
  margin:44px 0 16px;
  color:var(--gold2);
  text-transform:uppercase;
  letter-spacing:.08em;
  font-family:Inter,Arial,sans-serif;
  font-size:1rem;
}
.lightbox{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.92);
  z-index:100;
  display:none;
  align-items:center;
  justify-content:center;
  padding:26px;
}
.lightbox.open{display:flex}
.lightbox-inner{
  max-width:min(1100px,96vw);
  max-height:90vh;
  position:relative;
}
.lightbox img{
  max-width:100%;
  max-height:82vh;
  object-fit:contain;
  border:1px solid var(--line);
  background:#000;
  box-shadow:0 30px 100px rgba(0,0,0,.75);
}
.lightbox-caption{
  margin-top:10px;
  color:var(--cream);
  text-align:center;
  font-size:.9rem;
}
.lightbox-close{
  position:absolute;
  top:-18px;
  right:-18px;
  width:42px;
  height:42px;
  border-radius:50%;
  border:1px solid var(--gold);
  background:#000;
  color:var(--gold2);
  font-size:1.4rem;
  cursor:pointer;
}

.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:42px;
  align-items:center;
}
.split img{
  border:1px solid var(--line);
  background:#000;
  box-shadow:var(--shadow);
}
.info-list{
  display:grid;
  gap:12px;
  margin-top:18px;
}
.info-list div{
  padding:16px;
  border:1px solid rgba(201,145,54,.28);
  background:rgba(0,0,0,.25);
}
.info-list strong{color:var(--gold2);display:block}
.form{
  display:grid;
  gap:14px;
}
input,textarea,select{
  width:100%;
  background:#0b0805;
  border:1px solid rgba(201,145,54,.35);
  color:var(--cream);
  padding:14px;
  font:inherit;
}
textarea{min-height:140px}
.footer{
  padding:48px 0;
  border-top:1px solid var(--line);
  background:#000;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.2fr repeat(3,1fr);
  gap:28px;
}
.footer img{width:220px}
.footer h4{color:var(--gold2);text-transform:uppercase;letter-spacing:.08em}
.footer p,.footer a{color:var(--muted);font-size:.94rem}
.age-gate{
  position:fixed;
  inset:0;
  z-index:200;
  background:rgba(0,0,0,.96);
  display:none;
  align-items:center;
  justify-content:center;
  padding:24px;
}
.age-gate.show{display:flex}
.age-box{
  max-width:560px;
  border:1px solid var(--line);
  background:#090604;
  padding:38px;
  text-align:center;
  box-shadow:var(--shadow);
}
.age-box img{width:140px;margin:0 auto 18px}
.age-buttons{display:flex;gap:12px;justify-content:center;flex-wrap:wrap;margin-top:22px}

@media(max-width:1120px){
  .brand img{width:260px}
  .brand{min-width:260px}
  .nav-links{gap:12px;font-size:.72rem}
  .product-grid{grid-template-columns:repeat(3,1fr)}
  .gallery-grid,.gallery-small{grid-template-columns:repeat(4,1fr)}
}
@media(max-width:880px){
  .nav{height:auto;padding:14px 0;align-items:flex-start}
  .brand img{width:230px}
  .menu-toggle{display:block}
  .nav-links{
    position:absolute;
    top:78px;
    left:0;
    right:0;
    background:#000;
    border-bottom:1px solid var(--line);
    padding:20px;
    display:none;
    flex-direction:column;
    align-items:flex-start;
  }
  .nav-links.open{display:flex}
  .nav-actions .btn{display:none}
  .hero .container,.split,.grid-2{grid-template-columns:1fr}
  .grid-3{grid-template-columns:1fr}
  .product-grid{grid-template-columns:repeat(2,1fr)}
  .footer-grid{grid-template-columns:1fr}
}
@media(max-width:560px){
  .container{width:min(100% - 28px,var(--max))}
  .section{padding:66px 0}
  .stats{grid-template-columns:1fr}
  .product-grid{grid-template-columns:1fr}
  .gallery-grid,.gallery-small{grid-template-columns:repeat(2,1fr)}
  .gallery-item span{font-size:.6rem}
}


/* FINAL HEADER LOGO SIZE FIX */
.site-header .nav{
  min-height:118px;
  height:auto;
  padding:14px 0;
}

.site-header .brand{
  min-width:390px;
  flex:0 0 390px;
}

.site-header .brand img{
  width:390px;
  max-height:104px;
  object-fit:contain;
}

.site-header .nav-links{
  gap:15px;
  font-size:.74rem;
}

.site-header .nav-actions .btn{
  white-space:nowrap;
  padding:12px 18px;
  font-size:.76rem;
}

.hero-banner-section{
  background:#000;
  border-bottom:1px solid var(--line);
}

.hero-banner-wrap{
  width:100%;
  max-width:1920px;
  margin:0 auto;
  background:#000;
}

.hero-banner-wrap img{
  width:100%;
  height:auto;
  display:block;
}

@media(max-width:1280px){
  .site-header .brand{
    min-width:320px;
    flex-basis:320px;
  }
  .site-header .brand img{
    width:320px;
    max-height:92px;
  }
  .site-header .nav-links{
    gap:11px;
    font-size:.70rem;
  }
}

@media(max-width:880px){
  .site-header .nav{
    min-height:92px;
  }
  .site-header .brand{
    min-width:260px;
    flex-basis:auto;
  }
  .site-header .brand img{
    width:260px;
    max-height:78px;
  }
}


/* REFINEMENT PASS — launch polish */
body.age-gate-open,
body.lightbox-open{
  overflow:hidden;
}

.site-header{
  box-shadow:0 12px 38px rgba(0,0,0,.45);
}

.site-header .nav{
  min-height:106px;
  padding:10px 0;
}

.site-header .brand{
  min-width:360px;
  flex:0 0 360px;
}

.site-header .brand img{
  width:360px;
  max-height:96px;
}

.site-header .nav-links{
  gap:14px;
  font-size:.73rem;
}

.hero-banner-section{
  position:relative;
  overflow:hidden;
}

.hero-banner-section::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:linear-gradient(180deg,rgba(0,0,0,0) 64%,rgba(0,0,0,.42));
}

.hero-banner-wrap img{
  max-height:760px;
  object-fit:cover;
  object-position:center;
}

.refined-intro{
  border-top:1px solid rgba(201,145,54,.18);
  border-bottom:1px solid rgba(201,145,54,.18);
  background:
    radial-gradient(circle at 50% 0%,rgba(201,145,54,.13),transparent 42%),
    #050403;
}

.refined-intro .container{
  max-width:980px;
  text-align:center;
}

.refined-intro h1{
  font-size:clamp(2.8rem,6vw,6.4rem);
}

.refined-intro .lead{
  font-size:clamp(1.05rem,1.7vw,1.35rem);
  color:#eadcc8;
  max-width:820px;
  margin:0 auto 24px;
}

.gallery-grid.gallery-small{
  gap:12px;
}

.gallery-small .gallery-item{
  border-color:rgba(201,145,54,.24);
  box-shadow:0 12px 28px rgba(0,0,0,.22);
}

.gallery-small .gallery-item img{
  aspect-ratio:1/1;
}

.gallery-small .gallery-item span{
  opacity:.96;
  font-size:.61rem;
  letter-spacing:.075em;
}

.product-card{
  transition:transform .18s ease, border-color .18s ease;
}

.product-card:hover{
  transform:translateY(-3px);
  border-color:rgba(244,210,126,.58);
}

.product-card .product-img{
  height:330px;
  background:#000;
}

.card, .feature-card, .product-card{
  border-radius:0;
}

.section-head.center{
  max-width:860px;
}

.age-box{
  border-width:2px;
}

@media(max-width:1280px){
  .site-header .brand{
    min-width:310px;
    flex-basis:310px;
  }
  .site-header .brand img{
    width:310px;
    max-height:86px;
  }
  .site-header .nav-links{
    gap:10px;
    font-size:.69rem;
  }
}

@media(max-width:880px){
  .site-header .nav{
    min-height:86px;
  }
  .site-header .brand{
    min-width:245px;
  }
  .site-header .brand img{
    width:245px;
    max-height:72px;
  }
  .nav-links{
    top:86px;
  }
}

@media(max-width:560px){
  .refined-intro h1{
    font-size:2.65rem;
  }
  .gallery-grid.gallery-small{
    gap:10px;
  }
}


/* AWARD WINNERS REFINEMENT */
.award-showcase{background:linear-gradient(180deg,rgba(201,145,54,.08),rgba(201,145,54,.02)),#050403;border-top:1px solid rgba(201,145,54,.12);border-bottom:1px solid rgba(201,145,54,.12)}
.award-showcase-page{padding-top:20px}
.award-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}
.award-card{position:relative;border:1px solid rgba(201,145,54,.38);background:#070504;overflow:hidden;box-shadow:0 18px 42px rgba(0,0,0,.26)}
.award-card .product-img{height:340px;background:#000;display:flex;align-items:center;justify-content:center;padding:16px}
.award-card .product-img img{max-height:100%;width:auto;object-fit:contain}
.award-card .body{padding:20px}
.award-card h3{font-size:1.3rem;color:var(--gold2);margin-bottom:6px}
.award-badge,.winner-chip{position:absolute;top:12px;left:12px;z-index:2;background:linear-gradient(135deg,#f2d57f,#c99136);color:#120d08;border:1px solid rgba(255,255,255,.35);padding:6px 10px;font-size:.68rem;font-weight:900;letter-spacing:.09em;text-transform:uppercase;box-shadow:0 10px 20px rgba(0,0,0,.25)}
.winner-card{position:relative;border-color:rgba(244,210,126,.55)}
.winner-card .product-img{height:325px}
.winner-card .body{padding-top:24px}
@media(max-width:1120px){.award-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:560px){.award-grid{grid-template-columns:1fr}.award-card .product-img{height:300px}.winner-card .product-img{height:300px}}


/* LAUNCH UPDATE — real medals, map, forms, privacy */
.award-badge{
  display:none;
}

.award-medal{
  position:absolute;
  top:12px;
  left:12px;
  z-index:3;
  display:flex;
  align-items:center;
  gap:8px;
  background:rgba(0,0,0,.62);
  border:1px solid rgba(244,210,126,.45);
  padding:7px 10px 7px 7px;
  box-shadow:0 12px 26px rgba(0,0,0,.35);
}

.award-medal img{
  width:54px;
  height:54px;
  object-fit:contain;
  filter:drop-shadow(0 6px 10px rgba(0,0,0,.45));
}

.award-medal span{
  color:var(--gold2);
  font-size:.66rem;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
  line-height:1.1;
}

.winner-chip{
  display:flex;
  align-items:center;
  gap:6px;
  background:rgba(0,0,0,.68);
  color:var(--gold2);
}

.winner-chip img{
  width:34px;
  height:34px;
  object-fit:contain;
}

.map-wrap{
  border:1px solid var(--line);
  background:#000;
  box-shadow:var(--shadow);
  overflow:hidden;
}

.map-wrap iframe{
  width:100%;
  min-height:420px;
  display:block;
  border:0;
  filter:saturate(.9) contrast(1.05);
}

.legal-content{
  max-width:920px;
  margin:0 auto;
}

.legal-content h2{
  margin-top:42px;
  font-size:2rem;
}

.legal-content p,
.legal-content li{
  color:var(--muted);
}

.legal-content ul{
  padding-left:1.25rem;
}

.form-status{
  padding:16px;
  border:1px solid rgba(201,145,54,.35);
  background:rgba(0,0,0,.28);
  color:var(--muted);
  margin-top:14px;
}

.hp-field{
  display:none !important;
}

.client-note{
  border-left:4px solid var(--gold);
  padding:16px 18px;
  background:rgba(201,145,54,.08);
  color:var(--muted);
  margin-top:18px;
}

.footer .footer-small-links{
  margin-top:12px;
}

.footer .footer-small-links a{
  display:inline-block;
  margin-right:14px;
  color:var(--gold2);
  font-size:.86rem;
}

@media(max-width:560px){
  .award-medal img{width:44px;height:44px}
  .award-medal span{font-size:.58rem}
  .map-wrap iframe{min-height:320px}
}


/* LIVE FIX — round seal header logo */
.site-header .brand.brand-seal{
  min-width:150px;
  flex:0 0 150px;
}

.site-header .brand.brand-seal img{
  width:118px;
  height:118px;
  max-height:118px;
  object-fit:contain;
}

.site-header .nav{
  min-height:136px;
}

@media(max-width:1280px){
  .site-header .brand.brand-seal{
    min-width:128px;
    flex-basis:128px;
  }
  .site-header .brand.brand-seal img{
    width:104px;
    height:104px;
    max-height:104px;
  }
}

@media(max-width:880px){
  .site-header .brand.brand-seal{
    min-width:92px;
    flex-basis:auto;
  }
  .site-header .brand.brand-seal img{
    width:82px;
    height:82px;
    max-height:82px;
  }
  .site-header .nav{
    min-height:104px;
  }
}

/* LIVE FIX — real award medals */
.award-badge{
  display:none !important;
}

.award-medal{
  position:absolute;
  top:12px;
  left:12px;
  z-index:4;
  display:flex;
  align-items:center;
  gap:8px;
  background:rgba(0,0,0,.68);
  border:1px solid rgba(244,210,126,.48);
  padding:7px 10px 7px 7px;
  box-shadow:0 12px 26px rgba(0,0,0,.4);
}

.award-medal img{
  width:56px;
  height:56px;
  object-fit:contain;
  filter:drop-shadow(0 6px 10px rgba(0,0,0,.45));
}

.award-medal span{
  color:var(--gold2);
  font-size:.66rem;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
  line-height:1.1;
}

.winner-chip{
  display:flex;
  align-items:center;
  gap:6px;
  background:rgba(0,0,0,.72);
  color:var(--gold2);
}

.winner-chip img{
  width:34px;
  height:34px;
  object-fit:contain;
}

.winner-chip span{
  display:inline-block;
}


/* SPIRITS LINEUP FIX */
.award-card,
.product-card{
  position:relative;
}

.award-card .product-img,
.product-card .product-img{
  background:#000;
}

.award-medal{
  position:absolute;
  top:12px;
  left:12px;
  z-index:4;
  display:flex;
  align-items:center;
  gap:8px;
  background:rgba(0,0,0,.68);
  border:1px solid rgba(244,210,126,.48);
  padding:7px 10px 7px 7px;
  box-shadow:0 12px 26px rgba(0,0,0,.4);
}

.award-medal img{
  width:56px;
  height:56px;
  object-fit:contain;
  filter:drop-shadow(0 6px 10px rgba(0,0,0,.45));
}

.award-medal span{
  color:var(--gold2);
  font-size:.66rem;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
  line-height:1.1;
}

.winner-chip{
  position:absolute;
  top:12px;
  left:12px;
  z-index:4;
  display:flex;
  align-items:center;
  gap:6px;
  background:rgba(0,0,0,.72);
  border:1px solid rgba(244,210,126,.48);
  color:var(--gold2);
  padding:6px 9px 6px 6px;
  box-shadow:0 10px 22px rgba(0,0,0,.35);
}

.winner-chip img{
  width:34px;
  height:34px;
  object-fit:contain;
}

.winner-chip span{
  font-size:.62rem;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}

/* Keep seal sharp and not oversized */
.site-header .brand.brand-seal{
  min-width:120px;
  flex:0 0 120px;
}

.site-header .brand.brand-seal img{
  width:92px;
  height:92px;
  max-height:92px;
  object-fit:contain;
}

.site-header .nav{
  min-height:112px;
}

@media(max-width:1280px){
  .site-header .brand.brand-seal{
    min-width:110px;
    flex-basis:110px;
  }
  .site-header .brand.brand-seal img{
    width:86px;
    height:86px;
    max-height:86px;
  }
}

@media(max-width:880px){
  .site-header .brand.brand-seal{
    min-width:82px;
    flex-basis:auto;
  }
  .site-header .brand.brand-seal img{
    width:68px;
    height:68px;
    max-height:68px;
  }
  .site-header .nav{
    min-height:90px;
  }
}


/* OFFICIAL SPIRITS PRODUCT LINEUP */
.official-product-grid{
  align-items:stretch;
}

.official-product-card .body{
  display:flex;
  flex-direction:column;
  gap:7px;
}

.product-category{
  margin:0 0 2px;
  color:var(--gold2);
  text-transform:uppercase;
  letter-spacing:.11em;
  font-weight:900;
  font-size:.68rem;
}

.official-line{
  margin:0;
  color:#f3e1bf;
  font-weight:800;
  font-size:.9rem;
  line-height:1.35;
}

.paper .official-line{
  color:#3a2712;
}

.award-card .official-line{
  margin-bottom:8px;
}

.official-product-card .product-img,
.award-card .product-img{
  background:#000;
  overflow:hidden;
}

.official-product-card .product-img img,
.award-card .product-img img{
  object-fit:contain;
}

.official-product-card .muted,
.award-card .muted{
  margin-bottom:6px;
}

/* No client brands in Spirits page. Sundial belongs only under Custom Spirits. */


/* GROUPED OFFICIAL SPIRITS PAGE */
.product-type-section{
  padding-top:58px;
  padding-bottom:58px;
  border-top:1px solid rgba(201,145,54,.14);
}

.product-type-section:nth-of-type(even){
  background:rgba(201,145,54,.025);
}

.official-product-grid{
  align-items:stretch;
}

.official-product-card{
  position:relative;
}

.official-product-card .body{
  display:flex;
  flex-direction:column;
  gap:7px;
}

.product-category{
  margin:0 0 2px;
  color:var(--gold2);
  text-transform:uppercase;
  letter-spacing:.11em;
  font-weight:900;
  font-size:.68rem;
}

.official-line{
  margin:0;
  color:#f3e1bf;
  font-weight:800;
  font-size:.9rem;
  line-height:1.35;
}

.official-product-card .muted{
  margin-bottom:6px;
}

.legacy-card{
  opacity:.88;
}

.legacy-card .product-img img{
  filter:saturate(.65);
}

.legacy-card::after{
  content:"Not Currently in Production";
  position:absolute;
  right:12px;
  top:12px;
  background:rgba(0,0,0,.74);
  border:1px solid rgba(244,210,126,.44);
  color:var(--gold2);
  padding:6px 10px;
  font-size:.58rem;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-weight:900;
}
