:root {
  --ink: #171a1c;
  --ink-soft: #24282b;
  --ink-muted: #62686c;
  --paper: #f4f2ed;
  --white: #fff;
  --line: #d8d5ce;
  --gold: #c7922e;
  --gold-bright: #e0ae4a;
  --gold-pale: #f4e4bc;
  --gold-text: #805817;
  --danger: #9c2e24;
  --success: #1c6848;
  --container: 1280px;
  --gutter: clamp(1.25rem, 4vw, 4rem);
  --section: clamp(5rem, 10vw, 9rem);
  --display: "Arial Narrow", "Roboto Condensed", "Aptos Narrow", Arial, sans-serif;
  --body: "Segoe UI", Aptos, Helvetica, Arial, sans-serif;
  color-scheme: light;
}

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

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(to right, rgb(23 26 28 / 3%) 1px, transparent 1px);
  background-size: max(6.25vw, 5rem) 100%;
  content: "";
  pointer-events: none;
}

body.menu-open {
  overflow: hidden;
}

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

picture {
  display: contents;
}

a {
  color: inherit;
  text-underline-offset: 0.2em;
}

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

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

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

h1,
h2,
h3 {
  font-family: var(--display);
  font-stretch: condensed;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(3rem, 7vw, 7rem);
}

h2 {
  font-size: clamp(2.25rem, 4.5vw, 4.8rem);
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.85rem);
}

address {
  font-style: normal;
}

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

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

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

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

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  padding: 0.7rem 1rem;
  background: var(--gold-bright);
  color: var(--ink);
  font-weight: 700;
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

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

