:root {
  --brand-yellow: #ffff00;
  --brand-yellow-soft: #ffeb3b;
  --black: #000000;
  --surface: #0a0a0a;
  --ink: #f5f5f5;
  --muted: #b3b3b3;
  --max: 80rem;
  --gutter: clamp(1rem, 4vw, 2rem);
  --focus: 0 0 0 3px var(--black), 0 0 0 6px var(--brand-yellow);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  font-family: "Source Sans 3", sans-serif;
  font-size: 1.0625rem;
  line-height: 1.55;
  background:
    radial-gradient(ellipse 90% 50% at 50% 0%, rgba(255, 255, 0, 0.08), transparent 55%),
    linear-gradient(180deg, var(--surface) 0%, var(--black) 40%, #0d0d08 100%);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--brand-yellow);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--brand-yellow-soft);
}

a:focus-visible,
button:focus-visible,
.button:focus-visible,
.site-nav a:focus-visible,
.wordmark:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

.skip-link {
  position: absolute;
  left: var(--gutter);
  top: 0.75rem;
  z-index: 100;
  padding: 0.6rem 1rem;
  background: var(--brand-yellow);
  color: var(--black);
  font-weight: 600;
  text-decoration: none;
  transform: translateY(-150%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--black);
  border-bottom: 1px solid rgba(255, 255, 0, 0.25);
}

.site-header__inner {
  width: min(100% - (var(--gutter) * 2), var(--max));
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  padding: 0.9rem 0;
  position: relative;
}

.wordmark {
  color: var(--brand-yellow);
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.35rem, 3vw, 1.7rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.wordmark:hover {
  color: var(--brand-yellow-soft);
}

.nav-toggle {
  display: none;
  margin: 0;
  padding: 0.45rem 0.75rem;
  background: transparent;
  color: var(--brand-yellow);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
  border: 2px solid var(--brand-yellow);
  cursor: pointer;
}

.nav-toggle:hover {
  background: rgba(255, 255, 0, 0.1);
}

.nav-toggle:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

.site-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
  justify-content: flex-end;
}

.site-nav a {
  display: inline-block;
  padding: 0.45rem 0.65rem;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0.25rem;
}

.site-nav a:hover {
  color: var(--brand-yellow);
  background: rgba(255, 255, 0, 0.08);
}

.site-nav a[aria-current="page"] {
  color: var(--black);
  background: var(--brand-yellow);
  font-weight: 600;
}

.site-nav a[aria-current="page"]:hover {
  color: var(--black);
  background: var(--brand-yellow-soft);
}

@media (max-width: 820px) {
  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    display: none;
    width: 100%;
    order: 3;
    padding-top: 0.35rem;
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
  }

  .site-nav a {
    display: block;
    padding: 0.7rem 0.8rem;
  }
}

.cookie-banner {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 80;
  padding: 1rem var(--gutter);
  background: var(--brand-yellow);
  color: var(--black);
  border-top: 2px solid var(--black);
}

.cookie-banner__inner {
  width: min(100%, var(--max));
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem 1.5rem;
}

.cookie-banner__copy {
  flex: 1 1 16rem;
  max-width: 40rem;
}

