:root {
  --color-background: #ffffff;
  --color-text: #0a0a0a;
  --color-muted: #555555;
  --color-soft: #f6f6f6;
  --color-border: #dadada;
  --color-silver: #c0c0c0;
  --color-dark-silver: #8a8a8a;
  --color-footer: #0a0a0a;
  --shadow-soft: 0 18px 46px rgba(10, 10, 10, 0.06);
  --container: 1160px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-background);
  color: var(--color-text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.is-nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  transform: translateY(-150%);
  background: var(--color-text);
  color: #ffffff;
  padding: 10px 14px;
  border-radius: 6px;
  transition: transform 160ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--color-border);
  backdrop-filter: blur(12px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 28px;
}

.brand-lockup,
.footer-brand {
  display: inline-flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

.brand-lockup__mark {
  flex: 0 0 auto;
  width: 210px;
  height: 60px;
  object-fit: contain;
}

.footer-brand span {
  font-weight: 760;
  line-height: 1.15;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav__link {
  border-radius: 6px;
  color: var(--color-muted);
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.2;
  padding: 10px 12px;
  text-decoration: none;
  transition: background-color 160ms ease, color 160ms ease;
}

.site-nav__link:hover,
.site-nav__link.is-active {
  background: var(--color-soft);
  color: var(--color-text);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  background: #ffffff;
}

.nav-toggle__line {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--color-text);
  margin: 3px 0;
  transition: transform 160ms ease, opacity 160ms ease;
}

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

.page-hero {
  border-bottom: 1px solid var(--color-border);
  background: linear-gradient(180deg, #ffffff 0%, #f8f8f8 100%);
}

.page-hero__inner {
  display: grid;
  align-items: center;
  gap: 56px;
  min-height: 360px;
  padding-block: 80px;
}

.page-hero--home .page-hero__inner {
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.55fr);
  min-height: 560px;
}

.page-hero__content {
  max-width: 780px;
}

.page-about .page-hero__content {
  max-width: 1000px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--color-dark-silver);
  font-size: 0.82rem;
  font-weight: 760;
  line-height: 1.2;
  text-transform: uppercase;
}

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

h1 {
  max-width: 900px;
  margin-bottom: 18px;
  font-size: 4.65rem;
  font-weight: 820;
  line-height: 0.98;
}

@media (min-width: 701px) {
  .page-about .page-hero h1 {
    max-width: none;
    font-size: clamp(3.2rem, 5.2vw, 4.05rem);
    line-height: 1.02;
    white-space: nowrap;
  }
}

h2 {
  margin-bottom: 14px;
  font-size: 2.5rem;
  font-weight: 780;
  line-height: 1.12;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
  font-weight: 750;
  line-height: 1.28;
}

.page-hero__lead {
  max-width: 760px;
  margin-bottom: 18px;
  color: var(--color-text);
  font-size: 1.28rem;
  line-height: 1.45;
}

.page-hero__text {
  max-width: 790px;
  margin-bottom: 0;
  color: var(--color-muted);
  font-size: 1.04rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid var(--color-text);
  border-radius: 6px;
  padding: 11px 18px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

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

.button--primary {
  background: var(--color-text);
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(10, 10, 10, 0.12);
}

.button--primary:hover {
  background: #242424;
  border-color: #242424;
}

.button--secondary {
  background: #ffffff;
  border-color: var(--color-silver);
  color: var(--color-text);
}

.button--secondary:hover {
  background: var(--color-soft);
  border-color: var(--color-dark-silver);
}

.button.is-placeholder {
  cursor: default;
}

.hero-identity {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  padding: 28px;
}

.hero-identity__top {
  display: block;
}

.hero-identity__logo {
  width: min(100%, 360px);
  height: auto;
  object-fit: contain;
}

.hero-identity__summary {
  margin-top: 18px;
}

.hero-identity__summary p {
  margin-bottom: 4px;
  font-size: 1.2rem;
  font-weight: 780;
  line-height: 1.2;
}

.hero-identity__summary span {
  color: var(--color-muted);
  font-size: 0.94rem;
}

.hero-identity__divider {
  height: 1px;
  margin-block: 26px;
  background: linear-gradient(90deg, transparent, var(--color-silver), transparent);
}

.identity-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.identity-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
  font-weight: 680;
}

