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

:root {
  --blue-deep: #0a1f44;
  --blue-mid: #1a3a6e;
  --blue-light: #2d5fa6;
  --blue-pale: #e8eef7;
  --white: #ffffff;
  --off-white: #f7f9fc;
  --gold: #c9a84c;
  --text-dark: #0a1f44;
  --text-mid: #3d5a8a;
  --text-light: #7a92b5;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

/* HEADER */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  padding: 28px 40px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo {
  height: 72px;
  width: auto;
  filter: brightness(0) invert(1);
}

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-image-wrap {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 0% 30%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 31, 68, 0.25) 0%,
    rgba(10, 31, 68, 0.10) 40%,
    rgba(10, 31, 68, 0.75) 80%,
    rgba(10, 31, 68, 0.92) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 80px 80px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero-label {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 96px);
  font-weight: 700;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 20px;
}

.hero-dates {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.05em;
  margin-bottom: 30px;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gold);
  color: var(--blue-deep);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-decoration: none;
  padding: 18px 36px;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s;
}

.btn-cta:hover {
  background: #e0be6a;
  transform: translateY(-2px);
}

.btn-arrow {
  font-size: 18px;
  transition: transform 0.2s;
}

.btn-cta:hover .btn-arrow {
  transform: translateX(4px);
}

/* INFO SECTION */
.info-section {
  background: var(--off-white);
  padding: 100px 0;
}

.intro-block {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 72px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  color: var(--blue-deep);
  margin-bottom: 20px;
}

.intro-text {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-mid);
  font-weight: 300;
}

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

.info-card {
  background: var(--white);
  border: 1px solid rgba(10, 31, 68, 0.08);
  border-radius: 4px;
  padding: 40px 28px;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}

.info-card:hover {
  box-shadow: 0 12px 40px rgba(10, 31, 68, 0.10);
  transform: translateY(-4px);
}

.info-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.info-card h3 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.info-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-mid);
  font-weight: 300;
}

/* CTA SECTION */
.cta-section {
  background: var(--blue-deep);
  padding: 100px 0;
}

.cta-inner {
  text-align: center;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-sub {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto 40px;
}

.btn-cta--dark {
  background: var(--gold);
}

/* FOOTER */
.site-footer {
  background: #060f22;
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.footer-logo {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.6;
}

.footer-text {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  font-weight: 300;
}

/* MOBILE */
@media (max-width: 768px) {
  .site-header {
    padding: 20px 24px;
  }

  .logo {
    height: 52px;
  }

  .hero {
    height: 100svh;
    min-height: 560px;
    align-items: flex-end;
  }

  .hero-content {
    padding: 0 24px 60px;
  }

  .hero-img {
    object-position: 50% 30%;
  }

  .hero-label {
    font-size: 13px;
  }

  .hero-dates {
    font-size: 22px;
    margin-bottom: 32px;
  }

  .btn-cta {
    font-size: 16px;
    padding: 16px 28px;
    width: 100%;
    justify-content: center;
  }

  .info-section {
    padding: 72px 0;
  }

  .container {
    padding: 0 24px;
  }

  .intro-block {
    margin-bottom: 48px;
  }

  .intro-text {
    font-size: 16px;
  }

  .info-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .info-card {
    padding: 28px 20px;
  }

  .info-icon {
    font-size: 26px;
  }

  .cta-section {
    padding: 72px 0;
  }

  .cta-sub {
    font-size: 16px;
  }
  
  .site-footer {
    text-align: center;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}