.cookie-banner__title {
  margin: 0 0 0.35rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cookie-banner p {
  margin: 0;
  color: #222;
  font-size: 0.95rem;
}

.cookie-banner a {
  color: var(--black);
  font-weight: 600;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.cookie-banner__decline {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}

.cookie-banner__decline:hover {
  background: rgba(0, 0, 0, 0.08);
  color: var(--black);
}

.site-main {
  flex: 1;
  width: min(100% - (var(--gutter) * 2), var(--max));
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3.5rem) 0 clamp(3rem, 7vw, 5rem);
}

.site-main--home {
  width: 100%;
  max-width: none;
  padding-top: 0;
}

.site-main--home > :not(.hero--banner) {
  width: min(100% - (var(--gutter) * 2), var(--max));
  margin-inline: auto;
}

.tm {
  margin-left: 0.12em;
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.42em;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0;
  text-transform: none;
  vertical-align: super;
}

.hero {
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
  padding-bottom: clamp(1.75rem, 4vw, 2.5rem);
  border-bottom: 1px solid rgba(255, 255, 0, 0.2);
}

.hero--banner {
  position: relative;
  width: 100%;
  min-height: min(78vh, 40rem);
  margin: 0 0 clamp(2.5rem, 6vw, 4rem);
  padding: 0;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  border-bottom: none;
  background:
    radial-gradient(ellipse 80% 70% at 85% 20%, rgba(255, 255, 0, 0.16), transparent 55%),
    radial-gradient(ellipse 60% 50% at 10% 90%, rgba(255, 255, 0, 0.08), transparent 50%),
    linear-gradient(165deg, #121208 0%, var(--black) 48%, #0a0a00 100%);
}

.hero--banner::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 0.4rem;
  background: var(--brand-yellow);
  transform: scaleY(0);
  transform-origin: top;
  animation: hero-bar 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

.hero__banner {
  position: relative;
  z-index: 1;
  width: min(100% - (var(--gutter) * 2), var(--max));
  margin: auto;
  padding: clamp(3rem, 8vw, 5.5rem) 0;
  border-bottom: 1px solid rgba(255, 255, 0, 0.18);
}

.hero__banner-inner {
  max-width: 40rem;
}

.hero__title {
  margin: 0 0 0.85rem;
  color: var(--brand-yellow);
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.5rem, 9vw, 4.5rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 0.95;
  text-transform: uppercase;
  animation: hero-rise 0.8s ease-out both;
}

.hero--banner .hero__title {
  margin: 0.35rem 0 0.9rem;
  font-size: clamp(3.2rem, 12vw, 6.5rem);
  animation-delay: 0.06s;
}

.hero__lead {
  margin: 0;
  max-width: 52rem;
  color: var(--muted);
  font-size: clamp(1.1rem, 2.4vw, 1.35rem);
  line-height: 1.45;
  animation: hero-rise 0.8s ease-out 0.08s both;
}

.hero--banner .hero__lead {
  max-width: 38rem;
  color: var(--ink);
  font-size: clamp(1.25rem, 2.8vw, 1.65rem);
  line-height: 1.35;
  animation-delay: 0.12s;
}

.hero__lead em,
.page-title--strapline em {
  font-style: italic;
  font-weight: 500;
}

.hero__meta {
  margin: 1rem 0 0;
  color: var(--ink);
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  font-weight: 500;
  animation: hero-rise 0.8s ease-out 0.14s both;
}

.hero--banner .hero__meta {
  margin: 0;
  color: var(--brand-yellow);
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation-delay: 0s;
}

.hero__proof {
  margin: 0.85rem 0 0;
  max-width: 52rem;
  color: var(--brand-yellow-soft);
  font-size: 0.98rem;
  font-weight: 500;
  animation: hero-rise 0.8s ease-out 0.2s both;
}

.hero--banner .hero__proof {
  margin-top: 1.15rem;
  max-width: 34rem;
  color: var(--muted);
  font-size: 1.02rem;
  font-weight: 400;
}

.hero__action {
  margin: 1.5rem 0 0;
  animation: hero-rise 0.8s ease-out 0.34s both;
}

.hero--banner .hero__action {
  margin-top: 1.85rem;
  animation-delay: 0.24s;
}

.hero-pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin: 1.75rem 0 0;
  padding: 0;
  list-style: none;
}

.section .hero-pillars {
  margin-top: 1.1rem;
}

@media (min-width: 720px) {
  .hero-pillars {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

.hero-pillars__item {
  padding: 1.15rem 1.1rem;
  background: var(--brand-yellow);
  color: var(--black);
}

.hero-pillars__item h2,
.hero-pillars__item h3 {
  margin: 0 0 0.45rem;
  color: var(--black);
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.35rem, 3vw, 1.6rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.section .hero-pillars__item p,
.hero-pillars__item p {
  margin: 0;
  color: #000000;
  font-size: 1.02rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.45;
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(0.55rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-bar {
  from {
    transform: scaleY(0);
  }
  to {
    transform: scaleY(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__title,
  .hero__lead,
  .hero__meta,
  .hero__proof,
  .hero__action,
  .hero--banner::before {
    animation: none;
  }

  .hero--banner::before {
    transform: none;
  }
}

.page-title {
  margin: 0 0 0.75rem;
  color: var(--brand-yellow);
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.1rem, 7vw, 3.4rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.page-intro {
  margin: 0 0 clamp(2rem, 5vw, 3rem);
  max-width: 56rem;
  color: var(--muted);
  font-size: 1.125rem;
}

.section {
  margin-bottom: clamp(2rem, 5vw, 3rem);
  max-width: 56rem;
}

.section--wide {
  max-width: none;
}

.section h2 {
  margin: 0 0 0.65rem;
  color: var(--ink);
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.5rem, 3.5vw, 1.9rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.1;
  text-transform: uppercase;
}

.section p {
  margin: 0 0 0.7rem;
  color: var(--muted);
}

.section p:last-child {
  margin-bottom: 0;
}

.trio {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 720px) {
  .trio {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.trio__item {
  padding: 1.25rem 1.15rem;
  background: rgba(255, 255, 0, 0.04);
  border: 1px solid rgba(255, 255, 0, 0.22);
}

.trio__item h3 {
  margin: 0 0 0.55rem;
  color: var(--brand-yellow);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.trio__item p {
  margin: 0 0 0.55rem;
  color: var(--muted);
  font-size: 0.98rem;
}

.trio__item p:last-child {
  margin-bottom: 0;
}

.trio__outcome {
  margin-top: 0.85rem;
  padding-top: 0.75rem;
  color: var(--ink) !important;
  font-weight: 500;
  border-top: 1px solid rgba(255, 255, 0, 0.2);
}

.quote {
  margin: 0 0 clamp(2rem, 5vw, 3rem);
  padding: 1.35rem 1.35rem 1.35rem 1.25rem;
  max-width: 56rem;
  background: rgba(255, 255, 0, 0.05);
  border-left: 4px solid var(--brand-yellow);
}

.quote blockquote {
  margin: 0;
}

.quote blockquote p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  font-style: italic;
  line-height: 1.45;
}

.quote figcaption {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-top: 1rem;
}

.quote__name {
  color: var(--brand-yellow);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.quote__name:hover {
  color: var(--brand-yellow-soft);
}

.quote__role {
  color: var(--muted);
  font-size: 0.95rem;
}

.quote__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0.55rem 0 0;
}

.quote__links a {
  color: var(--brand-yellow);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.quote__links a:hover {
  color: var(--brand-yellow-soft);
}

.schedule {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
  max-width: 64rem;
}

.schedule__card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: rgba(255, 255, 0, 0.04);
  border: 1px solid rgba(255, 255, 0, 0.28);
  overflow: hidden;
}

@media (min-width: 560px) {
  .schedule__card {
    grid-template-columns: 7.5rem 1fr;
  }
}

.schedule__time {
  margin: 0;
  padding: 1rem 1.15rem;
  background: var(--brand-yellow);
  color: var(--black);
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.5rem, 3.5vw, 1.85rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}

.schedule__time time,
.schedule__time span {
  display: block;
}

.schedule__body {
  padding: 1.15rem 1.25rem 1.25rem;
}

.schedule__body h2 {
  margin: 0 0 0.55rem;
  color: var(--brand-yellow);
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.1;
  text-transform: uppercase;
}

.schedule__body p {
  margin: 0 0 0.55rem;
  color: var(--muted);
}

.schedule__body p:last-child {
  margin-bottom: 0;
}

.schedule__card--close .schedule__time {
  background: #1a1a1a;
  color: var(--brand-yellow);
  border-right: 1px solid rgba(255, 255, 0, 0.28);
}

@media (max-width: 559px) {
  .schedule__card--close .schedule__time {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 0, 0.28);
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.cta-strip {
  margin-top: clamp(2.5rem, 6vw, 4rem);
  padding-top: clamp(1.5rem, 4vw, 2rem);
  max-width: 56rem;
  border-top: 1px solid rgba(255, 255, 0, 0.2);
}

.cta-strip h2 {
  margin: 0 0 0.65rem;
  color: var(--ink);
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.5rem, 3.5vw, 1.9rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.1;
  text-transform: uppercase;
}

.cta-strip p {
  margin: 0 0 0.7rem;
  color: var(--muted);
}

.cta-strip__action {
  margin-top: 1.1rem;
  margin-bottom: 0;
}

.cta-band {
  margin-top: clamp(2.5rem, 6vw, 4rem);
  padding: clamp(1.5rem, 4vw, 2rem);
  background: var(--brand-yellow);
  color: var(--black);
  scroll-margin-top: 5rem;
}

.cta-band h2 {
  margin: 0 0 0.5rem;
  color: var(--black);
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.5rem, 3.5vw, 1.85rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.cta-band p {
  margin: 0 0 1.1rem;
  max-width: 36rem;
  color: #222;
}

.contact-form {
  width: 100%;
  max-width: 40rem;
}

.contact-form__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

.contact-form__field {
  margin: 0;
}

.contact-form__field label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--black);
  font-size: 0.95rem;
  font-weight: 600;
}

.contact-form .asterisk {
  color: var(--black);
}

.contact-form input[type="email"],
.contact-form input[type="text"],
.contact-form textarea {
  width: 100%;
  padding: 0.65rem 0.75rem;
  color: var(--black);
  font: inherit;
  background: #fff;
  border: 2px solid var(--black);
}

.contact-form textarea {
  min-height: 8rem;
  resize: vertical;
}

.contact-form input:focus-visible,
.contact-form textarea:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--brand-yellow), 0 0 0 6px var(--black);
}

.contact-form__honeypot {
  position: absolute;
  left: -5000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form__note {
  margin: 1rem 0 0;
  max-width: none;
  color: #333;
  font-size: 0.88rem;
}

.contact-form__note a {
  color: var(--black);
  font-weight: 600;
}

.contact-form__status {
  margin: 0.85rem 0 0;
  padding: 0.75rem 0.9rem;
  max-width: none;
  font-size: 0.95rem;
  border: 2px solid var(--black);
  background: #fff;
}

.contact-form__status--error {
  color: #7a0000;
}

.contact-form__status--success {
  color: #064;
}

.contact-form__actions {
  margin: 1.1rem 0 0;
}

.contact-form .button:disabled {
  opacity: 0.65;
  cursor: wait;
}

.button {
  display: inline-block;
  padding: 0.7rem 1.2rem;
  background: var(--black);
  color: var(--brand-yellow);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  border: 2px solid var(--black);
  cursor: pointer;
}

.button:hover {
  background: #1a1a1a;
  color: var(--brand-yellow-soft);
}

.cta-band .button:focus-visible {
  box-shadow: 0 0 0 3px var(--brand-yellow), 0 0 0 6px var(--black);
}

.site-footer {
  margin-top: auto;
  background:
    linear-gradient(180deg, rgba(255, 255, 0, 0.04) 0%, transparent 2.5rem),
    var(--black);
  border-top: 1px solid rgba(255, 255, 0, 0.28);
}

.site-footer__inner {
  width: min(100% - (var(--gutter) * 2), var(--max));
  margin-inline: auto;
  padding: clamp(2.25rem, 5vw, 3.25rem) 0 1.35rem;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 0.8fr));
  gap: clamp(1.75rem, 4vw, 3rem);
  padding-bottom: clamp(1.75rem, 4vw, 2.5rem);
  border-bottom: 1px solid rgba(255, 255, 0, 0.16);
}

.site-footer__wordmark {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: var(--brand-yellow);
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 1.75rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.site-footer__wordmark:hover {
  color: var(--brand-yellow-soft);
}

.site-footer__wordmark:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

.site-footer__brand p {
  margin: 0;
  max-width: 28rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.5;
}

.site-footer__brand a {
  color: var(--ink);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 0, 0.45);
}

.site-footer__brand a:hover {
  color: var(--brand-yellow);
  border-bottom-color: currentColor;
}

.site-footer__label {
  margin: 0 0 0.85rem;
  color: var(--brand-yellow);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.site-footer__nav ul,
.site-footer__legal ul {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__nav a,
.site-footer__contact a,
.site-footer__legal a {
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 500;
  text-decoration: none;
}

.site-footer__nav a:hover,
.site-footer__contact a:hover,
.site-footer__legal a:hover {
  color: var(--brand-yellow);
}

.site-footer__nav a:focus-visible,
.site-footer__contact a:focus-visible,
.site-footer__legal a:focus-visible,
.site-footer__brand a:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

.site-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.site-footer__contact p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.5;
}

.site-footer__contact a {
  color: var(--brand-yellow);
  word-break: break-word;
}

.site-footer__contact a:hover {
  color: var(--brand-yellow-soft);
}

.site-footer__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem 1.5rem;
  padding-top: 1.25rem;
}

.site-footer__meta-block {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  max-width: 36rem;
}

.site-footer__meta,
.site-footer__marks {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.site-footer__marks {
  font-size: 0.8rem;
  line-height: 1.4;
}

.site-footer__marks em {
  font-style: italic;
}

.site-footer__marks .tm {
  font-size: 0.65em;
}

.page-title--strapline {
  max-width: 18em;
  line-height: 1.12;
  letter-spacing: 0.01em;
  text-transform: none;
}

.page-title--strapline em {
  font-style: italic;
  font-weight: 700;
}

.page-title--strapline .tm {
  display: inline-block;
  margin-left: 0.28em;
  color: var(--brand-yellow-soft);
  font-size: 0.38em;
  font-weight: 600;
  line-height: 1;
  vertical-align: 0.85em;
}

.site-footer__legal ul {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.35rem 1.15rem;
}

.site-footer__legal a {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 400;
}

.site-footer__legal a[aria-current="page"] {
  color: var(--brand-yellow);
}

@media (max-width: 820px) {
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 520px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

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

.legal .section {
  max-width: 56rem;
}

.legal .section h3 {
  margin: 1.1rem 0 0.5rem;
  color: var(--ink);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.legal ul {
  margin: 0 0 0.7rem;
  padding-left: 1.25rem;
  color: var(--muted);
}

.legal li {
  margin-bottom: 0.35rem;
}

.legal a {
  color: var(--brand-yellow);
}

.cookie-banner .cookie-banner__accept {
  background: var(--black);
  color: var(--brand-yellow);
  border-color: var(--black);
}

.cookie-banner .cookie-banner__accept:hover {
  background: #1a1a1a;
  color: var(--brand-yellow-soft);
}

.cookie-banner .cookie-banner__decline {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}

.cookie-banner .cookie-banner__decline:hover {
  background: rgba(0, 0, 0, 0.08);
  color: var(--black);
}

.cookie-banner .button:focus-visible {
  box-shadow: 0 0 0 3px var(--brand-yellow), 0 0 0 6px var(--black);
}
