:root {
  --bg: #f6fbf5;
  --bg-soft: #edf6ea;
  --panel: rgba(255, 255, 255, 0.88);
  --panel-strong: #ffffff;
  --text: #173529;
  --muted: #5e7367;
  --line: rgba(23, 53, 41, 0.12);
  --line-strong: rgba(23, 53, 41, 0.18);
  --primary: #0c5c37;
  --primary-2: #1b7a43;
  --accent: #63a83a;
  --accent-2: #86c44b;
  --shadow-lg: 0 28px 70px rgba(12, 92, 55, 0.16);
  --shadow-md: 0 18px 40px rgba(12, 92, 55, 0.12);
  --shadow-sm: 0 10px 24px rgba(12, 92, 55, 0.08);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: min(1260px, calc(100vw - 2rem));
  --header-offset: 0px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(99, 168, 58, 0.14), transparent 28%),
    radial-gradient(circle at top right, rgba(12, 92, 55, 0.12), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 36%, var(--bg-soft) 100%);
  font-family: "Avenir Next", "Segoe UI", "Trebuchet MS", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -1;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(48px);
  opacity: 0.5;
}

body::before {
  width: 20rem;
  height: 20rem;
  top: -5rem;
  right: -6rem;
  background: rgba(27, 122, 67, 0.14);
}

body::after {
  width: 24rem;
  height: 24rem;
  bottom: -8rem;
  left: -7rem;
  background: rgba(99, 168, 58, 0.14);
}

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

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

button,
input,
textarea {
  font: inherit;
}

::selection {
  background: rgba(27, 122, 67, 0.18);
}

.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 1000;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: top 0.2s ease;
}

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.container-wide {
  width: min(calc(100vw - 2rem), 1840px);
}

.section {
  padding: clamp(3.75rem, 7vw, 6rem) 0;
  scroll-margin-top: 7.5rem;
}

.editorial-roster-section {
  padding-top: 1rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 1.35rem;
}

.section-heading h2,
.hero-banner h2,
.masthead-copy h1,
.table-card h3,
.sidebar-card h3,
.footer-column h3,
.form-card h3 {
  font-family: "Iowan Old Style", "Baskerville", "Georgia", serif;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 0;
}

.section-heading h2 {
  font-size: clamp(2rem, 3.8vw, 3.1rem);
  color: var(--primary);
  margin-top: 0.55rem;
}

.section-heading p,
.hero-banner p,
.sidebar-card p,
.tool-card p,
.info-card p,
.contact-card p,
.masthead-copy p,
.footer-brand p,
.footer-column p,
.form-card p {
  color: var(--muted);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(27, 122, 67, 0.16);
  background: rgba(255, 255, 255, 0.82);
  color: var(--primary);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--primary-2));
  box-shadow: 0 0 0 5px rgba(27, 122, 67, 0.08);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.92rem 1.2rem;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: var(--shadow-sm);
}

.btn-sm {
  padding: 0.72rem 1rem;
  font-size: 0.92rem;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
}

.btn-secondary {
  color: var(--primary);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(23, 53, 41, 0.12);
}

.text-link {
  color: var(--primary);
  font-weight: 800;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--primary-2);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(23, 53, 41, 0.08);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset;
}

.site-header.is-scrolled {
  box-shadow: 0 16px 40px rgba(12, 92, 55, 0.08);
}

.utility-bar {
  border-bottom: 1px solid rgba(23, 53, 41, 0.08);
  background: rgba(255, 255, 255, 0.72);
}

.utility-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px) auto;
  gap: 1rem;
  align-items: center;
  padding: 0.7rem 0;
}

.utility-note {
  margin: 0;
  color: var(--primary);
  font-size: 0.92rem;
  font-weight: 700;
}

.utility-search {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(23, 53, 41, 0.12);
  box-shadow: var(--shadow-sm);
}

.utility-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: none;
  background: transparent;
  padding: 0.35rem 0.55rem;
  color: var(--text);
}