.eyebrow {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1.5rem;
  color: var(--gold-text);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero .eyebrow,
.page-hero-dark .eyebrow,
.process-section .eyebrow,
.values-section .eyebrow,
.detail-hero .eyebrow,
.contact-hero .eyebrow,
.legal-hero .eyebrow,
.error-page .eyebrow {
  color: var(--gold-bright);
}

.eyebrow::before {
  width: 2.5rem;
  height: 2px;
  background: currentcolor;
  content: "";
}

.lead {
  max-width: 44rem;
  color: var(--ink-muted);
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  line-height: 1.55;
}

.lead-small {
  max-width: 40rem;
  color: var(--ink-muted);
  font-size: clamp(1.08rem, 1.6vw, 1.3rem);
  line-height: 1.7;
}

.section {
  padding-block: var(--section);
}

.button,
.text-link,
.card-link,
.portal-link {
  display: inline-flex;
  gap: 0.8rem;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
}

.button {
  position: relative;
  min-width: 12.5rem;
  padding: 1rem 1.35rem;
  border: 1px solid transparent;
  cursor: pointer;
  overflow: hidden;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button > * {
  position: relative;
}

.button:hover {
  transform: translateY(-2px);
}

.button-gold {
  background: var(--gold);
  color: #111416;
}

.button-gold:hover {
  background: var(--gold-bright);
}

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

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

.button:disabled {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

.text-link {
  min-height: 2.75rem;
  border-bottom: 1px solid currentcolor;
}

.text-link span:last-child,
.button span:last-child,
.card-link span:last-child {
  transition: transform 180ms ease;
}

.text-link:hover span:last-child,
.button:hover span:last-child,
.card-link:hover span:last-child {
  transform: translateX(0.25rem);
}

.text-link.light {
  color: var(--white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgb(23 26 28 / 12%);
  background: rgb(255 255 255 / 96%);
  box-shadow: 0 0.4rem 1.8rem rgb(23 26 28 / 5%);
}

.header-shell {
  display: flex;
  flex-wrap: wrap;
  width: min(100% - (2 * clamp(1rem, 3vw, 3rem)), 1510px);
  min-height: 5.6rem;
  margin-inline: auto;
  align-items: center;
}

.brand-link {
  display: inline-flex;
  flex: 0 0 auto;
  gap: 0.8rem;
  align-items: center;
  margin-right: clamp(1.5rem, 3vw, 4rem);
  color: var(--ink);
  text-decoration: none;
}

.brand-link img {
  width: 3.7rem;
  height: auto;
  object-fit: contain;
}

.brand-link span {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-link strong {
  font-family: var(--display);
  font-size: 1.2rem;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.brand-link small {
  margin-top: 0.35rem;
  color: var(--ink-muted);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.navigation-wrap {
  display: flex;
  flex: 1;
  min-width: 0;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
}

.primary-nav ul,
.footer-nav ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-nav ul {
  flex-wrap: wrap;
  gap: clamp(0.75rem, 1.5vw, 1.65rem);
  align-items: center;
}

.primary-nav a {
  position: relative;
  display: flex;
  min-height: 3rem;
  align-items: center;
  color: #393e41;
  font-size: 0.79rem;
  font-weight: 750;
  letter-spacing: 0.025em;
  text-decoration: none;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0.4rem;
  left: 0;
  height: 2px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

.header-tools,
.language-nav {
  display: flex;
  align-items: center;
}

.header-tools {
  gap: 1rem;
  flex-wrap: wrap;
}

.language-nav {
  border: 1px solid var(--line);
}

.language-nav a {
  display: grid;
  width: 2.25rem;
  min-height: 2.25rem;
  place-items: center;
  font-size: 0.64rem;
  font-weight: 800;
  text-decoration: none;
}

.language-nav a + a {
  border-left: 1px solid var(--line);
}

.language-nav a[aria-current="true"] {
  background: var(--ink);
  color: var(--white);
}

.portal-link {
  min-height: 2.8rem;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: var(--white);
  white-space: nowrap;
}

.portal-link:hover {
  background: var(--gold);
  color: var(--ink);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: min(51rem, calc(100vh - 5.6rem));
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgb(199 146 46 / 10%), transparent 27%), linear-gradient(115deg, transparent 0 62%, rgb(255 255 255 / 3%) 62% 63%, transparent 63%);
  content: "";
}

.hero-rule {
  position: absolute;
  top: 0;
  bottom: 0;
  left: max(var(--gutter), calc((100vw - var(--container)) / 2));
  width: 1px;
  background: rgb(255 255 255 / 10%);
}

.hero-grid {
  position: relative;
  display: grid;
  min-height: inherit;
  grid-template-columns: minmax(0, 0.95fr) minmax(25rem, 0.72fr);
  gap: clamp(2rem, 6vw, 7rem);
  align-items: center;
  padding-block: clamp(4rem, 8vw, 7.5rem);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 50rem;
  padding-left: clamp(1rem, 3vw, 3rem);
}

.hero h1 {
  max-width: 48rem;
  margin-bottom: 2rem;
  font-size: clamp(3.7rem, 7vw, 7.8rem);
}

.hero h1 span {
  display: block;
}

.hero h1 .gold-line {
  color: var(--gold-bright);
}

.hero-intro {
  max-width: 40rem;
  margin-bottom: 2.5rem;
  color: rgb(255 255 255 / 73%);
  font-size: clamp(1.1rem, 1.55vw, 1.35rem);
}

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

.hero-visual {
  position: relative;
  align-self: stretch;
  margin-right: calc(-1 * var(--gutter));
  min-height: 39rem;
  clip-path: polygon(13% 0, 100% 0, 100% 100%, 0 100%, 0 17%);
}

.hero-image,
.cover-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image {
  position: absolute;
  inset: 0;
  filter: saturate(0.72) contrast(1.04);
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(23 26 28 / 48%), transparent 40%), linear-gradient(0deg, rgb(23 26 28 / 38%), transparent 45%);
  content: "";
}

.experience-stamp {
  position: absolute;
  right: clamp(1rem, 4vw, 4rem);
  bottom: clamp(2rem, 6vw, 5rem);
  z-index: 2;
  display: flex;
  width: clamp(10rem, 16vw, 13rem);
  aspect-ratio: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  border: 1px solid rgb(255 255 255 / 42%);
  background: rgb(23 26 28 / 82%);
  text-align: center;
}

.experience-stamp span {
  color: var(--gold-bright);
  font-family: var(--display);
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  font-weight: 800;
  line-height: 0.9;
}

.experience-stamp small {
  margin-top: 0.9rem;
  color: rgb(255 255 255 / 82%);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.45;
  text-transform: uppercase;
}

.hero-index {
  position: absolute;
  top: 2rem;
  right: 2rem;
  z-index: 2;
  display: flex;
  gap: 0.6rem;
  align-items: center;
  font-size: 0.65rem;
  font-weight: 700;
}

.hero-index i {
  display: block;
  width: 4rem;
  height: 1px;
  background: rgb(255 255 255 / 55%);
}

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

.fact-strip .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.fact-strip p {
  display: flex;
  min-height: 5.5rem;
  margin: 0;
  padding: 1rem 2rem;
  align-items: center;
  justify-content: center;
  color: var(--ink-muted);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

.fact-strip p + p {
  border-left: 1px solid var(--line);
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.8fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: center;
}

.image-composition {
  position: relative;
  min-height: clamp(28rem, 48vw, 43rem);
  margin-left: calc(-1 * var(--gutter));
  overflow: hidden;
}

.image-composition::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgb(255 255 255 / 34%);
  content: "";
  pointer-events: none;
  transform: translate(1.5rem, 1.5rem);
}

.image-label {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 70%;
  padding: 0.7rem 1rem;
  background: var(--ink);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-copy h2 {
  max-width: 44rem;
  margin-bottom: 2rem;
}

.section-copy .text-link,
.section-copy .button {
  margin-top: 1rem;
}

.services-preview,
.related-section {
  border-block: 1px solid var(--line);
  background: var(--white);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.55fr);
  gap: 3rem;
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 5.5rem);
}

.section-heading h2 {
  max-width: 46rem;
  margin-bottom: 0;
}

.section-heading > p {
  margin-bottom: 0.5rem;
  color: var(--ink-muted);
  font-size: 1.1rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  position: relative;
  display: flex;
  min-height: 21rem;
  flex-direction: column;
  padding: clamp(1.6rem, 3vw, 2.7rem);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.service-card::before {
  position: absolute;
  top: -1px;
  right: -1px;
  left: -1px;
  height: 3px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.service-card:hover {
  z-index: 1;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-0.35rem);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.card-number {
  margin-bottom: auto;
  color: var(--gold-text);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.service-card:hover .card-number {
  color: var(--gold-bright);
}

.service-card h3 {
  margin: 3rem 0 1rem;
}

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

.service-card:hover p {
  color: rgb(255 255 255 / 70%);
}

.card-link {
  width: 100%;
  min-height: 3rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  justify-content: space-between;
}

.service-card:hover .card-link {
  border-color: rgb(255 255 255 / 25%);
  color: var(--gold-bright);
}

.section-action {
  display: flex;
  justify-content: flex-end;
  margin-top: 3rem;
}

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

.process-section::after {
  position: absolute;
  top: -18rem;
  right: -10rem;
  width: 38rem;
  height: 38rem;
  border: 1px solid rgb(199 146 46 / 25%);
  content: "";
  transform: rotate(45deg);
}

.inverse h2 {
  max-width: 58rem;
}

.process-list {
  position: relative;
  z-index: 1;
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  counter-reset: process;
}

.process-list li {
  min-height: 21rem;
  padding: 2rem;
  border-top: 1px solid rgb(255 255 255 / 24%);
  border-left: 1px solid rgb(255 255 255 / 16%);
}

.process-list li:last-child {
  border-right: 1px solid rgb(255 255 255 / 16%);
}

.process-list > li > span {
  display: block;
  margin-bottom: 5rem;
  color: var(--gold-bright);
  font-size: 0.72rem;
  font-weight: 800;
}

.process-list h3 {
  margin-bottom: 1rem;
  font-size: 2rem;
}

.process-list p {
  margin-bottom: 0;
  color: rgb(255 255 255 / 66%);
}

.cta-section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4.5rem, 8vw, 7rem);
  background: var(--gold-pale);
}

.cta-section::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: min(29vw, 24rem);
  background: linear-gradient(135deg, var(--gold) 0 50%, transparent 50%);
  content: "";
  opacity: 0.15;
}

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

.cta-inner h2 {
  max-width: 52rem;
  margin-bottom: 1.25rem;
}

.cta-inner p:last-child {
  max-width: 44rem;
  margin-bottom: 0;
  color: #534a37;
  font-size: 1.1rem;
}

.page-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.page-hero-grid {
  display: grid;
  min-height: clamp(34rem, 60vw, 49rem);
  grid-template-columns: minmax(0, 0.85fr) minmax(24rem, 0.9fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
  padding-block: clamp(4rem, 9vw, 8rem);
}

.page-hero-copy h1 {
  max-width: 49rem;
  margin-bottom: 2rem;
}

.page-hero-media {
  position: relative;
  align-self: stretch;
  min-height: 30rem;
  margin-right: calc(-1 * var(--gutter));
  clip-path: polygon(0 8%, 17% 0, 100% 0, 100% 92%, 83% 100%, 0 100%);
}

.page-hero-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, transparent 48%, rgb(23 26 28 / 25%));
  content: "";
}

.corner-line {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  z-index: 2;
  width: 6rem;
  height: 6rem;
  border-right: 3px solid var(--gold-bright);
  border-bottom: 3px solid var(--gold-bright);
}

.page-hero-dark {
  background: var(--ink);
  color: var(--white);
}

.page-hero-dark .lead {
  color: rgb(255 255 255 / 70%);
}

.page-hero-light {
  background: #e9e6df;
}

.editorial-grid {
  display: grid;
  grid-template-columns: minmax(10rem, 0.33fr) minmax(0, 1fr);
  gap: clamp(3rem, 8vw, 10rem);
}

.editorial-index {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding-top: 0.6rem;
  border-top: 1px solid var(--ink);
}

.editorial-index span {
  color: var(--gold-text);
  font-size: 0.82rem;
  font-weight: 800;
}

.editorial-index p {
  max-width: 12rem;
  color: var(--ink-muted);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  line-height: 1.55;
  text-transform: uppercase;
}

.prose {
  max-width: 60rem;
}

.prose p {
  color: #3f4548;
}

.prose-large p:first-child {
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.65rem, 3vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.prose-large p:not(:first-child) {
  max-width: 48rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

.values-section,
.feature-section {
  background: var(--ink);
  color: var(--white);
}

.value-grid,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgb(255 255 255 / 20%);
}

.value-grid article,
.feature-grid article {
  min-height: 23rem;
  padding: clamp(1.5rem, 3vw, 3rem);
  border-right: 1px solid rgb(255 255 255 / 18%);
}

.value-grid article:first-child,
.feature-grid article:first-child {
  border-left: 1px solid rgb(255 255 255 / 18%);
}

.value-grid span,
.feature-grid span {
  display: block;
  margin-bottom: 6rem;
  color: var(--gold-bright);
  font-size: 0.75rem;
  font-weight: 800;
}

.value-grid h2,
.feature-grid h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(1.8rem, 2.7vw, 2.7rem);
}

.value-grid p,
.feature-grid p {
  color: rgb(255 255 255 / 67%);
}

.services-page {
  background: var(--white);
}

.services-page .service-card {
  min-height: 23rem;
}

.detail-hero {
  position: relative;
  padding-block: clamp(3rem, 7vw, 6rem) clamp(5rem, 10vw, 9rem);
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.detail-hero::after {
  position: absolute;
  top: 12%;
  right: -6rem;
  width: 27rem;
  height: 27rem;
  border: 1px solid rgb(199 146 46 / 35%);
  content: "";
  transform: rotate(45deg);
}

.breadcrumb {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 0.65rem;
  margin-bottom: clamp(4rem, 8vw, 8rem);
  color: rgb(255 255 255 / 65%);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.breadcrumb a:hover {
  color: var(--gold-bright);
}

.detail-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4rem;
  align-items: end;
}

.detail-grid h1 {
  max-width: 60rem;
  margin-bottom: 2rem;
}

.detail-grid .lead {
  color: rgb(255 255 255 / 70%);
}

.detail-number {
  color: rgb(255 255 255 / 7%);
  font-family: var(--display);
  font-size: clamp(8rem, 17vw, 18rem);
  font-weight: 900;
  line-height: 0.7;
}

.detail-body .image-composition {
  margin-left: 0;
}

.related-section .section-heading {
  align-items: center;
}

.related-section .section-heading .text-link {
  justify-self: end;
}

.feature-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
}

.feature-grid article {
  min-height: 25rem;
}

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

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

.element-list article {
  display: grid;
  grid-template-columns: 5rem minmax(0, 1fr);
  gap: clamp(2rem, 7vw, 8rem);
  padding: clamp(2rem, 4vw, 3.5rem) 0;
  border-bottom: 1px solid var(--line);
}

.element-list article > span {
  color: var(--gold-text);
  font-size: 0.78rem;
  font-weight: 800;
}

.element-list article > div {
  display: grid;
  grid-template-columns: minmax(16rem, 0.62fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 7rem);
}

.element-list h2 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
}

.element-list p {
  max-width: 38rem;
  margin-bottom: 0;
  color: var(--ink-muted);
  font-size: 1.05rem;
}

.contact-hero {
  position: relative;
  padding-block: clamp(5rem, 11vw, 10rem);
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.contact-hero::after {
  position: absolute;
  right: -15rem;
  bottom: -26rem;
  width: 45rem;
  height: 45rem;
  border: 8rem solid rgb(199 146 46 / 10%);
  content: "";
  transform: rotate(45deg);
}

.contact-intro {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(25rem, 0.7fr);
  gap: clamp(4rem, 10vw, 10rem);
}

.contact-intro h1 {
  max-width: 55rem;
  margin-bottom: 2rem;
}

.contact-intro .lead {
  color: rgb(255 255 255 / 68%);
}

.contact-details {
  display: grid;
  align-self: end;
  border-top: 1px solid rgb(255 255 255 / 24%);
}

.contact-details article {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgb(255 255 255 / 24%);
}

.contact-details article > span {
  color: var(--gold-bright);
  font-size: 0.7rem;
  font-weight: 800;
}

.contact-details h2 {
  grid-column: 2;
  margin: -1.75rem 0 1rem;
  font-size: 1.35rem;
}

.contact-details address,
.contact-details a {
  grid-column: 2;
  color: rgb(255 255 255 / 72%);
}

.form-section {
  padding-block: var(--section);
  background: #e9e6df;
}

.contact-form-section {
  background: var(--paper);
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(16rem, 0.5fr) minmax(0, 1fr);
  gap: clamp(3rem, 9vw, 9rem);
  align-items: start;
}

.form-heading {
  position: sticky;
  top: 8rem;
}

.form-heading h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.3rem, 4vw, 4rem);
}

.form-heading > p:last-child {
  color: var(--ink-muted);
}

.contact-form {
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold);
  background: var(--white);
  box-shadow: 0 1.5rem 5rem rgb(23 26 28 / 8%);
}

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

.field {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.field-wide {
  grid-column: 1 / -1;
}

.field label {
  margin-bottom: 0.45rem;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.035em;
}

.field label > span:not(.optional) {
  color: var(--danger);
}

.optional {
  color: var(--ink-muted);
  font-weight: 500;
}

.field input,
.field textarea {
  width: 100%;
  min-height: 3.5rem;
  padding: 0.8rem 0.9rem;
  border: 1px solid #aaa9a4;
  border-radius: 0;
  background: #fdfdfb;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.form-application textarea {
  min-height: 8rem;
}

.contact-form :disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

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

.field input:focus,
.field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgb(199 146 46 / 18%);
  outline: 0;
}

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

.field-hint,
.field-error {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.78rem;
  line-height: 1.5;
}

.field-hint {
  margin: 0 0 0.45rem;
  color: var(--ink-muted);
}

.field-error {
  color: var(--danger);
  font-weight: 650;
}

.file-field input {
  height: auto;
  padding: 1rem;
  border-style: dashed;
  background: var(--paper);
}

.file-field input::file-selector-button {
  margin-right: 1rem;
  padding: 0.65rem 0.9rem;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  font: inherit;
  cursor: pointer;
}

.file-field .field-hint {
  margin-top: 0.6rem;
}

.file-field .upload-note {
  margin-top: 0.65rem;
}

.upload-note {
  margin: 0;
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--gold);
  background: var(--paper);
  color: var(--ink-muted);
  font-size: 0.88rem;
}

