:root {
  --navy-950: #00162d;
  --navy-900: #002247;
  --navy-800: #06335f;
  --blue-600: #095dd9;
  --gold-500: #c9972b;
  --gold-400: #e1b453;
  --gold-100: #f5ead1;
  --ink: #0d1b2a;
  --muted: #536174;
  --line: #dbe2ec;
  --soft: #f6f8fb;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(0, 22, 45, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  background: var(--white);
}

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

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.top-bar {
  color: var(--white);
  background: var(--navy-950);
  font-size: 14px;
}

.top-bar__inner,
.top-bar__group,
.navbar__inner,
.button-row,
.footer__inner {
  display: flex;
  align-items: center;
}

.top-bar__inner {
  min-height: 38px;
  justify-content: space-between;
}

.top-bar__group {
  gap: 24px;
}

.top-bar__social {
  font-weight: 800;
  letter-spacing: 0;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(13, 27, 42, 0.08);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.navbar__inner {
  min-height: 104px;
  gap: 30px;
  justify-content: space-between;
}

.brand {
  width: 168px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-link {
  position: relative;
  padding: 12px 0;
}

.nav-link--active::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--blue-600);
  content: "";
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 0 24px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--gold {
  color: #07182c;
  background: var(--gold-500);
  box-shadow: 0 12px 28px rgba(201, 151, 43, 0.28);
}

.button--blue {
  color: var(--white);
  background: var(--blue-600);
  box-shadow: 0 12px 28px rgba(9, 93, 217, 0.22);
}

.button--ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.72);
}

.button--outline-dark {
  color: var(--navy-900);
  border-color: var(--navy-800);
}

.button--outline-dark:hover {
  background: var(--navy-950);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 72% 45%, rgba(225, 180, 83, 0.16), transparent 22%),
    linear-gradient(90deg, rgba(0, 22, 45, 0.98) 0%, rgba(0, 34, 71, 0.92) 42%, rgba(0, 22, 45, 0.6) 100%),
    var(--navy-950);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent, #000 36%, #000 100%);
  content: "";
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 660px;
  align-items: center;
  gap: 56px;
  grid-template-columns: minmax(0, 0.95fr) minmax(430px, 1.05fr);
}

.hero__content {
  max-width: 565px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold-400);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.feature-callout h2,
.about-preview h2,
.cta-section h2 {
  margin: 0;
  letter-spacing: 0;
}

.hero h1 {
  font-size: clamp(48px, 6vw, 78px);
  line-height: 0.98;
  text-transform: uppercase;
}

.hero h1 span {
  color: var(--gold-400);
}

.hero__text {
  max-width: 520px;
  margin: 28px 0 34px;
  font-size: 19px;
  line-height: 1.7;
}

.button-row {
  flex-wrap: wrap;
  gap: 16px;
}

.hero-visual {
  position: relative;
  min-height: 460px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(0, 22, 45, 0.2), rgba(0, 22, 45, 0.98)),
    radial-gradient(circle at 66% 52%, rgba(255, 255, 255, 0.2), transparent 11%),
    repeating-conic-gradient(from 12deg at 66% 52%, rgba(255, 255, 255, 0.18) 0deg 3deg, rgba(255, 255, 255, 0.02) 3deg 15deg),
    linear-gradient(135deg, #0b3865, #000f20);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
}

.hero-visual::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.075) 1px, transparent 1px);
  background-size: 58px 58px;
  content: "";
}

.hero-visual__ring {
  position: absolute;
  right: -72px;
  bottom: -92px;
  width: 440px;
  aspect-ratio: 1;
  border: 34px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  box-shadow: inset 0 0 0 34px rgba(9, 93, 217, 0.16), inset 0 0 0 92px rgba(255, 255, 255, 0.08);
}

.hero-visual__panel,
.hero-visual__card {
  position: absolute;
  z-index: 1;
  display: grid;
  gap: 6px;
  border: 1px solid rgba(225, 180, 83, 0.34);
  border-radius: 6px;
  background: rgba(0, 22, 45, 0.82);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.hero-visual__panel {
  top: 34px;
  left: 34px;
  padding: 20px 22px;
}

.hero-visual__card {
  right: 28px;
  bottom: 30px;
  padding: 18px 20px;
}

.hero-visual span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-visual strong {
  color: var(--gold-400);
  font-size: 26px;
  text-transform: uppercase;
}

.metrics {
  position: relative;
  z-index: 2;
  margin-top: -58px;
}

.metrics__grid {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  background: rgba(0, 22, 45, 0.94);
  box-shadow: var(--shadow);
  grid-template-columns: repeat(4, 1fr);
}

.metric-card {
  display: flex;
  min-height: 116px;
  align-items: center;
  gap: 18px;
  padding: 24px;
  color: var(--white);
}

.metric-card + .metric-card {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.metric-card__icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--gold-400);
  border: 2px solid var(--gold-500);
  border-radius: 50%;
  font-weight: 800;
}