.utility-search-btn {
  border: 0;
  border-radius: 999px;
  padding: 0.62rem 0.95rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.utility-search-btn:focus-visible,
.nav-toggle:focus-visible,
.table-action:focus-visible,
.utility-link:focus-visible {
  outline: 3px solid rgba(27, 122, 67, 0.24);
  outline-offset: 2px;
}

.utility-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  justify-content: flex-end;
}

.utility-link {
  color: var(--primary);
  font-weight: 800;
}

.masthead {
  padding: 1rem 0 1.1rem;
}

.masthead-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 1.2rem;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: center;
  grid-column: 2;
}

.brand img {
  width: 5.7rem;
  height: 5.7rem;
  object-fit: contain;
  border-radius: 1.2rem;
  border: 1px solid rgba(12, 92, 55, 0.12);
  box-shadow: 0 16px 32px rgba(12, 92, 55, 0.14);
  background: #fff;
  padding: 0.34rem;
}

.masthead-copy {
  min-width: 0;
  grid-column: 1;
}

.masthead-copy .eyebrow {
  margin-bottom: 0.3rem;
}

.masthead-copy h1 {
  font-size: clamp(2rem, 3vw, 3.3rem);
  color: var(--primary);
  margin-top: 0.55rem;
}

.masthead-copy p {
  max-width: 60ch;
  margin: 0.65rem 0 0;
}

.masthead-card {
  padding: 1rem 1.05rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 250, 246, 0.9));
  border: 1px solid rgba(23, 53, 41, 0.08);
  box-shadow: var(--shadow-sm);
  grid-column: 3;
}

.masthead-card-label {
  display: inline-flex;
  margin-bottom: 0.4rem;
  color: var(--primary-2);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.masthead-card strong {
  display: block;
  color: var(--primary);
  font-size: 1.12rem;
  margin-bottom: 0.3rem;
}

.masthead-card p {
  margin: 0;
  color: var(--muted);
}

.primary-nav {
  border-top: 1px solid rgba(23, 53, 41, 0.08);
  border-bottom: 1px solid rgba(23, 53, 41, 0.08);
  background: rgba(255, 255, 255, 0.9);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-list > li {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.55rem;
  padding: 0.8rem 0.95rem;
  border: 0;
  background: transparent;
  color: var(--primary);
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-group.is-open > .nav-trigger,
.nav-list > li > a:hover,
.nav-list > li > a:focus-visible {
  color: var(--primary-2);
  background: rgba(27, 122, 67, 0.08);
}

.nav-link[aria-current="page"] {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.16), var(--shadow-sm);
}

.nav-link[aria-current="page"]:hover,
.nav-link[aria-current="page"]:focus-visible {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
}

.nav-group {
  position: relative;
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 16rem;
  padding: 0.55rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(23, 53, 41, 0.08);
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 30;
}

.dropdown-panel a {
  display: flex;
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  color: var(--text);
  font-weight: 700;
}

.dropdown-panel a:hover,
.dropdown-panel a:focus-visible {
  background: rgba(27, 122, 67, 0.08);
  color: var(--primary);
}

.nav-group:hover .dropdown-panel,
.nav-group:focus-within .dropdown-panel,
.nav-group.is-open .dropdown-panel {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  border: 1px solid rgba(23, 53, 41, 0.12);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.1rem;
  height: 2px;
  margin: 0.18rem auto;
  border-radius: 999px;
  background: var(--primary);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
  padding: 1.35rem 0 0;
}

.home-hero {
  padding-top: 1.35rem;
}

.home-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 1rem;
  align-items: stretch;
}

.home-hero-copy,
.home-hero-card {
  padding: clamp(1.2rem, 3vw, 2rem);
  border-radius: 34px;
  border: 1px solid rgba(23, 53, 41, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 246, 0.9)),
    radial-gradient(circle at top right, rgba(27, 122, 67, 0.08), transparent 26%);
  box-shadow: var(--shadow-lg);
}

.home-hero-copy h2 {
  margin-top: 0.55rem;
  color: var(--primary);
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.02;
}

