/* Seasonal British — independent editorial journal */
:root {
  --void: #0A100E;
  --forest: #152820;
  --forest-mid: #1E3830;
  --moss: #2F5342;
  --champagne: #C9B896;
  --champagne-bright: #E8DCC4;
  --parchment: #E6DDCF;
  --parchment-soft: #F0E9DC;
  --ink: #101814;
  --muted: #6B7A72;
  --line: rgba(201, 184, 150, 0.28);
  --line-dark: rgba(16, 24, 20, 0.12);
  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --body: "Literata", Georgia, serif;
  --ui: "DM Sans", system-ui, sans-serif;
  --max: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--parchment-soft);
  line-height: 1.65;
  font-size: 1.05rem;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 0.2em; }
a:hover { color: var(--moss); }
button { font: inherit; border: none; background: none; cursor: pointer; color: inherit; }
ul { list-style: none; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0.75rem;
  z-index: 100;
  background: var(--champagne);
  color: var(--void);
  padding: 0.5rem 1rem;
  font-family: var(--ui);
  font-size: 0.85rem;
}
.skip-link:focus { left: 0.75rem; }

/* ——— Header ——— */
.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 40;
  padding: 1.25rem 1.5rem;
}
.site-header.is-solid {
  position: sticky;
  top: 0;
  background: rgba(10, 16, 14, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: var(--champagne-bright);
  text-decoration: none;
  line-height: 1.15;
}
.brand small {
  display: block;
  font-family: var(--ui);
  font-weight: 400;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(232, 220, 196, 0.65);
  margin-top: 0.2rem;
}
.nav-desktop {
  display: none;
  gap: 1.75rem;
  align-items: center;
}
.nav-desktop a {
  font-family: var(--ui);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(232, 220, 196, 0.85);
  text-decoration: none;
}
.nav-desktop a:hover,
.nav-desktop a[aria-current="page"] { color: var(--champagne); }
.nav-toggle {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--champagne-bright);
}
.nav-toggle span {
  display: block;
  width: 1.1rem;
  height: 1px;
  background: currentColor;
  position: relative;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
}
.nav-toggle span::before { top: -5px; }
.nav-toggle span::after { top: 5px; }

.nav-panel {
  position: fixed;
  inset: 0;
  background: var(--void);
  z-index: 50;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  transform: translateY(-100%);
  transition: transform 0.45s var(--ease);
}
.nav-panel.is-open { transform: translateY(0); }
.nav-panel a {
  font-family: var(--display);
  font-size: clamp(1.8rem, 6vw, 2.8rem);
  color: var(--champagne-bright);
  text-decoration: none;
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--line);
}
.nav-panel .close-nav {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-family: var(--ui);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--champagne);
  border: 1px solid var(--line);
  padding: 0.55rem 0.9rem;
}

@media (min-width: 880px) {
  .nav-desktop { display: flex; }
  .nav-toggle { display: none; }
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  color: var(--champagne-bright);
  overflow: hidden;
  background: var(--void);
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: heroDrift 22s var(--ease) infinite alternate;
}
@keyframes heroDrift {
  from { transform: scale(1.06) translate3d(0, 0, 0); }
  to { transform: scale(1.12) translate3d(-1.5%, -1%, 0); }
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 16, 14, 0.45) 0%, rgba(10, 16, 14, 0.2) 35%, rgba(10, 16, 14, 0.88) 100%),
    radial-gradient(ellipse 70% 50% at 20% 80%, rgba(47, 83, 66, 0.35), transparent 60%);
}
.hero-copy {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 7rem 1.5rem 3.5rem;
}
.hero-brand {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(3.2rem, 10vw, 6.5rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  max-width: 12ch;
}
.hero-brand em {
  font-style: italic;
  color: var(--champagne);
  font-weight: 500;
}
.hero h1 {
  font-family: var(--body);
  font-weight: 400;
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  line-height: 1.45;
  max-width: 34ch;
  color: rgba(232, 220, 196, 0.92);
  margin-bottom: 0.85rem;
}
.hero-support {
  font-family: var(--ui);
  font-size: 0.95rem;
  color: rgba(232, 220, 196, 0.72);
  max-width: 42ch;
  margin-bottom: 1.75rem;
  line-height: 1.55;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.btn {
  font-family: var(--ui);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.95rem 1.35rem;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.btn-primary {
  background: var(--champagne);
  color: var(--void);
}
.btn-primary:hover { background: var(--champagne-bright); color: var(--void); }
.btn-ghost {
  border: 1px solid var(--line);
  color: var(--champagne-bright);
}
.btn-ghost:hover {
  border-color: var(--champagne);
  color: var(--champagne);
}

/* ——— Sections ——— */
.section {
  padding: 4.5rem 1.5rem;
}
.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.section-head {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  max-width: 42rem;
}
.eyebrow {
  font-family: var(--ui);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--moss);
}
.section-head h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 2.85rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--forest);
}
.section-head p {
  color: var(--muted);
  font-size: 1.05rem;
}

