/* Pixel Bruma — local Bootstrap extension */
:root {
  --pb-forest: #183c32;
  --pb-forest-deep: #102b24;
  --pb-ink: #24352b;
  --pb-paper: #fffdf8;
  --pb-warm-paper: #f5f0e6;
  --pb-paper-dark: #e8ded0;
  --pb-terracotta: #8f3b24;
  --pb-gold: #e3b94c;
  --pb-bluegray: #24313a;
  --pb-muted: #445249;
  --pb-border: #b9b0a3;
  --pb-focus: #9b5d00;
  --pb-radius: .5rem;
  --pb-shell: 90rem;
  --pb-serif: Georgia, 'Times New Roman', serif;
  --pb-sans: 'Trebuchet MS', Arial, sans-serif;
  --bs-primary: var(--pb-forest);
  --bs-primary-rgb: 24, 60, 50;
  --bs-secondary: var(--pb-terracotta);
  --bs-secondary-rgb: 143, 59, 36;
  --bs-body-color: var(--pb-ink);
  --bs-body-bg: var(--pb-paper);
  --bs-border-color: var(--pb-border);
  --bs-link-color: var(--pb-terracotta);
  --bs-link-hover-color: var(--pb-forest-deep);
}

html { scroll-behavior: smooth; }
body {
  background: var(--pb-paper);
  color: var(--pb-ink);
  font-family: var(--pb-sans);
  line-height: 1.65;
}

h1, h2, h3, h4, h5, h6,
.navbar-brand, .site-footer h2, .site-footer h3 {
  color: var(--pb-forest-deep);
  font-family: var(--pb-serif);
  font-weight: 700;
  line-height: 1.12;
}
h1 { font-size: clamp(2.35rem, 6vw, 5.5rem); letter-spacing: -.035em; }
h2 { font-size: clamp(1.9rem, 4vw, 3.35rem); letter-spacing: -.025em; }
h3 { font-size: clamp(1.25rem, 2vw, 1.75rem); }
p { max-width: 72ch; }
a { text-underline-offset: .18em; }
a:hover { color: var(--pb-forest-deep); }

.page-shell {
  width: min(100% - 2rem, var(--pb-shell));
  margin-inline: auto;
}
.measure-wide { max-width: 78rem; }
.section { padding: clamp(4rem, 8vw, 8rem) 0; }
.section-heading { margin-bottom: 2.5rem; max-width: 52rem; }
.section-heading > p:last-child { margin-bottom: 0; }
.eyebrow {
  color: var(--pb-terracotta);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1.3;
  margin-bottom: .85rem;
  text-transform: uppercase;
}
.lead { font-size: clamp(1.08rem, 1.8vw, 1.3rem); }
.py-lg-6 { padding-block: 7rem !important; }

.skip-link {
  background: var(--pb-gold);
  color: #1b211d;
  font-weight: 700;
  left: .75rem;
  padding: .7rem 1rem;
  position: fixed;
  top: .75rem;
  transform: translateY(-150%);
  z-index: 2000;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  background: var(--pb-paper);
  position: relative;
  z-index: 1000;
}
.site-header .navbar { min-height: 5.25rem; padding-block: .8rem; }
.site-header .navbar-brand { color: var(--pb-forest); font-size: 1.25rem; }
.site-header .navbar-brand img { border-radius: .25rem; height: 3rem; width: 3rem; }
.site-header .nav-link {
  color: var(--pb-ink);
  font-weight: 700;
  padding-inline: .65rem !important;
}
.site-header .nav-link:hover,
.site-header .nav-link:focus,
.site-header .nav-link.active { color: var(--pb-terracotta); }
.site-header .navbar-toggler { border-color: var(--pb-forest); }
.site-header .navbar-toggler:focus { box-shadow: 0 0 0 .25rem rgba(155, 93, 0, .35); }
.site-header .navbar-toggler-icon {
  background-image: var(--bs-navbar-toggler-icon-bg);
}
.site-header--stacked-brand .navbar-brand { flex-direction: column; align-items: flex-start !important; }
.site-header--wrapped-nav .navbar-collapse { flex-basis: 100%; }
.site-header--centered-brand .navbar-brand { margin-inline: auto; }
.site-header--centered-brand .navbar > .page-shell { flex-wrap: wrap; }