.home-hero-copy p {
  max-width: 58ch;
  margin: 0.9rem 0 0;
}

.home-hero-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(145deg, rgba(12, 92, 55, 0.92), rgba(27, 122, 67, 0.86)),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 28%);
}

.home-card-label {
  display: inline-flex;
  margin-bottom: 0.6rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-hero-card strong {
  display: block;
  color: #fff;
  font-family: "Iowan Old Style", "Baskerville", "Georgia", serif;
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  line-height: 1.08;
}

.home-hero-card p {
  margin: 0.85rem 0 0;
  color: rgba(255, 255, 255, 0.84);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(27, 122, 67, 0.12);
  background: rgba(255, 255, 255, 0.72);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 800;
}

.home-hero-slider {
  padding: clamp(1.2rem, 3vw, 2rem);
  border-radius: 34px;
  border: 1px solid rgba(23, 53, 41, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 244, 0.95)),
    radial-gradient(circle at top right, rgba(27, 122, 67, 0.08), transparent 26%);
  box-shadow: var(--shadow-lg);
}

.hero-slider {
  display: grid;
  gap: 1rem;
}

.hero-slider-stage {
  position: relative;
  min-height: 28rem;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(23, 53, 41, 0.08);
  background: linear-gradient(180deg, #f4f8f3, #edf3ea);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.015);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-slider-meta {
  display: grid;
  gap: 0.9rem;
}

.hero-slider-copy strong {
  display: block;
  margin-top: 0.5rem;
  color: var(--primary);
  font-family: "Iowan Old Style", "Baskerville", "Georgia", serif;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  line-height: 1.08;
}

.hero-slider-copy p {
  margin: 0.7rem 0 0;
  color: var(--muted);
}

.hero-slider-toolbar {
  display: grid;
  gap: 0.8rem;
}

.hero-slider-tag {
  width: fit-content;
  padding: 0.42rem 0.75rem;
  border-radius: 999px;
  background: rgba(27, 122, 67, 0.08);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-slider-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero-slider-btn {
  min-width: 4.3rem;
  padding: 0.72rem 1rem;
  border: 1px solid rgba(23, 53, 41, 0.1);
  border-radius: 999px;
  background: #fff;
  color: var(--primary);
  font-weight: 800;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.hero-slider-btn:hover,
.hero-slider-btn:focus-visible {
  color: var(--primary-2);
  transform: translateY(-1px);
}

.hero-slider-btn:focus-visible,
.hero-slider-dot:focus-visible {
  outline: 3px solid rgba(27, 122, 67, 0.18);
  outline-offset: 3px;
}

.hero-slider-dots {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex: 1;
  justify-content: center;
}

.hero-slider-dot {
  width: 0.72rem;
  height: 0.72rem;
  border: 0;
  border-radius: 999px;
  background: rgba(12, 92, 55, 0.22);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.hero-slider-dot.is-active {
  width: 2rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
}

.hero-slider-dot:hover,
.hero-slider-dot:focus-visible {
  transform: scale(1.08);
}

.home-about-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-articles-grid .article-card {
  min-height: 100%;
}

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

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

.hub-card {
  padding: 1.15rem;
  border-radius: var(--radius-lg);
  background: var(--panel);
  border: 1px solid rgba(23, 53, 41, 0.08);
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 0.5rem;
}

.hub-card-label {
  display: inline-flex;
  color: var(--primary-2);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hub-card strong {
  color: var(--primary);
  font-size: 1rem;
  line-height: 1.5;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.65fr);
  gap: 1rem;
  align-items: start;
}

.hero-banner {
  position: relative;
  overflow: hidden;
  min-height: 34rem;
  padding: clamp(1.2rem, 3vw, 2rem);
  border-radius: 34px;
  border: 1px solid rgba(23, 53, 41, 0.08);
  background:
    linear-gradient(115deg, rgba(9, 39, 24, 0.88), rgba(9, 39, 24, 0.48) 48%, rgba(9, 39, 24, 0.18)),
    url("assets/shared/hero-editorial.jpg") center/cover no-repeat;
  box-shadow: var(--shadow-lg);
}

.hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(8, 26, 18, 0.48), transparent 42%),
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.14), transparent 24%);
  pointer-events: none;
}

