:root {
  --navy-950: #071321;
  --navy-900: #0b1b2d;
  --navy-800: #13283f;
  --navy-700: #1c3854;
  --slate-700: #435467;
  --slate-600: #586a7d;
  --slate-400: #8f9baa;
  --slate-200: #d9e0e7;
  --slate-100: #edf1f5;
  --white: #ffffff;
  --off-white: #f7f8fa;
  --gold: #b6914b;
  --gold-dark: #8d6b2e;
  --gold-light: #e8d8b5;
  --success: #16754a;
  --danger: #b42318;
  --focus: #3b82f6;
  --shadow-sm: 0 8px 24px rgba(7, 19, 33, 0.08);
  --shadow-md: 0 18px 48px rgba(7, 19, 33, 0.14);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 22px;
  --container: 1180px;
  --header-height: 74px;
  --transition: 180ms ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  color: var(--navy-900);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
select {
  cursor: pointer;
}

a {
  color: var(--navy-700);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--gold-dark);
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.75em;
  color: var(--navy-950);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(2.45rem, 8vw, 5rem);
}

h2 {
  font-size: clamp(2rem, 5vw, 3.3rem);
}

h3 {
  font-size: clamp(1.35rem, 3vw, 1.8rem);
}

h4 {
  font-size: 1.12rem;
}

p {
  margin: 0 0 1.2rem;
}

ul,
ol {
  margin: 0 0 1.4rem;
  padding-left: 1.25rem;
}

li + li {
  margin-top: 0.5rem;
}

blockquote {
  margin: 2rem 0;
  padding: 1.5rem;
  border-left: 4px solid var(--gold);
  background: var(--off-white);
  color: var(--navy-800);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.55;
}

