@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/assets/fonts/manrope-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Newsreader";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("/assets/fonts/newsreader-latin.woff2") format("woff2");
}

:root {
  --midnight: #0f1136;
  --midnight-soft: #25284e;
  --champagne: #d2bf6c;
  --brass: #806b20;
  --paper: #f7f4ec;
  --porcelain: #fffdf9;
  --mist: #e7e8ed;
  --sage: #667267;
  --ink: #20222e;
  --muted: #666976;
  --error: #8a2d29;
  --success: #386441;
  --hairline: rgb(15 17 54 / 15%);
  --shadow-soft: 0 1.5rem 4rem rgb(15 17 54 / 10%);
  --shadow-card: 0 0.75rem 2.2rem rgb(15 17 54 / 8%);
  --radius-small: 0.35rem;
  --radius-medium: 0.75rem;
  --max-width: 76rem;
  --font-display: "Newsreader", "Iowan Old Style", "Palatino Linotype", Georgia,
    serif;
  --font-body: "Manrope", "Segoe UI", Verdana, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body[data-menu-open="true"] {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

::selection {
  background: var(--champagne);
  color: var(--midnight);
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 1rem;
  left: 1rem;
  padding: 0.75rem 1rem;
  background: var(--midnight);
  color: white;
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

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

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

.wrap {
  width: min(calc(100% - 2.5rem), var(--max-width));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgb(255 253 249 / 96%);
  border-bottom: 1px solid transparent;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
  backdrop-filter: blur(12px);
}

.site-header[data-scrolled] {
  border-bottom-color: var(--hairline);
  box-shadow: 0 0.5rem 1.5rem rgb(15 17 54 / 6%);
}

.header-inner {
  display: flex;
  min-height: 6.25rem;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.8rem;
  color: var(--midnight);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 2.85rem;
  height: 2.85rem;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: var(--midnight);
}

.brand-mark img {
  width: 2.35rem;
  height: 2.35rem;
  object-fit: contain;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  line-height: 1;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-link,
.dropdown-toggle {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  border: 0;
  background: transparent;
  color: var(--midnight);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 700;
  gap: 0.42rem;
  letter-spacing: 0.075em;
  padding: 0.7rem 0.7rem;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-link[aria-current="page"],
.dropdown-toggle[data-active="true"] {
  color: var(--brass);
}

.dropdown-toggle::after {
  width: 0.42rem;
  height: 0.42rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  content: "";
  transform: translateY(-0.15rem) rotate(45deg);
  transition: transform 160ms ease;
}

.dropdown-toggle[aria-expanded="true"]::after {
  transform: translateY(0.1rem) rotate(225deg);
}

.nav-item-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.4rem);
  left: 0;
  display: grid;
  width: max-content;
  min-width: 15rem;
  margin: 0;
  padding: 0.6rem;
  visibility: hidden;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-small);
  background: var(--porcelain);
  box-shadow: var(--shadow-soft);
  list-style: none;
  opacity: 0;
  transform: translateY(-0.4rem);
  transition:
    opacity 160ms ease,
    transform 160ms ease,
    visibility 160ms ease;
}

.dropdown-toggle[aria-expanded="true"] + .dropdown-menu,
.nav-item-dropdown:focus-within .dropdown-menu,
.nav-item-dropdown:hover .dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 0.65rem 0.75rem;
  border-radius: 0.2rem;
  color: var(--ink);
  font-size: 0.82rem;
  text-decoration: none;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible,
.dropdown-menu a[aria-current="page"] {
  background: var(--paper);
  color: var(--brass);
}

.nav-cta,
.btn {
  display: inline-flex;
  min-height: 3.1rem;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.82rem 1.15rem;
  border: 1px solid var(--midnight);
  border-radius: var(--radius-small);
  background: var(--midnight);
  color: white;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 1.2;
  text-decoration: none;
  transition:
    background 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.nav-cta:hover,
.btn:hover {
  background: var(--midnight-soft);
  transform: translateY(-2px);
}

.btn::after {
  content: "→";
  font-size: 1.05rem;
  font-weight: 400;
}

.btn-secondary {
  background: transparent;
  color: var(--midnight);
}

.btn-secondary:hover {
  background: var(--midnight);
  color: white;
}

.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-small);
  background: transparent;
  color: var(--midnight);
  cursor: pointer;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  display: block;
  width: 1.25rem;
  height: 1.5px;
  background: currentColor;
  content: "";
  transition: transform 160ms ease;
}

.menu-icon {
  position: relative;
}

.menu-icon::before {
  position: absolute;
  top: -0.42rem;
}

.menu-icon::after {
  position: absolute;
  top: 0.42rem;
}

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

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

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

.breadcrumbs {
  padding-block: 1.1rem;
  border-bottom: 1px solid var(--hairline);
  background: var(--paper);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.72rem;
  gap: 0.5rem;
  list-style: none;
}

.breadcrumbs li:not(:last-child)::after {
  margin-left: 0.5rem;
  color: var(--brass);
  content: "/";
}

.breadcrumbs a {
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--midnight);
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--porcelain);
}

