:root {
  --ivory: #f5f0e7;
  --paper: #fffdf8;
  --navy: #0a284c;
  --navy-deep: #061b34;
  --gold: #d7a53a;
  --ink: #142033;
  --muted: #677181;
  --line: rgba(10, 40, 76, 0.15);
  --accent: #db5a43;
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: light;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.shell {
  width: min(1040px, calc(100vw - 48px));
  margin: 0 auto;
}

.site-header {
  border-bottom: 1px solid rgba(10, 40, 76, 0.1);
  background: var(--paper);
}

.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-lockup {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
}

.wordmark {
  color: var(--navy);
  font-size: 1.24rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
}

.brand-ring {
  position: relative;
}

.brand-ring::after {
  content: "";
  position: absolute;
  width: 0.32em;
  height: 0.32em;
  top: 52%;
  left: 50%;
  border-radius: 50%;
  background: var(--gold);
  transform: translate(-50%, -50%);
}

.brand-tagline {
  color: var(--muted);
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.back-link {
  border-bottom: 1px solid var(--accent);
  padding: 8px 0 5px;
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  padding: clamp(70px, 8vw, 120px) 0;
  background:
    radial-gradient(circle at 12% 8%, color-mix(in srgb, var(--accent) 16%, transparent), transparent 24%),
    linear-gradient(135deg, #fffdf8 0%, var(--ivory) 58%, #e9ddcb 100%);
}

.heading {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.kicker {
  margin: 0;
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.kicker span {
  margin-left: 8px;
  color: var(--accent);
}

h1 {
  margin: 18px 0 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 5.6rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.heading > p:last-child {
  max-width: 660px;
  margin: 24px auto 0;
  color: #556171;
  font-size: 1rem;
  line-height: 1.7;
}

.infographic-frame {
  width: min(900px, 100%);
  margin: 0 auto;
  border: 1px solid rgba(10, 40, 76, 0.13);
  border-top: 5px solid var(--accent);
  background: #fff;
  padding: clamp(10px, 1.5vw, 18px);
  box-shadow: 0 32px 90px rgba(6, 27, 52, 0.16);
}

.infographic-frame img {
  width: 100%;
  height: auto;
  user-select: none;
  -webkit-user-drag: none;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 38px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 22px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button-primary {
  border: 1px solid var(--navy);
  background: var(--navy);
  color: #fff;
}

.button-secondary {
  border: 1px solid rgba(10, 40, 76, 0.25);
  color: var(--navy);
}

.copy-note {
  max-width: 760px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.6;
  text-align: center;
}

.product-pagination {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.product-pagination a {
  min-height: 145px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 36px max(24px, calc((100vw - 1040px) / 2));
}

.product-pagination a + a {
  align-items: flex-end;
  border-left: 1px solid var(--line);
  text-align: right;
}

.product-pagination span {
  color: var(--muted);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-pagination strong {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 400;
}

footer {
  background: var(--navy-deep);
  padding: 58px 0 28px;
  color: #d9e2ec;
}

.footer-inner {
  display: grid;
  gap: 30px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand {
  color: #fff;
}

.footer-brand p {
  margin: 7px 0 0;
  color: #aab8c7;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-meta,
.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  font-size: 0.72rem;
}

.footer-meta a,
.legal-links a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding-bottom: 2px;
}

.legal-note {
  max-width: 780px;
  margin: 0;
  color: #aab8c7;
  font-size: 0.72rem;
  line-height: 1.65;
}

.footer-legal {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 22px;
}

.footer-legal p {
  margin: 0;
  color: #aab8c7;
  font-size: 0.7rem;
}

.legal-links {
  justify-content: flex-end;
}

@media (max-width: 680px) {
  .shell {
    width: min(100% - 28px, 1040px);
  }

  .header-inner {
    min-height: 74px;
  }

  .back-link {
    font-size: 0.56rem;
  }

  .hero {
    padding: 56px 0 72px;
  }

  .heading {
    margin-bottom: 34px;
  }

  h1 {
    font-size: clamp(2.7rem, 15vw, 4rem);
  }

  .heading > p:last-child {
    font-size: 0.92rem;
  }

  .actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .product-pagination {
    grid-template-columns: 1fr;
  }

  .product-pagination a {
    min-height: 115px;
    padding: 28px 20px;
  }

  .product-pagination a + a {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .footer-top,
  .footer-legal {
    display: grid;
    grid-template-columns: 1fr;
  }

  .legal-links {
    justify-content: flex-start;
  }
}
