:root {
  --page: #f4f6f2;
  --surface: #fbfcfa;
  --ink: #1d2522;
  --muted: #59635d;
  --line: rgba(29, 37, 34, 0.12);
  --green: #536f60;
  --rust: #8e5a3d;
  --mist: #dce4de;
  --radius: 8px;
  --shadow: 0 16px 40px rgba(29, 37, 34, 0.08);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  background: var(--page);
  color: var(--ink);
  line-height: 1.65;
}

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

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

.page-shell {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(244, 246, 242, 0.84);
  border-bottom: 1px solid var(--line);
}

.site-header__inner,
.site-footer__inner,
.hero__inner,
.statement-band,
.lenses-band,
.editorial-band,
.split-band,
.bridge-band,
.page-hero,
.article-page {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.site-brand {
  font-size: 1.05rem;
  letter-spacing: 0;
}

.site-header__aside,
.site-utilities {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.92rem;
}

.site-nav a,
.site-utilities a,
.locale-switch a {
  color: var(--muted);
}

.site-nav a.is-active,
.site-utilities a:hover,
.locale-switch a.is-active,
.site-nav a:hover,
.locale-switch a:hover,
.story-card__link:hover,
.inline-link:hover {
  color: var(--ink);
}

.locale-switch {
  display: flex;
  gap: 10px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
}

.hero {
  min-height: 78vh;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  color: #f6f7f3;
}

.hero__inner {
  padding: 120px 0 80px;
}

.hero__eyebrow,
.page-hero__eyebrow,
.article-page__eyebrow,
.story-card__eyebrow {
  margin: 0 0 12px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero__title,
.page-hero__title,
.article-page__title {
  max-width: 780px;
  margin: 0;
  line-height: 1.08;
  font-weight: 500;
}

.hero__title {
  font-size: clamp(2.8rem, 6vw, 5.6rem);
}

.page-hero__title,
.article-page__title {
  font-size: clamp(2.3rem, 5vw, 4.4rem);
}

.hero__body,
.page-hero__body,
.article-page__standfirst,
.statement-band p,
.section-head p,
.split-band__text p,
.bridge-band p,
.article-page__body p,
.essay-gallery__caption {
  max-width: 720px;
  font-size: 1.06rem;
  color: inherit;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
}

.button--primary {
  background: var(--ink);
  color: var(--surface);
}

.button--secondary {
  background: transparent;
  border-color: rgba(246, 247, 243, 0.4);
  color: inherit;
}

.statement-band,
.lenses-band,
.editorial-band,
.bridge-band,
.page-hero,
.article-page {
  padding: 72px 0;
}

.statement-band {
  border-bottom: 1px solid var(--line);
}

.statement-band h2,
.lenses-band h2,
.section-head h2,
.split-band__text h2,
.bridge-band h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.15;
  font-weight: 500;
  margin: 0 0 14px;
}

.lens-grid,
.card-grid {
  display: grid;
  gap: 20px;
}

.lens-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.lens-card,
.story-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.lens-card {
  padding: 24px;
}

.lens-card h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
  font-weight: 500;
}

.lens-card p {
  margin: 0 0 16px;
  color: var(--muted);
}

.lens-card span,
.story-card__link,
.inline-link {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.92rem;
  color: var(--green);
}

.section-head {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.card-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.story-card__image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.story-card__content {
  padding: 18px;
}

.story-card__title {
  font-size: 1.45rem;
  line-height: 1.2;
  margin: 0 0 10px;
  font-weight: 500;
}

.story-card__excerpt {
  margin: 0 0 16px;
  color: var(--muted);
}

.split-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 520px);
  gap: 28px;
  align-items: stretch;
  padding: 72px 0;
}

.split-band--reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.split-band__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.split-band__figure,
.split-band__image,
.photo-stack__tile,
.article-page__hero,
.essay-gallery__image {
  border-radius: var(--radius);
}

.split-band__figure {
  min-height: 420px;
  margin: 0;
}

.split-band__image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

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

.photo-stack__tile:first-child {
  grid-column: 1 / -1;
}

.photo-stack__tile {
  display: block;
  width: 100%;
  min-height: 210px;
  object-fit: cover;
}

.bridge-band {
  text-align: left;
  border-top: 1px solid var(--line);
}

.page-hero {
  padding-bottom: 40px;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--line);
}

.article-page {
  padding-top: 48px;
}

.article-page__hero {
  width: 100%;
  margin: 28px 0 36px;
}

.article-page__hero img,
.article-page__hero .seo-figure__image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius);
}

.article-page__hero__caption,
.seo-figure__caption,
.split-band__figure__caption,
.inline-image-gallery__item__caption {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
  margin-top: 10px;
}

.article-page__body {
  width: min(100%, 760px);
}

.inline-image-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 36px 0 8px;
}

.inline-image-gallery__item {
  margin: 0;
}

.inline-image-gallery__image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}

.essay-gallery {
  display: grid;
  gap: 24px;
  margin-top: 32px;
}

.essay-gallery__image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.essay-gallery__caption {
  color: var(--muted);
  margin-top: 10px;
}

.support-heading {
  margin: 34px 0 10px;
  font-size: 1.45rem;
  line-height: 1.2;
  font-weight: 500;
}

.site-footer {
  border-top: 1px solid var(--line);
  margin-top: 32px;
}

.site-footer__inner {
  padding: 30px 0 44px;
}

.site-footer__note {
  margin: 0 0 14px;
  max-width: 620px;
  color: var(--muted);
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.92rem;
}

.site-footer__om {
  color: var(--green);
}

@media (max-width: 980px) {
  .site-header__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-header__aside {
    width: 100%;
    justify-content: space-between;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .lens-grid,
  .card-grid,
  .inline-image-gallery,
  .split-band,
  .split-band--reverse {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 70vh;
  }

  .hero__inner {
    padding: 96px 0 52px;
  }

  .statement-band,
  .lenses-band,
  .editorial-band,
  .bridge-band,
  .page-hero,
  .article-page,
  .split-band {
    padding: 56px 0;
  }

  .story-card__title {
    font-size: 1.25rem;
  }

  .hero__body,
  .page-hero__body,
  .article-page__standfirst,
  .statement-band p,
  .section-head p,
  .split-band__text p,
  .bridge-band p,
  .article-page__body p,
  .essay-gallery__caption {
    font-size: 1rem;
  }
}
