/* IBBN — palette: #31794c + white only */
:root {
  --brand: #31794c;
  --white: #ffffff;
  --text-on-brand: #ffffff;
  --text-body: #31794c;
  --border: rgba(49, 121, 76, 0.22);
  --shadow: rgba(49, 121, 76, 0.12);
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-ui: "DM Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text-body);
  background: var(--white);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

img {
  max-width: 100%;
  height: auto;
}

.sr-only {
  position: absolute;
  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: -100px;
  background: var(--brand);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  z-index: 1000;
  text-decoration: none;
  font-weight: 600;
}

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

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

.container.narrow {
  width: min(760px, 92vw);
}

.breadcrumb {
  padding: 1rem 0 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand);
}

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

.breadcrumb a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.breadcrumb-sep {
  margin: 0 0.4rem;
  opacity: 0.55;
  font-weight: 500;
}

.breadcrumb-current {
  opacity: 0.88;
  font-weight: 600;
}

.page-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  color: var(--brand);
}

.section-page-head {
  padding-top: clamp(1.25rem, 4vw, 2rem);
}

.section-page-top {
  padding-top: clamp(1rem, 3vw, 1.75rem);
}

.section-head-center {
  text-align: center;
  margin-inline: auto;
  max-width: 560px;
}

.section-head-center .section-sub {
  margin-inline: auto;
}

.section-sub-wide {
  max-width: 52rem;
}

.card-grid-trio {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 900px) {
  .card-grid-trio {
    grid-template-columns: 1fr;
  }
}

.card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.card-grid-trio > .card-link {
  min-height: 100%;
}

.card-link p {
  flex: 1;
}

.card-link:hover {
  border-color: var(--brand);
  box-shadow: 0 16px 40px var(--shadow);
}

.card-link:active {
  transform: scale(0.99);
}

.card-link:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

.card-more {
  display: inline-block;
  margin-top: auto;
  padding-top: 0.75rem;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--brand);
}

.card-link .card-title {
  transition: color 0.15s ease;
}

.card-link:hover .card-title {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.inline-quote {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 600;
  line-height: 1.35;
  color: var(--brand);
  border-left: 4px solid var(--brand);
  padding-left: 1.25rem;
}

.inline-quote-source {
  margin: 0;
  font-size: 1rem;
}

.text-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.text-linkinvert {
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
}

.text-linkinvert:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.page-cta-wrap {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
}

.join-back {
  margin-top: 1.25rem;
}

/* Header — Democrats-style utility bar feel */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1120px, 92vw);
  margin-inline: auto;
  min-height: var(--header-h);
  padding-block: 0.35rem;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  text-decoration: none;
  color: inherit;
}

.brand-mark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  color: var(--brand);
}

.brand-sub {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  opacity: 0.85;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--brand);
  border-radius: 10px;
  background: var(--white);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 0;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle-bar,
.nav-toggle-bar::before,
.nav-toggle-bar::after {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--brand);
  border-radius: 2px;
  position: relative;
}

.nav-toggle-bar::before,
.nav-toggle-bar::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-bar::before {
  top: -7px;
}

.nav-toggle-bar::after {
  top: 7px;
}

/* Menu icon → X (class toggled via JS for reliable mobile support; avoids :has()) */
.site-header.nav-open .nav-toggle-bar {
  background: transparent;
}

.site-header.nav-open .nav-toggle-bar::before {
  top: 0;
  transform: rotate(45deg);
}

.site-header.nav-open .nav-toggle-bar::after {
  top: 0;
  transform: rotate(-45deg);
}

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