.consent-field {
  display: grid;
  grid-template-columns: 1.35rem 1fr;
  gap: 0.75rem;
  align-items: start;
  margin-top: 0.5rem;
}

.consent-field input {
  width: 1.25rem;
  min-height: 1.25rem;
  margin-top: 0.15rem;
  accent-color: var(--gold);
}

.consent-field label {
  margin: 0;
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.6;
}

.consent-field .field-error {
  grid-column: 2;
}

.form-footer {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.form-footer p {
  max-width: 31rem;
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.75rem;
}

.form-notice {
  display: grid;
  grid-template-columns: 2.4rem 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1.25rem;
  border: 1px solid;
  background: var(--white);
}

.form-notice > span {
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid currentcolor;
  border-radius: 50%;
  place-items: center;
  font-weight: 800;
}

.form-notice p,
.form-notice ul {
  margin-bottom: 0;
}

.form-notice.success {
  color: var(--success);
}

.form-notice.error {
  color: var(--danger);
}

.form-notice.unavailable {
  color: #76560c;
}

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

.legal-hero {
  padding-block: clamp(5rem, 10vw, 9rem);
  background: var(--ink);
  color: var(--white);
}

.legal-intro {
  max-width: 68rem;
}

.legal-intro h1 {
  margin-bottom: 2rem;
}

.legal-intro .lead {
  margin-bottom: 0;
  color: rgb(255 255 255 / 68%);
}

.draft-badge {
  display: inline-flex;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 2rem;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--gold);
  color: var(--gold-bright);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.draft-badge span {
  display: grid;
  width: 1.5rem;
  height: 1.5rem;
  border: 1px solid currentcolor;
  border-radius: 50%;
  place-items: center;
}

.legal-grid {
  display: grid;
  border-top: 1px solid var(--line);
}

.legal-grid article {
  display: grid;
  grid-template-columns: 5rem minmax(0, 1fr);
  gap: clamp(2rem, 7vw, 8rem);
  padding: clamp(2rem, 4vw, 3.75rem) 0;
  border-bottom: 1px solid var(--line);
}

.legal-grid article > span {
  color: var(--gold-text);
  font-size: 0.75rem;
  font-weight: 800;
}

.legal-grid h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(1.65rem, 3vw, 2.5rem);
}

