:root {
  --sand: #f2ddbb;
  --sand-soft: #f8ebd2;
  --navy: #061923;
  --navy-2: #0b2631;
  --cream: #ffe9b8;
  --teal: #078b7e;
  --teal-dark: #05685f;
  --red: #ea2e17;
  --gold: #e7b866;
  --ink: #10232b;
  --muted: #6e5c45;
  --line: rgba(6, 25, 35, 0.18);
  --shadow: 0 24px 60px rgba(6, 25, 35, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(6, 25, 35, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(6, 25, 35, 0.035) 1px, transparent 1px),
    var(--sand-soft);
  background-size: 34px 34px;
  color: var(--ink);
  font-family: Inter, "IBM Plex Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

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

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: var(--cream);
  background: rgba(6, 25, 35, 0.94);
  border-bottom: 4px solid var(--red);
}

.brand-pill {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--cream);
  white-space: nowrap;
}

nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 0.85rem;
  text-transform: uppercase;
  font-weight: 800;
}

main {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section-panel,
.chapter,
.statement,
.footer {
  margin: 28px 0;
}

.hero {
  min-height: calc(100vh - 104px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  align-items: center;
  gap: clamp(24px, 5vw, 72px);
  padding: clamp(28px, 5vw, 68px);
  background:
    radial-gradient(circle at 85% 18%, rgba(234, 46, 23, 0.14), transparent 30%),
    linear-gradient(135deg, #f8e8c7, var(--sand));
  border: 5px solid var(--navy);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.kicker {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 0.14em;
  margin-bottom: 18px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.6rem, 8.5vw, 7.8rem);
  line-height: 0.82;
  text-transform: uppercase;
  text-shadow: 0.05em 0.05em 0 var(--teal), 0.075em 0.075em 0 var(--navy);
}

h1 span {
  display: inline-block;
}

h1 em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.68em;
  min-height: 1.08em;
  padding: 0.05em 0.14em 0.02em;
  color: var(--cream);
  background: var(--red);
  border: 0.055em solid var(--navy);
  box-shadow: 0.08em 0.08em 0 var(--navy);
  font-style: normal;
  text-shadow: none;
}

h2 {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 5vw, 5.4rem);
  line-height: 0.94;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 1.05rem;
  text-transform: uppercase;
  font-weight: 900;
}

.lead {
  max-width: 580px;
  font-size: clamp(1.06rem, 2vw, 1.34rem);
  color: #3f3428;
}

.hero-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-tags span {
  padding: 9px 13px;
  color: var(--cream);
  background: var(--navy);
  border: 2px solid var(--navy);
  box-shadow: 4px 4px 0 var(--red);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-logo-wrap {
  position: relative;
}

.hero-logo-wrap::before {
  content: "";
  position: absolute;
  inset: 10% 5% 8%;
  background: var(--teal);
  border-radius: 50%;
  filter: blur(36px);
  opacity: 0.28;
}

.hero-logo {
  position: relative;
  width: min(560px, 100%);
  margin-inline: auto;
}

.chapter {
  padding: clamp(28px, 5vw, 56px);
  background: rgba(248, 235, 210, 0.8);
  border: 3px solid var(--navy);
  box-shadow: 10px 10px 0 rgba(6, 25, 35, 0.16);
}

.chapter-title {
  display: grid;
  gap: 10px;
  margin-bottom: 34px;
}

.grid {
  display: grid;
  gap: 18px;
}

.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.donts article {
  min-height: 220px;
  padding: 22px;
  background: var(--sand);
  border: 3px solid var(--navy);
  box-shadow: 7px 7px 0 var(--navy);
}

.card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 42px;
  color: var(--cream);
  background: var(--red);
  border: 3px solid var(--navy);
  font-weight: 900;
}

.statement {
  padding: clamp(30px, 5vw, 68px);
  color: var(--cream);
  background: var(--navy);
  border: 4px solid var(--red);
  box-shadow: var(--shadow);
}

.statement p {
  max-width: 900px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 6vw, 6.5rem);
  line-height: 0.94;
  text-transform: uppercase;
}

.logo-system {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1fr);
  gap: 32px;
  align-items: stretch;
}

.logo-stage {
  display: grid;
  place-items: center;
  min-height: 520px;
  padding: 24px;
  background:
    linear-gradient(45deg, rgba(6, 25, 35, 0.08) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(6, 25, 35, 0.08) 25%, transparent 25%),
    var(--sand);
  background-size: 28px 28px;
  border: 3px solid var(--navy);
}