.nav-list a {
  text-decoration: none;
  color: var(--brand);
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-list a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.nav-list a[aria-current="page"]:not(.nav-cta) {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.nav-cta[aria-current="page"] {
  box-shadow: inset 0 0 0 2px var(--white);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  background: var(--brand);
  color: var(--white) !important;
  border-radius: 999px;
  text-decoration: none !important;
}

.nav-cta:hover {
  opacity: 0.92;
  text-decoration: none !important;
}

@media (max-width: 900px) {
  .site-header {
    z-index: 200;
  }

  .header-inner .brand {
    flex: 1 1 auto;
    min-width: 0;
    padding-right: 0.5rem;
  }

  .nav-toggle {
    display: flex;
    margin-left: auto;
    z-index: 101;
  }

  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    width: 100%;
    z-index: 100;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 12px 28px var(--shadow);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }

  .site-nav.is-open {
    max-height: min(85vh, 560px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem clamp(1rem, 5vw, 1.5rem) 1.25rem;
    width: 100%;
    max-width: 100%;
    margin: 0;
    gap: 0;
    box-sizing: border-box;
  }

  .nav-list li {
    border-bottom: 1px solid var(--border);
  }

  .nav-list a {
    display: block;
    padding: 0.85rem 0;
    box-sizing: border-box;
  }

  .nav-cta {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    text-align: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
}

/* Hero — bold headline + secondary panel (DNC / TNN blend) */
.hero {
  position: relative;
  padding: clamp(3rem, 8vw, 5.5rem) 0 clamp(4rem, 10vw, 6rem);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 85% 20%, rgba(49, 121, 76, 0.08), transparent 55%),
    radial-gradient(ellipse 70% 50% at 10% 80%, rgba(49, 121, 76, 0.06), transparent 50%),
    linear-gradient(180deg, var(--white) 0%, rgba(49, 121, 76, 0.03) 100%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

@media (max-width: 880px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
  margin: 0 0 1rem;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.1rem, 5vw, 3.35rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 1.25rem;
  color: var(--brand);
}

.hero-lede {
  margin: 0 0 2rem;
  font-size: 1.08rem;
  max-width: 52ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: opacity 0.2s, transform 0.15s;
}

.btn:active {
  transform: scale(0.98);
}

.btn-solid {
  background: var(--brand);
  color: var(--white);
  border-color: var(--brand);
}

.btn-solid:hover {
  opacity: 0.93;
}

.btn-ghost {
  background: transparent;
  color: var(--brand);
  border-color: var(--brand);
}

.btn-ghost:hover {
  background: rgba(49, 121, 76, 0.06);
}

.btn-light {
  background: var(--white);
  color: var(--brand);
  border-color: var(--white);
}

.btn-light:hover {
  opacity: 0.94;
}

.btn-block {
  width: 100%;
}

.hero-aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.5rem;
  box-shadow: 0 18px 40px var(--shadow);
}

.stat-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.5rem;
}

.stat-text {
  margin: 0;
  font-size: 0.98rem;
}

/* Sections */
.section {
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.section-alt {
  background: rgba(49, 121, 76, 0.045);
  border-block: 1px solid var(--border);
}

.section-brand {
  background: var(--brand);
  color: var(--text-on-brand);
}

.section-brand .section-title,
.section-brand h2,
.section-brand h3,
.section-brand p,
.section-brand li {
  color: var(--white);
}

.banner-inner {
  text-align: center;
  max-width: 820px;
  margin-inline: auto;
}

.banner-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  margin: 0 0 1rem;
}

.banner-text {
  margin: 0;
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  line-height: 1.55;
}

.banner-text em {
  font-style: italic;
  font-weight: 600;
}

.section-head {
  margin-bottom: 2.25rem;
  max-width: 640px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.section-sub {
  margin: 0;
  font-size: 1.05rem;
  opacity: 0.95;
}

.lead {
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
}

.section p {
  margin: 0 0 1rem;
}

.section p:last-child {
  margin-bottom: 0;
}

/* Cards — issue tiles reminiscent of party sites */
.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

@media (max-width: 720px) {
  .card-grid {
    grid-template-columns: 1fr;
  }
}

.card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.65rem 1.75rem;
  background: var(--white);
  box-shadow: 0 12px 32px var(--shadow);
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 0.65rem;
  color: var(--brand);
}

.card p {
  margin: 0;
  font-size: 0.98rem;
}

.objective-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1rem;
}

.objective-list li {
  position: relative;
  padding-left: 1.75rem;
  border-left: 4px solid var(--brand);
  padding-block: 0.35rem;
  padding-right: 0.5rem;
  background: var(--white);
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: 0 4px 18px var(--shadow);
}

/* Philosophy pills */
.pill-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (max-width: 720px) {
  .pill-grid {
    grid-template-columns: 1fr;
  }
}

.pill {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.5rem;
  background: var(--white);
}

.pill-wide {
  grid-column: 1 / -1;
}

@media (max-width: 720px) {
  .pill-wide {
    grid-column: auto;
  }
}

.pill h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
  color: var(--brand);
}

