:root {
  color-scheme: dark;
  --ink: #f5f7f3;
  --muted: rgba(245, 247, 243, 0.76);
  --quiet: rgba(245, 247, 243, 0.55);
  --line: rgba(245, 247, 243, 0.18);
  --ground: #090b0d;
  --panel: rgba(245, 247, 243, 0.045);
  --blue: #aab9cb;
  --lichen: #b4b88b;
  --gold: #c99a56;
  --max: 1180px;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Charter, Georgia, serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--ground);
  color: var(--ink);
  font-family: var(--sans);
}

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

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 48px);
  color: var(--ink);
  border-bottom: 1px solid rgba(245, 247, 243, 0.08);
  background: rgba(9, 11, 13, 0.72);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  font-size: 10px;
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand img {
  width: 50px;
  height: auto;
  object-fit: contain;
}

.brand span {
  display: block;
}

.site-header nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: clamp(14px, 3vw, 30px);
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-header a:hover {
  color: var(--ink);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 2px;
  border: 1px solid rgba(245, 247, 243, 0.18);
  border-radius: 999px;
  background: rgba(4, 7, 9, 0.38);
}

.language-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  min-height: 28px;
  border-radius: 999px;
  color: var(--quiet);
  font-size: 11px;
}

.language-switch a[aria-current="page"] {
  background: rgba(245, 247, 243, 0.9);
  color: #0b0e10;
}

.hero {
  position: relative;
  min-height: 86svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #11161a;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
  filter: saturate(0.86) contrast(1.08) brightness(0.76);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(9, 11, 13, 0.72), rgba(9, 11, 13, 0.3) 48%, rgba(9, 11, 13, 0.7)),
    linear-gradient(0deg, rgba(9, 11, 13, 0.98), rgba(9, 11, 13, 0.15) 44%, rgba(9, 11, 13, 0.4));
}

.hero-content {
  position: relative;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 104px 0 34px;
}

.hero-logo {
  width: min(500px, 82vw);
  margin-bottom: 18px;
  filter: drop-shadow(0 20px 42px rgba(0, 0, 0, 0.45));
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--blue);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 790px;
  margin-bottom: 22px;
  font-family: var(--serif);
  font-size: clamp(48px, 6.2vw, 92px);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: 0;
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.42);
}

.hero-copy {
  max-width: 680px;
  color: rgba(245, 247, 243, 0.82);
  font-family: var(--serif);
  font-size: clamp(19px, 2vw, 26px);
  line-height: 1.36;
}

