@font-face {
  font-family: "Urbanist";
  src: url("/assets/fonts/Urbanist-Regular.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Urbanist";
  src: url("/assets/fonts/Urbanist-Medium.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: "Urbanist";
  src: url("/assets/fonts/Urbanist-SemiBold.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 600;
}

@font-face {
  font-family: "Urbanist";
  src: url("/assets/fonts/Urbanist-Bold.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}

:root {
  --green-800: #145c2f;
  --green-700: #18703a;
  --green-600: #228b22;
  --mint-200: #bdf6c5;
  --mint-100: #e3f9e7;
  --orange-500: #d96f45;
  --ink-900: #14181b;
  --ink-700: #3f4b53;
  --ink-500: #66737c;
  --line: #dce3e6;
  --surface: #ffffff;
  --surface-soft: #f3f6f7;
  --surface-warm: #fff8f1;
  --focus: #075ec8;
  --shadow-raised: 0 8px 18px rgba(20, 24, 27, 0.1), 0 2px 4px rgba(20, 24, 27, 0.08);
  --shadow-pressed: 0 2px 5px rgba(20, 24, 27, 0.12);
  color-scheme: light;
  font-family: "Urbanist", "Segoe UI", sans-serif;
  font-synthesis: none;
  letter-spacing: 0;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--surface);
  scroll-behavior: smooth;
}

body {
  min-width: 280px;
  margin: 0;
  color: var(--ink-900);
  background: var(--surface);
  font-size: 17px;
  line-height: 1.62;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--green-700);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--green-800);
}

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

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

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: #fff;
  background: var(--ink-900);
  border-radius: 4px;
  transform: translateY(-150%);
}

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

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgba(220, 227, 230, 0.92);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
}

.header-inner,
.content-width,
.footer-inner {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 11px;
  color: var(--ink-900);
  font-size: 22px;
  font-weight: 700;
  text-decoration: none;
}

.brand-logo {
  width: 156px;
  height: auto;
  object-fit: contain;
}

.site-nav {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.site-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 8px 11px;
  border-radius: 6px;
  color: var(--ink-700);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--green-800);
  background: var(--mint-100);
}

.language-switcher {
  display: inline-grid;
  grid-template-columns: repeat(2, 42px);
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface-soft);
}

.language-switcher button {
  min-height: 38px;
  padding: 0;
  border: 0;
  color: var(--ink-700);
  background: transparent;
  font: 700 13px/1 "Urbanist", sans-serif;
  cursor: pointer;
}

.language-switcher button[aria-pressed="true"] {
  color: #fff;
  background: var(--green-700);
}

.hero {
  min-height: 560px;
  display: grid;
  align-items: center;
  padding-block: 64px 56px;
  color: #fff;
  background: var(--green-800);
  border-bottom: 8px solid var(--mint-200);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(230px, 0.75fr);
  align-items: center;
  gap: 56px;
}

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

.hero-mark {
  width: min(300px, 75%);
  height: auto;
  aspect-ratio: 1;
  justify-self: center;
  object-fit: contain;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 45px rgba(9, 42, 23, 0.34);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--mint-200);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: 58px;
}

h2 {
  margin-bottom: 18px;
  font-size: 34px;
}

h3 {
  margin-bottom: 8px;
  font-size: 21px;
}

.hero p {
  max-width: 640px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

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

.button:active {
  transform: translateY(1px);
  box-shadow: var(--shadow-pressed);
}

.button-primary {
  color: var(--green-800);
  background: var(--mint-200);
}

.button-primary:hover {
  color: var(--green-800);
  background: #d2fad7;
}

.button-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  background: transparent;
  box-shadow: none;
}

.button-secondary:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.button-dark {
  color: #fff;
  background: var(--ink-900);
}

.button-dark:hover {
  color: #fff;
  background: #2b3338;
}

.section {
  padding-block: 76px;
}

.section-soft {
  background: var(--surface-soft);
}

.section-warm {
  background: var(--surface-warm);
}

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

.section-heading p,
.lead {
  margin: 0;
  color: var(--ink-700);
  font-size: 19px;
}

.experience-grid,
.link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.experience-card,
.link-card {
  min-width: 0;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 4px 12px rgba(20, 24, 27, 0.06);
}

.experience-card p,
.link-card p {
  margin: 0;
  color: var(--ink-700);
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--ink-700);
  font-size: 14px;
  font-weight: 700;
}

.status::before {
  width: 9px;
  height: 9px;
  content: "";
  border-radius: 50%;
  background: var(--orange-500);
  box-shadow: 0 0 0 4px rgba(217, 111, 69, 0.13);
}

.link-card {
  display: block;
  color: var(--ink-900);
  text-decoration: none;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.link-card:hover {
  color: var(--ink-900);
  border-color: var(--green-600);
  transform: translateY(-2px);
  box-shadow: var(--shadow-raised);
}

.link-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 19px;
}

.notice-band {
  padding-block: 34px;
  color: var(--ink-900);
  background: var(--mint-200);
}