.pill p {
  margin: 0;
  font-size: 0.96rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

@media (max-width: 800px) {
  .split {
    grid-template-columns: 1fr;
  }
}

.quote-block {
  border: 2px solid var(--brand);
  border-radius: var(--radius-lg);
  padding: 2rem;
  background: var(--white);
}

.quote-block blockquote {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  font-weight: 600;
  line-height: 1.35;
  color: var(--brand);
}

.quote-note {
  margin: 0;
  font-size: 0.98rem;
}

/* Join strip */
.section-join {
  padding-bottom: clamp(3.5rem, 8vw, 5.5rem);
}

.join-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 3rem);
  align-items: start;
}

@media (max-width: 840px) {
  .join-grid {
    grid-template-columns: 1fr;
  }
}

.join-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin: 0 0 1rem;
}

.join-lede {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  opacity: 0.95;
}

.fine-print {
  margin: 0;
  font-size: 0.82rem;
  opacity: 0.85;
  line-height: 1.5;
}

.join-form {
  display: grid;
  gap: 1rem;
  padding: 1.75rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius-lg);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.field-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.join-form input[type="text"],
.join-form input[type="email"],
.join-form input[type="tel"] {
  font: inherit;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: var(--white);
  color: var(--brand);
}

.join-form input::placeholder {
  color: rgba(49, 121, 76, 0.45);
}

.join-form input:focus {
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

.field-check {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9rem;
  line-height: 1.45;
}

.field-check input {
  margin-top: 0.3rem;
  width: 18px;
  height: 18px;
  accent-color: var(--brand);
}

/* WhatsApp / contact (home) */
.contact-wrap {
  max-width: 44rem;
  margin-inline: auto;
  text-align: center;
}

.contact-intro .join-title {
  margin-bottom: 0.75rem;
}

.contact-phone {
  margin: 1.5rem 0 0;
}

.contact-phone-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.92;
  margin-bottom: 0.35rem;
}

.contact-phone-num {
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
}

.contact-phone-num:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.whatsapp-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1rem;
  margin-top: 2rem;
}

.whatsapp-action {
  min-width: 11.5rem;
}

/* Leadership */
.leader-highlight {
  display: grid;
  grid-template-columns: 1fr minmax(200px, 280px);
  gap: clamp(1.5rem, 4vw, 2.25rem);
  align-items: start;
  margin-bottom: 3rem;
  padding: clamp(1.5rem, 4vw, 2.25rem);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 12px 32px var(--shadow);
}

@media (max-width: 800px) {
  .leader-highlight {
    grid-template-columns: 1fr;
  }
}

.leader-highlight-body .leader-name {
  margin-top: 0.35rem;
}

.leader-highlight-panel {
  margin: 0;
  border: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 0;
  box-shadow: 0 8px 28px var(--shadow);
}

.leader-highlight-panel img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  vertical-align: middle;
}

.section-head-spaced {
  margin-top: 2.75rem;
  margin-bottom: 1.5rem;
}

/* Leadership — organisation structure */
.org-structure {
  margin-top: 0.25rem;
}

.org-jump {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.35rem;
  margin-bottom: 1.75rem;
  padding: 1rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(49, 121, 76, 0.05);
  font-size: 0.9rem;
}

.org-jump-label {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--brand);
  margin-right: 0.35rem;
}

.org-jump a {
  font-weight: 600;
  color: var(--brand);
  text-decoration: none;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
}

.org-jump a:hover {
  background: rgba(49, 121, 76, 0.1);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.org-overview {
  margin-bottom: 1.25rem;
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 6px 22px var(--shadow);
}

.org-overview-title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--brand);
}

.org-tier-list {
  margin: 0;
  padding-left: 1.35rem;
  max-width: 44rem;
}

.org-tier-list > li {
  margin-bottom: 0.45rem;
}

.org-tier-list > li:last-child {
  margin-bottom: 0;
}

.org-ddg-sub {
  margin: 0.4rem 0 0;
  padding-left: 1rem;
  list-style: lower-roman;
}

.org-ddg-sub li {
  margin-bottom: 0.25rem;
}

.org-details {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 0.65rem;
  background: var(--white);
  box-shadow: 0 4px 18px var(--shadow);
}

.org-details[open] {
  box-shadow: 0 8px 28px var(--shadow);
}

.org-summary {
  cursor: pointer;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1rem 1.2rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--brand);
  list-style: none;
}

.org-summary::-webkit-details-marker {
  display: none;
}

.org-summary::after {
  content: "+";
  flex-shrink: 0;
  font-weight: 700;
  opacity: 0.65;
  font-family: var(--font-ui);
}

.org-details[open] > .org-summary::after {
  content: "−";
}

.org-summary-count {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.75;
}