.page-hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 27%;
  height: 0.42rem;
  background: var(--champagne);
  content: "";
}

.hero-grid {
  display: grid;
  min-height: 33rem;
  align-items: center;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  grid-template-columns: minmax(0, 1.15fr) minmax(19rem, 0.85fr);
  padding-block: clamp(3.5rem, 7vw, 6.5rem);
}

.page-home .hero-grid {
  min-height: min(45rem, calc(100vh - 6.25rem));
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy h1 em {
  color: var(--sage);
  font-weight: 400;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--brass);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 2rem;
  height: 1px;
  background: currentColor;
  content: "";
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  overflow-wrap: break-word;
  text-wrap: balance;
}

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 14ch;
  margin: 1.2rem 0 1.45rem;
  font-size: clamp(2.9rem, 5.3vw, 5rem);
  line-height: 0.98;
}

h2 {
  margin-bottom: 1.2rem;
  color: var(--midnight);
  font-size: clamp(2.25rem, 4.4vw, 4rem);
  line-height: 1.03;
}

h3 {
  margin-bottom: 0.65rem;
  color: var(--midnight);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
}

h4 {
  margin-bottom: 0.5rem;
  color: var(--midnight);
  font-size: 0.95rem;
}

.hero-copy > p:first-of-type {
  max-width: 42rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.23rem);
  line-height: 1.65;
}

.hero-copy ul {
  display: grid;
  max-width: 38rem;
  margin: 1.7rem 0 0;
  padding: 0;
  gap: 0.35rem;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 600;
  list-style: none;
}

.hero-copy li {
  position: relative;
  padding-left: 1.15rem;
}

.hero-copy li::before {
  position: absolute;
  top: 0.72rem;
  left: 0;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--champagne);
  content: "";
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
  margin-top: 2rem;
}

.hero-visual {
  position: relative;
  max-width: 31rem;
  justify-self: end;
}

.hero-visual::before {
  position: absolute;
  z-index: 0;
  top: -1rem;
  right: -1rem;
  width: 64%;
  height: calc(100% + 2rem);
  border: 1px solid var(--champagne);
  content: "";
}

.hero-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 40% center;
  box-shadow: var(--shadow-soft);
  filter: saturate(0.86) contrast(0.98);
}

.hero-caption {
  position: absolute;
  z-index: 2;
  right: -1.5rem;
  bottom: 1.75rem;
  width: min(19rem, 84%);
  margin: 0;
  padding: 1.15rem 1.3rem;
  border-left: 3px solid var(--champagne);
  background: var(--midnight);
  color: white;
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.25;
  box-shadow: 0 1rem 2.8rem rgb(15 17 54 / 22%);
}