hr {
  border: 0;
  border-top: 1px solid var(--slate-200);
  margin: 2rem 0;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 10px;
  left: 10px;
  padding: 0.7rem 1rem;
  transform: translateY(-150%);
  border-radius: var(--radius-sm);
  color: var(--white);
  background: var(--navy-950);
}

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

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.narrow {
  width: min(100% - 2rem, 820px);
  margin-inline: auto;
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

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

.section--navy {
  color: var(--slate-100);
  background: var(--navy-900);
}

.section--navy h2,
.section--navy h3,
.section--navy h4 {
  color: var(--white);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.section--navy .eyebrow,
.page-hero .eyebrow {
  color: var(--gold-light);
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.section-heading p {
  max-width: 680px;
  color: var(--slate-600);
  font-size: 1.08rem;
}

.section--navy .section-heading p {
  color: var(--slate-200);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.25rem;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  color: var(--white);
  background: var(--navy-900);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.025em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
}

.button:hover {
  color: var(--white);
  background: var(--navy-700);
  transform: translateY(-1px);
}

.button--gold {
  color: var(--navy-950);
  background: var(--gold);
}

.button--gold:hover {
  color: var(--navy-950);
  background: #c6a765;
}

.button--outline {
  border-color: var(--navy-900);
  color: var(--navy-900);
  background: transparent;
}

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

.button--light {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
  background: transparent;
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 800;
}

.text-link::after {
  content: "→";
  transition: transform var(--transition);
}

.text-link:hover::after {
  transform: translateX(3px);
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(217, 224, 231, 0.75);
  background: rgba(255, 255, 255, 0.97);
  transition: box-shadow var(--transition), min-height var(--transition);
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
  box-shadow: 0 8px 25px rgba(7, 19, 33, 0.09);
}

.nav-wrap {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  gap: 0.7rem;
  color: var(--navy-950);
  text-decoration: none;
}

.brand:hover {
  color: var(--navy-950);
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: var(--navy-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  font-weight: 700;
}

.brand-copy {
  display: grid;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.05;
}

.brand-copy small {
  margin-top: 0.28rem;
  color: var(--slate-600);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.nav-toggle {
  display: inline-grid;
  width: 46px;
  height: 46px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 21px;
  height: 2px;
  background: var(--navy-900);
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle-lines {
  position: relative;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
  position: absolute;
  left: 0;
  content: "";
}

.nav-toggle-lines::before {
  top: -6px;
}

.nav-toggle-lines::after {
  top: 6px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::after {
  top: 0;
  transform: rotate(-45deg);
}

.site-nav {
  position: fixed;
  inset: var(--header-height) 0 auto 0;
  display: none;
  max-height: calc(100vh - var(--header-height));
  overflow-y: auto;
  border-bottom: 1px solid var(--slate-200);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

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

.site-nav ul {
  display: grid;
  width: min(100% - 2rem, var(--container));
  margin: 0 auto;
  padding: 1rem 0 1.5rem;
  list-style: none;
}

.site-nav li + li {
  margin: 0;
}

.site-nav a {
  display: block;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--slate-100);
  color: var(--navy-900);
  font-size: 0.93rem;
  font-weight: 800;
  text-decoration: none;
}

.site-nav a[aria-current="page"] {
  color: var(--gold-dark);
}

.site-nav .nav-cta {
  margin-top: 0.75rem;
  padding: 0.8rem 1rem;
  border: 0;
  border-radius: var(--radius-sm);
  color: var(--white);
  background: var(--navy-900);
  text-align: center;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4.5rem, 9vw, 8rem) 0;
  color: var(--slate-100);
  background:
    radial-gradient(circle at 85% 20%, rgba(182, 145, 75, 0.18), transparent 30%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
}

.page-hero::after {
  position: absolute;
  right: -8rem;
  bottom: -11rem;
  width: 27rem;
  height: 27rem;
  border: 1px solid rgba(232, 216, 181, 0.2);
  border-radius: 50%;
  content: "";
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 900px;
  color: var(--white);
}

.page-hero p {
  max-width: 760px;
  color: var(--slate-200);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.breadcrumbs {
  margin-bottom: 1.5rem;
  color: var(--slate-200);
  font-size: 0.82rem;
}

.breadcrumbs a {
  color: var(--slate-200);
}

.breadcrumbs span {
  margin: 0 0.45rem;
  color: var(--gold-light);
}

.card-grid {
  display: grid;
  gap: 1.2rem;
}

.card {
  padding: clamp(1.4rem, 3vw, 2.1rem);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.card-icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 1.25rem;
  place-items: center;
  border: 1px solid var(--gold-light);
  border-radius: 50%;
  color: var(--gold-dark);
  background: #fbf8f1;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.split {
  display: grid;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.media-frame {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  margin: 0;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(7, 19, 33, 0.08), rgba(7, 19, 33, 0.65)),
    url("../assets/corporate-team.svg") center / cover no-repeat;
  box-shadow: var(--shadow-md);
}

.media-frame--studio {
  background:
    linear-gradient(145deg, rgba(7, 19, 33, 0.06), rgba(7, 19, 33, 0.7)),
    url("../assets/tv-studio.svg") center / cover no-repeat;
}

.media-frame img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.media-caption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius-sm);
  color: var(--white);
  background: rgba(7, 19, 33, 0.78);
  font-size: 0.84rem;
  backdrop-filter: blur(10px);
}

.check-list {
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.8rem;
}

.check-list li::before {
  position: absolute;
  top: 0.12rem;
  left: 0;
  color: var(--gold-dark);
  content: "✓";
  font-weight: 900;
}

.number-list {
  padding: 0;
  counter-reset: steps;
  list-style: none;
}

.number-list li {
  position: relative;
  min-height: 54px;
  padding-left: 4rem;
  counter-increment: steps;
}

.number-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  content: counter(steps, decimal-leading-zero);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.stat-strip {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.12);
}

.stat-strip--spaced {
  margin-top: 3rem;
}

.stat {
  padding: 1.4rem;
  background: var(--navy-800);
}

.stat strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.stat span {
  color: var(--slate-200);
  font-size: 0.85rem;
}

.cta-band {
  padding: clamp(2.25rem, 5vw, 4rem) 0;
  color: var(--white);
  background: var(--navy-900);
}

.cta-band__inner {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.cta-band h2 {
  margin-bottom: 0.45rem;
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.7rem);
}

.cta-band p {
  margin: 0;
  color: var(--slate-200);
}

.article-layout {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

.article-nav {
  padding: 1.3rem;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  background: var(--off-white);
}

.article-nav strong {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--navy-950);
}

.article-nav ol {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.88rem;
}

.article-nav a {
  text-decoration: none;
}

.prose {
  color: #26384b;
}

.prose h2 {
  margin-top: 2.2em;
  padding-top: 0.35em;
  border-top: 1px solid var(--slate-200);
}

.prose h2:first-child {
  margin-top: 0;
  border-top: 0;
}

.prose h3 {
  margin-top: 1.8em;
}

.prose a {
  font-weight: 700;
}

.prose .definition {
  padding: 1.4rem;
  border: 1px solid var(--gold-light);
  border-radius: var(--radius-md);
  background: #fcfaf5;
}

.prose .definition strong {
  color: var(--navy-950);
}

.legal-meta {
  margin-bottom: 2rem;
  padding: 1rem 1.2rem;
  border-left: 3px solid var(--gold);
  background: var(--off-white);
  color: var(--slate-600);
  font-size: 0.9rem;
}

.table-wrap {
  overflow-x: auto;
  margin: 1.5rem 0;
}

table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  font-size: 0.9rem;
}

th,
td {
  padding: 0.9rem;
  border: 1px solid var(--slate-200);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--navy-950);
  background: var(--slate-100);
}

.site-footer {
  color: var(--slate-200);
  background: var(--navy-950);
}

.footer-main {
  display: grid;
  gap: 2.5rem;
  padding: 4rem 0 3rem;
}

.footer-brand p {
  max-width: 420px;
  margin-top: 1.3rem;
  color: var(--slate-400);
  font-size: 0.9rem;
}

.site-footer .brand {
  color: var(--white);
}

.site-footer .brand-copy small {
  color: var(--slate-400);
}

.footer-heading {
  margin-bottom: 1rem;
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links,
.footer-contact {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li + li,
.footer-contact li + li {
  margin-top: 0.6rem;
}

.site-footer a {
  color: var(--slate-200);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--gold-light);
}

.footer-contact {
  color: var(--slate-400);
  font-size: 0.9rem;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.4rem;
  justify-content: space-between;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(217, 224, 231, 0.14);
  color: var(--slate-400);
  font-size: 0.78rem;
}

.cookie-banner {
  position: fixed;
  z-index: 1500;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1rem 0;
  border-top: 1px solid rgba(232, 216, 181, 0.38);
  color: var(--slate-100);
  background: rgba(7, 19, 33, 0.98);
  box-shadow: 0 -10px 35px rgba(7, 19, 33, 0.2);
  backdrop-filter: blur(12px);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner__inner {
  display: grid;
  gap: 1rem;
  align-items: center;
}

.cookie-banner h2 {
  margin: 0 0 0.25rem;
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1rem;
  letter-spacing: 0;
}

.cookie-banner p {
  margin: 0;
  color: var(--slate-200);
  font-size: 0.82rem;
}

.cookie-banner a {
  color: var(--gold-light);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.cookie-actions button {
  min-height: 40px;
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-sm);
  color: var(--white);
  background: transparent;
  font-size: 0.78rem;
  font-weight: 800;
}

.cookie-actions .cookie-accept {
  border-color: var(--gold);
  color: var(--navy-950);
  background: var(--gold);
}

.cookie-modal {
  position: fixed;
  z-index: 1600;
  inset: 0;
  display: grid;
  padding: 1rem;
  place-items: center;
  background: rgba(7, 19, 33, 0.78);
}

.cookie-modal[hidden] {
  display: none;
}

.cookie-modal__panel {
  width: min(100%, 620px);
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
  padding: clamp(1.4rem, 4vw, 2rem);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.cookie-modal__header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-modal__close {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  border: 1px solid var(--slate-200);
  border-radius: 50%;
  background: var(--white);
  font-size: 1.3rem;
}

.cookie-option {
  display: flex;
  gap: 1rem;
  align-items: start;
  justify-content: space-between;
  padding: 1rem 0;
  border-top: 1px solid var(--slate-200);
}

.cookie-option p {
  margin: 0.2rem 0 0;
  color: var(--slate-600);
  font-size: 0.84rem;
}

.switch {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 26px;
  flex: 0 0 auto;
}

.switch input {
  width: 0;
  height: 0;
  opacity: 0;
}

.switch span {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: var(--slate-400);
  transition: background var(--transition);
}

.switch span::before {
  position: absolute;
  bottom: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--white);
  content: "";
  transition: transform var(--transition);
}

.switch input:checked + span {
  background: var(--success);
}

.switch input:checked + span::before {
  transform: translateX(22px);
}

.switch input:disabled + span {
  opacity: 0.65;
}

.noscript-notice {
  padding: 0.7rem 1rem;
  color: var(--white);
  background: var(--danger);
  text-align: center;
}

@media (min-width: 640px) {
  .card-grid--2,
  .card-grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .footer-main {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}

@media (min-width: 860px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: block;
    max-height: none;
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-nav ul {
    display: flex;
    width: auto;
    align-items: center;
    gap: clamp(0.8rem, 2vw, 1.7rem);
    margin: 0;
    padding: 0;
  }

  .site-nav a {
    padding: 0.55rem 0;
    border: 0;
    font-size: 0.82rem;
  }

  .site-nav .nav-cta {
    margin: 0 0 0 0.3rem;
    padding: 0.72rem 1rem;
  }

  .site-nav a:not(.nav-cta) {
    position: relative;
  }

  .site-nav a:not(.nav-cta)::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 2px;
    transform: scaleX(0);
    background: var(--gold);
    content: "";
    transition: transform var(--transition);
  }

  .site-nav a:hover::after,
  .site-nav a[aria-current="page"]::after {
    transform: scaleX(1);
  }

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

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

  .cta-band__inner {
    grid-template-columns: 1fr auto;
  }

  .article-layout {
    grid-template-columns: 250px minmax(0, 1fr);
  }

  .article-nav {
    position: sticky;
    top: calc(var(--header-height) + 1.5rem);
  }

  .cookie-banner__inner {
    grid-template-columns: 1fr auto;
  }
}

@media (min-width: 1080px) {
  .brand-copy {
    font-size: 1.08rem;
  }

  .site-nav a {
    font-size: 0.88rem;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