.org-details-body {
  padding: 0 1.2rem 1.15rem;
  border-top: 1px solid var(--border);
}

.org-details-intro {
  margin: 0 0 0.85rem;
  padding-top: 0.85rem;
  font-size: 0.94rem;
}

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

@media (max-width: 640px) {
  .org-split {
    grid-template-columns: 1fr;
  }
}

.org-split-col ol {
  margin: 0;
  padding-left: 1.35rem;
}

.org-split-col li {
  margin-bottom: 0.35rem;
  font-size: 0.94rem;
}

/* Press */
.press-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.35rem;
}

.press-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.65rem;
  background: var(--white);
  box-shadow: 0 8px 26px var(--shadow);
}

.press-item p {
  margin: 0 0 0.5rem;
}

.press-item p:last-of-type {
  margin-bottom: 0;
}

.press-meta {
  margin: 0 0 0.6rem !important;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  opacity: 0.85;
}

.press-item .card-title {
  margin: 0 0 0.6rem;
}

.press-readmore {
  margin-top: 0.85rem;
}

/* Latest news (home) */
.section-news .news-section-head {
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.section-news .news-section-head .section-sub {
  max-width: 36rem;
  margin-inline: auto;
}

.news-feed {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3.25rem);
  max-width: 54rem;
  margin-inline: auto;
}

.news-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 42px var(--shadow);
}

.news-card__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  background: var(--border);
}

.news-card__figure {
  margin: 0;
  overflow: hidden;
}

.news-card__figure img {
  width: 100%;
  height: clamp(180px, 32vw, 300px);
  object-fit: cover;
  display: block;
}

@media (max-width: 540px) {
  .news-card__gallery {
    grid-template-columns: 1fr;
  }

  .news-card__figure img {
    height: min(260px, 58vw);
  }
}

.news-card__body {
  padding: clamp(1.35rem, 4vw, 2rem);
}

.news-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.8vw, 1.5rem);
  font-weight: 700;
  line-height: 1.28;
  margin: 0 0 1rem;
  color: var(--brand);
  letter-spacing: -0.02em;
}

.news-card__prose {
  font-size: 0.98rem;
  line-height: 1.68;
  color: var(--text-body);
}

.news-card__prose > p {
  margin: 0 0 0.9rem;
}

.news-card__prose > p:last-child {
  margin-bottom: 0;
}

.news-card__prose > ul:last-child {
  margin-bottom: 0;
}

.news-card__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  margin: 1.35rem 0 0.55rem !important;
}

.news-card__prose > .news-card__label:first-child {
  margin-top: 0 !important;
}

.news-card__list {
  margin: 0 0 1rem;
  padding-left: 1.15rem;
}

.news-card__list li {
  margin-bottom: 0.4rem;
}

.news-card__list li:last-child {
  margin-bottom: 0;
}

.news-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.65rem;
  font-size: 0.95rem;
  margin-bottom: 0.75rem !important;
}

.news-card__meta-key {
  flex-shrink: 0;
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
}

/* Footer */
.site-footer {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 2.5rem 0 2rem;
}

.footer-social-bar {
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.footer-social-heading {
  margin: 0 auto 1.25rem;
}

.social-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 1.5rem clamp(1.25rem, 4vw, 2.25rem);
}

.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  gap: 0.55rem;
  min-width: 4.5rem;
  color: var(--brand);
  font-weight: 600;
  font-size: 0.82rem;
  text-decoration: none;
  line-height: 1.25;
}

.social-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.social-link:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 6px;
  border-radius: 8px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(49, 121, 76, 0.06);
  flex-shrink: 0;
}

.social-icon svg {
  display: block;
  width: 26px;
  height: 26px;
}

.social-label {
  display: block;
  max-width: 7rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2rem;
}

@media (max-width: 720px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand-logo {
  display: block;
  height: auto;
  width: auto;
  max-height: 52px;
  max-width: min(200px, 100%);
  object-fit: contain;
  margin: 0 0 0.5rem;
}

.footer-tag {
  margin: 0;
  font-size: 0.9rem;
  max-width: 280px;
}

.footer-heading {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
  color: var(--brand);
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links a {
  color: var(--brand);
  font-weight: 600;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-links li + li {
  margin-top: 0.4rem;
}

.footer-domain {
  margin: 0 0 0.5rem;
  font-weight: 700;
  font-size: 1rem;
}

.footer-copy {
  margin: 0;
  font-size: 0.88rem;
}