.hero-aside {
  position: relative;
  max-width: 27rem;
  min-height: 20rem;
  justify-self: end;
  padding: clamp(2rem, 4vw, 3.5rem);
  border-left: 4px solid var(--champagne);
  background: var(--midnight);
  color: white;
  box-shadow: var(--shadow-soft);
}

.hero-aside::before {
  display: block;
  margin-bottom: 3.5rem;
  color: var(--champagne);
  content: "FINCENTIA";
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.hero-aside strong {
  display: block;
  margin-bottom: 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  font-weight: 500;
  line-height: 1.13;
}

.hero-aside p {
  margin: 0;
  color: rgb(255 255 255 / 68%);
  font-size: 0.85rem;
}

.orientation-bar {
  background: var(--midnight);
  color: white;
}

.orientation-inner {
  display: grid;
  min-height: 8.25rem;
  align-items: center;
  gap: 1.5rem 4rem;
  grid-template-columns: 1.15fr 0.85fr;
  padding-block: 1.65rem;
}

.orientation-copy {
  margin: 0;
  color: white;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.1vw, 1.85rem);
  font-weight: 500;
  line-height: 1.35;
}

.orientation-label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--champagne);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.orientation-note {
  margin: 0;
  color: rgb(255 255 255 / 67%);
  font-size: 0.82rem;
}

.content-section {
  padding-block: clamp(4.5rem, 8vw, 7.5rem);
}

.content-section + .content-section {
  border-top: 1px solid var(--hairline);
}

.content-section:nth-child(even) {
  background: var(--porcelain);
}

.content-section-dark,
.content-section-dark:nth-child(even) {
  border-top-color: rgb(255 255 255 / 12%);
  background: var(--midnight);
  color: white;
}

.section-grid {
  display: grid;
  align-items: start;
  gap: 3rem clamp(2.5rem, 4.5vw, 4.75rem);
  grid-template-columns: minmax(18rem, 0.9fr) minmax(0, 1.1fr);
}

.section-stack {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4.5rem);
}

.section-heading {
  position: sticky;
  top: 8rem;
  min-width: 0;
}

.section-heading-wide {
  max-width: 55rem;
}

.section-heading h2,
.section-heading-wide h2 {
  max-width: 100%;
  margin: 0;
  hyphens: manual;
  overflow-wrap: normal;
}

.section-heading-wide h2 {
  max-width: 15ch;
}

.section-heading-long h2 {
  font-size: clamp(2.15rem, 3.35vw, 3.35rem);
}

.section-kicker {
  display: block;
  margin-bottom: 0.9rem;
  color: var(--brass);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  line-height: 1.4;
  text-transform: uppercase;
}

.section-body {
  min-width: 0;
}

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

.section-body p,
.section-body li {
  color: var(--muted);
}

.section-body code {
  overflow-wrap: anywhere;
}

.section-body p {
  margin-bottom: 1.15rem;
}

.section-body h3 {
  margin-top: 2.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.4vw, 2.05rem);
  font-weight: 500;
}

.section-body h3:first-child {
  margin-top: 0;
}

.section-body h4 {
  margin-top: 1.8rem;
}

.section-body a:not(.btn) {
  color: var(--midnight);
  text-decoration-color: var(--champagne);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.18rem;
}

.link-button {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  margin: -0.5rem 0;
  padding: 0 0.15rem;
  border: 0;
  background: transparent;
  color: var(--midnight);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--champagne);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.18rem;
}

.link-button:hover {
  color: var(--brass);
}

.section-body ul,
.section-body ol {
  display: grid;
  margin: 1.4rem 0 1.6rem;
  padding-left: 1.3rem;
  gap: 0.5rem;
}

.section-body li::marker {
  color: var(--brass);
}

.section-body blockquote {
  margin: 2rem 0;
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--champagne);
  background: rgb(210 191 108 / 10%);
}

.section-body blockquote p {
  margin: 0;
  color: var(--ink);
}

.section-body figure {
  margin: 2.5rem 0;
}

