:root {
  --blue: #123b67;
  --blue-deep: #082744;
  --blue-soft: #e8f0f7;
  --gold: #ffc928;
  --gold-deep: #e7a900;
  --cream: #fbf8ef;
  --ink: #13212e;
  --muted: #5d6b76;
  --white: #fff;
  --radius: 22px;
  --shadow: 0 24px 70px rgba(8, 39, 68, 0.18);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "DM Sans", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--blue-deep);
  border-radius: 8px;
  transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 50%;
  width: min(1180px, calc(100% - 48px));
  min-height: 98px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.26);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
}

.brand-mark {
  width: 48px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--blue-deep);
  background: var(--gold);
  border-radius: 13px 13px 19px 19px;
  font-family: "Roboto Slab", serif;
  font-size: 1.45rem;
  font-weight: 800;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.16);
}

.brand-copy { display: grid; line-height: 1.05; }
.brand-copy strong { font-family: "Roboto Slab", serif; font-size: 1.18rem; }
.brand-copy span { margin-top: 5px; font-size: 0.73rem; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.78; }

.header-link {
  padding: 10px 0;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid var(--gold);
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--blue-deep);
}

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

.hero-image {
  background-color: #244c65;
  background-image: url("assets/pack13-hero.png");
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 28, 50, 0.96) 0%, rgba(5, 28, 50, 0.8) 42%, rgba(5, 28, 50, 0.18) 73%),
    linear-gradient(0deg, rgba(5, 28, 50, 0.46), transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 48px));
  margin: 95px auto 50px;
}

.eyebrow,
.kicker {
  margin: 0 0 20px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow { display: flex; align-items: center; gap: 10px; color: var(--gold); }
.eyebrow span { width: 28px; height: 2px; background: currentColor; }

h1, h2, h3 { font-family: "Roboto Slab", Georgia, serif; }

h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(3.7rem, 8.1vw, 7rem);
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.hero-lede {
  max-width: 590px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.06rem, 2vw, 1.27rem);
  line-height: 1.7;
}

.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 38px; }

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  border-radius: 10px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button:hover { transform: translateY(-2px); }
.button:focus-visible, .header-link:focus-visible, .text-link:focus-visible, .detail-card a:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }
.button-primary { color: var(--blue-deep); background: var(--gold); box-shadow: 0 12px 30px rgba(255, 201, 40, 0.2); }
.button-primary:hover { background: #ffd659; box-shadow: 0 16px 34px rgba(255, 201, 40, 0.28); }
.text-link { font-weight: 700; text-decoration: none; }

.hero-location {
  position: absolute;
  z-index: 2;
  right: max(24px, calc((100% - 1180px) / 2));
  bottom: 0;
  min-width: 290px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 26px;
  color: var(--blue-deep);
  background: var(--gold);
  border-radius: 16px 16px 0 0;
}

.hero-location svg { width: 28px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.hero-location span { display: grid; font-size: 0.88rem; }
.hero-location strong { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; }

.welcome,
.details,
.cta,
footer {
  width: min(1120px, calc(100% - 48px));
  margin-inline: auto;
}

.welcome {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(50px, 9vw, 125px);
  padding: 118px 0 110px;
}

.section-heading h2,
.details h2,
.cta h2 {
  margin: 0;
  font-size: clamp(2.35rem, 5vw, 4rem);
  line-height: 1.07;
  letter-spacing: -0.035em;
}

.welcome-copy { padding-top: 35px; }
.welcome-copy > p:first-child, .details-intro > p:last-child, .cta > div > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.welcome-note {
  margin: 28px 0 0;
  padding: 17px 20px;
  color: var(--blue);
  background: var(--blue-soft);
  border-left: 4px solid var(--gold-deep);
  border-radius: 0 8px 8px 0;
  font-weight: 700;
}

.details {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  padding: 84px;
  color: var(--white);
  background: var(--blue);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.details::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  right: -160px;
  bottom: -170px;
  border: 44px solid rgba(255, 255, 255, 0.055);
  border-radius: 50%;
}

.kicker-light { color: var(--gold); }
.details-intro > p:last-child { max-width: 560px; margin-top: 25px; color: rgba(255, 255, 255, 0.72); }

.detail-card {
  position: relative;
  z-index: 1;
  align-self: center;
  padding: 34px;
  color: var(--ink);
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 18px 46px rgba(4, 24, 42, 0.25);
}

.detail-icon { width: 48px; height: 48px; display: grid; place-items: center; color: var(--blue); background: var(--gold); border-radius: 12px; }
.detail-icon svg { width: 27px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
.card-label { margin: 24px 0 8px; color: var(--muted); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.detail-card h3 { margin: 0; color: var(--blue); font-size: 1.45rem; }
.detail-card > p:not(.card-label) { margin: 7px 0 22px; color: var(--muted); }
.detail-card a { color: var(--blue); font-weight: 800; text-decoration: none; }

.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 118px 0;
}

.cta > div { max-width: 700px; }
.cta h2 { font-size: clamp(2.2rem, 4vw, 3.3rem); }
.cta > div > p:last-child { margin-top: 20px; }
.button-dark { flex: 0 0 auto; color: var(--white); background: var(--blue-deep); box-shadow: 0 12px 26px rgba(8, 39, 68, 0.18); }
.button-dark:hover { background: var(--blue); }

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 0 42px;
  border-top: 1px solid #d9d9cf;
}

.brand-footer { color: var(--blue-deep); }
.brand-footer .brand-mark { width: 42px; height: 45px; font-size: 1.1rem; }
footer > p { color: var(--muted); font-size: 0.88rem; }

@media (max-width: 800px) {
  .site-header { width: min(100% - 32px, 1180px); min-height: 82px; }
  .brand-mark { width: 42px; height: 46px; }
  .header-link { font-size: 0.82rem; }
  .hero { min-height: 720px; align-items: end; }
  .hero-image { background-position: 64% center; }
  .hero-shade { background: linear-gradient(0deg, rgba(5, 28, 50, 0.98) 3%, rgba(5, 28, 50, 0.88) 54%, rgba(5, 28, 50, 0.22) 100%); }
  .hero-content { width: calc(100% - 32px); margin: 150px auto 116px; }
  h1 { font-size: clamp(3.3rem, 15vw, 5.3rem); }
  .hero-lede { font-size: 1rem; line-height: 1.65; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .hero-location { right: 16px; min-width: auto; padding: 17px 19px; }
  .welcome, .details, .cta, footer { width: calc(100% - 32px); }
  .welcome { grid-template-columns: 1fr; gap: 0; padding: 80px 0; }
  .welcome-copy { padding-top: 30px; }
  .details { grid-template-columns: 1fr; gap: 42px; padding: 56px 28px 28px; }
  .detail-card { padding: 28px; }
  .cta { align-items: flex-start; flex-direction: column; gap: 34px; padding: 82px 0; }
  footer { align-items: flex-start; flex-direction: column; gap: 25px; }
  footer > p { margin: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button { transition: none; }
}
