:root {
  --cc-navy: #071c27;
  --cc-navy-soft: #0d2b38;
  --cc-gold: #c9a55e;
  --cc-gold-light: #e3c889;
  --cc-paper: #f4f1ea;
  --cc-ink: #10232a;
  --cc-white: #fffdf8;
  --cc-serif: "Bodoni 72", "Bodoni MT", Didot, Georgia, serif;
  --cc-sans: "Avenir Next", "Gill Sans", "Trebuchet MS", sans-serif;
}

body.cc-reference-home,
body.cc-reference-nation {
  margin: 0;
  color: var(--cc-ink);
  background: var(--cc-paper);
  font-family: var(--cc-sans);
}

body.cc-reference-home main,
body.cc-reference-nation main {
  display: block;
  padding: 0;
  overflow: hidden;
}

.cc-header {
  position: absolute;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 225px 1fr auto;
  align-items: center;
  gap: 24px;
  width: min(1180px, calc(100% - 56px));
  min-height: 96px;
  margin: 0 auto;
  color: var(--cc-white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.cc-brand {
  display: inline-flex;
  flex-direction: column;
  width: max-content;
  color: inherit;
  text-decoration: none;
  text-transform: uppercase;
}

.cc-brand strong {
  font-family: var(--cc-serif);
  font-size: 42px;
  font-weight: 500;
  line-height: 0.84;
  letter-spacing: -0.035em;
}

.cc-brand small {
  margin-top: 8px;
  font-family: var(--cc-sans);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.19em;
}

.cc-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(13px, 1.8vw, 27px);
}

.cc-menu a,
.cc-languages a {
  color: inherit;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.cc-menu a {
  position: relative;
  white-space: nowrap;
}

.cc-menu a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--cc-gold);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.cc-menu a:hover::after,
.cc-menu a:focus-visible::after {
  transform: scaleX(1);
}

.cc-header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cc-languages {
  display: flex;
  gap: 8px;
}

.cc-languages a {
  opacity: 0.55;
}

.cc-languages a[aria-current="true"] {
  color: var(--cc-gold-light);
  opacity: 1;
}

.cc-join {
  padding: 13px 16px;
  color: var(--cc-white);
  border: 1px solid rgba(201, 165, 94, 0.85);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.cc-menu-toggle {
  display: none;
}

.cc-home-hero,
.cc-nation-hero {
  position: relative;
  min-height: 660px;
  color: var(--cc-white);
  isolation: isolate;
}

.cc-home-hero > img,
.cc-nation-hero > img,
.cc-network-cta > img {
  position: absolute;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cc-home-hero > img {
  object-position: center 46%;
}

.cc-nation-hero > img {
  object-position: center 45%;
}

.cc-hero-shade,
.cc-cta-shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 23, 30, 0.91) 0%, rgba(3, 25, 31, 0.58) 47%, rgba(3, 20, 27, 0.09) 77%),
    linear-gradient(0deg, rgba(3, 21, 28, 0.48), transparent 55%);
}

.cc-home-hero-copy,
.cc-nation-hero-copy {
  width: min(1180px, calc(100% - 56px));
  margin: 0 auto;
}

.cc-home-hero-copy {
  padding-top: 180px;
}

.cc-kicker,
.cc-nation-eyebrow,
.cc-network-cta > div > p:first-child {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cc-home-hero h1 {
  max-width: 620px;
  margin: 0;
  font-family: var(--cc-serif);
  font-size: clamp(68px, 7.5vw, 108px);
  font-weight: 500;
  line-height: 0.82;
  letter-spacing: -0.05em;
}

.cc-gold-rule {
  display: block;
  width: 62px;
  height: 3px;
  margin: 26px 0;
  background: var(--cc-gold);
}

.cc-hero-intro {
  max-width: 510px;
  margin: 0 0 28px;
  font-size: 16px;
  line-height: 1.55;
}

.cc-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 26px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
}

.cc-button--gold {
  color: #13242a;
  background: var(--cc-gold-light);
  border: 1px solid var(--cc-gold-light);
}

.cc-button--navy {
  color: var(--cc-white);
  background: var(--cc-navy);
  border: 1px solid var(--cc-navy);
}

.cc-value-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 42px max(28px, calc((100% - 1180px) / 2));
  color: var(--cc-white);
  background: var(--cc-navy);
}

