:root {
  --ink: #16221f;
  --muted: #60706b;
  --forest: #123b34;
  --forest-deep: #082c27;
  --sky: #4f91a4;
  --copper: #bd6c38;
  --copper-light: #efad7e;
  --paper: #f5f2ea;
  --white: #fff;
  --line: rgba(22, 34, 31, 0.16);
  --shadow: 0 28px 70px rgba(7, 29, 26, 0.2);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.03;
}

h1 {
  margin-bottom: 1.25rem;
  font-size: clamp(3.6rem, 6.3vw, 6.4rem);
  color: var(--white);
}

h1 em {
  color: var(--copper-light);
  font-weight: 400;
}

h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.65rem, 5vw, 5.3rem);
}

h3 {
  margin-bottom: 0.7rem;
  font-size: 1.25rem;
  line-height: 1.3;
}

.shell {
  width: min(1220px, calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 0.65rem 1rem;
  color: var(--white);
  background: var(--forest-deep);
  transform: translateY(-150%);
}

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

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.6);
  font-family: var(--serif);
  font-size: 0.85rem;
  letter-spacing: 0;
}

nav {
  display: flex;
  align-items: center;
  gap: 1.65rem;
  font-size: 0.83rem;
  font-weight: 650;
}

nav a {
  text-decoration: none;
}

nav a:not(.language-link):hover,
nav a:not(.language-link):focus-visible {
  text-decoration: underline;
}

.language-link {
  display: inline-grid;
  min-width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}

.hero {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  color: var(--white);
  background: var(--forest-deep);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  background-image: url("assets/panorama-desktop.avif");
  background-position: 50% 50%;
  background-size: cover;
  filter: saturate(0.76) contrast(1.03);
  transform: scale(1.01);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(4, 34, 29, 0.94) 0%, rgba(4, 34, 29, 0.8) 44%, rgba(4, 34, 29, 0.18) 77%),
    linear-gradient(0deg, rgba(4, 34, 29, 0.46) 0%, transparent 50%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 780px;
  padding-top: 128px;
  padding-bottom: 56px;
  grid-template-columns: minmax(0, 1.5fr) minmax(300px, 0.58fr);
  align-items: end;
  gap: clamp(3rem, 8vw, 8rem);
}

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

.eyebrow {
  margin-bottom: 1.25rem;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

.hero-lead {
  max-width: 760px;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.15rem, 2vw, 1.42rem);
  line-height: 1.55;
}

.actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.9rem 1.25rem;
}

.button {
  display: inline-flex;
  min-height: 52px;
  padding: 0.75rem 1.35rem;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 760;
  text-decoration: none;
  transition: background-color 150ms ease, color 150ms ease, border-color 150ms ease, transform 150ms ease;
}

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

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

.button-primary:hover,
.button-primary:focus-visible {
  background: #a95727;
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.13);
}

.hero-signals {
  display: flex;
  margin: 2.15rem 0 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 0.6rem 1.7rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.78rem;
  font-weight: 670;
  letter-spacing: 0.04em;
  list-style: none;
}

.hero-signals li {
  position: relative;
}

.hero-signals li:not(:last-child)::after {
  position: absolute;
  right: -1rem;
  color: var(--copper-light);
  content: "·";
}

.profile-card {
  margin: 0;
  align-self: end;
  box-shadow: var(--shadow);
}

.profile-card img {
  width: 100%;
  aspect-ratio: 0.9;
  object-fit: cover;
  object-position: 50% 38%;
}

.profile-card figcaption {
  display: grid;
  padding: 1.25rem 1.35rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  gap: 0.2rem;
}

.profile-card strong {
  font-family: var(--serif);
  font-size: 1.3rem;
}

.profile-card span {
  color: var(--muted);
  font-size: 0.79rem;
  line-height: 1.45;
}

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

.section-heading {
  display: grid;
  margin-bottom: 4rem;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 3rem;
  align-items: end;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -1.6rem;
}

.section-heading h2,
.section-heading p {
  margin-bottom: 0;
}

.section-heading > p:last-child {
  max-width: 480px;
  color: var(--muted);
}

.section-heading.narrow {
  display: block;
  max-width: 850px;
}

.section-heading.narrow .eyebrow {
  margin-bottom: 1.25rem;
}

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

.principles article {
  min-height: 290px;
  padding: 2.3rem 2rem 1.5rem 0;
  border-bottom: 1px solid var(--line);
}

.principles article:not(:last-child) {
  margin-right: 2rem;
  border-right: 1px solid var(--line);
}

.principle-number {
  display: block;
  margin-bottom: 2.8rem;
  color: var(--copper);
  font-family: var(--serif);
  font-size: 2rem;
}

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

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

.profile-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(4rem, 10vw, 10rem);
}

.profile-intro {
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.45rem);
  line-height: 1.28;
}

.profile-copy > p:not(.profile-intro, .source-note) {
  color: rgba(255, 255, 255, 0.76);
}

.facts {
  display: grid;
  margin: 3rem 0 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  grid-template-columns: repeat(3, 1fr);
}

