/* ===== Fonts ===== */
@font-face {
  font-family: "Freight Text Pro";
  src: url("assets/fonts/FreightTextProMedium-Italic.otf") format("opentype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "TT Commons";
  src: url("assets/fonts/TTCommons-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "TT Commons";
  src: url("assets/fonts/TTCommons-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "TT Commons";
  src: url("assets/fonts/TTCommons-DemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Asaf";
  src: url("assets/fonts/Asaf-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

/* ===== Tokens ===== */
:root {
  --navy: #004e74;
  --pill-light: #a5d2e8;
  --blue: #479ccb;
  --cream: #f8f6f3;
  --white: #ffffff;

  --sans: "TT Commons", "Helvetica Neue", Arial, sans-serif;
  --serif: "Freight Text Pro", Georgia, serif;

  /* equal cream frame around the hero, on every side, responsive */
  --frame: clamp(22px, 2.6vw, 46px);
}

/* ===== Base ===== */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; max-width: 100%; overflow-x: hidden; }
body {
  background: var(--cream);
  color: var(--navy);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
.page {
  max-width: none;
  margin: 0 auto;
  padding: var(--frame);
  overflow-x: clip;
}

/* ===== Hero ===== */
.hero {
  position: relative;
}
.hero__img {
  display: block;
  width: 100%;
  height: calc(100vh - 2 * var(--frame));
  object-fit: cover;
  border-radius: 26px;
}

/* Logo (centered at top of hero) */
.hero-logo {
  position: absolute;
  top: 6%;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(104px, 8.5vw, 156px);
  height: auto;
  z-index: 3;
  filter: drop-shadow(0 1px 10px rgba(0, 0, 0, 0.16));
}

/* Badge (top-right circle) */
.badge {
  position: absolute;
  top: 40%;
  right: 20%;
  width: 124px;
  height: 124px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.18;
  letter-spacing: 0.2px;
}

/* Hero text block */
.hero__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  color: var(--white);
  padding: 0 20px;
}
.eyebrow {
  margin: 0;
  font-weight: 500;
  font-size: clamp(20px, 1.6vw, 32px);
  letter-spacing: 0.2px;
}
.headline {
  margin: 2px 0 0;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(60px, 6.9vw, 132px);
  line-height: 1.02;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.14);
}
.subhead {
  margin: clamp(16px, 1.8vw, 30px) 0 0;
  font-weight: 500;
  font-size: clamp(20px, 1.6vw, 32px);
}
.date-pill {
  display: inline-block;
  margin-top: clamp(14px, 1.3vw, 22px);
  background: var(--pill-light);
  color: var(--navy);
  font-weight: 600;
  font-size: clamp(18px, 1.45vw, 28px);
  padding: 16px 40px;
  border-radius: 999px;
}

/* ===== Info card ===== */
.info-card {
  position: relative;
  z-index: 2;
  margin: -150px auto 0;
  width: min(92%, 900px);
  background: var(--navy);
  color: var(--white);
  border-radius: 26px;
  padding: 40px 60px 44px;
}
.info-list {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}
.info-list li {
  font-weight: 500;
  font-size: 21px;
  padding: 20px 0;
}
.info-list li + li {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}
.heb {
  font-family: "Asaf", var(--sans);
  font-weight: 300;
  font-size: 1.05em;
}

/* ===== Closing ===== */
.closing {
  text-align: center;
  padding-top: 78px;
}
.coming-soon {
  margin: 0;
  color: var(--blue);
  font-weight: 600;
  font-size: 44px;
  letter-spacing: 0.2px;
}
.m-break { display: none; }
.email-pill {
  display: inline-block;
  margin-top: 60px;
  background: var(--blue);
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  font-size: 23px;
  line-height: 1.45;
  padding: 30px 66px;
  border-radius: 22px;
}
.email-pill strong { font-weight: 600; }

/* ===== Footer ===== */
.footer {
  text-align: center;
  color: var(--navy);
  font-weight: 400;
  font-size: 15px;
  padding: 70px 0 20px;
}

/* ===== Mobile ===== */
@media (max-width: 768px) {
  .page { padding: 22px 20px 18px; }

  .hero__img { height: auto; aspect-ratio: 74 / 100; border-radius: 22px; }

  .hero-logo { top: 5%; width: 88px; }

  .badge {
    top: 24%;
    right: 11%;
    width: 66px;
    height: 66px;
    font-size: 9px;
  }

  .hero__content { top: 40%; transform: translateX(-50%); padding: 0 16px; }
  .eyebrow { font-size: 6vw; }
  .headline { font-size: 11.5vw; line-height: 1.05; }
  .subhead { margin-top: 20px; font-size: 5.2vw; }
  .date-pill { font-size: 15px; padding: 12px 22px; margin-top: 14px; white-space: nowrap; }

  .info-card {
    width: 100%;
    margin-top: 20px;
    padding: 30px 26px 34px;
  }
  .info-list li { font-size: 19px; padding: 18px 4px; }

  .closing { padding-top: 60px; }
  .coming-soon { font-size: 34px; line-height: 1.25; }
  .m-break { display: inline; }
  .email-pill {
    margin-top: 44px;
    font-size: 20px;
    padding: 26px 40px;
  }

  .footer { padding: 60px 0 16px; font-size: 14px; }
}
