:root{
  --burgundy:#61112b;
  --gold:#c28d39;
  --vanilla:#efe5d2;
  --bordeaux-noir:#31181b;
}
*{box-sizing:border-box;}
html,body{margin:0;padding:0;}
body{
  background:var(--vanilla);
  color:var(--burgundy);
  font-family:'Avenir','Helvetica Neue',Arial,sans-serif;
  min-height:100vh;
  display:flex;
  flex-direction:column;
  align-items:center;
}
a{color:inherit;text-decoration:none;}
a:hover{color:var(--gold);}

@font-face{font-family:'The Seasons';src:url('../fonts/the-seasons-regular.ttf') format('truetype');font-weight:400;font-style:normal;}
@font-face{font-family:'The Seasons';src:url('../fonts/the-seasons-light.ttf') format('truetype');font-weight:300;font-style:normal;}
@font-face{font-family:'The Seasons';src:url('../fonts/the-seasons-bold.ttf') format('truetype');font-weight:700;font-style:normal;}
@font-face{font-family:'The Seasons';src:url('../fonts/the-seasons-italic.ttf') format('truetype');font-weight:400;font-style:italic;}
@font-face{font-family:'Avenir';src:url('../fonts/avenir-regular.ttf') format('truetype');font-weight:400;font-style:normal;}

.hero{
  width:100%;
  max-width:760px;
  padding:88px 28px 0;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
}
.logo{width:200px;color:var(--burgundy);}
.logo svg{width:100%;height:auto;display:block;fill:currentColor;}

.eyebrow{display:flex;align-items:center;gap:16px;margin-top:44px;}
.eyebrow .line{width:28px;height:1px;background:var(--gold);}
.eyebrow span{font-size:12px;letter-spacing:3px;text-transform:uppercase;color:var(--gold);}

.kicker{font-family:'The Seasons',serif;font-style:italic;font-weight:400;font-size:22px;margin-top:28px;}
h1{font-family:'The Seasons',serif;font-weight:700;font-size:clamp(64px,12vw,120px);line-height:0.92;margin:2px 0 0;}

.subcopy{font-size:17px;line-height:1.6;color:rgba(97,17,43,0.6);max-width:460px;margin:32px 0 0;}

.date-block{margin-top:52px;}
.date-block .date{font-family:'The Seasons',serif;font-weight:400;font-size:30px;}
.date-block .venue{font-size:11px;letter-spacing:2.5px;text-transform:uppercase;color:var(--gold);margin-top:8px;}

.countdown-bar{width:100%;background:var(--burgundy);margin-top:64px;padding:44px 24px;display:flex;justify-content:center;}
.countdown-bar .groups{display:flex;align-items:flex-start;gap:clamp(18px,4vw,48px);}
.countdown-bar .unit{display:flex;flex-direction:column;align-items:center;}
.countdown-bar .unit .num{font-family:'The Seasons',serif;font-weight:700;font-size:clamp(36px,6vw,56px);color:var(--gold);line-height:1;}
.countdown-bar .unit .label{font-size:10px;letter-spacing:2px;text-transform:uppercase;color:rgba(239,229,210,0.75);margin-top:10px;}
.countdown-bar .sep{font-family:'The Seasons',serif;font-weight:700;font-size:clamp(36px,6vw,56px);color:rgba(239,229,210,0.75);line-height:1;opacity:0.5;}

.social-row{display:flex;align-items:center;gap:22px;margin-top:52px;}
.social-row a{font-size:12px;letter-spacing:2px;text-transform:uppercase;color:var(--burgundy);}
.social-row .dot{width:3px;height:3px;border-radius:50%;background:var(--gold);}

.footer{font-size:11px;letter-spacing:1px;color:rgba(97,17,43,0.6);margin:56px 0 36px;}
