:root {
  --paper: #ffffff;
  --paper-strong: #f6f6fa;
  --white: #ffffff;
  --ink: #222222;
  --ink-soft: #4a4a4a;
  --line: rgba(10, 31, 65, 0.12);
  --accent: #ffe400;
  --accent-strong: #e6cd00;
  --navy: #0a1f41;
  --slate: #0a1f41;
  --terracotta: #d45341;
  --indigo: #5551ff;
  --lavender: #efeeff;
  --shadow: 0 14px 28px rgba(10, 31, 65, 0.08);
  --max-width: 1240px;
  --font-heading: "Rubik", sans-serif;
  --font-body: "Work Sans", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
}

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

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

button,
input {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy);
  color: var(--white);
  padding: 0.8rem 1rem;
  z-index: 50;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.container {
  width: min(var(--max-width), calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}

.mission-strip {
  background: var(--accent);
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.68rem;
  font-weight: 700;
}

.mission-inner {
  min-height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.masthead-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 5.2rem;
  position: relative;
}

.brand-block {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand-mark {
  width: 2.8rem;
  height: 2.8rem;
  display: grid;
  place-items: center;
  border-radius: 0;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
}

.brand-stack {
  display: flex;
  flex-direction: column;
}

.brand-kicker {
  display: inline-block;
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.brand {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.2vw, 2.5rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--navy);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.15rem;
  flex-wrap: wrap;
}

.site-nav a {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 0.45rem 0;
  position: relative;
  font-weight: 700;
}

.site-nav a.active,
.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
}

.site-nav a.active::after,
.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.2rem;
  height: 3px;
  background: var(--indigo);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.72rem 1.2rem;
  border: 2px solid var(--navy);
  background: var(--navy);
  color: var(--white);
  border-radius: 0;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  font-size: 0.95rem;
  font-family: var(--font-body);
  transition: transform 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--navy);
}

.button-outline {
  background: transparent;
  color: var(--navy);
}

.hero {
  padding: 0;
  margin: 0;
}

.hero-feature {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: #d9d0c0;
  overflow: visible;
  display: flex;
  flex-direction: column;
}

.hero-media {
  position: relative;
  width: 100%;
  height: clamp(440px, 82vh, 860px);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 54%;
  display: block;
  filter: saturate(0.9) contrast(1.04);
}

.hero-media-placeholder {
  width: 100%;
  height: 100%;
  border: none;
  font-size: 0.85rem;
}

.image-panel,
.story-visual,
.series-visual,
.archive-visual,
.image-placeholder {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, #2a3037, #7e6b5d 40%, #d6c3a3 100%);
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
}

.hero-copy {
  align-self: center;
  width: min(72vw, 980px);
  margin-top: clamp(-9rem, -14vw, -5rem);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  padding: clamp(1.2rem, 2.4vw, 2.4rem) clamp(1.4rem, 3vw, 3rem);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
  position: relative;
}

.latest-section {
  padding-top: clamp(2.5rem, 4vw, 4rem);
}

.eyebrow {
  display: inline-flex;
  color: var(--indigo);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.eyebrow-light {
  color: var(--accent);
}

h1,
h2,
h3 {
  margin: 0 0 0.8rem;
  font-family: var(--font-heading);
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--navy);
}

h1 {
  font-size: clamp(2.4rem, 4.2vw, 3.8rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.9rem, 2.6vw, 2.6rem);
  font-weight: 900;
}

h3 {
  font-size: clamp(1.3rem, 1.7vw, 1.6rem);
  font-weight: 700;
}

.deck,
.article-deck {
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 50ch;
}

.story-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.25rem;
  color: var(--ink-soft);
  font-size: 0.82rem;
  flex-wrap: wrap;
}

.byline-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
}

.byline-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.68rem;
  color: var(--ink-soft);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.4rem;
  flex-wrap: wrap;
}