.metric-card strong,
.metric-card span {
  display: block;
}

.metric-card strong {
  font-size: 24px;
  line-height: 1.1;
}

.metric-card span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.45;
}

.logo-strip {
  padding: 86px 0 64px;
  text-align: center;
  background: var(--white);
}

.logo-strip h2 {
  margin: 0 0 28px;
  color: var(--navy-900);
  font-size: 22px;
  text-transform: uppercase;
}

.logo-strip__grid {
  display: grid;
  align-items: center;
  gap: 14px;
  grid-template-columns: repeat(7, 1fr);
}

.logo-strip__grid span {
  display: grid;
  min-height: 54px;
  place-items: center;
  border-left: 1px solid var(--line);
  color: #263246;
  font-size: 15px;
  font-weight: 800;
}

.logo-strip__grid span:first-child {
  border-left: 0;
}

.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 12% 18%, rgba(9, 93, 217, 0.16), transparent 24%),
    linear-gradient(135deg, var(--navy-950), var(--navy-900));
}

.services,
.success-stories,
.feature-callout,
.about-preview,
.cta-section {
  padding: 80px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 38px;
}

.section-heading--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading h2,
.feature-callout h2,
.about-preview h2,
.cta-section h2 {
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.15;
}

.section-heading p:not(.eyebrow),
.feature-callout p,
.about-preview p,
.cta-section p {
  color: inherit;
  font-size: 17px;
  line-height: 1.75;
}

.services .section-heading p:not(.eyebrow),
.about-preview p,
.cta-section p {
  color: rgba(255, 255, 255, 0.78);
}

.services__grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(6, 1fr);
}

.service-card {
  min-height: 250px;
  padding: 26px 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.045);
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(225, 180, 83, 0.48);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.22);
}

.service-card--featured {
  background: rgba(201, 151, 43, 0.13);
  border-color: rgba(225, 180, 83, 0.5);
}

.service-card__icon {
  color: var(--gold-400);
  font-size: 34px;
}

.service-card h3 {
  min-height: 48px;
  margin: 22px 0 12px;
  font-size: 17px;
  line-height: 1.25;
  text-transform: uppercase;
}

.service-card p {
  min-height: 72px;
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.55;
}

.service-card a {
  color: var(--gold-400);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.feature-callout {
  background: var(--soft);
}

.feature-callout__grid,
.about-preview__grid,
.cta-section__grid {
  display: grid;
  align-items: center;
  gap: 54px;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
}

.feature-callout p {
  color: var(--muted);
  margin-bottom: 28px;
}

.check-panel {
  display: grid;
  gap: 14px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.check-panel span {
  position: relative;
  padding: 14px 16px 14px 46px;
  border-radius: 4px;
  background: #eef4fb;
  font-weight: 800;
  transition: transform 160ms ease, background-color 160ms ease;
}

.check-panel span:hover {
  transform: translateX(4px);
  background: var(--gold-100);
}

.check-panel span::before {
  position: absolute;
  left: 16px;
  color: var(--blue-600);
  content: "✓";
}

.success-stories {
  background: var(--white);
}

.engagements {
  padding: 86px 0;
  background:
    linear-gradient(180deg, #ffffff, var(--soft));
}

.engagements .section-heading {
  max-width: 760px;
}

.engagements .eyebrow {
  color: var(--blue-600);
}

.engagements .section-heading p:not(.eyebrow) {
  color: var(--muted);
}

.engagement-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, 1fr);
}

.engagement-card {
  display: grid;
  min-height: 420px;
  align-content: start;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(0, 22, 45, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.engagement-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 151, 43, 0.52);
  box-shadow: 0 28px 70px rgba(0, 22, 45, 0.16);
}

.engagement-card--featured {
  color: var(--white);
  border-color: rgba(225, 180, 83, 0.5);
  background: linear-gradient(145deg, var(--navy-950), var(--navy-800));
}

.engagement-card__label {
  width: fit-content;
  margin-bottom: 22px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--navy-900);
  background: var(--gold-100);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.engagement-card h3 {
  margin: 0 0 14px;
  color: inherit;
  font-size: 25px;
  line-height: 1.18;
}

.engagement-card p {
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.65;
}

.engagement-card--featured p {
  color: rgba(255, 255, 255, 0.78);
}

.engagement-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.engagement-card li {
  position: relative;
  padding-left: 28px;
  color: inherit;
  font-weight: 700;
}

.engagement-card li::before {
  position: absolute;
  left: 0;
  color: var(--gold-500);
  content: "✓";
}

.engagement-card a {
  align-self: end;
  width: fit-content;
  margin-top: auto;
  color: var(--gold-500);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.success-stories .eyebrow,
.feature-callout .eyebrow {
  color: var(--blue-600);
}

.story-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, 1fr);
}

