:root {
  --ink: #f2ede3;
  --muted: #9fb2bc;
  --water: #07131d;
  --water-2: #0b2030;
  --line: #315267;
  --amber: #e8952c;
  --chart: #b8d44a;
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { background: var(--water); scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 2%, rgba(38,96,125,.24), transparent 34rem),
    linear-gradient(180deg, #0a1d2b 0, var(--water) 52rem);
  font-family: Georgia, "Times New Roman", serif;
}
a { color: inherit; }
:focus-visible { outline: 2px solid var(--amber); outline-offset: 4px; }
.skip-link { position: fixed; z-index: 50; top: -5rem; left: 1rem; padding: .7rem 1rem; background: var(--ink); color: var(--water); }
.skip-link:focus { top: 1rem; }

.site-header, footer {
  width: min(1380px, calc(100% - 4rem));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.6rem 0;
  font: 700 .72rem/1 Arial, sans-serif;
  letter-spacing: .16em;
}
.brand { text-decoration: none; letter-spacing: .09em; }
.site-header > span, footer > span { color: var(--muted); }

.masthead {
  width: min(1380px, calc(100% - 4rem));
  min-height: 68vh;
  margin: 0 auto;
  padding: clamp(6rem, 12vh, 11rem) 0 3rem;
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.eyebrow, .story-meta, .story-footer, .masthead-rule {
  font: 700 .72rem/1.45 "Courier New", monospace;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow { margin: 0 0 1.5rem; color: var(--muted); }
h1, h2 { margin: 0; font-family: Arial Black, Arial, sans-serif; letter-spacing: -.045em; line-height: .95; }
h1 { max-width: 10ch; font-size: clamp(4rem, 10vw, 9rem); }
.intro { max-width: 45rem; margin: 2rem 0 3rem; color: #d7dee1; font-size: clamp(1.15rem, 2vw, 1.45rem); line-height: 1.55; }
.masthead-rule { border-top: 1px solid var(--line); padding-top: 1rem; display: flex; justify-content: space-between; color: var(--muted); }

.story-grid {
  width: min(1380px, calc(100% - 4rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.story-card { min-width: 0; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.story-visual { display: block; aspect-ratio: 16/10; overflow: hidden; background: var(--water-2); }
.story-visual img, .story-visual svg { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease, filter .45s ease; }
.story-card:hover .story-visual img, .story-card:hover .story-visual svg { transform: scale(1.018); filter: brightness(1.08); }
.story-card--daiwa .story-visual img { object-position: center; }
.motes { opacity: .45; }
.story-visual text { font: 700 15px "Courier New", monospace; letter-spacing: 2px; }
.story-copy { min-height: 25rem; padding: clamp(1.5rem, 3vw, 3rem); display: flex; flex-direction: column; }
.story-meta { display: flex; justify-content: space-between; gap: 1rem; color: var(--muted); }
.story-copy h2 { max-width: 12ch; margin-top: 3rem; font-size: clamp(2.25rem, 4.5vw, 4.5rem); }
.story-copy h2 a { text-decoration: none; }
.story-copy > p { max-width: 38rem; color: #c7d1d6; font-size: 1.08rem; line-height: 1.6; }
.story-footer { margin-top: auto; padding-top: 2rem; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 1rem; color: var(--muted); }
.story-footer a { color: var(--ink); text-decoration: none; }
.story-footer a:hover { color: var(--amber); }
.story-card--rapala .story-footer a:hover { color: var(--amber); }
.story-card--daiwa .story-footer a:hover { color: #7dd3fc; }

.manifesto {
  width: min(1380px, calc(100% - 4rem));
  margin: 0 auto;
  padding: clamp(8rem, 15vw, 15rem) 0;
  display: grid;
  grid-template-columns: .35fr 1fr;
  column-gap: 3rem;
}
.manifesto .eyebrow { grid-row: 1 / span 2; }
.manifesto h2 { max-width: 15ch; font-size: clamp(2.8rem, 7vw, 6.5rem); }
.manifesto > p:last-child { max-width: 44rem; margin: 2rem 0 0; color: #c7d1d6; font-size: 1.2rem; line-height: 1.6; }
footer { border-top: 1px solid var(--line); padding-block: 2.5rem; }

@media (max-width: 760px) {
  .site-header, footer, .masthead, .story-grid, .manifesto { width: min(100% - 2rem, 1380px); }
  .masthead { min-height: 72svh; padding-top: 6rem; }
  h1 { font-size: clamp(3.7rem, 18vw, 5.6rem); }
  .masthead-rule span:last-child { display: none; }
  .story-grid { grid-template-columns: 1fr; }
  .story-copy { min-height: 22rem; }
  .story-copy h2 { margin-top: 2rem; font-size: clamp(2.6rem, 13vw, 4.2rem); }
  .story-meta, .story-footer { flex-wrap: wrap; }
  .manifesto { grid-template-columns: 1fr; }
  .manifesto .eyebrow { grid-row: auto; }
  footer { align-items: start; gap: 2rem; }
  footer > span { max-width: 15rem; text-align: right; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .001ms !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; }
}
