:root {
  --ink: #071a22;
  --ink-soft: #0e2a34;
  --ink-muted: #173843;
  --paper: #f7f4ed;
  --paper-deep: #e9e2d5;
  --white: #ffffff;
  --copper: #ad7d49;
  --copper-light: #d5aa76;
  --copper-dark: #80572f;
  --text: #17272d;
  --muted: #607078;
  --line: rgba(11, 36, 45, 0.14);
  --danger: #9f3a38;
  --success: #1e715a;
  --shadow-sm: 0 12px 32px rgba(5, 24, 31, 0.08);
  --shadow-lg: 0 30px 80px rgba(5, 24, 31, 0.22);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --container: 1200px;
  --header-height: 84px;
}

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

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: "Segoe UI", Arial, Helvetica, 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%;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

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

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

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

::selection {
  background: var(--copper-light);
  color: var(--ink);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  transform: translateY(-150%);
  padding: 0.65rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
  transition: transform 160ms ease;
}

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

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1rem;
  color: var(--copper-dark);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

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

.eyebrow--light {
  color: var(--copper-light);
}

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

h1,
h2,
h3 {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.08;
  overflow-wrap: anywhere;
}

h1 {
  max-width: 15ch;
  margin-bottom: 1.5rem;
  font-size: clamp(3.1rem, 7vw, 6.6rem);
}

h2 {
  max-width: 18ch;
  margin-bottom: 1.25rem;
  font-size: clamp(2.25rem, 4.6vw, 4.3rem);
}

h3 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
}

.lede {
  max-width: 60ch;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.8vw, 1.3rem);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(247, 244, 237, 0.94);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 10px 28px rgba(7, 26, 34, 0.06);
}

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

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: 118px;
  height: auto;
}

.nav-wrap,
.primary-nav,
.nav-actions {
  display: flex;
  align-items: center;
}

.nav-wrap {
  justify-content: flex-end;
  gap: 2rem;
}

.primary-nav {
  gap: clamp(1rem, 2vw, 2rem);
}

.primary-nav a,
.language-switch,
.footer-links a {
  text-decoration: none;
}

.primary-nav a {
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 650;
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"],
.footer-links a:hover {
  color: var(--copper-dark);
}

.nav-actions {
  gap: 0.65rem;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.language-switch:hover {
  border-color: var(--copper);
  color: var(--copper-dark);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.8rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--copper);
  color: var(--white);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background 170ms ease, color 170ms ease, border-color 170ms ease, transform 170ms ease;
}

.button:hover {
  background: var(--copper-dark);
  transform: translateY(-2px);
}

.button--dark {
  background: var(--ink);
}

.button--dark:hover {
  background: var(--ink-muted);
}

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

.button--ghost:hover {
  border-color: var(--copper-light);
  background: rgba(255, 255, 255, 0.06);
}

.button--outline {
  border-color: var(--copper);
  background: transparent;
  color: var(--copper-dark);
}

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

.button--small {
  min-height: 44px;
  padding-inline: 1.1rem;
  font-size: 0.82rem;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - var(--header-height));
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero-media,
.hero-media::after {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
}

.hero-media::after {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(4, 20, 27, 0.96) 0%, rgba(4, 20, 27, 0.78) 45%, rgba(4, 20, 27, 0.34) 100%),
    linear-gradient(0deg, rgba(4, 20, 27, 0.44), transparent 45%);
  content: "";
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 7rem);
  min-height: calc(100svh - var(--header-height));
  padding-block: clamp(4rem, 8vw, 8rem);
}

.hero-copy {
  max-width: 760px;
}

.hero h1,
.hero .lede {
  color: var(--white);
}

.hero .lede {
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.78);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.hero-note {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  max-width: 58ch;
  margin-top: 2rem;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.88rem;
}

.hero-note svg {
  flex: 0 0 18px;
  margin-top: 0.2rem;
  color: var(--copper-light);
}