.signup {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
  width: min(390px, 100%);
  padding: 5px;
  border: 1px solid rgba(245, 247, 243, 0.24);
  border-radius: 999px;
  background: rgba(4, 7, 9, 0.36);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 20px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.signup input,
.signup button {
  min-height: 42px;
  border-radius: 999px;
  font: inherit;
}

.signup input {
  flex: 1 1 140px;
  min-width: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  padding: 0 18px;
  outline: none;
  font-size: 15px;
}

.signup input::placeholder {
  color: var(--quiet);
}

.signup input:focus {
  color: var(--ink);
}

.signup button {
  border: 1px solid rgba(245, 247, 243, 0.5);
  background: rgba(245, 247, 243, 0.93);
  color: #0b0e10;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.signup button:hover {
  background: #ffffff;
  border-color: #ffffff;
  transform: translateY(-1px);
}

.signup button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.signup-status {
  min-height: 18px;
  margin: 12px 0 0;
  color: var(--quiet);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signup-note {
  width: min(340px, calc(100% - 40px));
  margin: 10px 0 0 20px;
  color: var(--quiet);
  font-family: var(--sans);
  font-size: 11px;
  line-height: 1.45;
  text-wrap: balance;
}

.signup-status[data-state="success"] {
  color: rgba(180, 184, 139, 0.95);
}

.signup-status[data-state="error"] {
  color: rgba(201, 154, 86, 0.95);
}

.manifesto,
.model,
.work,
.field-study,
.closing {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.manifesto {
  padding: clamp(76px, 12vw, 150px) 0 clamp(60px, 10vw, 120px);
}

.manifesto h2,
.work h2,
.closing h2 {
  max-width: 940px;
  font-family: var(--serif);
  font-size: clamp(36px, 5.2vw, 74px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: 0;
}

.manifesto p {
  max-width: 850px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: clamp(18px, 2.2vw, 28px);
  line-height: 1.42;
}

.model {
  padding: 0 0 clamp(72px, 10vw, 132px);
}

.model-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: start;
}

.model h2,
.field-study h2 {
  max-width: 780px;
  font-family: var(--serif);
  font-size: clamp(36px, 5.2vw, 74px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: 0;
}

.model-copy {
  padding-top: clamp(22px, 3.2vw, 38px);
  border-top: 1px solid rgba(245, 247, 243, 0.22);
}

.model-copy p,
.field-head p {
  color: var(--muted);
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.43;
}

.model-copy p:last-child,
.field-head p:last-child {
  margin-bottom: 0;
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 4vw, 46px);
  margin-top: clamp(52px, 7vw, 84px);
}

.principles article {
  padding-top: 22px;
  border-top: 1px solid rgba(245, 247, 243, 0.18);
}

.principles span {
  display: block;
  margin-bottom: 26px;
  color: rgba(201, 154, 86, 0.9);
  font-family: var(--serif);
  font-size: 18px;
}

.principles h3 {
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: clamp(26px, 2.5vw, 36px);
  font-weight: 500;
  line-height: 1.04;
}

.principles p {
  max-width: 30ch;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.42;
}

.work {
  padding: 32px 0 clamp(70px, 10vw, 140px);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 4vw, 54px);
  margin-top: clamp(46px, 7vw, 86px);
  padding-top: 28px;
  border-top: 1px solid rgba(245, 247, 243, 0.24);
  background: transparent;
}

.work-grid article {
  min-height: 300px;
  padding: 0 0 30px;
  border-bottom: 1px solid rgba(245, 247, 243, 0.14);
  background: transparent;
}

.work-grid span {
  display: block;
  margin-bottom: clamp(42px, 6vw, 76px);
  color: rgba(201, 154, 86, 0.9);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
}

.work-grid h3 {
  margin-bottom: 18px;
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 500;
  line-height: 1.02;
}

.work-grid p {
  color: var(--muted);
  max-width: 32ch;
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.42;
}

.image-band {
  position: relative;
  width: 100%;
  height: min(58vw, 680px);
  min-height: 360px;
  overflow: hidden;
  background: #090b0d;
}

.satellite-band {
  height: min(54vw, 640px);
  min-height: 340px;
  margin-top: clamp(10px, 2vw, 24px);
}

.satellite-band .band-media {
  object-position: center 6%;
}

.image-band img,
.band-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.band-media {
  filter: saturate(0.82) contrast(1.08) brightness(0.72);
}

.band-fade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      var(--ground) 0%,
      rgba(9, 11, 13, 0.88) 8%,
      rgba(9, 11, 13, 0.34) 26%,
      rgba(9, 11, 13, 0.18) 56%,
      rgba(9, 11, 13, 0.62) 82%,
      var(--ground) 100%
    ),
    linear-gradient(90deg, rgba(9, 11, 13, 0.46), rgba(9, 11, 13, 0.04) 46%, rgba(9, 11, 13, 0.5));
}

.satellite-fade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      var(--ground) 0%,
      rgba(9, 11, 13, 0.84) 10%,
      rgba(9, 11, 13, 0.34) 32%,
      rgba(9, 11, 13, 0.22) 64%,
      rgba(9, 11, 13, 0.72) 88%,
      var(--ground) 100%
    ),
    linear-gradient(90deg, rgba(9, 11, 13, 0.5), rgba(9, 11, 13, 0.04) 48%, rgba(9, 11, 13, 0.52));
}

.field-study {
  padding: clamp(72px, 11vw, 150px) 0 clamp(62px, 8vw, 104px);
}

.field-head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: start;
}

.field-head p {
  padding-top: clamp(22px, 3.2vw, 38px);
  border-top: 1px solid rgba(245, 247, 243, 0.22);
}