.legal-grid p {
  max-width: 58rem;
  margin-bottom: 0;
  color: #494f52;
  font-size: 1.03rem;
}

.open-information {
  padding: 0.08em 0.35em;
  background: #ffe09b;
  color: #5a3e00;
  font-weight: 750;
}

.error-page {
  position: relative;
  min-height: 45rem;
  padding-block: clamp(5rem, 10vw, 9rem);
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.error-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 3rem;
  align-items: center;
}

.error-grid h1 {
  max-width: 52rem;
  margin-bottom: 2rem;
}

.error-grid .lead {
  margin-bottom: 2.5rem;
  color: rgb(255 255 255 / 67%);
}

.error-code {
  margin-bottom: 4rem;
  color: var(--gold-bright);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.error-mark {
  color: rgb(255 255 255 / 4%);
  font-family: var(--display);
  font-size: min(55vw, 42rem);
  font-weight: 900;
  line-height: 0.7;
}

.site-footer {
  position: relative;
  padding-top: clamp(4rem, 8vw, 7rem);
  background: #111416;
  color: var(--white);
}

.footer-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: min(35vw, 30rem);
  height: 4px;
  background: var(--gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(2, minmax(0, 0.45fr));
  gap: clamp(3rem, 8vw, 8rem);
  padding-bottom: clamp(4rem, 7vw, 6rem);
}

.footer-brand {
  display: grid;
  grid-template-columns: 5rem minmax(0, 1fr);
  gap: 0.5rem 1.25rem;
}

.footer-brand img {
  width: 4.4rem;
  height: auto;
  object-fit: contain;
}

.footer-name {
  margin: 0.65rem 0 0.2rem;
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.footer-name + p {
  color: rgb(255 255 255 / 55%);
  font-size: 0.8rem;
}

.footer-brand address,
.footer-brand > a {
  grid-column: 2;
  overflow-wrap: anywhere;
  color: rgb(255 255 255 / 62%);
  font-size: 0.9rem;
}

.footer-brand > a:hover {
  color: var(--gold-bright);
}

.footer-label {
  margin-bottom: 1.6rem;
  color: var(--gold-bright);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-nav ul {
  flex-direction: column;
  gap: 0.8rem;
}

.footer-nav a {
  color: rgb(255 255 255 / 72%);
  font-size: 0.9rem;
  text-decoration: none;
}

.footer-nav a:hover {
  color: var(--gold-bright);
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  min-height: 5rem;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgb(255 255 255 / 14%);
  color: rgb(255 255 255 / 45%);
  font-size: 0.72rem;
  letter-spacing: 0.035em;
}

.footer-bottom span:last-child {
  color: var(--gold-bright);
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

@media (max-width: 1220px) {
  .brand-link span {
    display: none;
  }

  .brand-link {
    margin-right: 1.25rem;
  }

  .portal-link {
    padding-inline: 0.75rem;
    font-size: 0.7rem;
  }

  .primary-nav ul {
    gap: 0.8rem;
  }

  .primary-nav a {
    font-size: 0.73rem;
  }
}

@media (max-width: 1050px) {
  .site-header {
    position: sticky;
  }

  .header-shell {
    min-height: 5rem;
    justify-content: space-between;
  }

  .brand-link span {
    display: flex;
  }

  .brand-link img {
    width: 3.25rem;
    height: auto;
  }

  .menu-toggle {
    display: grid;
    width: 3rem;
    height: 3rem;
    padding: 0.7rem;
    border: 1px solid var(--ink);
    background: transparent;
    cursor: pointer;
    place-content: center;
  }

  .menu-toggle > span:not(.visually-hidden) {
    display: block;
    width: 1.45rem;
    height: 2px;
    margin: 0.18rem 0;
    background: var(--ink);
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] > span:first-child {
    transform: translateY(0.36rem) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-0.36rem) rotate(-45deg);
  }

  .navigation-wrap {
    position: fixed;
    top: 5rem;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: flex-start;
    padding: 1.5rem var(--gutter) 2rem;
    overflow-y: auto;
    background: var(--ink);
    color: var(--white);
    opacity: 0;
    transform: translateY(-0.75rem);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
  }

  .navigation-wrap.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .primary-nav ul {
    display: block;
  }

  .primary-nav li {
    border-bottom: 1px solid rgb(255 255 255 / 17%);
  }

  .primary-nav a {
    min-height: 4rem;
    color: var(--white);
    font-family: var(--display);
    font-size: 1.5rem;
    letter-spacing: -0.015em;
  }

  .primary-nav a::after {
    right: auto;
    bottom: -1px;
    width: 4rem;
  }

  .header-tools {
    flex-wrap: wrap;
    align-items: stretch;
    margin-top: auto;
    padding-top: 2rem;
  }

  .language-nav {
    border-color: rgb(255 255 255 / 27%);
  }

  .language-nav a {
    width: 3.1rem;
    min-height: 3.1rem;
  }

  .language-nav a + a {
    border-color: rgb(255 255 255 / 27%);
  }

  .language-nav a[aria-current="true"] {
    background: var(--gold);
    color: var(--ink);
  }

  .portal-link {
    min-height: 3.1rem;
    background: var(--gold);
    color: var(--ink);
    font-size: 0.75rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: clamp(4rem, 10vw, 7rem);
  }

  .hero-copy {
    max-width: 50rem;
  }

  .hero-visual {
    width: calc(100% + (2 * var(--gutter)));
    min-height: clamp(28rem, 72vw, 42rem);
    margin: 0 calc(-1 * var(--gutter));
    clip-path: polygon(0 10%, 12% 0, 100% 0, 100% 100%, 0 100%);
  }

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

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

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

  .page-hero-grid {
    grid-template-columns: 1fr;
  }

  .page-hero-copy {
    max-width: 52rem;
  }

  .page-hero-media {
    width: calc(100% + (2 * var(--gutter)));
    min-height: clamp(26rem, 66vw, 39rem);
    margin: 0 calc(-1 * var(--gutter));
  }

  .contact-intro,
  .form-layout {
    grid-template-columns: 1fr;
  }

  .contact-details {
    max-width: 40rem;
  }

  .form-heading {
    position: static;
    max-width: 44rem;
  }

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

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

@media (max-width: 760px) {
  :root {
    --gutter: 1.25rem;
    --section: 4.5rem;
  }

  body::before {
    background-size: 5rem 100%;
  }

  .brand-link strong {
    font-size: 1.05rem;
  }

  .brand-link small {
    font-size: 0.56rem;
  }

  .hero-copy {
    padding-left: 0;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 16vw, 5.3rem);
  }

  .hero-visual {
    min-height: 28rem;
  }

  .experience-stamp {
    right: 1.25rem;
    bottom: 1.25rem;
    width: 10rem;
  }

  .fact-strip .container {
    grid-template-columns: 1fr;
  }

  .fact-strip p {
    min-height: 4rem;
  }

  .fact-strip p + p {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .split-grid,
  .section-heading,
  .cta-inner,
  .editorial-grid,
  .detail-grid,
  .error-grid {
    grid-template-columns: 1fr;
  }

  .split-grid {
    gap: 3rem;
  }

  .image-composition {
    min-height: 27rem;
    margin-inline: calc(-1 * var(--gutter));
  }

  .section-heading {
    gap: 1.25rem;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 19rem;
  }

  .section-action,
  .related-section .section-heading .text-link {
    justify-self: stretch;
  }

  .section-action .button {
    width: 100%;
  }

  .process-list,
  .value-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .process-list li,
  .value-grid article,
  .feature-grid article {
    min-height: auto;
    padding: 2rem 1rem;
    border-right: 0;
    border-bottom: 1px solid rgb(255 255 255 / 17%);
    border-left: 0;
  }

  .value-grid article:first-child,
  .feature-grid article:first-child {
    border-left: 0;
  }

  .process-list > li > span,
  .value-grid span,
  .feature-grid span {
    margin-bottom: 2.5rem;
  }

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

  .page-hero-grid {
    min-height: auto;
    gap: 2rem;
    padding-bottom: 0;
  }

  .page-hero-copy h1 {
    font-size: clamp(3rem, 15vw, 5rem);
  }

  .page-hero-media {
    min-height: 25rem;
    clip-path: polygon(0 8%, 15% 0, 100% 0, 100% 100%, 0 100%);
  }

  .editorial-grid {
    gap: 2.5rem;
  }

  .editorial-index {
    max-width: 20rem;
  }

  .detail-number,
  .error-mark {
    display: none;
  }

  .detail-hero {
    padding-top: 2.5rem;
  }

  .breadcrumb {
    margin-bottom: 4rem;
    flex-wrap: wrap;
  }

  .element-list article,
  .legal-grid article {
    grid-template-columns: 2rem minmax(0, 1fr);
    gap: 1rem;
  }

  .element-list article > div {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

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

  .field-wide {
    grid-column: auto;
  }

  .contact-form {
    margin-inline: calc(-1 * var(--gutter));
  }

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

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

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

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

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

@media (max-width: 430px) {
  .brand-link span {
    display: none;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button-row .button,
  .button-row .text-link {
    width: 100%;
  }

  .hero-visual {
    min-height: 24rem;
  }

  .hero-index {
    display: none;
  }

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

  .footer-brand {
    grid-column: auto;
  }
}

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

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

@media print {
  .site-header,
  .site-footer,
  .cta-section,
  .button,
  .form-section {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
    font-size: 11pt;
  }

  .legal-hero {
    padding: 1rem 0;
    background: #fff;
    color: #000;
  }

  .legal-intro .lead,
  .legal-grid p {
    color: #000;
  }

  .legal-section {
    padding: 1rem 0;
  }
}
/* Non-modal privacy settings: no cookie wall, no preselected optional service. */
.privacy-panel {
  position: relative;
  z-index: 120;
  width: min(560px, calc(100vw - 48px));
  margin: 24px;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 28px;
  color: #22282b;
  background: #fffdf8;
  border: 1px solid #a18a56;
  border-top: 4px solid #ac9155;
  box-shadow: 0 12px 60px #0004;
  text-align: left;
}
.privacy-panel.is-enhanced { position: fixed; inset: auto auto 24px 24px; margin: 0; max-height: min(680px, 78dvh); }
.privacy-panel[hidden], .privacy-close[hidden] { display: none; }
.privacy-panel .eyebrow { margin: 0 35px 10px 0; color: #6c592f; }
.privacy-panel h2 { font-size: 1.4rem; line-height: 1.2; letter-spacing: -.02em; margin: 0 16px 12px 0; }
.privacy-panel p { font-size: .91rem; line-height: 1.55; margin: 0 0 14px; }
.privacy-panel h3 { font-size: .91rem; line-height: 1.5; margin: 16px 0 6px; }
.privacy-panel .privacy-status { color: #35563b; font-weight: 700; }
.privacy-close { position: absolute; top: 8px; right: 8px; width: 44px; height: 44px; display: grid; place-items: center; border: 0; background: transparent; color: #22282b; font-size: 1.8rem; cursor: pointer; }
.privacy-details { border-top: 1px solid #d9d3c6; border-bottom: 1px solid #d9d3c6; margin-bottom: 18px; }
.privacy-details summary { padding: 13px 0; font-size: .91rem; font-weight: 700; cursor: pointer; }
.privacy-details > div { padding-bottom: 4px; }
.privacy-form { display: grid; gap: 8px; }
.privacy-panel .privacy-save { display: block; width: 100%; min-height: 48px; border: 1px solid #22282b; background: #22282b; color: #fffdf8; padding: 14px 16px; font-size: .88rem; line-height: 1.4; white-space: normal; cursor: pointer; }
.privacy-panel .privacy-save:hover { background: #3c454a; }
.privacy-reset { min-height: 44px; border: 1px solid #777366; padding: 10px 14px; font: inherit; font-size: .85rem; background: transparent; color: #22282b; cursor: pointer; }
.privacy-links { display: flex; flex-wrap: wrap; gap: 8px 24px; margin-top: 12px; font-size: .8rem; }
.privacy-links a { text-decoration: underline; text-underline-offset: 3px; padding: 5px 0; }
.privacy-panel :focus-visible { outline: 3px solid #795c19; outline-offset: 3px; }
@media (max-width: 600px) {
  .privacy-panel { width: auto; margin: 8px; padding: 22px 18px; }
  .privacy-panel.is-enhanced { inset: auto 8px 8px; max-height: 64dvh; }
  .privacy-panel h2 { font-size: 1.2rem; }
  .privacy-panel p { font-size: .86rem; }
}