.lead-card {
  padding: clamp(1.4rem, 3vw, 2.2rem);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  background: rgba(247, 244, 237, 0.96);
  box-shadow: var(--shadow-lg);
  color: var(--text);
  backdrop-filter: blur(14px);
}

.lead-card h2 {
  margin-bottom: 0.7rem;
  font-size: clamp(1.8rem, 3vw, 2.55rem);
}

.lead-card > p {
  margin-bottom: 1.35rem;
  color: var(--muted);
  font-size: 0.94rem;
}

.lead-form {
  display: grid;
  gap: 1rem;
}

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

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

.field label,
.field-legend {
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 750;
}

.field input,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(7, 26, 34, 0.2);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field textarea {
  min-height: 132px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--copper);
  box-shadow: 0 0 0 4px rgba(173, 125, 73, 0.14);
  outline: none;
}

.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: var(--danger);
}

.field-error {
  min-height: 1.1em;
  margin: 0;
  color: var(--danger);
  font-size: 0.76rem;
  line-height: 1.35;
}

.checkbox-field {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  gap: 0.65rem;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  margin-top: 0.2rem;
  accent-color: var(--copper-dark);
}

.checkbox-field label {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.5;
}

.checkbox-field a {
  color: var(--copper-dark);
}

.lead-form .button {
  width: 100%;
}

