:root {
  --paper: #f7f3e8;
  --ink: #171717;
  --muted: #68635b;
  --line: #222;
  --sage: #c7d5c1;
  --blue: #b8d0dd;
  --rose: #e8c5b5;
  --gold: #d7b85b;
  --font-main: "DIN Alternate", "DINAlternate-Bold", "DIN Condensed", "Arial Narrow", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-main);
  font-weight: 700;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 74px;
  padding: 14px clamp(18px, 4vw, 48px);
  border-bottom: 1px solid var(--line);
  background: rgba(247, 243, 232, 0.94);
  backdrop-filter: blur(10px);
}

.brand,
.site-nav,
.lang-toggle,
.institution,
.site-footer {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 10px;
}

.brand-mark {
  display: block;
  width: 34px;
  height: 28px;
  object-fit: cover;
  object-position: 58% 43%;
}

.brand-title {
  display: block;
  width: auto;
  height: 14px;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 2.2vw, 28px);
  color: #252525;
}

.lang-toggle {
  display: inline-flex;
  justify-self: end;
  gap: 0;
  padding: 0;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.lang-toggle span {
  padding: 9px 11px;
}

.lang-toggle span:first-child {
  border-right: 1px solid var(--line);
  background: var(--ink);
  color: var(--paper);
}

.hero {
  min-height: calc(100vh - 74px);
  padding: clamp(58px, 8vw, 112px) clamp(18px, 4vw, 48px) 42px;
  border-bottom: 1px solid var(--line);
}

.institution {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 26px;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}

.kicker {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

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

h1 {
  width: calc(100vw - clamp(36px, 8vw, 96px));
  max-width: none;
  margin-bottom: clamp(26px, 4vw, 52px);
}

.hero-title img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: left center;
}

.lead {
  width: 100%;
  max-width: none;
  margin: clamp(28px, 4vw, 54px) 0 0;
  font-family: var(--font-main);
  font-size: clamp(18px, 2.6vw, 34px);
  font-weight: 700;
  line-height: 1.16;
  text-transform: uppercase;
  overflow-wrap: normal;
  word-break: normal;
}

.lead span {
  background: #f4ce94;
}

.hero-figure {
  display: grid;
  align-items: start;
  justify-items: center;
  min-height: 0;
  padding-top: clamp(36px, 6vw, 78px);
}

.hero-figure img {
  display: block;
  width: min(100%, 1160px);
  height: auto;
  object-fit: contain;
}

.content-band {
  display: grid;
  grid-template-columns: minmax(160px, 0.45fr) minmax(280px, 1fr);
  gap: clamp(24px, 5vw, 72px);
  padding: clamp(54px, 9vw, 110px) clamp(18px, 4vw, 48px);
  border-bottom: 1px solid var(--line);
}

.content-band.alt {
  background: #efeadb;
}

.section-heading p {
  margin-bottom: 12px;
  color: var(--muted);
  font-weight: 700;
}

h2 {
  max-width: 720px;
  font-family: var(--font-main);
  font-size: clamp(34px, 5.5vw, 78px);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.section-body {
  max-width: 920px;
  font-size: clamp(18px, 2.1vw, 28px);
  line-height: 1.34;
}

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

.columns article {
  min-height: 220px;
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.columns article:nth-child(2) {
  background: #e8dfcf;
}

h3 {
  font-size: 18px;
  text-transform: uppercase;
}

.columns p {
  font-size: 16px;
}

.newsletter {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 560px);
  align-items: end;
  gap: 32px;
  padding: clamp(50px, 8vw, 90px) clamp(18px, 4vw, 48px);
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  color: var(--paper);
}

.newsletter form {
  display: flex;
  border: 1px solid var(--paper);
}

.newsletter input,
.newsletter button {
  min-height: 54px;
  border: 0;
  border-radius: 0;
  font: inherit;
}

.newsletter input {
  width: 100%;
  padding: 0 16px;
  background: transparent;
  color: var(--paper);
}

.newsletter button {
  padding: 0 18px;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px clamp(18px, 4vw, 48px);
}

@media (max-width: 880px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero-grid,
  .content-band,
  .newsletter {
    grid-template-columns: 1fr;
  }

  .hero-figure {
    min-height: 520px;
  }

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

@media (max-width: 540px) {
  .site-header {
    grid-template-columns: 1fr;
    gap: 24px;
    min-height: 0;
    padding: 22px 18px 28px;
  }

  .brand {
    justify-self: center;
    max-width: 100%;
  }

  .brand-mark {
    flex: 0 0 auto;
  }

  .brand-title {
    max-width: calc(100vw - 88px);
    height: 17px;
    object-fit: contain;
    object-position: left center;
  }

  .site-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 22px;
    width: 100%;
    overflow: visible;
    padding-bottom: 0;
    font-size: 14px;
    line-height: 1.15;
  }

  .site-nav a {
    min-width: 0;
  }

  .lang-toggle {
    justify-self: start;
    width: auto;
  }

  .lang-toggle span {
    min-width: 58px;
    padding: 12px 16px;
  }

  .lang-toggle span:last-child {
    text-align: left;
  }

  .hero {
    min-height: auto;
    padding: 56px 18px 36px;
  }

  .institution,
  .site-footer {
    flex-direction: column;
  }

  h1 {
    width: calc(100vw - 36px);
    margin-bottom: 30px;
  }

  .hero-title img {
    width: calc(100vw - 36px);
    max-width: 100%;
    transform: scale(0.72);
    transform-origin: left top;
  }

  .lead {
    max-width: calc(100vw - 36px);
    margin-top: 26px;
    font-size: clamp(13px, 4.05vw, 16px);
    line-height: 1.18;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .hero-figure {
    min-height: 420px;
    padding-top: 38px;
  }

  .hero-figure img {
    width: min(100%, 760px);
  }

  .newsletter form {
    flex-direction: column;
  }
}
