:root {
  --cobalt: #1d4fa8;
  --deep-cobalt: #152641;
  --cream: #f2ebdd;
  --paper: #fffdf8;
  --pale-blue: #edf3fb;
  --line: #c9d2df;
  --muted: #586879;
  --ink: #152641;
  --focus: #f0b429;
  --max-content: 90rem;
  --reading-width: 46rem;
  --small-radius: 6px;
  --section-space: clamp(3.5rem, 8vw, 7rem);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand {
  color: var(--deep-cobalt);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

h1 {
  max-width: 13ch;
  font-size: clamp(2.55rem, 7vw, 5.5rem);
}

h2 {
  max-width: 22ch;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.6rem);
}

p {
  max-width: 70ch;
}

a {
  color: var(--cobalt);
  text-decoration-thickness: 0.1em;
  text-underline-offset: 0.16em;
}

a:hover {
  color: var(--deep-cobalt);
}

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

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.65rem 0.9rem;
  color: #fff;
  background: var(--deep-cobalt);
  border-radius: var(--small-radius);
  transform: translateY(-180%);
}

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

.container-xxl {
  max-width: var(--max-content);
}

.site-header {
  position: relative;
  z-index: 10;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.site-header .navbar {
  min-height: 5.5rem;
}

.brand-mark {
  display: inline-block;
  color: var(--deep-cobalt);
  font-size: 1.7rem;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.brand-mark:hover,
.brand-mark.active {
  color: var(--cobalt);
}

.site-header .navbar-toggler {
  margin-top: 0.5rem;
  border: 1px solid var(--deep-cobalt);
  border-radius: var(--small-radius);
}

.site-header .navbar-toggler-icon {
  filter: contrast(1.5);
}

.site-header .nav-link {
  color: var(--deep-cobalt);
  font-weight: 700;
}

.site-header .nav-link:hover,
.site-header .nav-link:focus-visible {
  color: var(--cobalt);
}

.site-header--inline .navbar-brand {
  margin-right: 2rem;
}

.site-header--stacked-brand .navbar-brand,
.site-header--centered-brand .navbar-brand {
  margin-bottom: 0.35rem;
}

.site-header--wrapped-nav .navbar-nav {
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  min-height: 2.75rem;
  padding: 0.65rem 1.05rem;
  border-radius: var(--small-radius);
  font-weight: 700;
  line-height: 1.2;
}

.btn-primary {
  color: #fff;
  background: var(--cobalt);
  border-color: var(--cobalt);
}

.btn-primary:hover,
.btn-primary:active {
  color: #fff;
  background: var(--deep-cobalt);
  border-color: var(--deep-cobalt);
}

.btn-outline-primary {
  color: var(--deep-cobalt);
  background: var(--cream);
  border: 2px solid var(--cobalt);
}

.btn-outline-primary:hover,
.btn-outline-primary:active {
  color: #fff;
  background: var(--deep-cobalt);
  border-color: var(--deep-cobalt);
}

.btn-light {
  color: var(--deep-cobalt);
  background: var(--cream);
  border-color: var(--cream);
}

.btn-light:hover,
.btn-light:active {
  color: #fff;
  background: var(--cobalt);
  border-color: var(--cobalt);
}

.section {
  position: relative;
  padding-top: var(--section-space) !important;
  padding-bottom: var(--section-space) !important;
}

.bg-cream {
  background: var(--cream) !important;
}

.bg-white {
  background: var(--paper) !important;
}

.bg-pale-blue {
  background: var(--pale-blue) !important;
}

.bg-cobalt {
  background: var(--cobalt) !important;
}

.bg-deep-cobalt {
  background: var(--deep-cobalt) !important;
}

.bg-cobalt h1,
.bg-cobalt h2,
.bg-cobalt h3,
.bg-cobalt h4,
.bg-cobalt p,
.bg-cobalt .eyebrow,
.bg-cobalt .lead,
.bg-cobalt a,
.bg-deep-cobalt h1,
.bg-deep-cobalt h2,
.bg-deep-cobalt h3,
.bg-deep-cobalt h4,
.bg-deep-cobalt p,
.bg-deep-cobalt a {
  color: #fff;
}

.eyebrow {
  margin-bottom: 0.85rem;
  color: var(--cobalt);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.lead {
  color: var(--deep-cobalt);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.bg-cobalt .lead {
  color: #fff;
}

.editorial-image-wrap,
.editorial-image {
  overflow: hidden;
  border-radius: var(--small-radius);
}

.editorial-image-wrap {
  background: var(--line);
  border: 1px solid var(--line);
}

.editorial-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-hero {
  overflow: hidden;
}

.section-hero .border-top {
  border-color: var(--deep-cobalt) !important;
}

.hero-overlay {
  min-height: 38rem;
  display: flex;
  align-items: center;
}

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

.hero-overlay .hero-panel {
  max-width: 42rem;
  padding: clamp(1.5rem, 5vw, 3.5rem);
  background: rgba(255, 253, 248, 0.98);
  border: 1px solid var(--line);
}

.hero-editorial {
  width: 100%;
}

.hero-editorial .editorial-image-wrap,
.hero-image-top .editorial-image-wrap {
  margin-top: 2rem;
}

.hero-image-top {
  display: flex;
  flex-direction: column;
}

.hero-image-top .editorial-image-wrap {
  order: -1;
  margin-top: 0;
  margin-bottom: 2rem;
}

.editorial-card,
.faq-card,
.story-card,
.contact-steps {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--small-radius);
  box-shadow: 0 0.35rem 1rem rgba(21, 38, 65, 0.08);
}

.editorial-card,
.faq-card {
  padding: 1.35rem;
}

.editorial-card p,
.faq-card p,
.story-card p {
  margin-bottom: 0;
}

.card-index {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: var(--cobalt);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.story-card {
  overflow: hidden;
  margin: 0;
}

.story-card figcaption {
  padding: 1.35rem;
}

.story-card .editorial-image-wrap,
.story-card .ratio {
  border: 0;
  border-radius: 0;
}

.section-layout--responsible-guidance .editorial-card {
  border-top: 4px solid var(--cobalt);
}

.section-layout--features-highlight>.container-fluid>.row:first-child {
  padding: clamp(1.25rem, 3vw, 2.5rem);
  background: var(--cream);
  border: 1px solid var(--line);
}

.section-layout--features-highlight>.container-fluid>.row:last-child .editorial-card {
  background: transparent;
  box-shadow: none;
}

.section-layout--gallery-storyboard .story-card:nth-child(2) {
  transform: translateY(1rem);
}

.section-layout--testimonials-editorial .editorial-card {
  border-left: 4px solid var(--cobalt);
}

.section-layout--faq-columns .faq-card {
  height: 100%;
  background: var(--pale-blue);
}

.section-layout--contact-steps .contact-steps {
  padding: 1.25rem;
  color: var(--deep-cobalt);
}

.section-layout--contact-steps .contact-steps h3 {
  margin-top: 0;
}

.section-layout--contact-steps .contact-details {
  padding-left: 1.2rem;
}

.section-layout--contact-steps .contact-details a {
  margin-left: 0.35rem;
}

.form-label,
.form-check-label {
  color: var(--deep-cobalt);
  font-weight: 700;
}

.form-control,
.form-select {
  min-height: 2.9rem;
  color: var(--deep-cobalt);
  background-color: #fff;
  border: 1px solid #718096;
  border-radius: var(--small-radius);
}

textarea.form-control {
  min-height: 9rem;
}

.form-control::placeholder {
  color: var(--muted);
  opacity: 1;
}

.form-control:focus,
.form-select:focus,
.form-check-input:focus {
  border-color: var(--cobalt);
  box-shadow: 0 0 0 0.2rem rgba(240, 180, 41, 0.65);
}

.form-check-input {
  border-color: var(--deep-cobalt);
}

.contact-details {
  margin-bottom: 0;
}

.cookie-banner {
  position: fixed;
  z-index: 1000;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1rem 0;
  color: var(--deep-cobalt);
  background: var(--cream);
  border-top: 1px solid var(--deep-cobalt);
  box-shadow: 0 -0.3rem 1rem rgba(21, 38, 65, 0.12);
}

.cookie-banner p {
  max-width: 58rem;
}

.cookie-banner .btn-outline-primary {
  background: transparent;
}

.site-footer {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.site-footer address {
  max-width: var(--max-content);
  margin: 0 auto 1.5rem;
  padding: 0 1rem;
  font-style: normal;
}

.site-footer a {
  color: #fff;
}

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

.site-footer [data-site-copyright] {
  max-width: var(--max-content);
  margin: 1.5rem auto 0;
  padding: 0 1rem;
}

.policy-page {
  background: var(--paper);
}

.policy-page__main {
  padding: clamp(3rem, 8vw, 7rem) 1rem;
}

.policy-document {
  max-width: var(--reading-width);
  margin: 0 auto;
}

.policy-document__header {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.policy-document__header h1 {
  max-width: 18ch;
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.policy-document__content {
  padding-top: 2rem;
}

.policy-document__content h2 {
  max-width: none;
  margin-top: 2.5rem;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
}

.policy-document__content h3 {
  margin-top: 2rem;
}

.policy-document__content p,
.policy-document__content li {
  max-width: 70ch;
}

.policy-document__content li+li {
  margin-top: 0.5rem;
}

@media (min-width: 576px) {
  .policy-page__main {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}

@media (min-width: 992px) {
  .site-header--centered-brand .navbar-collapse {
    margin-top: 0.45rem;
  }

  .site-header--stacked-brand .navbar>.container-fluid,
  .site-header--centered-brand .navbar>.container-fluid {
    flex-direction: column;
  }

  .site-header--inline .navbar>.container-fluid {
    flex-wrap: nowrap;
  }

  .site-header--inline .navbar-collapse {
    justify-content: flex-end;
  }

  .site-header--wrapped-nav .navbar-collapse {
    max-width: 52rem;
  }

  .hero-editorial {
    padding-top: var(--section-space);
    padding-bottom: var(--section-space);
  }

  .hero-editorial .editorial-image-wrap {
    margin-top: 3rem;
  }
}

@media (max-width: 991.98px) {
  .site-header .navbar-collapse {
    padding: 0.75rem 0;
  }

  .site-header .navbar-nav {
    align-items: stretch !important;
  }

  .site-header .nav-link,
  .site-header .btn {
    display: block;
    width: 100%;
    margin-top: 0.35rem;
    text-align: center;
  }

  .section-layout--gallery-storyboard .story-card:nth-child(2) {
    transform: none;
  }
}

@media (max-width: 575.98px) {
  h1 {
    font-size: clamp(2.35rem, 13vw, 3.5rem);
  }

  .section-layout--features-highlight>.container-fluid>.row:first-child {
    padding: 1rem;
  }

  .cookie-banner .d-flex {
    align-items: stretch !important;
  }

  .cookie-banner .btn {
    flex: 1 1 50%;
  }
}

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

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

/* Application-owned visual variation tokens v4. */
:root {
  --site-foreground: #24352B;
  --site-background: #F4EEE4;
  --site-accent: #8F3B24;
  --site-surface: #E8DED0;
  --site-muted: #56635A;
  --site-link: #8F3B24;
  --site-text-muted: #56635A;
}

body,
body * {
  font-family: Georgia, "Times New Roman", serif !important;
}

body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
  font-family: Georgia, "Times New Roman", serif !important;
}

body .site-header {
  width: 100%;
  overflow: visible !important;
}

body .site-header .navbar {
  width: 100%;
  padding-inline: clamp(1rem, 3vw, 4rem);
}

body .site-header .navbar>.container {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  flex-wrap: wrap;
}

body .site-header .navbar-brand {
  min-width: 0;
  max-width: 38%;
  overflow-wrap: anywhere;
}

body .site-header .navbar-collapse {
  min-width: 0;
}

body .site-header .navbar-nav {
  min-width: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}

body .site-header .nav-link,
body .site-header .navbar-nav .btn {
  max-width: 100%;
  overflow-wrap: anywhere;
  white-space: normal;
  text-align: center;
}

@media (min-width: 992px) {

  body .site-header--stacked-brand .navbar>.container,
  body .site-header--centered-brand .navbar>.container {
    align-items: center;
  }

  body .site-header--stacked-brand .navbar>.container {
    flex-direction: column;
  }

  body .site-header--stacked-brand .navbar-brand,
  body .site-header--centered-brand .navbar-brand {
    max-width: 100%;
    margin-inline: auto;
  }

  body .site-header--stacked-brand .navbar-collapse,
  body .site-header--centered-brand .navbar-collapse {
    width: 100%;
    flex-grow: 0;
  }

  body .site-header--stacked-brand .navbar-nav,
  body .site-header--centered-brand .navbar-nav {
    justify-content: center;
  }
}

@media (max-width: 991.98px) {
  body .site-header .navbar-collapse.show {
    flex-basis: 100%;
  }

  body .site-header .navbar-nav {
    align-items: stretch;
  }
}

body .btn,
body button[type="submit"] {
  background-color: var(--site-accent) !important;
  border-color: var(--site-accent) !important;
  color: var(--site-background) !important;
}


section.section-layout--hero-split .row {
  display: grid !important;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr) !important;
  align-items: center;
}

section.section-layout--hero-split .row>[class*="col-"] {
  max-width: none !important;
  width: auto !important;
}

section.section-layout--hero-stacked .row {
  display: block !important;
  max-width: 66rem;
  margin-inline: auto;
}

section.section-layout--hero-editorial .row {
  display: block !important;
  width: 100%;
  max-width: none !important;
  margin-inline: 0;
}

section.section-layout--hero-editorial .row>[class*="col-"] {
  width: 100% !important;
  max-width: none !important;
  margin-inline: 0;
}

section.section-layout--hero-editorial .row>[class*="col-"]+[class*="col-"] {
  margin-top: clamp(2rem, 5vw, 4.5rem);
}

section.section-layout--hero-editorial img {
  display: block;
  width: 100%;
  max-height: 42rem;
  object-fit: cover;
}

section.section-layout--hero-overlay .row>[class*="col-"]:first-child {
  padding: clamp(1.5rem, 5vw, 5rem);
  margin: clamp(1rem, 3vw, 3rem);
  max-width: min(52rem, calc(100% - 2rem)) !important;
}

section.section-layout--hero-overlay h1 {
  margin-bottom: clamp(1.25rem, 3vw, 2.5rem);
}

section.section-layout--hero-overlay p {
  margin-bottom: 1.25rem;
}

section.section-layout--hero-image-top>.container,
section.section-layout--hero-image-top>.container-fluid {
  width: min(calc(100% - 2rem), 90rem) !important;
  max-width: 90rem !important;
  margin-inline: auto !important;
  padding-inline: 0 !important;
}

section.section-layout--hero-image-top>.container>.row:first-child,
section.section-layout--hero-image-top>.container-fluid>.row:first-child {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch;
  width: 100% !important;
  max-width: none !important;
  margin-inline: 0 !important;
}

section.section-layout--hero-image-top>.container>.row:first-child>[class*="col-"],
section.section-layout--hero-image-top>.container-fluid>.row:first-child>[class*="col-"] {
  width: 100% !important;
  max-width: none !important;
  flex: 0 0 100% !important;
  padding-inline: 0 !important;
}

section.section-layout--hero-image-top>.container>.row:first-child>[class*="col-"]:has(img),
section.section-layout--hero-image-top>.container-fluid>.row:first-child>[class*="col-"]:has(img) {
  order: -1;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

section.section-layout--hero-image-top h1,
section.section-layout--hero-image-top .display-1,
section.section-layout--hero-image-top .display-2,
section.section-layout--hero-image-top .display-3 {
  max-width: 64rem !important;
}

section.section-layout--hero-image-top img {
  display: block;
  width: 100%;
  max-height: 42rem;
  object-fit: cover;
}

section.section-layout--hero-overlay {
  position: relative;
  isolation: isolate;
}

section.section-layout--hero-overlay .row {
  position: relative;
  display: grid !important;
  grid-template-columns: 1fr !important;
  align-items: center;
}

section.section-layout--hero-overlay .row>[class*="col-"] {
  grid-area: 1 / 1;
  max-width: none !important;
  width: auto !important;
}

section.section-layout--hero-overlay .row>[class*="col-"]:first-child {
  position: relative;
  z-index: 2;
  max-width: 42rem !important;
}

section.section-layout--hero-overlay .row>[class*="col-"]:last-child {
  z-index: 1;
}

@media (max-width: 767.98px) {
  section.section-layout--hero-split .row {
    display: block !important;
  }
}

/* Application-owned accessibility and viewport safeguards. */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  max-width: 100%;
  overflow-x: clip;
}

img,
svg,
video,
canvas,
iframe {
  max-width: 100%;
}

pre,
code,
kbd,
samp {
  max-width: 100%;
  overflow-wrap: anywhere;
  white-space: pre-wrap;
}

table {
  max-width: 100%;
  display: block;
  overflow-x: auto;
}

.container,
.container-fluid {
  min-width: 0;
}

main,
section,
header,
footer {
  min-width: 0;
  max-width: 100%;
}

/* Application-owned fluid homepage container safeguards v1. */
body main>section .container,
body main>section .container-fluid {
  width: min(calc(100% - clamp(2rem, 6vw, 6rem)), 90rem) !important;
  max-width: 90rem !important;
  margin-inline: auto !important;
}

.skip-link:not(:focus) {
  position: fixed !important;
  top: 0;
  left: 50% !important;
  transform: translate(-50%, -160%);
}

.skip-link:focus {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
}

@media (max-width: 575.98px) {
  .container>.row.g-5 {
    --bs-gutter-x: 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .container>.row.g-5 {
    --bs-gutter-x: 1.5rem;
  }
}


.section-layout--contact-steps .contact-steps h3 {
  color: var(--deep-cobalt);
}

.section-layout--contact-steps .form-label,
.section-layout--contact-steps .form-check-label {
  color: #ffffff;
}