.story-card {
  min-height: 292px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(0, 22, 45, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.story-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 54px rgba(0, 22, 45, 0.14);
}

.story-card h3 {
  margin: 0 0 18px;
  color: var(--navy-900);
  font-size: 22px;
}

.story-card p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.story-card strong {
  display: block;
  margin-bottom: 4px;
  color: var(--gold-500);
  font-size: 12px;
  text-transform: uppercase;
}

.about-preview__grid {
  grid-template-columns: 280px minmax(0, 1fr);
}

.portrait-card {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
}

.portrait-card__photo {
  display: grid;
  aspect-ratio: 1 / 1.1;
  place-items: center;
  color: var(--white);
  border-radius: 4px;
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.18), transparent 18%),
    linear-gradient(150deg, var(--navy-800), var(--navy-950));
  font-size: 54px;
  font-weight: 800;
}

.portrait-card p {
  margin: 14px 0 0;
  color: var(--white);
  font-weight: 800;
  text-align: center;
}

.credential-list {
  display: grid;
  gap: 10px;
  margin-top: 26px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.credential-list span {
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.05);
  font-size: 14px;
  font-weight: 700;
}

.cta-section {
  color: var(--white);
  background: var(--navy-950);
}

.contact-card {
  display: grid;
  gap: 16px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 7px;
}

.contact-form span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 4px;
  padding: 13px 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.contact-form select option {
  color: var(--ink);
}

.contact-card__details {
  display: grid;
  gap: 7px;
  margin-top: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-card a:not(.button),
.contact-card span {
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.55;
}

.contact-card .button {
  margin-top: 6px;
}

.footer {
  color: rgba(255, 255, 255, 0.74);
  background: #000f20;
  font-size: 13px;
}

.footer__inner {
  min-height: 58px;
  justify-content: space-between;
  gap: 20px;
}

.footer p {
  margin: 0;
}

.footer a + a {
  margin-left: 22px;
}

@media (max-width: 1060px) {
  .navbar__inner {
    min-height: 100px;
    gap: 18px;
  }

  .brand {
    width: 150px;
  }

  .nav-menu {
    gap: 16px;
    font-size: 12px;
  }

  .navbar__cta {
    min-height: 44px;
    padding: 0 16px;
    font-size: 11px;
  }

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

  .hero__inner {
    grid-template-columns: minmax(0, 0.9fr) minmax(350px, 1fr);
  }

  .logo-strip__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .logo-strip__grid span {
    border: 1px solid var(--line);
  }
}

@media (max-width: 820px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .top-bar__inner,
  .top-bar__group,
  .footer__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding: 10px 0;
  }

  .navbar__inner {
    min-height: 88px;
  }

  .nav-menu {
    display: none;
  }

  .brand {
    width: 142px;
  }

  .navbar__cta {
    min-height: 42px;
    padding: 0 14px;
    font-size: 11px;
  }

  .hero,
  .hero__inner {
    min-height: 620px;
  }

  .hero__inner {
    align-content: center;
    gap: 34px;
    grid-template-columns: 1fr;
    padding: 58px 0;
  }

  .hero-visual {
    min-height: 330px;
  }

  .hero__text {
    font-size: 17px;
  }

  .metrics {
    margin-top: 0;
  }

  .metrics__grid,
  .story-grid,
  .engagement-grid,
  .feature-callout__grid,
  .about-preview__grid,
  .cta-section__grid {
    grid-template-columns: 1fr;
  }

  .metric-card + .metric-card {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 0;
  }

  .services__grid,
  .logo-strip__grid,
  .credential-list {
    grid-template-columns: 1fr;
  }

  .service-card h3,
  .service-card p {
    min-height: auto;
  }

  .logo-strip {
    padding-top: 64px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 42px;
  }

  .button {
    width: 100%;
  }

  .metric-card {
    padding: 20px;
  }

  .services,
  .engagements,
  .success-stories,
  .feature-callout,
  .about-preview,
  .cta-section {
    padding: 58px 0;
  }
}