/* Featured spread */
.featured-band {
  background: var(--forest);
  color: var(--parchment);
  padding: 0;
}
.featured-spread {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  min-height: 560px;
}
.featured-spread figure {
  position: relative;
  min-height: 320px;
}
.featured-spread img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
}
.featured-body {
  padding: 2.5rem 1.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(135deg, rgba(201, 184, 150, 0.06), transparent 50%),
    var(--forest);
}
.featured-body .eyebrow { color: var(--champagne); }
.featured-body h2 {
  font-family: var(--display);
  font-size: clamp(1.85rem, 3.5vw, 2.6rem);
  line-height: 1.12;
  margin: 0.65rem 0 1rem;
  letter-spacing: -0.02em;
  max-width: 16ch;
}
.featured-body .lede {
  font-size: 1.08rem;
  color: rgba(230, 221, 207, 0.82);
  max-width: 38ch;
  margin-bottom: 1.5rem;
}
.featured-body .btn-primary { align-self: flex-start; }
@media (min-width: 900px) {
  .featured-spread { grid-template-columns: 1.15fr 1fr; }
  .featured-body { padding: 3.5rem 3rem; }
  .featured-spread img { min-height: 100%; }
}

/* Article index grid — editorial rows, not card chrome */
.issue-grid {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line-dark);
}
.issue-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--line-dark);
  text-decoration: none;
  color: inherit;
  transition: background 0.25s;
}
.issue-row:hover { background: rgba(21, 40, 32, 0.04); }
.issue-row:hover h3 { color: var(--moss); }
.issue-meta {
  font-family: var(--ui);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.issue-row h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--forest);
  margin: 0.35rem 0;
  transition: color 0.2s;
}
.issue-row p {
  color: var(--muted);
  font-size: 0.98rem;
  max-width: 52ch;
}
.issue-thumb {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  filter: saturate(0.92);
}
@media (min-width: 780px) {
  .issue-row {
    grid-template-columns: 200px 1fr auto;
    align-items: center;
    gap: 1.75rem;
  }
  .issue-thumb {
    aspect-ratio: 4/3;
    width: 200px;
  }
  .issue-arrow {
    font-family: var(--ui);
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--moss);
    white-space: nowrap;
  }
}

/* Season strip */
.season-strip {
  background: var(--void);
  color: var(--champagne-bright);
  padding: 2.5rem 1.5rem;
  overflow: hidden;
}
.season-track {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(140px, 1fr));
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
}
.season-item {
  border-left: 1px solid var(--line);
  padding: 0.25rem 0 0.25rem 1rem;
  min-width: 140px;
}
.season-item strong {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 500;
  display: block;
  margin-bottom: 0.35rem;
}
.season-item span {
  font-family: var(--ui);
  font-size: 0.78rem;
  color: rgba(232, 220, 196, 0.65);
  line-height: 1.4;
  display: block;
}

/* Reveal motion */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

/* Article page */
.article-hero {
  background: var(--forest);
  color: var(--parchment);
  padding: 7.5rem 1.5rem 3rem;
}
.article-hero-inner {
  max-width: 720px;
  margin: 0 auto;
}
.article-hero .eyebrow { color: var(--champagne); margin-bottom: 0.75rem; display: block; }
.article-hero h1 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}
.article-hero .deck {
  font-size: 1.15rem;
  color: rgba(230, 221, 207, 0.82);
  max-width: 40ch;
  line-height: 1.5;
}
.article-figure {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
  margin-top: -1.5rem;
}
.article-figure img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.article-figure figcaption {
  font-family: var(--ui);
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.65rem;
}
.article-body {
  max-width: 680px;
  margin: 0 auto;
  padding: 2.75rem 1.5rem 4rem;
}
.article-body p {
  margin-bottom: 1.15rem;
  font-size: 1.08rem;
  line-height: 1.8;
}
.article-body h2 {
  font-family: var(--display);
  font-size: 1.55rem;
  margin: 2.25rem 0 0.85rem;
  color: var(--forest);
  letter-spacing: -0.015em;
}
.article-body blockquote {
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--forest-mid);
  border-left: 2px solid var(--champagne);
  padding: 0.25rem 0 0.25rem 1.25rem;
  margin: 2rem 0;
  max-width: 34ch;
}
.article-body .inline-fig {
  margin: 2rem 0;
}
.article-body .inline-fig img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.article-body .inline-fig figcaption {
  font-family: var(--ui);
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.5rem;
}
.article-end {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-dark);
  font-size: 0.92rem;
  color: var(--muted);
}
.more-reading {
  background: var(--forest);
  color: var(--parchment);
  padding: 3.5rem 1.5rem;
}
.more-reading h2 {
  font-family: var(--display);
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  color: var(--champagne-bright);
}
.more-list { display: grid; gap: 0.75rem; max-width: var(--max); margin: 0 auto; }
.more-list a {
  text-decoration: none;
  border-top: 1px solid var(--line);
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--parchment);
  font-family: var(--display);
  font-size: 1.15rem;
}
.more-list a:hover { color: var(--champagne); }
.more-list span {
  font-family: var(--ui);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--champagne);
  flex-shrink: 0;
  padding-top: 0.35rem;
}