.section-body figure img {
  width: 100%;
  max-height: 35rem;
  object-fit: cover;
  box-shadow: var(--shadow-card);
}

.section-body figcaption {
  margin-top: 0.65rem;
  color: var(--muted);
  font-size: 0.72rem;
}

.section-body figure.logo-figure {
  display: flex;
  min-height: 10rem;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  border: 1px solid var(--hairline);
  background: white;
}

.section-body figure.logo-figure img {
  width: auto;
  max-width: min(100%, 28rem);
  max-height: 9rem;
  box-shadow: none;
  object-fit: contain;
}

.content-section-dark .section-kicker {
  color: var(--champagne);
}

.content-section-dark h2,
.content-section-dark h3,
.content-section-dark h4 {
  color: white;
}

.content-section-dark .section-body p,
.content-section-dark .section-body li,
.content-section-dark .section-body figcaption {
  color: rgb(255 255 255 / 70%);
}

.content-section-dark .section-body a:not(.btn) {
  color: white;
}

.content-section-dark .section-body blockquote {
  background: rgb(255 255 255 / 5%);
}

.content-section-dark .section-body blockquote p {
  color: white;
}

.content-section-answer .section-body {
  padding: clamp(1.75rem, 4vw, 2.75rem);
  border-left: 4px solid var(--champagne);
  background: var(--midnight);
  color: white;
  box-shadow: var(--shadow-card);
}

.content-section-answer .section-body h3,
.content-section-answer .section-body h4 {
  color: white;
}

.content-section-answer .section-body p,
.content-section-answer .section-body li {
  color: rgb(255 255 255 / 72%);
}

.content-section-answer .section-body a:not(.btn) {
  color: white;
}

.editorial-grid {
  display: grid;
  gap: 1rem;
}

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

.editorial-grid-3,
.editorial-grid-4 {
  grid-template-columns: repeat(3, 1fr);
}

.editorial-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 20rem;
  flex-direction: column;
  border: 1px solid var(--hairline);
  background: var(--porcelain);
  box-shadow: 0 0 0 rgb(15 17 54 / 0%);
  overflow: hidden;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.editorial-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}

.editorial-card-media figure {
  margin: 0;
}

.editorial-card-media figure img {
  width: 100%;
  height: 14rem;
  box-shadow: none;
  object-fit: cover;
}

.editorial-card-media figcaption {
  display: none;
}

.editorial-card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 2rem;
}

.card-kicker {
  display: block;
  margin-bottom: 1.2rem;
  color: var(--brass);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.editorial-card h3 {
  margin: 0 0 0.9rem;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
}

.editorial-card p,
.editorial-card li {
  font-size: 0.86rem;
}

.editorial-card .page-actions {
  width: 100%;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--hairline);
}

.editorial-card .page-actions .btn {
  width: 100%;
  justify-content: space-between;
}

.content-section-dark .editorial-card {
  border-color: rgb(255 255 255 / 15%);
  background: rgb(255 255 255 / 4%);
}

.content-section-dark .editorial-card h3 {
  color: white;
}

.content-section-dark .card-kicker {
  color: var(--champagne);
}

.media-composition {
  display: grid;
  align-items: center;
  gap: clamp(2rem, 6vw, 5.5rem);
  grid-template-columns: minmax(0, 0.92fr) minmax(20rem, 1.08fr);
}

.media-composition-reverse .media-copy {
  order: 2;
}

.media-composition-reverse .media-frame {
  order: 1;
}

.media-copy > :last-child {
  margin-bottom: 0;
}

.media-frame {
  position: relative;
}

.media-frame::before {
  position: absolute;
  z-index: 0;
  top: -0.8rem;
  right: -0.8rem;
  width: 55%;
  height: calc(100% + 1.6rem);
  border: 1px solid var(--champagne);
  content: "";
}

.media-composition-reverse .media-frame::before {
  right: auto;
  left: -0.8rem;
}

.media-frame figure {
  position: relative;
  z-index: 1;
  margin: 0;
}