.identity-list li:last-child {
  border-bottom: 0;
}

.identity-list span {
  color: var(--color-muted);
  font-weight: 640;
}

.identity-list strong {
  color: var(--color-text);
  font-size: 0.95rem;
  text-align: right;
}

.section {
  padding-block: 80px;
}

.section--muted {
  border-block: 1px solid var(--color-border);
  background: var(--color-soft);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-heading p {
  color: var(--color-muted);
  font-size: 1.04rem;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

.info-card,
.legal-card,
.legal-placeholder,
.contact-details,
.contact-panel {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #ffffff;
}

.info-card {
  min-height: 160px;
  padding: 24px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.info-card:hover,
.legal-card:hover {
  border-color: var(--color-silver);
  box-shadow: 0 12px 30px rgba(10, 10, 10, 0.05);
}

.info-card p,
.legal-card p,
.legal-placeholder p,
.contact-details dd {
  color: var(--color-muted);
}

.document-list {
  display: grid;
  gap: 14px;
}

.legal-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 24px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.legal-card p,
.info-card p,
.legal-placeholder p {
  margin-bottom: 0;
}

.legal-document {
  max-width: 940px;
}

.legal-document__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-dark-silver);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
}

.legal-document__section {
  padding-block: 26px;
  border-bottom: 1px solid var(--color-border);
}

.legal-document__section:first-of-type {
  padding-top: 0;
}

.legal-document__section h2 {
  margin-bottom: 16px;
  font-size: 1.55rem;
  line-height: 1.2;
}

.legal-document__section p {
  max-width: 850px;
  color: var(--color-muted);
}

.legal-document__section p:last-child,
.legal-list:last-child,
.legal-definition-list:last-child,
.legal-reference-list:last-child {
  margin-bottom: 0;
}

.legal-list,
.legal-reference-list {
  display: grid;
  gap: 10px;
  margin: 0 0 18px;
  padding-left: 20px;
  color: var(--color-muted);
}

.legal-list--ordered {
  padding-left: 22px;
}

.legal-definition-list {
  display: grid;
  gap: 0;
  margin: 0 0 18px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #ffffff;
}

.legal-definition-list div {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  border-bottom: 1px solid var(--color-border);
}

.legal-definition-list div:last-child {
  border-bottom: 0;
}

.legal-definition-list dt,
.legal-definition-list dd {
  margin: 0;
  padding: 15px 18px;
}

.legal-definition-list dt {
  background: var(--color-soft);
  color: var(--color-text);
  font-weight: 720;
}

.legal-definition-list dd {
  color: var(--color-muted);
}

.legal-note {
  border-left: 3px solid var(--color-silver);
  background: var(--color-soft);
  padding: 14px 16px;
  color: var(--color-muted);
}

.legal-document__actions {
  margin-top: 28px;
}

.company-table {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #ffffff;
}

.company-table__row {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  min-height: 64px;
  border-bottom: 1px solid var(--color-border);
}

.company-table__row:last-child {
  border-bottom: 0;
}

.company-table__label,
.company-table__value {
  display: flex;
  align-items: center;
  padding: 18px 22px;
}

.company-table__label {
  background: var(--color-soft);
  color: var(--color-text);
  font-weight: 720;
}

.company-table__value {
  color: var(--color-muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.contact-details,
.contact-panel,
.legal-placeholder {
  padding: 28px;
}

.contact-details h2 {
  margin-bottom: 20px;
  font-size: 1.45rem;
}

.contact-details dl,
.footer-details {
  display: grid;
  gap: 18px;
  margin: 0;
}

.contact-details div,
.footer-details div {
  display: grid;
  gap: 4px;
}

.contact-details dt,
.footer-details dt {
  color: var(--color-dark-silver);
  font-size: 0.82rem;
  font-weight: 760;
  text-transform: uppercase;
}

.contact-details dd,
.footer-details dd {
  margin: 0;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-field {
  display: grid;
  gap: 8px;
}

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

.form-field label,
.checkbox-field {
  color: var(--color-text);
  font-weight: 680;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  background: #ffffff;
  color: var(--color-text);
  padding: 12px 13px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--color-dark-silver);
  box-shadow: 0 0 0 3px rgba(192, 192, 192, 0.25);
  outline: 0;
}

.form-field textarea {
  resize: vertical;
}

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--color-muted);
  font-weight: 500;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--color-text);
}