/* About / legal */
.page-hero {
  background:
    radial-gradient(ellipse 60% 80% at 90% 20%, rgba(47, 83, 66, 0.35), transparent 55%),
    var(--forest);
  color: var(--parchment);
  padding: 8rem 1.5rem 3.5rem;
}
.page-hero-inner { max-width: 720px; margin: 0 auto; }
.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0.5rem 0 1rem;
}
.page-hero p {
  color: rgba(230, 221, 207, 0.8);
  font-size: 1.1rem;
  max-width: 40ch;
}
.prose-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 1.5rem 4.5rem;
}
.prose-page h2 {
  font-family: var(--display);
  font-size: 1.45rem;
  margin: 2.25rem 0 0.75rem;
  color: var(--forest);
}
.prose-page h3 {
  font-family: var(--ui);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 1.5rem 0 0.5rem;
  color: var(--moss);
}
.prose-page p, .prose-page li {
  margin-bottom: 0.95rem;
  line-height: 1.75;
  color: var(--ink);
}
.prose-page ul { padding-left: 1.2rem; list-style: disc; margin-bottom: 1rem; }
.prose-page a { color: var(--moss); }
.legal-meta {
  font-family: var(--ui);
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.legal-box {
  background: rgba(21, 40, 32, 0.06);
  border-left: 2px solid var(--champagne);
  padding: 1rem 1.15rem;
  margin: 1.25rem 0;
  font-size: 0.95rem;
}

/* Articles index mosaic */
.mosaic {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 720px) {
  .mosaic { grid-template-columns: 1.2fr 1fr; }
  .mosaic .mosaic-item:first-child { grid-row: span 2; }
}
.mosaic-item {
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
}
.mosaic-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.mosaic-item:first-child img { aspect-ratio: 3/4; }
@media (max-width: 719px) {
  .mosaic-item:first-child img { aspect-ratio: 16/10; }
}
.mosaic-item:hover img { transform: scale(1.04); }
.mosaic-caption {
  padding: 1rem 0 0.25rem;
}
.mosaic-caption .eyebrow { margin-bottom: 0.35rem; display: block; }
.mosaic-caption h3 {
  font-family: var(--display);
  font-size: 1.35rem;
  line-height: 1.2;
  color: var(--forest);
}
.mosaic-item:first-child .mosaic-caption h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

/* Footer */
.site-footer {
  background: var(--void);
  color: rgba(232, 220, 196, 0.75);
  padding: 3.5rem 1.5rem 2rem;
  font-size: 0.92rem;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}
@media (min-width: 800px) {
  .footer-inner { grid-template-columns: 1.4fr 1fr 1fr; }
}
.footer-brand .brand { margin-bottom: 0.85rem; display: inline-block; }
.footer-brand p { max-width: 36ch; line-height: 1.55; }
.footer-col h4 {
  font-family: var(--ui);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 0.85rem;
}
.footer-col a {
  display: block;
  text-decoration: none;
  padding: 0.25rem 0;
  color: rgba(232, 220, 196, 0.75);
}
.footer-col a:hover { color: var(--champagne-bright); }
.footer-bottom {
  max-width: var(--max);
  margin: 2.5rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  font-family: var(--ui);
  font-size: 0.75rem;
  color: rgba(232, 220, 196, 0.5);
}
.footer-bottom a { color: rgba(232, 220, 196, 0.65); text-decoration: none; }
.footer-bottom a:hover { color: var(--champagne); }

/* Cookie notice */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: var(--forest);
  color: var(--parchment);
  border-top: 1px solid var(--line);
  padding: 1.15rem 1.25rem;
  transform: translateY(110%);
  transition: transform 0.4s var(--ease);
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}
.cookie-inner p {
  font-size: 0.88rem;
  line-height: 1.5;
  max-width: 62ch;
  color: rgba(230, 221, 207, 0.85);
}
.cookie-inner a { color: var(--champagne); }
.cookie-actions { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.cookie-actions button {
  font-family: var(--ui);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.75rem 1rem;
}
#cookie-accept {
  background: var(--champagne);
  color: var(--void);
}
#cookie-reject {
  border: 1px solid var(--line);
  color: var(--champagne-bright);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-media img { animation: none; transform: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .mosaic-item img { transition: none; }
}
