:root {
  --evergreen: #143a24;
  --evergreen-dark: #0b2218;
  --evergreen-soft: #e6eee8;
  --carbon: #111111;
  --ink: #1b1c1d;
  --text: #43484c;
  --steel: #6b7178;
  --steel-light: #d8dee2;
  --copper: #b87333;
  --copper-dark: #8d4c1b;
  --sky: #2e6fa7;
  --cream: #f7f5ef;
  --white: #ffffff;
  --line: rgba(17, 17, 17, 0.12);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--text);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.site-header .wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  min-width: 218px;
}

.brand-link img {
  width: clamp(190px, 22vw, 310px);
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 28px);
}

.nav a {
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav a:hover {
  color: var(--copper-dark);
}

.mobile-label {
  display: none;
  color: var(--steel);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  color: var(--white);
  background: var(--evergreen);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.btn:hover {
  background: var(--copper-dark);
  transform: translateY(-1px);
}

.btn.secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.58);
  color: var(--white);
}

.btn.secondary:hover {
  background: var(--white);
  color: var(--evergreen-dark);
}

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

.btn.light:hover {
  background: var(--copper-dark);
  color: var(--white);
}

.btn.outline {
  background: transparent;
  border-color: var(--evergreen);
  color: var(--evergreen);
}

.btn.outline:hover {
  background: var(--evergreen);
  color: var(--white);
}

/* header Partner CTA — high visibility, AA-compliant */
.nav .btn {
  background: var(--copper-dark);
  border-color: var(--copper-dark);
  color: var(--white);
  padding: 12px 28px;
  box-shadow: 0 8px 20px -8px rgba(141, 76, 27, 0.8);
}

.nav .btn:hover {
  background: var(--evergreen);
  border-color: var(--evergreen);
  color: var(--white);
}

.eyebrow {
  color: var(--copper-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  color: var(--white);
  background: var(--carbon);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(15, 16, 16, 0.86), rgba(15, 16, 16, 0.55) 50%, rgba(15, 16, 16, 0.18)), url("../img/rockies-valley.jpg");
  background-size: cover;
  background-position: center;
}

.hero .wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 370px);
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
  padding: clamp(72px, 9vw, 116px) 0 clamp(50px, 7vw, 76px);
}

.hero-copy {
  padding-bottom: clamp(10px, 3vw, 34px);
}

.hero h1 {
  max-width: 780px;
  margin: 22px 0 22px;
  color: var(--white);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.5px;
}

.hero-card {
  background: rgba(11, 27, 20, 0.62);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-top: 4px solid var(--copper);
  border-radius: 12px;
  padding: 30px 28px;
}

.hero-card .hc-kicker {
  color: #f1c27b;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.hero-card p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15.5px;
  margin: 0 0 20px;
}

.hero-card .btn {
  width: 100%;
}

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

.hero h1 span {
  color: #f1c27b;
}

.hero p {
  max-width: 680px;
  margin: 0 0 34px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 2vw, 21px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-panel {
  align-self: end;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
}

.hero-panel img {
  width: 100%;
  max-width: 300px;
  margin: 0 auto 18px;
}

.hero-panel p {
  margin: 0;
  color: var(--text);
  font-size: 14px;
}

.signal-strip {
  position: relative;
  z-index: 2;
  margin-top: -36px;
}

.signal-strip .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: 0 18px 48px rgba(17, 17, 17, 0.12);
}

.signal {
  min-height: 118px;
  padding: 24px;
  background: var(--white);
}