.form-actions {
  margin-top: 4px;
}

.gdpr-note {
  margin: 18px 0 0;
  color: var(--color-muted);
  font-size: 0.94rem;
}

.source-note {
  max-width: 820px;
  margin: 18px 0 0;
  color: var(--color-muted);
  font-size: 0.94rem;
}

.legal-placeholder {
  max-width: 820px;
}

.legal-placeholder .button {
  margin-top: 26px;
}

.site-footer {
  background: var(--color-footer);
  color: #ffffff;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 52px;
  padding-block: 56px;
}

.site-footer__company {
  display: grid;
  gap: 28px;
}

.footer-brand {
  font-size: 1.1rem;
}

.footer-details {
  max-width: 640px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.footer-details dt,
.site-footer__links h2 {
  color: var(--color-silver);
}

.footer-details dd,
.site-footer a {
  color: #ffffff;
}

.site-footer__links h2 {
  margin-bottom: 18px;
  font-size: 1rem;
  text-transform: uppercase;
}

.site-footer__links ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__links a,
.footer-details a {
  text-decoration-color: rgba(255, 255, 255, 0.42);
}

.site-footer__links a:hover,
.footer-details a:hover {
  color: var(--color-silver);
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-block: 18px;
}

.site-footer__bottom p {
  margin-bottom: 0;
  color: var(--color-silver);
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  h1 {
    font-size: 3.45rem;
  }

  h2 {
    font-size: 2.12rem;
  }

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

  .page-hero--home .page-hero__inner,
  .contact-layout,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .hero-identity {
    max-width: 520px;
  }
}

@media (max-width: 860px) {
  .site-header__inner {
    min-height: 68px;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    inset: 69px 0 auto;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    border-bottom: 1px solid var(--color-border);
    background: #ffffff;
    padding: 12px 20px 20px;
    box-shadow: 0 22px 36px rgba(10, 10, 10, 0.08);
  }

  body.is-nav-open .site-nav {
    display: grid;
  }

  body.is-nav-open .nav-toggle__line:nth-child(2) {
    transform: translateY(5px) rotate(45deg);
  }

  body.is-nav-open .nav-toggle__line:nth-child(3) {
    opacity: 0;
  }

  body.is-nav-open .nav-toggle__line:nth-child(4) {
    transform: translateY(-5px) rotate(-45deg);
  }

  .site-nav__link {
    padding: 14px 12px;
  }
}

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

  h1 {
    font-size: 2.55rem;
    line-height: 1.02;
  }

  h2 {
    font-size: 1.75rem;
  }

  .page-hero__inner {
    min-height: auto;
    padding-block: 54px;
  }

  .section {
    padding-block: 56px;
  }

  .grid--four,
  .grid--two,
  .contact-form,
  .footer-details {
    grid-template-columns: 1fr;
  }

  .legal-card {
    grid-template-columns: 1fr;
  }

  .legal-card .button {
    width: 100%;
  }

  .company-table__row {
    grid-template-columns: 1fr;
  }

  .legal-definition-list div {
    grid-template-columns: 1fr;
  }

  .company-table__label,
  .company-table__value,
  .legal-definition-list dt,
  .legal-definition-list dd {
    padding: 14px 16px;
  }

  .hero-actions .button {
    width: 100%;
  }

}

@media (max-width: 420px) {
  .brand-lockup__mark {
    width: 176px;
    height: 50px;
  }

  .hero-identity,
  .contact-details,
  .contact-panel,
  .legal-placeholder,
  .info-card,
  .legal-card {
    padding: 20px;
  }
}