.logo-stage img {
  max-height: 480px;
  object-fit: contain;
}

.rules {
  padding: 30px;
  background: var(--navy);
  color: var(--sand-soft);
  border: 3px solid var(--navy);
}

.rules h3 {
  color: var(--cream);
  font-size: 1.4rem;
}

dl {
  margin: 28px 0 0;
  display: grid;
  gap: 18px;
}

dt {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

dd {
  margin: 4px 0 0;
}

.swatches {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.swatch {
  min-height: 292px;
  display: flex;
  flex-direction: column;
  padding: 14px;
  background: #fff6e4;
  border: 3px solid var(--navy);
}

.swatch span {
  display: block;
  min-height: 118px;
  margin-bottom: auto;
  border: 3px solid var(--navy);
}

.swatch h3 {
  margin: 16px 0 4px;
  font-size: 0.95rem;
}

.swatch p {
  margin-bottom: 8px;
  font-weight: 900;
}

.swatch small {
  color: var(--muted);
}

.sand span { background: var(--sand); }
.navy span { background: var(--navy); }
.cream span { background: var(--cream); }
.teal span { background: var(--teal); }
.red span { background: var(--red); }
.gold span { background: var(--gold); }

.type-specimen {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}

.type-card {
  padding: 26px;
  background: var(--sand);
  border: 3px solid var(--navy);
}

.label {
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
}

.big-type {
  margin: 24px 0;
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.1rem, 9vw, 8rem);
  line-height: 0.8;
  text-transform: uppercase;
  text-shadow: 0.06em 0.06em 0 var(--teal), 0.1em 0.1em 0 var(--navy);
}

.asset-row {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.asset-row img {
  border: 3px solid var(--navy);
  box-shadow: 8px 8px 0 var(--red);
}

ul {
  padding-left: 20px;
  font-weight: 700;
}

li + li {
  margin-top: 10px;
}

.voice-grid,
.applications {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.voice-grid article {
  padding: 24px;
  background: var(--sand);
  border: 3px solid var(--navy);
}

.voice-grid p {
  padding: 13px 0;
  margin: 0;
  border-top: 1px solid var(--line);
  font-weight: 800;
}

.applications {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.app-card {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: 24px;
  overflow: hidden;
  background: var(--navy);
  border: 3px solid var(--navy);
}

.app-card > span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 8px 10px;
  color: var(--cream);
  background: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.shirt {
  background:
    radial-gradient(circle at 50% 26%, rgba(242, 221, 187, 0.08), transparent 30%),
    var(--navy);
}

.shirt img {
  width: 82%;
  margin-inline: auto;
}

.mini-slide {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  color: var(--cream);
  background: linear-gradient(135deg, var(--navy), var(--teal-dark));
  border: 3px solid var(--cream);
  box-shadow: 8px 8px 0 var(--red);
}

.mini-slide p,
.mini-slide small {
  font-weight: 900;
  text-transform: uppercase;
}

.mini-slide h3 {
  max-width: 260px;
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 0.92;
}

.social {
  align-items: center;
  text-align: center;
  background: var(--sand);
}

.social p {
  margin-bottom: 20px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.social img {
  width: 68%;
}

.donts article {
  min-height: 180px;
}

.no {
  color: var(--red);
  font-size: 4rem;
  line-height: 0.9;
  font-weight: 900;
}

.footer {
  min-height: 240px;
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 34px;
  color: var(--cream);
  background: var(--navy);
  border: 4px solid var(--navy);
}

.footer img {
  width: 150px;
}

.footer p {
  margin-bottom: 0;
}

@media (max-width: 980px) {
  .hero,
  .logo-system,
  .asset-row,
  .type-specimen {
    grid-template-columns: 1fr;
  }

  .three,
  .four,
  .swatches,
  .applications {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    min-height: auto;
  }
}

@media (max-width: 680px) {
  .topbar {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    justify-content: flex-start;
  }

  main {
    width: min(100% - 20px, 1180px);
  }

  .hero,
  .chapter,
  .statement,
  .footer {
    margin: 14px 0;
  }

  .hero,
  .chapter {
    padding: 22px;
  }

  .three,
  .four,
  .swatches,
  .voice-grid,
  .applications {
    grid-template-columns: 1fr;
  }

  .logo-stage {
    min-height: 380px;
  }

  .app-card {
    min-height: 360px;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