.hero-banner > * {
  position: relative;
  z-index: 1;
}

.breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 800;
}

.hero-kicker {
  display: inline-flex;
  margin: 1rem 0 0.55rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-banner h2 {
  max-width: 13ch;
  margin-top: 0.45rem;
  font-size: clamp(2.7rem, 5.4vw, 5rem);
  color: #fff;
}

.hero-banner p {
  max-width: 54ch;
  margin: 0.95rem 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.03rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.55rem;
}

.stat-card {
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(23, 53, 41, 0.08);
  box-shadow: var(--shadow-sm);
}

.stat-card strong {
  display: block;
  color: var(--primary);
  font-size: 1.15rem;
}

.stat-card span {
  display: block;
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.88rem;
}

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

.tool-card,
.sidebar-card,
.info-card,
.table-card,
.workflow-card,
.editorial-card,
.contact-card,
.form-card {
  border-radius: var(--radius-lg);
  background: var(--panel);
  border: 1px solid rgba(23, 53, 41, 0.08);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
}

.tool-card {
  padding: 1rem;
}

.tool-card h3,
.sidebar-card h3,
.info-card h3,
.contact-card h3,
.workflow-card h3,
.editorial-card h3,
.form-card h3 {
  color: var(--primary);
  margin-bottom: 0.45rem;
  font-size: 1.08rem;
}

.stack-search {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.8rem;
}

.stack-search input {
  flex: 1;
  min-width: 0;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(23, 53, 41, 0.12);
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  outline: none;
}

.stack-search input:focus,
.utility-search input:focus,
.field input:focus,
.field textarea:focus {
  border-color: rgba(27, 122, 67, 0.38);
  box-shadow: 0 0 0 4px rgba(27, 122, 67, 0.1);
}

.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: rgba(154, 44, 44, 0.55);
  box-shadow: 0 0 0 4px rgba(154, 44, 44, 0.12);
}

.compact-list,
.archive-list,
.quick-links {
  display: grid;
  gap: 0.55rem;
  margin: 0.85rem 0 0;
  padding: 0;
  list-style: none;
}

.compact-list li,
.archive-item,
.quick-links a {
  position: relative;
  padding-left: 1rem;
  color: var(--muted);
}

.compact-list li::before,
.archive-item::before,
.quick-links a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--primary-2));
}

.issue-card {
  display: grid;
  gap: 0.8rem;
  margin-top: 0.9rem;
}

.issue-card img {
  width: 100%;
  height: 12.5rem;
  object-fit: cover;
  border-radius: 18px;
}

.issue-card strong {
  display: block;
  color: var(--primary);
  font-size: 1rem;
}

.issue-card p {
  margin: 0.3rem 0 0;
}

.journal-strip {
  padding-top: 2rem;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.stats-item {
  padding: 1rem 1.05rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(23, 53, 41, 0.08);
  box-shadow: var(--shadow-sm);
}

.stats-item span {
  display: block;
  color: var(--primary-2);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stats-item strong {
  display: block;
  margin-top: 0.35rem;
  color: var(--primary);
  font-size: 1.03rem;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.34fr) minmax(300px, 0.66fr);
  gap: 1.1rem;
  align-items: start;
}

.main-column,
.sidebar-column {
  min-width: 0;
}

.sidebar-column {
  display: grid;
  gap: 1rem;
  position: sticky;
  top: 10.4rem;
}

.sidebar-card {
  padding: 1rem;
}

.issue-meta {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.85rem;
}

.issue-meta .meta-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.62rem 0;
  border-top: 1px solid rgba(23, 53, 41, 0.08);
}

.issue-meta .meta-row:first-child {
  border-top: 0;
  padding-top: 0;
}

.issue-meta .meta-row span {
  color: var(--muted);
  font-size: 0.94rem;
}