.cc-value {
  padding: 8px 34px;
  text-align: center;
  border-right: 1px solid rgba(201, 165, 94, 0.38);
}

.cc-value:last-child {
  border-right: 0;
}

.cc-icon,
.cc-card-icon {
  display: inline-grid;
  place-items: center;
  color: var(--cc-gold);
}

.cc-icon svg {
  width: 43px;
  height: 43px;
}

.cc-icon svg,
.cc-card-icon svg,
.cc-footer svg,
.cc-medal svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cc-value h3 {
  margin: 15px 0 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cc-value p {
  max-width: 235px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  line-height: 1.55;
}

.cc-tailored,
.cc-nation-audiences {
  padding: 62px max(28px, calc((100% - 1180px) / 2)) 76px;
  background: var(--cc-paper);
}

.cc-section-heading {
  max-width: 740px;
  margin: 0 auto 38px;
  text-align: center;
}

.cc-section-heading > p:first-child {
  margin: 0 0 6px;
  color: var(--cc-gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.cc-section-heading h2 {
  margin: 0;
  font-family: var(--cc-serif);
  font-size: clamp(42px, 5vw, 65px);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.cc-section-heading .cc-gold-rule {
  margin: 18px auto;
}

.cc-section-heading > p:last-child {
  max-width: 650px;
  margin: 0 auto;
  color: #647176;
  font-size: 14px;
  line-height: 1.6;
}

.cc-audience-grid,
.cc-nation-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.cc-audience-card,
.cc-nation-card {
  position: relative;
  padding: 0 25px 28px;
  text-align: center;
  background: var(--cc-white);
  border: 1px solid rgba(7, 28, 39, 0.09);
  box-shadow: 0 16px 35px rgba(7, 28, 39, 0.08);
}

.cc-card-image {
  height: 205px;
  margin: 0 -25px;
  overflow: hidden;
}

.cc-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cc-card-icon {
  width: 64px;
  height: 64px;
  margin-top: -32px;
  color: var(--cc-white);
  background: var(--cc-navy);
  border: 2px solid var(--cc-white);
  border-radius: 50%;
}

.cc-card-icon svg {
  width: 30px;
  height: 30px;
}

.cc-audience-card h3,
.cc-nation-card h3 {
  margin: 14px 0 10px;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cc-audience-card p {
  min-height: 72px;
  margin: 0 0 22px;
  color: #526268;
  font-size: 13px;
  line-height: 1.55;
}

.cc-audience-card > a {
  display: inline-flex;
  min-height: 42px;
  padding: 0 22px;
  align-items: center;
  color: #9a793d;
  border: 1px solid rgba(201, 165, 94, 0.75);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.cc-network-cta {
  position: relative;
  min-height: 390px;
  display: grid;
  place-items: center;
  padding: 48px 24px;
  color: var(--cc-white);
  text-align: center;
  isolation: isolate;
}

.cc-network-cta > img {
  object-position: center 54%;
}

.cc-network-cta .cc-cta-shade {
  background: rgba(5, 28, 36, 0.72);
}

.cc-network-cta > div {
  max-width: 850px;
}

.cc-network-cta h2 {
  margin: 0;
  font-family: var(--cc-serif);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 500;
  letter-spacing: -0.03em;
}

.cc-network-cta .cc-gold-rule {
  margin: 18px auto;
}

.cc-network-cta > div > p:nth-of-type(2) {
  max-width: 620px;
  margin: 0 auto 25px;
  line-height: 1.6;
}

.cc-nation-hero {
  min-height: 680px;
}

.cc-nation-hero .cc-hero-shade {
  background:
    linear-gradient(90deg, rgba(4, 25, 34, 0.94) 0%, rgba(4, 25, 34, 0.75) 39%, rgba(4, 25, 34, 0.07) 72%),
    linear-gradient(0deg, rgba(3, 21, 28, 0.42), transparent 50%);
}

.cc-nation-hero-copy {
  padding-top: 150px;
}

.cc-nation-eyebrow {
  color: var(--cc-gold-light);
  font-size: 13px;
}

.cc-nation-hero h1 {
  margin: 0;
  font-size: clamp(66px, 8vw, 116px);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.cc-nation-hero h2 {
  max-width: 560px;
  margin: 0 0 17px;
  color: var(--cc-gold-light);
  font-size: clamp(25px, 3vw, 38px);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.cc-nation-hero-copy > p:last-child {
  max-width: 490px;
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
}

.cc-medal {
  position: absolute;
  right: max(42px, calc((100% - 1180px) / 2));
  bottom: 38px;
  display: grid;
  place-items: center;
  width: 155px;
  height: 155px;
  color: var(--cc-gold-light);
  background: rgba(7, 28, 39, 0.91);
  border: 4px solid var(--cc-gold);
  border-radius: 50%;
  text-align: center;
}

.cc-medal svg {
  width: 38px;
  height: 38px;
}

.cc-medal strong {
  font-family: var(--cc-serif);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.15;
  text-transform: uppercase;
}

.cc-band-title {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
  margin-bottom: 34px;
}

.cc-band-title span {
  height: 1px;
  background: var(--cc-gold);
}

.cc-band-title h2 {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-align: center;
  text-transform: uppercase;
}

.cc-nation-card {
  padding-bottom: 16px;
}

.cc-nation-card-subtitle {
  margin: -4px 0 14px;
  color: #53636a;
  font-size: 13px;
}

.cc-nation-card ul {
  min-height: 112px;
  margin: 0 0 16px;
  padding: 0;
  text-align: left;
  list-style: none;
}

.cc-nation-card li {
  position: relative;
  margin: 7px 0;
  padding-left: 22px;
  color: #33474e;
  font-size: 12px;
  line-height: 1.35;
}

.cc-nation-card li::before,
.cc-unique li::before {
  content: "✓";
  position: absolute;
  left: 0;
  display: grid;
  place-items: center;
  width: 14px;
  height: 14px;
  color: var(--cc-white);
  background: var(--cc-gold);
  border-radius: 50%;
  font-size: 9px;
}

.cc-nation-card > strong {
  display: block;
  margin: 0 -12px;
  padding: 10px 8px;
  color: var(--cc-white);
  background: var(--cc-navy);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cc-nation-details {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 42px;
  padding: 14px max(28px, calc((100% - 1180px) / 2)) 62px;
  background: var(--cc-paper);
}

.cc-nation-details article > h2 {
  margin: 0 0 20px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cc-unique ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.cc-unique li {
  position: relative;
  margin: 11px 0;
  padding-left: 23px;
  font-size: 12px;
  line-height: 1.4;
}

.cc-map {
  text-align: center;
}

.cc-map svg {
  width: 100%;
  max-height: 245px;
}

.cc-map svg > path {
  fill: var(--cc-navy);
  stroke: none;
}

.cc-map-links path {
  fill: none;
  stroke: var(--cc-gold);
  stroke-width: 2;
  stroke-dasharray: 5 5;
}

.cc-map-points circle {
  fill: var(--cc-gold);
  stroke: var(--cc-paper);
  stroke-width: 3;
}

.cc-map h2 {
  color: #aa8643;
  font-family: var(--cc-serif);
  font-size: 25px !important;
  font-weight: 500 !important;
  line-height: 1.1;
}

.cc-journey-step {
  position: relative;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 13px;
  padding-bottom: 19px;
}

.cc-journey-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 38px;
  bottom: 2px;
  left: 22px;
  width: 1px;
  background: var(--cc-gold);
}

.cc-journey-step > span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--cc-white);
  background: var(--cc-navy);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
}

.cc-journey-step h3 {
  margin: 0 0 3px;
  font-size: 13px;
  text-transform: uppercase;
}

.cc-journey-step p {
  margin: 0;
  color: #58686d;
  font-size: 12px;
  line-height: 1.4;
}

.cc-nation-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 28px max(28px, calc((100% - 1180px) / 2));
  color: var(--cc-white);
  background: linear-gradient(105deg, #b18b46, #d5b66f 58%, #b58d47);
}

.cc-nation-cta h2 {
  margin: 0 0 3px;
  font-family: var(--cc-serif);
  font-size: 32px;
  font-weight: 500;
}

.cc-nation-cta p {
  margin: 0;
  font-size: 14px;
}

.cc-footer {
  color: var(--cc-white);
  background: var(--cc-navy);
}

.cc-footer-values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 980px;
  margin: 0 auto;
  padding: 28px;
}

.cc-footer-values div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 45px;
  border-right: 1px solid rgba(201, 165, 94, 0.4);
  text-transform: uppercase;
}

.cc-footer-values div:last-child {
  border-right: 0;
}

.cc-footer-values svg {
  width: 29px;
  height: 29px;
  color: var(--cc-gold);
}

.cc-footer-values strong {
  font-size: 11px;
  letter-spacing: 0.1em;
}

.cc-footer-brand {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 30px;
  padding: 25px max(28px, calc((100% - 1180px) / 2)) 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.cc-footer-brand p,
.cc-footer-brand > span {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cc-footer-brand > span {
  text-align: right;
}

@media (max-width: 1080px) {
  .cc-header {
    grid-template-columns: 190px 1fr auto;
    width: min(100% - 34px, 1180px);
  }

  .cc-menu {
    gap: 13px;
  }

  .cc-menu a {
    font-size: 8px;
  }

  .cc-join {
    display: none;
  }
}

@media (max-width: 820px) {
  .cc-header {
    grid-template-columns: 1fr auto;
    min-height: 78px;
  }

  .cc-brand strong {
    font-size: 35px;
  }

  .cc-menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: inherit;
    background: transparent;
    border: 0;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .cc-menu-toggle i {
    width: 25px;
    height: 1px;
    background: currentColor;
  }

  .cc-menu {
    position: absolute;
    top: 78px;
    right: -17px;
    left: -17px;
    display: none;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(7, 28, 39, 0.98);
  }

  .cc-header.is-open .cc-menu {
    display: flex;
  }

  .cc-menu a {
    font-size: 11px;
  }

  .cc-header-actions {
    display: none;
  }

  .cc-home-hero,
  .cc-nation-hero {
    min-height: 650px;
  }

  .cc-home-hero-copy,
  .cc-nation-hero-copy {
    width: calc(100% - 34px);
  }

  .cc-home-hero-copy {
    padding-top: 155px;
  }

  .cc-home-hero h1 {
    font-size: clamp(55px, 16vw, 78px);
  }

  .cc-value-strip {
    grid-template-columns: repeat(2, 1fr);
    padding: 28px 18px;
  }

  .cc-value {
    padding: 20px 14px;
  }

  .cc-value:nth-child(2) {
    border-right: 0;
  }

  .cc-value:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(201, 165, 94, 0.38);
  }

  .cc-audience-grid,
  .cc-nation-card-grid,
  .cc-nation-details {
    grid-template-columns: 1fr;
  }

  .cc-audience-grid,
  .cc-nation-card-grid {
    max-width: 520px;
    margin: 0 auto;
  }

  .cc-nation-hero-copy {
    padding-top: 135px;
  }

  .cc-nation-hero h1 {
    font-size: 58px;
  }

  .cc-nation-hero h2 {
    font-size: 24px;
  }

  .cc-medal {
    right: 18px;
    bottom: 20px;
    width: 110px;
    height: 110px;
  }

  .cc-medal svg {
    width: 27px;
    height: 27px;
  }

  .cc-medal strong {
    font-size: 10px;
  }

  .cc-band-title {
    grid-template-columns: 1fr;
  }

  .cc-band-title span {
    display: none;
  }

  .cc-nation-details {
    padding-top: 0;
  }

  .cc-nation-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .cc-footer-values {
    grid-template-columns: repeat(2, 1fr);
  }

  .cc-footer-values div:nth-child(2) {
    border-right: 0;
  }

  .cc-footer-values div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(201, 165, 94, 0.4);
  }

  .cc-footer-brand {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .cc-footer-brand > span {
    text-align: left;
  }
}

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

  .cc-kicker,
  .cc-nation-eyebrow {
    font-size: 12px;
  }

  .cc-home-hero > img {
    object-position: 61% center;
  }

  .cc-nation-hero > img {
    object-position: 62% center;
  }

  .cc-card-image {
    height: 185px;
  }

  .cc-section-heading h2 {
    font-size: 40px;
  }

  .cc-network-cta h2 {
    font-size: 39px;
  }

  .cc-nation-hero-copy > p:last-child {
    max-width: calc(100% - 95px);
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cc-menu a::after {
    transition: none;
  }
}