.notice-band .content-width {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.notice-band h2 {
  margin: 0 0 6px;
  font-size: 27px;
}

.notice-band p {
  max-width: 650px;
  margin: 0;
}

.page-hero {
  padding-block: 62px 50px;
  border-bottom: 1px solid var(--line);
  background: var(--surface-soft);
}

.page-hero .content-width {
  max-width: 900px;
}

.page-hero h1 {
  margin-bottom: 14px;
  color: var(--ink-900);
  font-size: 46px;
}

.page-hero p {
  max-width: 750px;
  margin: 0;
  color: var(--ink-700);
  font-size: 19px;
}

.document-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 720px);
  align-items: start;
  justify-content: center;
  gap: 56px;
}

.document-nav {
  position: sticky;
  top: 100px;
  padding-left: 16px;
  border-left: 3px solid var(--mint-200);
}

.document-nav strong {
  display: block;
  margin-bottom: 10px;
}

.document-nav a {
  display: block;
  padding-block: 5px;
  color: var(--ink-700);
  font-size: 15px;
  text-decoration: none;
}

.document-nav a:hover {
  color: var(--green-700);
  text-decoration: underline;
}

.legal-copy {
  min-width: 0;
}

.legal-copy section {
  scroll-margin-top: 100px;
  margin-bottom: 42px;
}

.legal-copy h2 {
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
  font-size: 27px;
}

.legal-copy h3 {
  margin-top: 28px;
}

.legal-copy p,
.legal-copy li {
  color: var(--ink-700);
}

.legal-copy li + li {
  margin-top: 8px;
}

.meta-line {
  margin: 0 0 28px;
  color: var(--ink-500);
  font-size: 15px;
}

.callout {
  margin-block: 28px;
  padding: 20px 22px;
  border-left: 4px solid var(--green-600);
  background: var(--mint-100);
}

.callout-warning {
  border-left-color: var(--orange-500);
  background: var(--surface-warm);
}

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

.steps {
  margin: 0;
  padding-left: 22px;
}

.steps li {
  padding-left: 6px;
}

.contact-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 22px;
  padding-block: 22px;
  border-bottom: 1px solid var(--line);
}

.contact-row:first-child {
  border-top: 1px solid var(--line);
}

.contact-row h3,
.contact-row p {
  margin: 0;
}

.contact-row p {
  color: var(--ink-700);
}

.callback-shell {
  min-height: calc(100vh - 75px);
  display: grid;
  place-items: center;
  padding: 40px 20px;
  background: var(--surface-soft);
}

.callback-panel {
  width: min(560px, 100%);
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow-raised);
  text-align: center;
}

.callback-panel img {
  width: 92px;
  height: 92px;
  margin: 0 auto 18px;
}

.callback-panel h1 {
  margin-bottom: 12px;
  font-size: 32px;
}

.callback-panel p {
  color: var(--ink-700);
}

.site-footer {
  padding-block: 44px;
  color: #dce7df;
  background: var(--ink-900);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 32px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}

.footer-brand img {
  width: 34px;
  height: 34px;
  padding: 3px;
  border-radius: 4px;
  background: #fff;
}

.footer-copy {
  max-width: 520px;
  margin: 12px 0 0;
  color: #aab8af;
  font-size: 15px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 22px;
}

.footer-links a {
  color: #e8f1eb;
  font-size: 15px;
}

.footer-bottom {
  grid-column: 1 / -1;
  margin: 8px 0 0;
  padding-top: 24px;
  border-top: 1px solid #344039;
  color: #94a49a;
  font-size: 14px;
}

@media (max-width: 900px) {
  .header-inner {
    min-height: auto;
    flex-wrap: wrap;
    padding-block: 12px;
    gap: 10px 18px;
  }

  .site-nav {
    order: 3;
    flex-basis: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .language-switcher {
    margin-left: auto;
  }

  .hero {
    min-height: 610px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-mark {
    width: 180px;
    grid-row: 1;
    justify-self: start;
    padding: 20px;
  }

  h1 {
    font-size: 46px;
  }

  .experience-grid,
  .link-grid {
    grid-template-columns: 1fr 1fr;
  }

  .document-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .document-nav {
    position: static;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 16px;
  }

  .header-inner,
  .content-width,
  .footer-inner {
    width: min(100% - 28px, 1120px);
  }

  .brand {
    font-size: 19px;
  }

  .brand-logo {
    width: 136px;
  }

  .site-nav a {
    padding-inline: 9px;
  }

  .hero {
    min-height: 660px;
    padding-block: 44px;
  }

  .hero-mark {
    width: 140px;
  }

  h1,
  .page-hero h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 29px;
  }

  .hero p,
  .section-heading p,
  .lead,
  .page-hero p {
    font-size: 18px;
  }

  .section {
    padding-block: 58px;
  }

  .experience-grid,
  .link-grid {
    grid-template-columns: 1fr;
  }

  .notice-band .content-width,
  .contact-row {
    align-items: stretch;
    flex-direction: column;
  }

  .notice-band .content-width {
    display: flex;
  }

  .contact-row {
    display: flex;
  }

  .contact-row .button {
    width: 100%;
  }

  .callback-panel {
    padding: 26px 20px;
  }

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

  .footer-links {
    justify-content: flex-start;
  }

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

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

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