.issue-meta .meta-row strong {
  color: var(--primary);
  font-size: 0.96rem;
}

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

.article-card {
  overflow: hidden;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  min-height: 100%;
}

.article-card .cover {
  position: relative;
  overflow: hidden;
  height: 13rem;
}

.article-card .cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.article-card:hover .cover img {
  transform: scale(1.03);
}

.article-card-body {
  padding: 1rem;
  display: grid;
  gap: 0.55rem;
}

.article-card-body h3 {
  margin: 0;
  color: var(--primary);
  font-size: 1.16rem;
  line-height: 1.2;
}

.article-card-body p {
  margin: 0;
  color: var(--muted);
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.68rem;
  border-radius: 999px;
  background: rgba(27, 122, 67, 0.08);
  color: var(--primary);
  font-size: 0.77rem;
  font-weight: 800;
}

.article-card-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 0 1rem 1rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.table-card {
  margin-top: 1rem;
  padding: 1rem;
}

.table-card-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
}

.table-card-head h3 {
  margin-top: 0.35rem;
  color: var(--primary);
  font-size: 1.3rem;
}

.table-wrap {
  overflow-x: auto;
  border-radius: 18px;
  border: 1px solid rgba(23, 53, 41, 0.08);
}

.journal-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  background: rgba(255, 255, 255, 0.92);
}

.journal-table th,
.journal-table td {
  padding: 0.95rem 1rem;
  border-bottom: 1px solid rgba(23, 53, 41, 0.08);
  text-align: left;
  vertical-align: top;
}

.journal-table th {
  background: rgba(27, 122, 67, 0.06);
  color: var(--primary);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.journal-table tbody tr:hover {
  background: rgba(27, 122, 67, 0.04);
}

.table-action {
  color: var(--primary);
  font-weight: 800;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
  margin-top: 1rem;
}

.info-card {
  padding: 1rem;
}

.no-results-card {
  grid-column: 1 / -1;
}

.info-card p {
  margin: 0.55rem 0 0;
}

.compact-list li,
.archive-item,
.quick-links a {
  display: flex;
  align-items: flex-start;
  gap: 0.35rem;
}

.archive-item,
.quick-links a {
  padding-top: 0.05rem;
}

.quick-links a {
  color: var(--primary);
  font-weight: 700;
}

.workflow-grid,
.editorial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
}

.workflow-card,
.editorial-card {
  padding: 1rem;
}

.workflow-card p,
.editorial-card p {
  margin: 0.55rem 0 0;
}

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

.editorial-media {
  margin: 0 0 0.85rem;
  overflow: hidden;
  border-radius: 18px;
  aspect-ratio: 4 / 3;
  background: linear-gradient(145deg, rgba(27, 122, 67, 0.08), rgba(99, 168, 58, 0.08));
}

.editorial-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.editorial-card:hover .editorial-media img {
  transform: scale(1.03);
}

.team-directory {
  display: grid;
  gap: 0;
}

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

.team-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 0.95rem;
  padding: 1rem 1rem 1.05rem;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 252, 249, 0.96));
  border: 1px solid rgba(23, 53, 41, 0.07);
  box-shadow:
    0 1px 0 rgba(12, 92, 55, 0.04) inset,
    0 12px 26px rgba(15, 40, 24, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.team-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.7) inset;
  pointer-events: none;
}

.team-card:hover {
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(12, 92, 55, 0.04) inset,
    0 16px 30px rgba(15, 40, 24, 0.08);
}

.team-portrait {
  margin: 0;
  padding: 0.85rem;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  border-radius: 26px;
  background:
    linear-gradient(180deg, #f7f8fa 0%, #eef2f5 100%);
  border: 1px solid rgba(30, 45, 37, 0.09);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.7),
    0 1px 0 rgba(255, 255, 255, 0.7);
}

.team-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 18px;
}

.team-card-body {
  display: grid;
  gap: 0.72rem;
  min-width: 0;
}

.team-heading {
  display: grid;
  gap: 0.18rem;
}

