:root {
  color-scheme: light;
  --ink: #142a29;
  --body: #536168;
  --accent: #526c5e;
  --line: #cfd8d2;
  --paper: #ffffff;
  --serif: "Iowan Old Style", "Baskerville", Georgia, "Times New Roman", serif;
  --sans: "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

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

.site-shell {
  width: min(100% - 12.8%, 1390px);
  min-height: 100vh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.site-header {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 1.4rem;
  text-decoration: none;
  white-space: nowrap;
}

.brand-name {
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.25vw, 2.15rem);
  letter-spacing: -0.045em;
  line-height: 1;
}

.brand-divider {
  width: 1px;
  height: 2.15rem;
  background: var(--line);
}

.brand-section {
  color: var(--body);
  font-family: var(--serif);
  font-size: 1.22rem;
}

.header-link {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  border-bottom: 1px solid currentColor;
  padding: 0 0 .14rem;
  font-family: var(--serif);
  font-size: 1.18rem;
  text-decoration: none;
  white-space: nowrap;
}

.header-link:hover { color: var(--accent); }

.external-arrow { font-family: var(--sans); font-size: 1.25em; line-height: .8; }

main { flex: 1; }

.intro {
  min-height: 420px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .85fr);
  align-items: center;
  gap: 2rem;
  padding: 3.4rem 0 1.75rem;
}

.intro-copy { position: relative; z-index: 1; }

h1, h2, p { margin: 0; }

h1, h2 { font-family: var(--serif); font-weight: 400; }

h1 {
  font-size: clamp(3.7rem, 6.35vw, 6.15rem);
  letter-spacing: -.063em;
  line-height: .93;
}

.intro p {
  margin-top: 1.75rem;
  color: var(--body);
  font-size: clamp(1.2rem, 1.74vw, 1.75rem);
  line-height: 1.45;
  letter-spacing: -.025em;
}

.intro-art {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 0 -1.8rem;
  object-fit: contain;
}

.future h2 {
  font-size: clamp(2rem, 3vw, 2.7rem);
  letter-spacing: -.055em;
  line-height: 1.1;
}

.section-rule {
  height: 1px;
  margin-top: .85rem;
  background: var(--line);
}

.future { padding: 3.7rem 0 2.6rem; }

.future p { margin-top: .9rem; color: var(--body); font-size: 1.07rem; }

.site-footer {
  min-height: 70px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--body);
  font-size: .98rem;
}

@media (max-width: 900px) {
  .site-shell { width: min(100% - 3rem, 720px); }
  .intro { min-height: unset; grid-template-columns: 1fr; gap: 0; padding: 4.2rem 0 1.2rem; }
  .intro-art { width: min(100%, 480px); justify-self: end; margin: -1rem 0 0; }
}

@media (max-width: 600px) {
  .site-shell { width: calc(100% - 2.5rem); }
  .site-header { min-height: 70px; gap: 1rem; }
  .brand { gap: .7rem; }
  .brand-name { font-size: 1.43rem; }
  .brand-divider { height: 1.65rem; }
  .brand-section { font-size: 1rem; }
  .header-link { font-size: 1rem; }
  .intro { padding: 3.7rem 0 1.2rem; }
  h1 { font-size: clamp(3.4rem, 13vw, 5rem); }
  .intro p { margin-top: 1.35rem; font-size: 1.14rem; }
  .desktop-break { display: none; }
  .intro-art { width: min(100%, 360px); margin: -.5rem 0 0; }
  .future { padding: 3.2rem 0 2.5rem; }
  .site-footer { font-size: .85rem; }
}

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