.guide-body {
  background: var(--white);
}

.brand-guide {
  color: var(--ink);
  background: var(--white);
}

.guide-hero {
  color: var(--white);
  background:
    radial-gradient(circle at 82% 18%, rgba(225, 180, 83, 0.16), transparent 28%),
    linear-gradient(135deg, var(--navy-950), var(--navy-900));
}

.guide-hero__inner {
  display: grid;
  min-height: 520px;
  align-items: center;
  gap: 58px;
  grid-template-columns: minmax(0, 1fr) 360px;
}

.guide-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(48px, 6vw, 86px);
  line-height: 0.98;
  letter-spacing: 0;
}

.guide-hero p:not(.eyebrow) {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
  line-height: 1.7;
}

.guide-logo-card {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.28);
}

.guide-section {
  padding: 78px 0;
}

.guide-section--soft {
  background: var(--soft);
}

.guide-section--dark {
  color: var(--white);
  background: var(--navy-950);
}

.guide-section__header {
  max-width: 720px;
  margin-bottom: 34px;
}

.guide-section__header .eyebrow,
.guide-section--soft .eyebrow {
  color: var(--blue-600);
}

.guide-section--dark .eyebrow {
  color: var(--gold-400);
}

.guide-section h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: 0;
}

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

.swatch-grid--primary {
  grid-template-columns: repeat(2, 1fr);
}

.swatch-card,
.mini-swatch,
.combo-card,
.merch-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 40px rgba(0, 22, 45, 0.08);
}

.swatch-card {
  display: grid;
  overflow: hidden;
  grid-template-columns: 40% 60%;
}

.swatch-card__color {
  min-height: 230px;
}

.swatch-card__color--outlined {
  border-right: 1px solid var(--line);
}

.swatch-card__content,
.mini-swatch,
.combo-card,
.merch-grid article {
  padding: 26px;
}

.swatch-card h3,
.mini-swatch h3,
.combo-card h3,
.merch-grid h3 {
  margin: 0 0 10px;
  color: var(--navy-900);
  font-size: 21px;
  line-height: 1.2;
}

.swatch-card strong,
.mini-swatch strong {
  display: block;
  margin-bottom: 18px;
  color: var(--gold-500);
  font-size: 16px;
}

.swatch-card p,
.mini-swatch p,
.combo-card p,
.merch-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.mini-swatch span {
  display: block;
  height: 82px;
  margin-bottom: 22px;
  border-radius: 6px;
}

.mini-swatch__outline {
  border: 1px solid var(--line);
}

.combo-grid,
.merch-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}

.combo-card--dark {
  color: var(--white);
  border-color: transparent;
  background: var(--navy-950);
}

.combo-card--navy {
  color: var(--white);
  border-color: transparent;
  background: var(--navy-900);
}

.combo-card--soft {
  background: var(--soft);
}

.combo-card--dark h3,
.combo-card--navy h3,
.combo-card--dark p,
.combo-card--navy p {
  color: var(--white);
}

.combo-card__sample {
  display: grid;
  gap: 8px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 3px solid var(--gold-500);
}

.combo-card__sample strong {
  color: inherit;
  font-size: 24px;
}

.combo-card__sample span {
  color: rgba(255, 255, 255, 0.76);
}

.combo-card__sample--light span {
  color: var(--muted);
}

.guide-rules {
  display: grid;
  gap: 48px;
  grid-template-columns: 0.8fr 1.2fr;
}

.rule-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, 1fr);
}

.rule-grid div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 700;
}

@media (max-width: 900px) {
  .guide-hero__inner,
  .guide-rules {
    grid-template-columns: 1fr;
  }

  .guide-logo-card {
    max-width: 360px;
  }

  .swatch-grid,
  .swatch-grid--primary,
  .combo-grid,
  .merch-grid,
  .rule-grid {
    grid-template-columns: 1fr;
  }

  .swatch-card {
    grid-template-columns: 1fr;
  }

  .swatch-card__color {
    min-height: 150px;
  }
}