.facts div {
  padding: 1.35rem 1.25rem 0 0;
}

.facts dt {
  color: var(--copper-light);
  font-weight: 780;
}

.facts dd {
  margin: 0.25rem 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.78rem;
}

.source-note {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.72rem;
}

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

.process-list {
  margin: 4rem 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.process-list li {
  display: grid;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 90px 1fr;
  gap: 1.25rem;
}

.process-list li > div {
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  gap: 2rem;
}

.process-step {
  color: var(--copper);
  font-family: var(--serif);
  font-size: 2.2rem;
  line-height: 1;
}

.process-list h3,
.process-list p {
  margin-bottom: 0;
}

.process-list p {
  max-width: 620px;
  color: var(--muted);
}

.contact-section {
  padding-block: clamp(5rem, 9vw, 9rem);
  color: var(--white);
  background: var(--forest-deep);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 9vw, 8rem);
  align-items: end;
}

.contact-grid h2 {
  margin-bottom: 0;
}

.contact-grid > div:last-child > p:first-child {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.15rem;
}

.text-link {
  font-size: 0.9rem;
  font-weight: 720;
  text-decoration: none;
}

.text-link:hover,
.text-link:focus-visible {
  text-decoration: underline;
}

.privacy-promise {
  margin: 1.6rem 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.72rem;
}

.site-footer {
  padding-block: 2.2rem;
  color: var(--muted);
  background: #ede9df;
  font-size: 0.77rem;
}

.footer-grid {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}

.site-footer strong {
  color: var(--ink);
}

.site-footer address {
  font-style: normal;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--ink);
}

.legal-page {
  min-height: 100vh;
  background: var(--paper);
}

.legal-header {
  color: var(--ink);
  border-bottom-color: var(--line);
  background: rgba(245, 242, 234, 0.96);
}

.legal-header .brand-mark,
.legal-header .language-link {
  border-color: var(--line);
}

.legal-main {
  width: min(820px, calc(100% - 48px));
  margin-inline: auto;
  padding: 150px 0 7rem;
}

.legal-main h1 {
  color: var(--ink);
  font-size: clamp(3.2rem, 7vw, 5.7rem);
}

.legal-main h2 {
  margin: 3.5rem 0 0.75rem;
  font-family: var(--sans);
  font-size: 1.2rem;
  font-weight: 760;
  letter-spacing: 0;
}

.legal-main p,
.legal-main li,
.legal-main address,
.legal-main dd {
  color: var(--muted);
}

.legal-main address {
  font-style: normal;
}

.legal-details {
  display: grid;
  gap: 0.6rem;
}

.legal-details div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 1rem;
}

.legal-details dt {
  font-weight: 700;
}

.legal-details dd {
  margin: 0;
}

.legal-back {
  display: inline-block;
  margin-bottom: 2.6rem;
  font-size: 0.82rem;
  font-weight: 700;
}

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

@media (max-width: 900px) {
  nav a:not(.language-link) {
    display: none;
  }

  .hero,
  .hero-grid {
    min-height: auto;
  }

  .hero-image {
    background-image: url("assets/panorama-mobile.avif");
    background-position: 56% 50%;
  }

  .hero-shade {
    background: linear-gradient(0deg, rgba(4, 34, 29, 0.96) 0%, rgba(4, 34, 29, 0.78) 67%, rgba(4, 34, 29, 0.32) 100%);
  }

  .hero-grid {
    padding-top: 150px;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 3rem;
  }

  .profile-card {
    display: grid;
    max-width: 610px;
    grid-template-columns: 0.9fr 1.1fr;
  }

  .profile-card figcaption {
    align-content: end;
  }

  .section-heading,
  .profile-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .section-heading .eyebrow {
    margin-bottom: -2rem;
  }

  .principles,
  .facts {
    grid-template-columns: 1fr;
  }

  .principles article:not(:last-child) {
    margin-right: 0;
    border-right: 0;
  }

  .principles article {
    min-height: auto;
  }

  .principle-number {
    margin-bottom: 1.2rem;
  }

  .facts div:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }
}

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

  .shell,
  .legal-main {
    width: min(100% - 32px, 1220px);
  }

  .header-inner {
    min-height: 70px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  h1 {
    font-size: clamp(3.05rem, 15vw, 4.8rem);
  }

  h2 {
    font-size: clamp(2.4rem, 12vw, 3.7rem);
  }

  .hero-grid {
    padding-top: 118px;
    padding-bottom: 54px;
  }

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

  .profile-card img {
    aspect-ratio: 1.08;
    object-position: 50% 35%;
  }

  .hero-signals {
    display: grid;
    gap: 0.35rem;
  }

  .hero-signals li::after {
    display: none;
  }

  .section-heading {
    margin-bottom: 2.7rem;
    gap: 2rem;
  }

  .section-heading .eyebrow {
    margin-bottom: -1rem;
  }

  .process-list li {
    grid-template-columns: 48px 1fr;
  }

  .process-list li > div {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-details div {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

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

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