.team-card h3 {
  margin: 0;
  color: var(--primary);
  font-size: clamp(1.15rem, 1.3vw, 1.45rem);
  line-height: 1.12;
  font-weight: 800;
}

.team-role-badge {
  color: var(--primary);
  font-size: 0.95rem;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.team-details {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.team-details li {
  position: relative;
  padding-left: 1.45rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.48;
  overflow-wrap: anywhere;
}

.team-details li.is-primary {
  color: var(--text);
  font-weight: 500;
  background: transparent;
}

.team-details li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.74em;
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #4aa043, #358d3a);
  box-shadow: 0 0 0 5px rgba(63, 156, 67, 0.1);
}

.mini-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.2rem;
}

.mini-links a {
  display: inline-flex;
  align-items: center;
  padding: 0.74rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(23, 53, 41, 0.1);
  background: #fff;
  color: var(--primary);
  font-size: 0.96rem;
  font-weight: 800;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 3px 10px rgba(12, 92, 55, 0.06);
  transition: transform 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.mini-links a:hover,
.mini-links a:focus-visible {
  transform: translateY(-1px);
  color: var(--primary-2);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 6px 14px rgba(12, 92, 55, 0.1);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1rem;
  align-items: start;
}

.contact-heading {
  margin-bottom: 0;
  grid-column: 1 / -1;
}

.contact-cards {
  display: grid;
  gap: 1rem;
}

.contact-card {
  overflow: hidden;
}

.contact-card-media {
  aspect-ratio: 4 / 3;
  background: linear-gradient(145deg, rgba(27, 122, 67, 0.08), rgba(99, 168, 58, 0.08));
  display: grid;
  place-items: center;
  padding: 0.75rem;
}

.contact-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 16px;
}

.contact-card-body {
  padding: 1rem;
}