.section-hero { background: var(--pb-warm-paper); }
.section-hero .hero-image {
  display: block;
  max-height: min(52vw, 45rem);
  object-fit: cover;
  object-position: center;
}
.hero-copy { padding-inline: clamp(0rem, 3vw, 3rem); }
.section-layout--hero-overlay .hero-copy {
  background: var(--pb-paper);
  margin: -3rem 1rem 0;
  padding: clamp(2rem, 5vw, 4.5rem);
  position: relative;
}
.section-layout--hero-editorial .hero-copy { margin-inline: auto; }
.section-layout--hero-image-top .hero-copy { margin-inline: auto; }

.section-paper { background: var(--pb-warm-paper); }
.section-light { background: var(--pb-paper); }
.section-forest { background: var(--pb-forest); color: #fffdf8; }
.section-dark { background: var(--pb-bluegray); color: #fffdf8; }
.section-bluegray { background: var(--pb-bluegray); color: #fffdf8; }
.section-gold { background: var(--pb-gold); color: #1b211d; }
.section-forest h1, .section-forest h2, .section-forest h3,
.section-dark h1, .section-dark h2, .section-dark h3,
.section-bluegray h1, .section-bluegray h2, .section-bluegray h3 { color: #fffdf8; }
.section-gold h1, .section-gold h2, .section-gold h3 { color: #1b211d; }
.section-forest .eyebrow, .section-dark .eyebrow, .section-bluegray .eyebrow { color: #f2cf70; }
.section-gold .eyebrow { color: var(--pb-forest-deep); }
.section-forest a, .section-dark a, .section-bluegray a { color: #f2cf70; }
.section-forest a:hover, .section-dark a:hover, .section-bluegray a:hover { color: #fffdf8; }

.section-image, .hero-image, .gallery-grid img, .story-card img, .editorial-card img {
  border-radius: var(--pb-radius);
}
.section-image { height: auto; max-width: 100%; object-fit: cover; }
.editorial-columns { display: grid; gap: 1.5rem; margin: 2rem 0; }
.editorial-columns article { border-top: .2rem solid var(--pb-terracotta); padding-top: 1rem; }

.btn {
  border-radius: var(--pb-radius);
  font-weight: 700;
  min-height: 2.75rem;
  padding: .7rem 1.15rem;
}
.btn-primary, .btn-dark {
  background: var(--pb-forest);
  border-color: var(--pb-forest);
  color: #fffdf8;
}
.btn-primary:hover, .btn-primary:focus, .btn-dark:hover, .btn-dark:focus {
  background: var(--pb-forest-deep);
  border-color: var(--pb-forest-deep);
  color: #fffdf8;
}
.btn-outline-secondary {
  border-color: var(--pb-terracotta);
  color: var(--pb-terracotta);
}
.btn-outline-secondary:hover, .btn-outline-secondary:focus {
  background: var(--pb-terracotta);
  border-color: var(--pb-terracotta);
  color: #fffdf8;
}
.btn-outline-light { border-color: #fffdf8; color: #fffdf8; }
.btn-outline-light:hover, .btn-outline-light:focus { background: #fffdf8; color: var(--pb-forest-deep); }
.btn-light { background: #fffdf8; border-color: #fffdf8; color: var(--pb-forest-deep); }
.btn-light:hover, .btn-light:focus { background: #e8ded0; border-color: #e8ded0; color: var(--pb-forest-deep); }

.editorial-card, .step-card, .teaser {
  background: var(--pb-paper);
  border: 1px solid var(--pb-border);
  border-radius: var(--pb-radius);
  box-shadow: 0 .35rem .8rem rgba(36, 53, 43, .12);
  color: var(--pb-ink);
}
.editorial-card .card-img-top { aspect-ratio: 4 / 5; object-fit: cover; }
.editorial-card .card-body { padding: 1.35rem; }
.editorial-card .small { color: var(--pb-muted) !important; font-weight: 700; letter-spacing: .08em; }
.feature-list { display: grid; gap: 1.5rem; }
.feature-list article { border-bottom: 1px solid #b9d0c4; padding-bottom: 1.5rem; }
.feature-number {
  color: #f2cf70;
  display: block;
  font-family: var(--pb-serif);
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: .4rem;
}
.step-card { height: 100%; padding: 1.5rem; }
.step-card > span {
  align-items: center;
  background: var(--pb-terracotta);
  border-radius: 50%;
  color: #fffdf8;
  display: inline-flex;
  font-family: var(--pb-serif);
  font-weight: 700;
  height: 2.25rem;
  justify-content: center;
  margin-bottom: 1rem;
  width: 2.25rem;
}

.accordion { --bs-accordion-border-color: #aebcb7; --bs-accordion-btn-color: var(--pb-ink); }
.accordion-item { background: #fffdf8; border-width: 0 0 1px; }
.accordion-button { font-weight: 700; }
.accordion-button:not(.collapsed) { background: #e8ded0; color: var(--pb-forest-deep); }
.accordion-button:focus { box-shadow: 0 0 0 .25rem rgba(242, 207, 112, .55); }
.accordion-body { color: var(--pb-ink); }

.story-card { background: var(--pb-paper); border: 1px solid var(--pb-border); margin: 0; }
.story-card img { border-radius: var(--pb-radius) var(--pb-radius) 0 0; display: block; height: auto; width: 100%; }
.story-card figcaption { padding: 1.35rem; }
.story-card figcaption h3 { margin-bottom: .65rem; }
.showcase-grid { display: grid; gap: 1rem; }
.showcase-grid article { border-top: .2rem solid var(--pb-forest); padding: 1rem 0; }
.gallery-grid figure { background: var(--pb-paper); color: var(--pb-ink); height: 100%; margin: 0; }
.gallery-grid img { display: block; height: auto; width: 100%; }
.gallery-grid figcaption { padding: 1rem; }
.gallery-grid figcaption h3 { font-size: 1.3rem; }
.teaser { height: 100%; padding: 1.35rem; }

.section-layout--contact-focused .container { max-width: 42rem; }
.contact-intro { margin-inline: auto; max-width: 40rem; }
.contact-panel {
  background: #fffdf8;
  border: .2rem solid #f2cf70;
  border-radius: var(--pb-radius);
  color: var(--pb-ink);
  margin: 2rem auto 0;
  max-width: 40rem;
  padding: clamp(1.25rem, 5vw, 3rem);
}
.contact-panel label { display: block; font-weight: 700; margin-bottom: .35rem; }
.contact-panel .form-control { border-color: #68786e; color: var(--pb-ink); min-height: 2.75rem; }
.contact-panel .form-control:focus { border-color: var(--pb-focus); box-shadow: 0 0 0 .25rem rgba(155, 93, 0, .25); }
.contact-panel .form-check { align-items: flex-start; display: flex; gap: .45rem; }
.contact-panel .form-check-input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: checkbox;
  border: 1px solid #68786e;
  flex: 0 0 1.15rem !important;
  height: 1.15rem !important;
  margin: .2rem 0 0 !important;
  min-width: 1.15rem !important;
  padding: 0 !important;
  width: 1.15rem !important;
}
.contact-panel .form-check-label { display: inline; font-weight: 400; margin: 0; }
.contact-panel .form-check-label a { margin-left: .25rem; }
.contact-panel [data-form-status][data-state="success"] {
  background: #d7efdf;
  border: 1px solid #4d946d;
  border-radius: var(--pb-radius);
  color: #123f2c;
  font-weight: 700;
  margin-bottom: 1rem;
  padding: .85rem 1rem;
}
.contact-panel .btn-primary { width: 100%; }

.cookie-banner {
  align-items: center;
  background: #fffdf8;
  border: 1px solid var(--pb-forest);
  bottom: 1rem;
  box-shadow: 0 .5rem 1.2rem rgba(16, 43, 36, .22);
  color: var(--pb-ink);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  left: 1rem;
  padding: 1rem;
  position: fixed;
  right: 1rem;
  z-index: 1100;
}
.cookie-banner p { margin: .25rem 0 0; }
.cookie-banner .btn { white-space: nowrap; }
.site-footer { background: var(--pb-forest-deep); color: #fffdf8; padding: 4rem 0 1.5rem; }
.site-footer h2, .site-footer h3 { color: #fffdf8; }
.site-footer a { color: #f2cf70; }
.site-footer a:hover { color: #fffdf8; }
.site-footer address { font-style: normal; }
.site-footer > p { border-top: 1px solid #759285; margin: 3rem auto 0; max-width: var(--pb-shell); padding: 1.25rem 1rem 0; }

.policy-page { background: var(--pb-warm-paper); min-height: 100vh; }
.policy-page__main { padding: clamp(3rem, 7vw, 6rem) 1rem; }
.policy-document { margin-inline: auto; max-width: 52rem; }
.policy-document__header { border-bottom: 1px solid var(--pb-border); margin-bottom: 2rem; padding-bottom: 1.5rem; }
.policy-document__content { font-size: 1.05rem; }
.policy-document__content h2 { font-size: clamp(1.45rem, 3vw, 2.1rem); margin-top: 2.5rem; }
.policy-document__content h3 { font-size: 1.3rem; margin-top: 1.75rem; }
.policy-document__content p, .policy-document__content li { max-width: 72ch; }

.article-meta {
  align-items: center;
  color: var(--pb-muted);
  display: flex;
  flex-wrap: wrap;
  font-size: .82rem;
  gap: .5rem;
  letter-spacing: .03em;
  margin: 1rem 0 1.25rem;
}
.editorial-disclaimer {
  background: rgba(27, 76, 59, .12);
  border-left: .25rem solid var(--pb-forest);
  color: inherit;
  margin: 1.25rem 0 0;
  padding: .85rem 1rem;
}
.editorial-source-note {
  border-left: .25rem solid var(--pb-terracotta);
  margin-top: 2rem;
  padding: 1rem 1.25rem;
}
.editorial-source-note ul { margin: .75rem 0 0; padding-left: 1.25rem; }
.editorial-source-note .eyebrow { margin-bottom: .35rem; }
.form-note {
  color: var(--pb-paper);
  margin: 0 auto 1rem;
  max-width: 40rem;
  text-align: center;
}
.form-note a { color: #f2cf70; }
.teaser-link { color: inherit; text-decoration-thickness: .08em; text-underline-offset: .18em; }
.teaser-link:hover { color: var(--pb-terracotta); }
.author-profile__image {
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  display: block;
  height: auto;
  max-width: 30rem;
  object-fit: cover;
  width: 100%;
}
.article-list { display: grid; gap: 1.5rem; }
.article-entry { border-top: .2rem solid var(--pb-terracotta); padding-top: 1.25rem; }
.article-entry__meta { color: var(--pb-muted); font-size: .9rem; margin-bottom: .75rem; }
.policy-document__content a, .article-entry a { color: var(--pb-terracotta); }

:focus-visible { outline: .2rem solid var(--pb-focus); outline-offset: .2rem; }
@media (min-width: 576px) {
  .page-shell { width: min(100% - 3rem, var(--pb-shell)); }
  .showcase-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem 2rem; }
}
@media (min-width: 768px) {
  .editorial-columns { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .showcase-grid article:nth-child(2) { margin-top: 2rem; }
  .showcase-grid article:nth-child(3) { margin-top: -1rem; }
}
@media (min-width: 992px) {
  .page-shell { width: min(100% - 4rem, var(--pb-shell)); }
  .site-header--stacked-brand .navbar-brand { flex-direction: row; align-items: center !important; }
  .site-header--wrapped-nav .navbar-collapse { flex-basis: auto; }
  .section-layout--hero-overlay .hero-copy { margin: -9rem 4rem 0; max-width: 68rem; }
  .showcase-grid { grid-template-columns: 1.15fr .85fr; }
}
@media (max-width: 575.98px) {
  .cookie-banner { align-items: stretch; flex-direction: column; }
  .cookie-banner .d-flex { flex-wrap: wrap; }
  .cookie-banner .btn { flex: 1 1 8rem; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !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: Arial, Helvetica, sans-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;
  }
}

/* QA contrast repairs. These rules also cover the standalone policy pages. */
a { color: #7a2c1b; }
a:hover, a:focus { color: #4d1b10; }
.section-forest a, .section-dark a, .section-bluegray a, .site-footer a { color: #f2cf70; }
.section-forest a:hover, .section-forest a:focus,
.section-dark a:hover, .section-dark a:focus,
.section-bluegray a:hover, .section-bluegray a:focus,
.site-footer a:hover, .site-footer a:focus { color: #fffdf8; }
.gallery-grid figcaption h3 { color: var(--pb-forest-deep); }
.contact-panel .form-check-label a { color: #7a2c1b; }

/* Application-owned focused contact layout v1. */
section.section-layout--contact-focused > .container > .row,
section.section-layout--contact-focused > .container-fluid > .row {
  display: block !important;
  width: min(100%, 44rem) !important;
  margin-inline: auto !important;
}

section.section-layout--contact-focused > .container > .row > [class*="col-"],
section.section-layout--contact-focused > .container-fluid > .row > [class*="col-"] {
  width: 100% !important;
  max-width: 100% !important;
  flex: 0 0 100% !important;
}

section.section-layout--contact-focused :where(h2, h3, .lead) {
  text-align: center;
}

section.section-layout--contact-focused form[data-qa-contact-form] {
  width: min(100%, 40rem);
  margin: 1.75rem auto 0;
  padding: clamp(1.25rem, 4vw, 2.5rem);
  border: 1px solid var(--site-accent, currentColor);
  border-radius: 0.5rem;
}

section.section-layout--contact-focused form[data-qa-contact-form] :where(input:not([type="hidden"]):not([type="checkbox"]):not([type="radio"]), select, textarea) {
  width: 100%;
}

section.section-layout--contact-focused form[data-qa-contact-form] .form-check-input {
  width: auto;
}

section.section-layout--contact-focused form[data-qa-contact-form] label {
  display: block;
  margin-bottom: 0.45rem;
}

section.section-layout--contact-focused form[data-qa-contact-form] > .row,
section.section-layout--contact-focused form[data-qa-contact-form] .form-row {
  display: block !important;
}

section.section-layout--contact-focused form[data-qa-contact-form] > .row > [class*="col-"],
section.section-layout--contact-focused form[data-qa-contact-form] .form-row > [class*="col-"] {
  width: 100% !important;
  max-width: 100% !important;
  flex: 0 0 100% !important;
}

section.section-layout--contact-focused form[data-qa-contact-form] :where(button[type="submit"], input[type="submit"]) {
  width: 100%;
  min-height: 3.25rem;
  margin-top: 0.75rem;
}

@media (max-width: 575.98px) {
  section.section-layout--contact-focused form[data-qa-contact-form] {
    padding: 1.25rem;
  }
}

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