:root {
  --bg: #ffffff;
  --ink: #181a17;
  --muted: #62675f;
  --line: #e6e8e2;
  --quiet: #f7f8f5;
  --mist: #eef3ed;
  --sage: #607264;
  --plum: #846871;
  --button: #171917;
  --button-hover: #32362f;
  --shadow: 0 18px 48px rgba(31, 38, 31, 0.09);
  --max: 1320px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, "Helvetica Neue", Arial, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

svg {
  display: block;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 18px max(28px, calc((100vw - var(--max)) / 2));
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-grid;
  gap: 1px;
  text-decoration: none;
  white-space: nowrap;
}

.brand-main {
  font-size: 24px;
  font-weight: 720;
  line-height: 1;
}

.brand-sub {
  color: var(--muted);
  font-size: 12px;
  font-weight: 560;
  letter-spacing: 0;
  text-transform: uppercase;
}

nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  color: #262622;
  font-size: 14px;
  font-weight: 560;
}

nav a {
  text-decoration: none;
}

nav a:hover {
  color: var(--sage);
}

.nav-icon {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
}

.nav-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  height: 32px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(247, 248, 245, 0.8);
}

.language-switch a {
  display: inline-flex;
  min-width: 34px;
  height: 24px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 680;
}

.language-switch a[aria-current="page"] {
  background: var(--ink);
  color: #ffffff;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(430px, 0.88fr);
  gap: 76px;
  align-items: center;
  max-width: var(--max);
  min-height: calc(100vh - 92px);
  margin: 0 auto;
  padding: 50px 28px 58px;
}

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

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

h1,
h2 {
  font-weight: 560;
  letter-spacing: 0;
}

h1 {
  max-width: 640px;
  font-size: 72px;
  line-height: 1.03;
}

h2 {
  font-size: 42px;
  line-height: 1.1;
}

.lead {
  max-width: 510px;
  margin-top: 24px;
  color: #373833;
  font-size: 20px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
}

.button,
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.button {
  min-height: 54px;
  padding: 0 24px;
  background: var(--button);
  color: #ffffff;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 650;
  transition: background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.button svg,
.text-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button:hover {
  background: var(--button-hover);
  box-shadow: 0 12px 28px rgba(23, 25, 23, 0.16);
  transform: translateY(-1px);
}

.status {
  color: var(--muted);
  font-size: 14px;
}

.hero-media {
  position: relative;
  margin: 0;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-media figcaption {
  position: absolute;
  right: 18px;
  bottom: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 620;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.26);
}

.intro-band,
.materials,
.archive,
.about {
  max-width: var(--max);
  margin: 0 auto;
  padding: 96px 28px;
}

.intro-band {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) minmax(360px, 0.85fr);
  gap: 56px;
  align-items: start;
  border-top: 1px solid var(--line);
}

.section-kicker {
  color: var(--sage);
  font-size: 14px;
  font-weight: 720;
}

.intro-copy p,
.text-column p,
.archive-head p,
.about-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.intro-copy p {
  max-width: 660px;
  margin-top: 20px;
}

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

.form-list span {
  display: flex;
  min-height: 54px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  color: #242520;
  font-size: 21px;
  font-weight: 560;
}

.materials {
  display: grid;
  grid-template-columns: minmax(260px, 0.38fr) minmax(0, 1fr);
  gap: 72px;
  background: var(--quiet);
  box-shadow: 0 0 0 100vmax var(--quiet);
  clip-path: inset(0 -100vmax);
}

.text-column {
  align-self: center;
  padding: 22px 0;
}

.text-column h2 {
  margin-top: 26px;
}

.text-column p {
  margin-top: 22px;
}

.text-link {
  margin-top: 34px;
  color: #242520;
  font-size: 14px;
  font-weight: 620;
}

.text-link:hover {
  color: var(--sage);
}

.material-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: end;
}

.material-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(31, 38, 31, 0.08);
}

.material-grid img:nth-child(2) {
  transform: translateY(34px);
}

.archive {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 72px;
}

.archive-head {
  position: sticky;
  top: 118px;
  align-self: start;
}

.archive-head h2 {
  margin-top: 26px;
}

.archive-head p {
  margin-top: 20px;
}

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

.gallery a {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: var(--quiet);
  box-shadow: 0 12px 30px rgba(31, 38, 31, 0.05);
}

.gallery img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 220ms ease, filter 220ms ease;
}

.gallery a:hover img {
  filter: contrast(1.03);
  transform: scale(1.025);
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(300px, 0.55fr);
  gap: 64px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.about figure {
  margin: 0;
}

.about img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-copy p {
  max-width: 430px;
  margin-top: 22px;
}

.site-footer {
  display: flex;
  justify-content: center;
  gap: 18px;
  padding: 26px 28px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.site-footer a {
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--sage);
}

@media (max-width: 1060px) {
  .hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(330px, 0.86fr);
    min-height: 0;
    gap: 36px;
    padding-top: 54px;
  }

  h1 {
    max-width: 560px;
    font-size: 58px;
  }

  .intro-band,
  .materials,
  .archive,
  .about {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .intro-band {
    grid-template-columns: 64px minmax(0, 1fr) minmax(260px, 0.76fr);
    gap: 34px;
  }

  .materials {
    gap: 40px;
  }

  .archive {
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 38px;
  }
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    padding: 18px 20px;
  }

  nav {
    gap: 16px;
    font-size: 13px;
  }

  .brand-main {
    font-size: 27px;
  }

  .hero,
  .intro-band,
  .materials,
  .archive,
  .about {
    padding-left: 20px;
    padding-right: 20px;
  }

  h1 {
    font-size: 50px;
  }

  h2 {
    font-size: 38px;
  }

  .lead {
    font-size: 18px;
  }

  .hero,
  .intro-band,
  .archive {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 44px;
  }

  .hero-media {
    max-width: 680px;
  }

  .intro-band,
  .archive {
    gap: 34px;
  }

  .archive-head {
    position: static;
    max-width: 620px;
  }

  .materials,
  .about {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .materials {
    background-size: 100% 100%;
  }

  .material-grid {
    gap: 14px;
  }

  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
}

@media (max-width: 560px) {
  .site-header {
    position: static;
    flex-direction: column;
    gap: 16px;
  }

  nav {
    width: 100%;
    justify-content: flex-start;
  }

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

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 34px;
  }

  .hero {
    padding-top: 38px;
    padding-bottom: 66px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .button {
    width: 100%;
    justify-content: center;
  }

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

  .material-grid img:nth-child(2) {
    transform: none;
  }

  .site-footer {
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }
}