.form-status {
  display: none;
  margin: 0;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.84rem;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-error {
  background: rgba(159, 58, 56, 0.1);
  color: var(--danger);
}

.form-status.is-success {
  background: rgba(30, 113, 90, 0.1);
  color: var(--success);
}

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

.trust-rail {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-item {
  min-height: 128px;
  padding: 1.6rem;
  border-right: 1px solid var(--line);
}

.trust-item:first-child {
  border-left: 1px solid var(--line);
}

.trust-kicker {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--copper-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
}

.trust-item span:last-child {
  color: var(--muted);
  font-size: 0.88rem;
}

.section {
  padding-block: clamp(5.5rem, 10vw, 9.5rem);
}

.section--tight {
  padding-block: clamp(3.5rem, 7vw, 6rem);
}

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

.section--ink {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
}

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

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.section-head > div:first-child {
  max-width: 760px;
}

.section-head > p {
  max-width: 470px;
  margin-bottom: 0;
  color: var(--muted);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.audience-card {
  position: relative;
  min-height: 320px;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.audience-card::after {
  position: absolute;
  right: -34px;
  bottom: -38px;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(173, 125, 73, 0.26);
  border-radius: 50%;
  content: "";
}

.card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 2.5rem;
  border: 1px solid rgba(173, 125, 73, 0.44);
  border-radius: 50%;
  color: var(--copper-dark);
  font-family: Georgia, "Times New Roman", serif;
}

.audience-card p {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
  gap: clamp(3rem, 7vw, 8rem);
}

.principles {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.principle {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 1rem;
  padding-block: 1.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.principle strong {
  color: var(--copper-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 400;
}

.principle h3 {
  margin-bottom: 0.4rem;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 1.03rem;
  font-weight: 750;
  letter-spacing: 0;
}

.principle p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.92rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--line);
}

.process-step {
  min-height: 270px;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  background: var(--paper);
}

.process-step span {
  display: block;
  margin-bottom: 4rem;
  color: var(--copper-dark);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.process-step p {
  margin-bottom: 0;
  color: var(--muted);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.project-card {
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--ink-soft);
  color: rgba(255, 255, 255, 0.72);
}

.project-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.project-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.2, 0.65, 0.3, 1);
}

.project-card:hover .project-media img {
  transform: scale(1.035);
}

.project-body {
  padding: clamp(1.5rem, 3vw, 2.25rem);
}

.project-meta {
  margin-bottom: 0.65rem;
  color: var(--copper-light);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.project-card h3 {
  color: var(--white);
}

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

.risk-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
  gap: clamp(2rem, 6vw, 5rem);
  padding: clamp(2rem, 5vw, 4.5rem);
  border: 1px solid rgba(173, 125, 73, 0.36);
  border-radius: var(--radius-lg);
  background: var(--paper-deep);
}

.risk-panel p {
  color: var(--muted);
}

.risk-list {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.risk-list li {
  position: relative;
  padding: 0 0 1rem 1.5rem;
  border-bottom: 1px solid rgba(7, 26, 34, 0.12);
}

.risk-list li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--copper);
  content: "";
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 36px;
  align-items: center;
  width: 100%;
  min-height: 82px;
  padding: 1rem 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}

.faq-question span:first-child {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}

.faq-icon {
  position: relative;
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.faq-icon::before,
.faq-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1px;
  background: var(--copper-dark);
  content: "";
  transition: transform 180ms ease;
}

.faq-icon::before {
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-question[aria-expanded="true"] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.faq-answer > div {
  overflow: hidden;
}

.faq-answer p {
  max-width: 72ch;
  margin-bottom: 1.5rem;
  color: var(--muted);
}

.faq-question[aria-expanded="true"] + .faq-answer {
  grid-template-rows: 1fr;
}

.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.cta-band::after {
  position: absolute;
  right: -160px;
  bottom: -240px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(213, 170, 118, 0.22);
  border-radius: 50%;
  content: "";
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-block: clamp(4rem, 8vw, 7rem);
}

.cta-band h2 {
  max-width: 15ch;
  margin-bottom: 0.8rem;
  color: var(--white);
}

.cta-band p {
  max-width: 56ch;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
}

.site-footer {
  padding-block: 4rem 2rem;
  background: #041218;
  color: rgba(255, 255, 255, 0.62);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-brand img {
  width: 122px;
  margin-bottom: 1.35rem;
}

.footer-brand p {
  max-width: 38ch;
  font-size: 0.9rem;
}

.footer-title {
  margin-bottom: 1rem;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-addresses,
.footer-links {
  display: grid;
  gap: 0.7rem;
}

.footer-addresses p,
.footer-links a {
  margin: 0;
  font-size: 0.88rem;
}

.footer-links a {
  width: fit-content;
}

.footer-regulatory {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(180px, 0.5fr);
  gap: 1.5rem 3rem;
  padding-block: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 0.78rem;
}

.footer-regulatory p {
  display: grid;
  gap: 0.35rem;
  margin: 0;
}

.footer-regulatory-label {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 0.78rem;
}

.footer-bottom button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.subpage-hero {
  padding-block: clamp(4rem, 8vw, 7rem);
  background: var(--ink);
  color: var(--white);
}

.subpage-hero h1 {
  max-width: 18ch;
  margin-bottom: 1rem;
  color: var(--white);
  font-size: clamp(2.8rem, 6vw, 5.2rem);
}

.subpage-hero p {
  max-width: 60ch;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.08rem;
}

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

.legal-content h2 {
  max-width: none;
  margin-top: 3.5rem;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
}

.legal-content h3 {
  margin-top: 2rem;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 750;
  letter-spacing: 0;
}

.legal-content p,
.legal-content li {
  color: #43545b;
}

.legal-content ul,
.legal-content ol {
  padding-left: 1.25rem;
}

.legal-content a {
  color: var(--copper-dark);
}

.legal-meta {
  display: inline-flex;
  margin-bottom: 2rem;
  padding: 0.5rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.78rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  align-items: start;
  gap: clamp(3rem, 7vw, 7rem);
}

.contact-card {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.contact-card + .contact-card {
  margin-top: 1rem;
}

.contact-card p {
  margin-bottom: 0.25rem;
  color: var(--muted);
}

.contact-card a {
  color: var(--copper-dark);
}

.standalone {
  display: grid;
  min-height: calc(100svh - var(--header-height));
  place-items: center;
  padding-block: 4rem;
  background:
    radial-gradient(circle at 75% 15%, rgba(173, 125, 73, 0.16), transparent 30%),
    var(--ink);
  color: var(--white);
}

.standalone-card {
  max-width: 760px;
  padding: clamp(2rem, 6vw, 5rem);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  text-align: center;
}

.standalone-card h1 {
  max-width: none;
  color: var(--white);
  font-size: clamp(3rem, 7vw, 6rem);
}

.standalone-card p {
  max-width: 56ch;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.7);
}

.standalone-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 2rem;
}

.cookie-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1000;
  width: min(calc(100% - 48px), 520px);
  padding: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  background: var(--ink);
  box-shadow: var(--shadow-lg);
  color: rgba(255, 255, 255, 0.76);
}

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

.cookie-banner h2,
.cookie-modal h2 {
  margin-bottom: 0.6rem;
  color: var(--white);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 750;
  letter-spacing: 0;
}

.cookie-banner p {
  margin-bottom: 1rem;
  font-size: 0.86rem;
}

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

.cookie-actions .button {
  min-height: 42px;
  padding: 0.65rem 1rem;
  font-size: 0.78rem;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(2, 12, 16, 0.74);
}

.cookie-dialog {
  width: min(100%, 600px);
  max-height: min(760px, 90svh);
  overflow-y: auto;
  padding: clamp(1.4rem, 4vw, 2.3rem);
  border-radius: var(--radius-md);
  background: var(--ink);
  box-shadow: var(--shadow-lg);
  color: rgba(255, 255, 255, 0.72);
}

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

.modal-close {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.consent-option {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  padding-block: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.consent-option strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--white);
}

.consent-option span {
  display: block;
  font-size: 0.82rem;
}

.switch {
  position: relative;
  display: inline-flex;
  width: 48px;
  height: 28px;
}

.switch input {
  position: absolute;
  opacity: 0;
}

.switch-track {
  width: 48px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: background 160ms ease;
}

.switch-track::after {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--white);
  content: "";
  transition: transform 160ms ease;
}

.switch input:checked + .switch-track {
  background: var(--copper);
}

.switch input:checked + .switch-track::after {
  transform: translateX(20px);
}

.switch input:focus-visible + .switch-track {
  outline: 3px solid var(--copper-light);
  outline-offset: 3px;
}

.switch input:disabled + .switch-track {
  cursor: not-allowed;
  opacity: 0.65;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 550ms ease, transform 550ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

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

@media (max-width: 980px) {
  :root {
    --header-height: 74px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-wrap {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    display: none;
    align-items: stretch;
    padding: 1.5rem 20px 2rem;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: var(--shadow-sm);
  }

  .nav-wrap.is-open {
    display: grid;
  }

  .primary-nav {
    display: grid;
    gap: 0;
  }

  .primary-nav a {
    padding-block: 0.9rem;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .nav-actions {
    justify-content: space-between;
    margin-top: 1rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-block: 5rem;
  }

  .hero-copy {
    max-width: 680px;
  }

  .lead-card {
    width: min(100%, 640px);
  }

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

  .trust-item:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .audience-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

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

  .card-number,
  .process-step span {
    margin-bottom: 1.75rem;
  }

  .process-step {
    min-height: 0;
  }

  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .risk-panel {
    grid-template-columns: 1fr;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  .container,
  .narrow {
    width: min(calc(100% - 28px), var(--container));
  }

  h1 {
    font-size: clamp(2.65rem, 14vw, 4.4rem);
  }

  h2 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .hero-grid {
    padding-block: 3.5rem;
  }

  .hero-media::after {
    background: linear-gradient(90deg, rgba(4, 20, 27, 0.96), rgba(4, 20, 27, 0.72));
  }

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

  .section-head,
  .cta-inner,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-head {
    display: block;
  }

  .section-head > p {
    margin-top: 1rem;
  }

  .trust-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }

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

  .trust-item,
  .trust-item:first-child,
  .trust-item:nth-child(3) {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .principle {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .cta-inner {
    display: flex;
  }

  .cta-inner .button {
    width: 100%;
  }

  .cookie-banner {
    right: 14px;
    bottom: 14px;
    width: calc(100% - 28px);
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