.media-frame figure img {
  width: 100%;
  min-height: 22rem;
  max-height: 35rem;
  box-shadow: var(--shadow-soft);
  object-fit: cover;
}

.media-frame figcaption {
  margin-top: 0.65rem;
}

.process-list {
  margin: 0 !important;
  padding: 0 !important;
  counter-reset: process;
  gap: 0 !important;
  list-style: none;
}

.process-list li {
  position: relative;
  min-height: 5.5rem;
  padding: 1.35rem 1rem 1.35rem 4.5rem;
  border-top: 1px solid var(--hairline);
  counter-increment: process;
}

.process-list li:last-child {
  border-bottom: 1px solid var(--hairline);
}

.process-list li::before {
  position: absolute;
  top: 1.35rem;
  left: 1rem;
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  border-radius: 50%;
  background: var(--midnight);
  color: var(--champagne);
  content: counter(process);
  font-family: var(--font-display);
  font-size: 0.9rem;
}

.content-section-dark .process-list li {
  border-color: rgb(255 255 255 / 15%);
}

.content-section-dark .process-list li::before {
  background: var(--champagne);
  color: var(--midnight);
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-list details {
  border: 1px solid var(--hairline);
  background: var(--porcelain);
}

.faq-list summary {
  position: relative;
  padding: 1.25rem 3.5rem 1.25rem 1.35rem;
  color: var(--midnight);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.35;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 1.3rem;
  color: var(--brass);
  content: "+";
  font-family: var(--font-body);
  font-size: 1.3rem;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-answer {
  padding: 0 1.35rem 1.2rem;
}

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

.table-scroll {
  max-width: 100%;
  margin: 2rem 0;
  overflow-x: auto;
  border: 1px solid var(--hairline);
  background: var(--porcelain);
}

table {
  width: 100%;
  min-width: 38rem;
  border-collapse: collapse;
  font-size: 0.82rem;
}

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

th {
  background: var(--midnight);
  color: white;
  font-size: 0.72rem;
  letter-spacing: 0.035em;
}

tr:last-child td {
  border-bottom: 0;
}

tbody tr:nth-child(even) {
  background: rgb(231 232 237 / 32%);
}

.contact-layout {
  display: grid;
  align-items: start;
  gap: 1.5rem;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
}

.contact-note {
  padding: 2rem;
  border-left: 3px solid var(--champagne);
  background: var(--midnight);
  color: white;
}

.contact-note strong {
  display: block;
  margin-bottom: 0.8rem;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 500;
}

.contact-note p {
  color: rgb(255 255 255 / 70%);
}

.section-body .contact-note a {
  color: white;
}

.contact-form {
  display: grid;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid var(--hairline);
  background: var(--porcelain);
  gap: 1.15rem;
}

.form-row {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}

.form-field {
  display: grid;
  gap: 0.42rem;
}

.form-field label,
.form-legend {
  color: var(--midnight);
  font-size: 0.78rem;
  font-weight: 700;
}

.required {
  color: var(--brass);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgb(15 17 54 / 28%);
  border-radius: var(--radius-small);
  background: white;
  color: var(--ink);
  padding: 0.82rem 0.9rem;
}

.form-field textarea {
  min-height: 9.5rem;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--brass);
  outline: 2px solid rgb(210 191 108 / 30%);
}

.checkbox-field {
  display: grid;
  align-items: start;
  gap: 0.75rem;
  grid-template-columns: auto 1fr;
}

.checkbox-field input {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.28rem;
  accent-color: var(--midnight);
}

.checkbox-field label {
  color: var(--muted);
  font-size: 0.76rem;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-challenge {
  display: grid;
  min-height: 4.1rem;
  align-items: center;
  gap: 0.5rem;
}

.form-help {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.form-help a {
  color: var(--midnight);
  text-decoration-color: var(--champagne);
  text-underline-offset: 0.18rem;
}

.contact-form button {
  width: fit-content;
  cursor: pointer;
}

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

.form-status {
  min-height: 1.6rem;
  margin: 0;
  font-size: 0.8rem;
}

.form-status[data-state="success"] {
  color: var(--success);
}

.form-status[data-state="error"] {
  color: var(--error);
}

.privacy-modal {
  width: min(calc(100% - 2rem), 62rem);
  max-width: none;
  max-height: min(90vh, 56rem);
  margin: auto;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--hairline);
  border-top: 4px solid var(--champagne);
  border-radius: var(--radius-medium);
  background: var(--porcelain);
  color: var(--ink);
  box-shadow: 0 2rem 6rem rgb(15 17 54 / 28%);
}

.privacy-modal::backdrop {
  background: rgb(15 17 54 / 72%);
  backdrop-filter: blur(3px);
}

.privacy-modal-panel {
  display: grid;
  max-height: calc(min(90vh, 56rem) - 4px);
  grid-template-rows: auto minmax(0, 1fr) auto;
}

.privacy-modal-header,
.privacy-modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.privacy-modal-header {
  align-items: flex-start;
  padding: clamp(1.25rem, 3vw, 2rem);
  border-bottom: 1px solid var(--hairline);
  background: var(--paper);
}

.privacy-modal-header .section-kicker {
  margin-bottom: 0.35rem;
}

.privacy-modal-header h2 {
  margin: 0;
  color: var(--midnight);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.privacy-modal-close {
  display: inline-grid;
  width: 2.75rem;
  height: 2.75rem;
  flex: 0 0 auto;
  place-items: center;
  padding: 0;
  border: 1px solid var(--hairline);
  border-radius: 50%;
  background: var(--porcelain);
  color: var(--midnight);
  font-family: var(--font-body);
  font-size: 1.65rem;
  line-height: 1;
  cursor: pointer;
}

.privacy-modal-close:hover {
  border-color: var(--champagne);
  background: white;
}

.privacy-modal-content {
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
}

.privacy-modal-content[aria-busy="true"] {
  min-height: 12rem;
}

.privacy-modal-section {
  padding-block: clamp(1.5rem, 3vw, 2.25rem);
  border-bottom: 1px solid var(--hairline);
}

.privacy-modal-section:last-child {
  border-bottom: 0;
}

.privacy-modal-section h3 {
  margin: 0 0 0.8rem;
  color: var(--midnight);
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.15;
}

.privacy-modal-section .section-body {
  max-width: 70ch;
}

.privacy-modal-section .section-body p,
.privacy-modal-section .section-body li {
  color: var(--muted);
}

.privacy-modal-section .section-body > :first-child {
  margin-top: 0;
}

.privacy-modal-section .section-body > :last-child {
  margin-bottom: 0;
}

.privacy-modal-footer {
  padding: 1rem clamp(1.25rem, 3vw, 2rem);
  border-top: 1px solid var(--hairline);
  background: var(--paper);
}

.privacy-modal-footer > a {
  color: var(--midnight);
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration-color: var(--champagne);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.18rem;
}

.privacy-modal-footer .btn {
  flex: 0 0 auto;
  cursor: pointer;
}

.page-cta {
  padding-block: clamp(2.5rem, 5vw, 4rem);
  background: var(--midnight);
  color: white;
}

.page-cta-inner {
  display: grid;
  align-items: center;
  gap: 2rem 4rem;
  grid-template-columns: minmax(0, 1fr) auto;
}

.page-cta-label {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--champagne);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.page-cta h2 {
  max-width: 22ch;
  margin: 0;
  color: white;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  line-height: 1.12;
}

.page-cta .btn {
  border-color: var(--champagne);
  background: var(--champagne);
  color: var(--midnight);
}

.page-cta .btn:hover {
  border-color: white;
  background: white;
}

.legal-status {
  margin: 1.5rem 0;
  padding: 1.1rem 1.25rem;
  border-left: 3px solid var(--champagne);
  background: rgb(210 191 108 / 12%);
  font-size: 0.82rem;
}

.text-nowrap {
  white-space: nowrap;
}

.analytics-consent {
  position: fixed;
  z-index: 1000;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  display: grid;
  width: min(calc(100% - 2rem), 74rem);
  max-height: calc(100vh - 2rem);
  align-items: center;
  margin-inline: auto;
  padding: clamp(1.25rem, 3vw, 2rem);
  overflow-y: auto;
  border: 1px solid var(--hairline);
  border-top: 4px solid var(--champagne);
  border-radius: var(--radius-medium);
  background: var(--porcelain);
  box-shadow: 0 1.25rem 4rem rgb(15 17 54 / 28%);
  gap: 1.5rem 2.5rem;
  grid-template-columns: minmax(0, 1fr) minmax(14rem, 19rem);
}

.analytics-consent[hidden] {
  display: none;
}

body[data-cookie-banner-enabled="true"] [data-cookie-banner-copy="disabled"],
body[data-cookie-banner-enabled="false"] [data-cookie-banner-copy="enabled"] {
  display: none;
}

.analytics-consent-label {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--brass);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.analytics-consent h2 {
  max-width: none;
  margin-bottom: 0.65rem;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  line-height: 1.12;
}

.analytics-consent p {
  max-width: 54rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.6;
}

.analytics-consent-status {
  min-height: 1.25rem;
  margin-top: 0.45rem;
  color: var(--midnight) !important;
  font-weight: 700;
}

.analytics-consent-actions {
  display: grid;
  gap: 0.65rem;
}

.analytics-consent-button {
  min-height: 2.9rem;
  padding: 0.72rem 0.9rem;
  border: 1px solid var(--midnight);
  border-radius: var(--radius-small);
  background: var(--midnight);
  color: white;
  cursor: pointer;
  font: inherit;
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1.3;
}

.analytics-consent-button:hover {
  background: var(--midnight-soft);
}

.analytics-consent-button-secondary {
  background: transparent;
  color: var(--midnight);
}

.analytics-consent-button-secondary:hover {
  background: var(--paper);
}

.analytics-consent-actions a {
  padding: 0.3rem;
  color: var(--midnight);
  font-size: 0.7rem;
  text-align: center;
  text-decoration-color: var(--champagne);
  text-underline-offset: 0.2rem;
}

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

.footer-main {
  display: grid;
  gap: 3rem 5rem;
  grid-template-columns: 1.05fr 0.7fr 0.75fr;
  padding-block: clamp(4rem, 7vw, 6.5rem);
}

.footer-brand {
  max-width: 27rem;
}

.footer-brand .brand {
  color: white;
}

.footer-brand p {
  margin: 1.5rem 0 0;
  color: rgb(255 255 255 / 65%);
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.35;
}

.footer-column h2 {
  margin-bottom: 1rem;
  color: var(--champagne);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-column ul {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 0.5rem;
  list-style: none;
}

.footer-column li,
.footer-column p {
  margin: 0;
  color: rgb(255 255 255 / 68%);
  font-size: 0.8rem;
}

.footer-column a {
  text-decoration: none;
}

.footer-column a:hover {
  color: white;
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

.footer-bottom {
  display: flex;
  min-height: 5.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border-top: 1px solid rgb(255 255 255 / 14%);
  color: rgb(255 255 255 / 55%);
  font-size: 0.69rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.25rem;
}

.footer-legal a {
  text-decoration: none;
}

.footer-privacy-button {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
}

.footer-legal a:hover,
.footer-privacy-button:hover {
  color: white;
}

.not-found {
  display: grid;
  min-height: calc(100vh - 6.25rem);
  place-items: center;
  padding-block: 5rem;
  background: var(--porcelain);
  text-align: center;
}

.not-found h1 {
  max-width: 11ch;
  margin-inline: auto;
}

.not-found p {
  max-width: 38rem;
  margin-inline: auto;
  color: var(--muted);
}

@media (max-width: 68rem) {
  .site-header {
    backdrop-filter: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    position: fixed;
    z-index: 40;
    top: 6.25rem;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    padding: 1.2rem;
    visibility: hidden;
    overflow-y: auto;
    background: var(--porcelain);
    opacity: 0;
    transform: translateY(-0.5rem);
    pointer-events: none;
    transition:
      opacity 160ms ease,
      transform 160ms ease;
  }

  .nav[data-open="true"] {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-list {
    display: grid;
    align-items: stretch;
  }

  .nav-link,
  .dropdown-toggle {
    width: 100%;
    min-height: 3.3rem;
    justify-content: space-between;
    padding-inline: 0.8rem;
    border-bottom: 1px solid var(--hairline);
    font-size: 0.78rem;
  }

  .dropdown-menu {
    position: static;
    display: none;
    width: auto;
    min-width: 0;
    padding: 0.4rem 0.8rem 0.8rem;
    visibility: visible;
    border: 0;
    background: var(--paper);
    box-shadow: none;
    opacity: 1;
    transform: none;
  }

  .dropdown-toggle[aria-expanded="true"] + .dropdown-menu {
    display: grid;
  }

  .nav-item-dropdown:hover .dropdown-menu,
  .nav-item-dropdown:focus-within .dropdown-menu {
    visibility: visible;
  }

  .nav-cta {
    width: 100%;
    margin-top: 1rem;
  }

  .editorial-grid-3,
  .editorial-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .editorial-card {
    min-height: 0;
  }
}

@media (max-width: 52rem) {
  .hero-grid,
  .section-grid,
  .orientation-inner,
  .contact-layout,
  .media-composition,
  .page-cta-inner,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: 0;
    padding-block: 3.5rem 5rem;
  }

  .page-home .hero-grid {
    min-height: 0;
  }

  .hero-visual,
  .hero-aside {
    width: calc(100% - 1rem);
    max-width: none;
    justify-self: start;
  }

  .hero-visual img {
    aspect-ratio: 4 / 3;
    object-position: 40% 38%;
  }

  .hero-caption {
    right: -1rem;
    bottom: 1rem;
  }

  .section-heading {
    position: static;
  }

  .section-heading h2,
  .section-heading-wide h2 {
    max-width: 15ch;
  }

  .editorial-grid-2,
  .editorial-grid-3,
  .editorial-grid-4 {
    grid-template-columns: 1fr;
  }

  .media-composition-reverse .media-copy,
  .media-composition-reverse .media-frame {
    order: initial;
  }

  .media-frame figure img {
    min-height: 17rem;
  }

  .content-section {
    padding-block: 4rem;
  }

  .page-cta .btn {
    width: fit-content;
  }

  .footer-main {
    gap: 2.5rem;
  }

  .analytics-consent {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 36rem) {
  .wrap {
    width: min(calc(100% - 1.5rem), var(--max-width));
  }

  .header-inner {
    min-height: 5.5rem;
  }

  .brand-name {
    font-size: 1.05rem;
  }

  .brand-mark {
    width: 2.5rem;
    height: 2.5rem;
  }

  .nav {
    top: 5.5rem;
  }

  h1 {
    font-size: clamp(2.6rem, 13vw, 3.5rem);
  }

  h2 {
    font-size: clamp(2.15rem, 11vw, 3rem);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .page-actions,
  .page-actions .btn {
    width: 100%;
  }

  .page-cta .btn {
    width: 100%;
  }

  .privacy-modal {
    width: calc(100% - 1rem);
    max-height: 94vh;
  }

  .privacy-modal-panel {
    max-height: calc(94vh - 4px);
  }

  .privacy-modal-header,
  .privacy-modal-footer {
    gap: 1rem;
  }

  .privacy-modal-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .privacy-modal-footer .btn {
    width: 100%;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 1.5rem;
  }

  .analytics-consent {
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    max-height: 88vh;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