.field-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(14px, 2.2vw, 30px);
  margin: clamp(46px, 7vw, 84px) 0 0;
  padding: clamp(24px, 3vw, 38px) 0 0;
  list-style: none;
  border-top: 1px solid rgba(245, 247, 243, 0.16);
  background: transparent;
}

.field-steps li {
  min-height: 190px;
  padding: 0 clamp(18px, 2.4vw, 32px) 26px 0;
  border-right: 1px solid rgba(245, 247, 243, 0.12);
  background: var(--ground);
  color: var(--muted);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.38;
}

.field-steps li:last-child {
  border-right: 0;
}

.field-steps span {
  display: block;
  margin-bottom: clamp(22px, 2.8vw, 34px);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.closing {
  padding: clamp(70px, 10vw, 130px) 0;
}

.closing h2 {
  max-width: 900px;
  margin-bottom: 0;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: fit-content;
  max-width: 100%;
  margin-top: clamp(26px, 4vw, 46px);
  padding: 5px 20px 5px 5px;
  border: 1px solid rgba(245, 247, 243, 0.24);
  border-radius: 999px;
  background: rgba(4, 7, 9, 0.36);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 20px 60px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.contact-link span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(245, 247, 243, 0.5);
  border-radius: 999px;
  background: rgba(245, 247, 243, 0.93);
  color: #0b0e10;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  transition: background 180ms ease, border-color 180ms ease;
}

.contact-link:hover span {
  background: #ffffff;
  border-color: #ffffff;
}

.contact-link strong {
  overflow-wrap: anywhere;
  font: inherit;
  color: var(--ink);
}

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

.mailchimp-trap {
  position: absolute;
  left: -5000px;
}

@media (max-width: 840px) {
  .site-header {
    align-items: flex-start;
    gap: 14px;
  }

  .brand img {
    width: 42px;
  }

  .site-header nav {
    gap: 10px;
    font-size: 11px;
  }

  .hero {
    min-height: auto;
  }

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

  .hero-logo {
    width: min(350px, 90vw);
  }

  .model-layout,
  .principles,
  .work-grid,
  .field-head,
  .field-steps {
    grid-template-columns: 1fr;
  }

  .model-copy,
  .field-head p {
    padding-top: 22px;
  }

  .principles article {
    min-height: auto;
  }

  .work-grid article {
    min-height: auto;
  }

  .work-grid article:last-child {
    border-bottom: 0;
  }

  .work-grid span {
    margin-bottom: 36px;
  }

  .field-steps {
    gap: 0;
    background: transparent;
    border-top: 1px solid rgba(245, 247, 243, 0.18);
  }

  .field-steps li {
    min-height: auto;
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(245, 247, 243, 0.14);
  }

  .field-steps li:last-child {
    border-bottom: 0;
  }

  .field-steps span {
    margin-bottom: 14px;
  }

  .signup {
    gap: 6px;
  }

  .signup-note {
    width: min(310px, calc(100% - 28px));
    margin-left: 14px;
  }

  .signup input {
    padding-left: 14px;
  }

  .signup button {
    padding-inline: 16px;
  }

  .image-band {
    min-height: 330px;
  }

  .contact-link {
    width: 100%;
    max-width: 100%;
    white-space: normal;
  }
}

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

  .hero {
    background-image:
      linear-gradient(0deg, rgba(9, 11, 13, 0.86), rgba(9, 11, 13, 0.3)),
      url("assets/norway-mist-mountain.png");
    background-position: center;
    background-size: cover;
  }

  .video-band {
    background-image:
      linear-gradient(0deg, rgba(9, 11, 13, 0.58), rgba(9, 11, 13, 0.3)),
      url("assets/water-reflection-poster.jpg");
    background-position: center;
    background-size: cover;
  }

  .satellite-band {
    background-image:
      linear-gradient(0deg, rgba(9, 11, 13, 0.58), rgba(9, 11, 13, 0.3)),
      url("assets/satellite-dish-poster.jpg");
    background-position: center 6%;
    background-size: cover;
  }

  .hero-media,
  .band-media {
    display: none;
  }
}