.signal strong {
  display: block;
  color: var(--evergreen);
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.signal span {
  display: block;
  margin-top: 9px;
  color: var(--steel);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

section {
  padding: clamp(70px, 9vw, 118px) 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 42px;
}

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

h2 {
  margin: 14px 0 0;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.5px;
}

h3 {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.18;
}

.lead {
  color: var(--text);
  font-size: 17px;
}

.dark {
  background: #EDF0F2;
  color: var(--text);
}

.dark h2,
.dark h3 {
  color: var(--ink);
}

.dark .lead {
  color: var(--text);
}

.dark .btn.light {
  background: var(--evergreen);
  color: var(--white);
}

.dark .btn.light:hover {
  background: var(--copper-dark);
  color: var(--white);
}

.soft {
  background: #f0ece3;
}

.white {
  background: var(--white);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

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

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

.card {
  min-height: 100%;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.card.dark-card {
  border-color: var(--line);
  background: var(--white);
}

.card .kicker {
  color: var(--copper-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.card p {
  margin: 12px 0 0;
}

.icon-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.icon-card img {
  width: 74px;
  flex: 0 0 74px;
}

.line-art {
  width: min(850px, 100%);
  margin: 34px auto 0;
}

/* hearth / home graphic */
.hearth {
  width: min(340px, 78%);
  margin: 10px auto 0;
  display: block;
}

.hearth-tag {
  margin: 14px auto 0;
  text-align: center;
  color: var(--copper-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* full-width energy-line divider */
.section-divider {
  width: 100%;
  padding: clamp(14px, 2.4vw, 30px) 0;
  line-height: 0;
  background: var(--cream);
}

.section-divider.on-white {
  background: var(--white);
}

.section-divider img {
  width: 100%;
  height: auto;
  display: block;
}

/* strengthened coalition headline */
.coalition h2 {
  font-size: clamp(36px, 5.6vw, 68px);
  letter-spacing: -0.01em;
}

.coalition h2 .hl {
  color: var(--copper-dark);
}

.coalition .lead {
  max-width: 640px;
  margin-inline: auto;
}

.issue-list {
  display: grid;
  gap: 16px;
}

.issue-item {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 22px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.issue-item:first-child {
  border-top: 0;
}

.issue-item .num {
  color: var(--copper-dark);
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.audience {
  min-height: 150px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.audience:nth-child(4n) {
  border-right: 0;
}

.audience:nth-last-child(-n + 4) {
  border-bottom: 0;
}

.audience strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
}

.audience p {
  margin: 9px 0 0;
  font-size: 14px;
}

.quote-band {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--evergreen);
}

.quote-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(20, 58, 36, 0.94), rgba(20, 58, 36, 0.72)), url("../img/rockies-valley.jpg");
  background-size: cover;
  background-position: center;
}

.quote-band .wrap {
  position: relative;
  z-index: 1;
}

.quote {
  max-width: 900px;
  font-size: clamp(26px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.1;
}

.quote cite {
  display: block;
  margin-top: 22px;
  color: #f1c27b;
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.split-cta {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--line);
}

.split-cta > div {
  padding: clamp(28px, 5vw, 54px);
  background: var(--white);
}

.footer {
  padding: 56px 0;
  background: var(--cream);
  color: var(--gray);
  border-top: 1px solid var(--line);
}

.footer .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.footer p {
  max-width: 640px;
  margin: 0 auto;
  font-size: 13px;
  color: var(--gray);
}

/* large text wordmark lockup */
.footer-wordmark {
  margin-bottom: 22px;
}

.footer-wordmark .fw1 {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  line-height: 0.96;
  font-size: clamp(32px, 5.4vw, 58px);
  color: var(--evergreen);
}

.footer-wordmark .fw2 {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: clamp(15px, 2.3vw, 25px);
  color: var(--steel);
  margin-top: 7px;
}

.footer-wordmark .fw3 {
  margin-top: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: clamp(11px, 1.5vw, 15px);
}

.footer-wordmark .fw3 span {
  color: var(--ink);
}

.footer-wordmark .fw3 .sep {
  color: var(--steel);
  margin: 0 10px;
}

.footer-wordmark .fw3 .c-copper {
  color: var(--copper-dark);
}

.footer-wordmark .fw3 .c-sky {
  color: var(--sky);
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.footer nav a {
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.footer nav a:hover {
  color: var(--copper-dark);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(78px, 10vw, 132px) 0 clamp(54px, 7vw, 90px);
  color: var(--white);
  background: var(--carbon);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(15, 16, 16, 0.88), rgba(15, 16, 16, 0.6)), url("../img/rockies-peak.jpg");
  background-size: cover;
  background-position: center;
}

.page-hero .wrap {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 850px;
  margin: 16px 0 18px;
  color: var(--white);
  font-size: clamp(42px, 7vw, 78px);
  font-weight: 800;
  line-height: 1;
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 2vw, 21px);
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.timeline-item time {
  color: var(--copper-dark);
  font-weight: 800;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.66em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--copper);
}

.resource-list {
  display: grid;
  gap: 14px;
}

.resource {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.resource p {
  margin: 6px 0 0;
}

.form-box {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

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

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--steel-light);
  border-radius: 6px;
  padding: 13px 12px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

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

.note {
  color: var(--steel);
  font-size: 13px;
}

.reveal,
.reveal.in {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .site-header .wrap {
    min-height: 70px;
  }

  .nav a:not(.btn) {
    display: none;
  }

  .mobile-label {
    display: block;
  }

  .hero .wrap,
  .grid-2,
  .split-cta {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-panel {
    max-width: 420px;
  }

  .signal-strip {
    margin-top: 0;
  }

  .signal-strip .wrap,
  .grid-4,
  .audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .audience:nth-child(4n) {
    border-right: 1px solid var(--line);
  }

  .audience:nth-child(2n) {
    border-right: 0;
  }

  .audience:nth-last-child(-n + 4) {
    border-bottom: 1px solid var(--line);
  }

  .audience:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .footer nav {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .wrap {
    width: min(100% - 28px, var(--max));
  }

  .brand-link {
    min-width: 0;
  }

  .brand-link img {
    width: 205px;
  }

  .nav .btn {
    display: none;
  }

  .hero .wrap {
    padding-top: 54px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(38px, 13vw, 58px);
  }

  .signal-strip .wrap,
  .grid-4,
  .audience-grid,
  .timeline-item,
  .resource,
  .form-grid,
  .issue-item {
    grid-template-columns: 1fr;
  }

  .signal {
    min-height: auto;
  }

  .audience,
  .audience:nth-child(2n),
  .audience:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .audience:last-child {
    border-bottom: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn:hover {
    transform: none;
  }
}

/* ── President's message ─────────────────────────────── */
.pm { text-align: center; max-width: 880px; margin: 0 auto; }
.pm-head { display: inline-flex; align-items: center; margin-bottom: 34px; }
.pm-banner { background: var(--copper); color: #fff; border-radius: 999px 0 0 999px; padding: 13px 24px 13px 30px; font-size: 15px; font-weight: 800; letter-spacing: 0.03em; text-transform: uppercase; white-space: nowrap; }
.pm-photo { width: 94px; height: 94px; border-radius: 50%; margin-left: -16px; border: 3px solid var(--white); box-shadow: 0 8px 20px rgba(17,17,17,0.18); background: var(--evergreen); color: #f1c27b; display: grid; place-items: center; font-weight: 800; font-size: 26px; overflow: hidden; position: relative; z-index: 2; }
.pm-photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1); }
.pm-quote { font-size: clamp(21px, 2.8vw, 33px); font-weight: 700; line-height: 1.34; letter-spacing: -0.5px; color: var(--ink); margin: 0; }
.pm-attr { margin-top: 26px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; font-size: 13px; color: var(--copper-dark); }
.pm-attr span { display: block; color: var(--steel); font-weight: 700; letter-spacing: 0.06em; margin-top: 4px; }
.pm-cta { margin-top: 30px; }
@media (max-width: 560px) {
  .pm-head { flex-direction: column-reverse; }
  .pm-photo { margin: 0 0 -18px; z-index: 2; }
  .pm-banner { white-space: normal; text-align: center; border-radius: 12px; }
}

/* ── Leadership grid (leadership.html) ───────────────── */
.team-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; }
.member { display: flex; gap: 22px; background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: 28px; }
.member .avatar { flex: 0 0 84px; width: 84px; height: 84px; border-radius: 50%; background: var(--evergreen); color: #f1c27b; display: grid; place-items: center; font-weight: 800; font-size: 26px; overflow: hidden; }
.member .avatar img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1); }
.member h3 { font-size: 21px; margin: 0; color: var(--ink); }
.member .role { color: var(--copper-dark); font-weight: 800; font-size: 12.5px; letter-spacing: 0.04em; text-transform: uppercase; margin: 5px 0 10px; }
.member p { margin: 0; font-size: 14.5px; color: var(--text); line-height: 1.6; }
@media (max-width: 760px) { .team-grid { grid-template-columns: 1fr; } }

/* ── Email / SMS opt-in (Netlify Forms) ──────────────── */
.join-band { background: var(--evergreen-dark); color: var(--white); }
.join-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.join-grid .eyebrow { color: #f1c27b; }
.join-grid h2 { color: var(--white); }
.join-grid p.lead { color: rgba(255,255,255,0.82); margin-top: 14px; }
.join-form { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.16); border-radius: 12px; padding: 28px; }
.join-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.join-form input[type="text"], .join-form input[type="email"], .join-form input[type="tel"] { width: 100%; padding: 13px 14px; border-radius: 6px; border: 1px solid rgba(255,255,255,0.28); background: rgba(255,255,255,0.95); color: var(--ink); font-family: inherit; font-size: 15px; margin-bottom: 12px; }
.join-form .consent { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; font-weight: 400; letter-spacing: 0; text-transform: none; color: rgba(255,255,255,0.9); line-height: 1.45; margin: 8px 0 14px; }
.join-form .consent input[type="checkbox"] { width: 18px; height: 18px; flex: 0 0 18px; margin: 2px 0 0; accent-color: var(--copper); }
.join-form .consent a { color: #f1c27b; }
.join-form button { width: 100%; border: none; cursor: pointer; margin-top: 10px; }
.join-form .fineprint { font-size: 11.5px; color: rgba(255,255,255,0.55); margin-top: 12px; text-align: center; }
.hidden { position: absolute; left: -9999px; }
@media (max-width: 760px) { .join-grid { grid-template-columns: 1fr; } .join-form .row { grid-template-columns: 1fr; } }

.join-form .smsdisclosure { font-size: 11.5px; color: rgba(255,255,255,0.62); line-height: 1.5; margin: 0 0 10px; text-align: left; }

/* ── Kit's message — quote left, photo right ─────────── */
.pm2 { display: grid; grid-template-columns: 1fr minmax(240px, 340px); gap: clamp(30px, 5vw, 56px); align-items: center; }
.pm2-copy .eyebrow { display: block; margin-bottom: 16px; }
.pm2-quote { margin: 0; font-size: clamp(20px, 2.5vw, 29px); font-weight: 700; line-height: 1.36; letter-spacing: -0.5px; color: var(--ink); }
.pm2-attr { margin: 22px 0 26px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; font-size: 13px; color: var(--copper-dark); }
.pm2-attr span { display: block; color: var(--steel); font-weight: 700; letter-spacing: 0.06em; margin-top: 4px; }
.pm2-photo img { width: 100%; max-width: 340px; aspect-ratio: 1 / 1; height: auto; object-fit: cover; object-position: center top; border-radius: 16px; box-shadow: 0 14px 34px -18px rgba(17,17,17,0.45); }
@media (max-width: 820px) {
  .pm2 { grid-template-columns: 1fr; }
  .pm2-photo { order: -1; }
  .pm2-photo img { max-width: 260px; }
}

/* ── Mobile navigation (hamburger) ───────────────────── */
.nav-toggle { display: none; }
.mobile-label { display: none !important; }

@media (max-width: 980px) {
  .site-header .wrap { flex-wrap: wrap; min-height: 68px; }

  .nav-toggle {
    display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 48px; height: 48px; padding: 0 11px; margin-left: auto;
    background: transparent; border: 1px solid var(--line); border-radius: 8px; cursor: pointer;
  }
  .nav-toggle span { display: block; height: 2px; width: 100%; background: var(--ink); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* menu panel: hidden until opened */
  .nav { display: none; width: 100%; flex-direction: column; align-items: stretch; gap: 0; padding: 6px 0 18px; }
  .nav.open { display: flex; }

  /* restore the links + CTA inside the menu */
  .nav a:not(.btn) {
    display: block; padding: 15px 2px; font-size: 14px;
    border-top: 1px solid var(--line);
  }
  .nav .btn { display: inline-flex; width: 100%; margin-top: 16px; }
}

@media (max-width: 640px) {
  .nav .btn { display: inline-flex; }   /* keep the CTA available inside the menu */
}

/* ── Mobile hardening ────────────────────────────────── */
body { overflow-wrap: break-word; }               /* long words/URLs can't push the layout wide */
img, video, table { max-width: 100%; }
.matrix-wrap { -webkit-overflow-scrolling: touch; }

@media (max-width: 640px) {
  section { padding: clamp(52px, 11vw, 76px) 0; } /* tighter vertical rhythm on phones */
  .hero-actions .btn { width: 100%; }             /* full-width, thumb-friendly CTAs */
  .signal strong { font-size: 26px; }
}