.contact-role {
  display: inline-flex;
  margin-bottom: 0.35rem;
  color: var(--primary-2);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-card {
  grid-column: 2;
  padding: 1.2rem;
  display: grid;
  gap: 1rem;
}

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

.field {
  display: grid;
  gap: 0.45rem;
}

.field label {
  color: var(--primary);
  font-weight: 800;
  font-size: 0.94rem;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(23, 53, 41, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  padding: 0.95rem 1rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field textarea {
  min-height: 10rem;
  resize: vertical;
}

.field-full {
  grid-column: 1 / -1;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.status {
  min-height: 1.4rem;
  color: var(--primary-2);
  font-weight: 800;
  font-size: 0.92rem;
}

.status.is-success {
  color: var(--primary-2);
}

.status.is-error {
  color: #9a2c2c;
}

.footer {
  position: relative;
  margin-top: 2rem;
  padding: 4rem 0 1.4rem;
  border-top: 1px solid rgba(23, 53, 41, 0.08);
  background:
    radial-gradient(circle at 10% 10%, rgba(99, 168, 58, 0.16), transparent 24%),
    radial-gradient(circle at 88% 0%, rgba(27, 122, 67, 0.16), transparent 28%),
    linear-gradient(135deg, #f5fbf1 0%, #eef6e9 46%, #ffffff 100%);
}

.footer-inner {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  gap: 1.3rem;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 1.35fr) repeat(3, minmax(170px, 0.72fr));
  gap: 1.3rem;
  padding: 1.2rem;
  border-radius: 34px;
  border: 1px solid rgba(23, 53, 41, 0.08);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(18px);
}

.footer-brand {
  display: grid;
  gap: 1rem;
}

.footer-logo {
  width: 6.6rem;
  height: 6.6rem;
  display: grid;
  place-items: center;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(23, 53, 41, 0.08);
  box-shadow: var(--shadow-sm);
  padding: 0.4rem;
}

.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-brand p {
  margin: 0;
  max-width: 34rem;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.2rem;
  min-height: 3.2rem;
  padding: 0.72rem 0.9rem;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 12px 28px rgba(12, 92, 55, 0.18);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-column {
  display: grid;
  gap: 0.55rem;
  align-content: start;
  font-style: normal;
}

.footer-column h3 {
  color: var(--primary);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer-column a,
.footer-column p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-column a {
  width: fit-content;
  color: var(--primary);
  font-weight: 800;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--primary-2);
  transform: translateX(3px);
}

.footer-address p {
  max-width: 20rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0 0.25rem;
  color: var(--muted);
  font-size: 0.94rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom-links a {
  color: var(--primary);
  font-weight: 800;
}

@media (max-width: 1180px) {
  .utility-inner,
  .home-hero-grid,
  .hero-grid,
  .content-grid,
  .contact-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .utility-inner {
    gap: 0.85rem;
  }

  .utility-note {
    order: -2;
  }

  .utility-search {
    order: 1;
    width: 100%;
  }

  .utility-actions {
    order: -1;
    justify-content: space-between;
  }

  .masthead-card {
    width: min(100%, 420px);
  }

  .masthead-inner {
    grid-template-columns: 1fr;
  }

  .brand,
  .masthead-copy,
  .masthead-card {
    grid-column: auto;
    justify-self: stretch;
  }

  .brand {
    justify-self: center;
  }

  .hero-sidebar,
  .sidebar-column {
    position: static;
  }

  .card-grid,
  .about-grid,
  .home-about-grid,
  .two-col-grid,
  .hub-grid,
  .team-grid,
  .workflow-grid,
  .editorial-grid,
  .stats-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-card {
    grid-column: auto;
  }
}

@media (max-width: 920px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .primary-nav {
    position: fixed;
    inset: 0 auto 0 0;
    width: min(100vw, 22rem);
    height: 100vh;
    border-right: 1px solid rgba(23, 53, 41, 0.08);
    transform: translateX(-102%);
    transition: transform 0.25s ease;
    overflow-y: auto;
    padding-bottom: 2rem;
    z-index: 90;
  }

  .site-header.nav-open .primary-nav {
    transform: translateX(0);
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
    padding: 0.75rem 0;
  }

  .nav-list > li {
    width: 100%;
  }

  .nav-link {
    width: 100%;
    justify-content: flex-start;
    min-height: 3.2rem;
    padding-inline: 1rem;
  }

  .dropdown-panel {
    position: static;
    min-width: 0;
    margin: 0 0.7rem 0.5rem;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    display: none;
  }

  .nav-group.is-open .dropdown-panel {
    display: block;
  }

  .hero-banner {
    min-height: auto;
  }

  .hero-stats,
  .card-grid,
  .about-grid,
  .home-about-grid,
  .two-col-grid,
  .hub-grid,
  .team-grid,
  .workflow-grid,
  .editorial-grid,
  .stats-strip {
    grid-template-columns: 1fr;
  }

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

  .table-card-head {
    flex-direction: column;
    align-items: start;
  }

  .footer-main {
    gap: 1.1rem;
  }
}

@media (max-width: 720px) {
  .utility-search {
    flex-wrap: wrap;
    border-radius: 24px;
  }

  .utility-search-btn {
    width: 100%;
  }

  .masthead-card {
    width: 100%;
  }

  .hero-banner {
    padding: 1rem;
    border-radius: 28px;
  }

  .hero-slider-stage {
    min-height: 18rem;
  }

  .section {
    padding: 3.25rem 0;
  }

  .hero-actions,
  .footer-bottom-links {
    width: 100%;
  }

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

  .footer-main {
    padding: 1rem;
    border-radius: 28px;
  }

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

@media (max-width: 560px) {
  .container {
    width: min(100vw - 1.2rem, 1260px);
  }

  .utility-actions {
    gap: 0.5rem;
  }

  .btn-sm {
    padding-inline: 0.85rem;
  }

  .brand img,
  .footer-logo {
    width: 5rem;
    height: 5rem;
  }

  .hero-banner h2 {
    max-width: 11ch;
  }

  .stack-search {
    flex-direction: column;
  }

  .issue-card img {
    height: 10.5rem;
  }

  .footer-bottom {
    font-size: 0.9rem;
  }
}