.text-link {
  color: var(--indigo);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.byline-wrap a,
.article-meta a,
.related-sidebar a {
  color: var(--indigo);
}

.latest-section,
.section-block,
.category-page {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.page-header {
  margin-bottom: 1.8rem;
  max-width: 62ch;
}

.page-header p {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 1rem;
}

.story-card {
  background: var(--white);
  border: none;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.story-card-large {
  grid-column: span 1;
}

.story-card-regular {
  min-height: 100%;
}

.story-visual {
  min-height: 220px;
  border-bottom: 1px solid var(--line);
}

.visual-a {
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.7), rgba(242, 209, 45, 0.35)),
    linear-gradient(120deg, #7d6856 0%, #d8cab5 55%, #dba464 100%);
}

.visual-b {
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.7), rgba(242, 209, 45, 0.15)),
    linear-gradient(120deg, #9d7a53 0%, #d0b190 40%, #f3e5b1 100%);
}

.visual-c {
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.7), rgba(242, 209, 45, 0.2)),
    linear-gradient(120deg, #6e3746 0%, #d89a84 50%, #eff0d8 100%);
}

.visual-d {
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.7), rgba(242, 209, 45, 0.18)),
    linear-gradient(120deg, #30414f 0%, #a4a5a8 45%, #e0d8c4 100%);
}

.visual-e {
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.7), rgba(242, 209, 45, 0.15)),
    linear-gradient(120deg, #3a4d46 0%, #b9d1c7 50%, #f0d5a1 100%);
}

.story-body {
  padding: 1rem 0 0;
}

.story-tag,
.article-kicker {
  color: var(--indigo);
  letter-spacing: 0.02em;
  text-transform: none;
  font-size: 0.85rem;
  font-weight: 700;
}

.story-card h3,
.archive-story h2,
.series-body h3,
.mini-series h3,
.section-tile h3 {
  margin-top: 0.65rem;
  margin-bottom: 0.6rem;
  font-size: clamp(1.5rem, 2vw, 2rem);
}

.story-card p,
.archive-story p,
.series-body p,
.mini-series p,
.section-tile p,
.sidebar-box p,
.sidebar-box li,
.article-body p,
.article-body li,
.related-sidebar a {
  color: var(--ink-soft);
}

.small-meta {
  border-top: 1px solid var(--line);
  padding-top: 0.8rem;
  margin-top: 0.8rem;
}

.full-banner {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: 540px;
  display: flex;
  align-items: center;
  margin-top: 1rem;
}

.full-banner-inner {
  width: min(var(--max-width), calc(100% - 2rem));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 3rem 0;
}

.newsletter-strip {
  background: var(--terracotta);
  color: var(--white);
}

.newsletter-copy h2 {
  color: var(--white);
  margin: 0;
}

.newsletter-strip p {
  margin: 0.6rem 0 0;
  color: rgba(255, 255, 255, 0.9);
  max-width: 34ch;
  font-size: 1.1rem;
}

.support-strip {
  background: var(--indigo);
  color: var(--white);
  min-height: 220px;
}

.support-strip h2 {
  color: var(--white);
}

.support-strip p {
  margin: 0.6rem 0 0;
  color: rgba(255, 255, 255, 0.9);
  max-width: 40ch;
  font-size: 1.1rem;
}

.membership-strip {
  background: var(--accent);
  color: var(--navy);
}

.membership-strip h2 {
  color: var(--navy);
}

.membership-strip p {
  margin: 0.6rem 0 0;
  color: var(--navy);
  max-width: 40ch;
  font-size: 1.1rem;
}

.membership-strip .button-primary {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.section-tile {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: none;
  padding: 1.5rem;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.tile-news {
  background: linear-gradient(180deg, rgba(242, 209, 45, 0.08), rgba(255, 255, 255, 1));
}

.tile-food {
  background: linear-gradient(180deg, rgba(195, 160, 95, 0.08), rgba(255, 255, 255, 1));
}

.tile-culture {
  background: linear-gradient(180deg, rgba(127, 91, 70, 0.08), rgba(255, 255, 255, 1));
}

.tile-nightlife {
  background: linear-gradient(180deg, rgba(30, 49, 75, 0.08), rgba(255, 255, 255, 1));
}

.tile-development {
  background: linear-gradient(180deg, rgba(130, 108, 78, 0.08), rgba(255, 255, 255, 1));
}

.tile-events {
  background: linear-gradient(180deg, rgba(91, 86, 74, 0.08), rgba(255, 255, 255, 1));
}

.series-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 1rem;
}

.series-feature {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.series-visual {
  min-height: 280px;
  border-bottom: 1px solid var(--line);
}

.visual-f {
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.7), rgba(242, 209, 45, 0.18)),
    linear-gradient(120deg, #243742 0%, #c9bca0 55%, #c36f3e 100%);
}

.series-body {
  padding: 1.1rem 1.2rem 1.3rem;
}

.series-aside {
  display: grid;
  gap: 1rem;
}

.mini-series {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 1rem;
}

.category-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(220px, 0.8fr);
  gap: 1rem;
}

.category-feed {
  display: grid;
  gap: 1rem;
}

.archive-story {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 1rem;
}

.feature-archive {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) 1.3fr;
  gap: 1rem;
  padding: 0;
  overflow: hidden;
}

.archive-visual {
  min-height: 260px;
  border: none;
  border-right: 1px solid var(--line);
}

.visual-g {
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.75), rgba(242, 209, 45, 0.12)),
    linear-gradient(120deg, #5d5663 0%, #d7c2a2 45%, #c19864 100%);
}

.archive-copy {
  padding: 1.1rem 1.2rem 1.2rem;
}

.sidebar-box {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 1rem;
}

.sidebar-box ul {
  margin: 0.8rem 0 0;
  padding-left: 1.2rem;
}

.article-page {
  padding: 2.5rem 0 3rem;
}

.article-shell {
  max-width: 980px;
}

.article-header {
  margin-bottom: 1.5rem;
}

.article-header h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  margin-bottom: 1rem;
}

.article-deck {
  max-width: 62ch;
  color: var(--ink-soft);
}

.article-meta {
  margin-top: 1.3rem;
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 0.9rem 0;
  color: var(--ink-soft);
}

.meta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.article-hero-image {
  margin: 0 0 2rem;
}

.image-story {
  min-height: 440px;
  border-radius: 0;
}

.article-hero-image figcaption {
  color: var(--ink-soft);
  margin-top: 0.7rem;
  font-size: 0.92rem;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(220px, 0.8fr);
  gap: 1.5rem;
}

.article-body {
  font-size: 1.08rem;
  line-height: 1.9;
}

.article-body p,
.article-body li {
  color: var(--ink);
}

.lead {
  font-size: 1.25rem;
  color: var(--ink);
  font-weight: 600;
}

.article-body blockquote {
  margin: 2rem 0;
  padding: 1.2rem 1.5rem;
  background: var(--lavender);
  border-left: 4px solid var(--indigo);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(1.5rem, 2vw, 2.2rem);
  line-height: 1.25;
  color: var(--navy);
}

.article-body h2 {
  margin-top: 2rem;
}

.related-sidebar {
  display: grid;
  gap: 1rem;
}

.related-sidebar ul {
  margin: 0.8rem 0 0;
  padding-left: 1.3rem;
}

.related-sidebar li + li {
  margin-top: 0.6rem;
}

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

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 0 2rem;
  flex-wrap: wrap;
}

.footer-brand {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--navy);
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  font-weight: 700;
}

.nav-toggle {
  display: none;
  width: 2.9rem;
  height: 2.9rem;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.3rem;
  padding: 0.4rem;
}

.nav-toggle span {
  display: block;
  width: 1.3rem;
  height: 2px;
  background: var(--ink);
  border-radius: 10px;
}

@media (max-width: 980px) {
  .hero-feature,
  .series-layout,
  .category-layout,
  .article-layout,
  .section-grid {
    grid-template-columns: 1fr;
  }

  .story-grid {
    grid-template-columns: 1fr 1fr;
  }

  .section-tile {
    min-height: 180px;
  }
}

@media (max-width: 720px) {
  .masthead-row {
    min-height: 4.5rem;
  }

  .hero-media {
    height: 520px;
  }

  .hero-media img {
    object-position: center 58%;
  }

  .hero-copy {
    width: min(88vw, 540px);
    margin-top: -3.5rem;
    padding: 1.1rem 1rem 1.2rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.8rem, 11vw, 4.8rem);
    line-height: 0.9;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 0.4rem);
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 1rem;
    flex-direction: column;
    align-items: flex-start;
    display: none;
  }

  .site-nav.is-open {
    display: flex;
  }

  .mission-inner {
    justify-content: center;
    text-align: center;
    flex-direction: column;
    padding: 0.6rem 0;
  }

  .button-outline {
    display: none;
  }

  .story-grid,
  .section-grid {
    grid-template-columns: 1fr;
  }

  .feature-archive {
    grid-template-columns: 1fr;
  }

  .archive-visual {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .newsletter-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
