/* ---------------------------------------
   Watershed Resilience — base tokens
--------------------------------------- */
:root {
  --navy: #162e52;
  --navy-dark: #101f39;
  --navy-mid: #1e3a63;
  --amber: #d97706;
  --amber-light: #f2a53d;
  --ink: #1b1f26;
  --paper: #faf8f4;
  --paper-alt: #f0ede5;
  --line: #dcd6c9;
  --line-dark: #2c4468;
  --muted: #5a6472;

  --font-head:
    "GT Walsheim", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body:
    "GT Walsheim", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono:
    "GT Walsheim Bold", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;

  --maxw: 1180px;
}

@font-face {
  font-family: "GT Walsheim";
  src: url("../assets/fonts/GT-Walsheim-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "GT Walsheim";
  src: url("../assets/fonts/GT-Walsheim-Regular-Oblique.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "GT Walsheim";
  src: url("../assets/fonts/GT-Walsheim-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "GT Walsheim Bold";
  src: url("../assets/fonts/GT-Walsheim-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "GT Walsheim";
  src: url("../assets/fonts/GT-Walsheim-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "GT Walsheim Condensed";
  src: url("../assets/fonts/GT-Walsheim-Condensed-Regular.woff2")
    format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "GT Walsheim Condensed";
  src: url("../assets/fonts/GT-Walsheim-Condensed-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "GT Walsheim Condensed";
  src: url("../assets/fonts/GT-Walsheim-Condensed-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.2;
  margin: 0 0 0.6em;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
  font-weight: 900;
}
h2 {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}
h3 {
  font-size: 1.25rem;
}
h4 {
  font-size: 1.05rem;
}

p {
  margin: 0 0 1em;
}

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}

.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--amber);
  color: #fff;
  padding: 10px 16px;
  z-index: 200;
}
.skip-link:focus {
  left: 0;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 500;
  margin-bottom: 14px;
  position: relative;
  padding-left: 20px;
}
.eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 2px;
  background: var(--amber);
}
.eyebrow-light {
  color: var(--amber-light);
}
.eyebrow-center {
  padding-left: 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.eyebrow-center::before {
  position: static;
  transform: none;
}

.lede {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 68ch;
}
.lede.center {
  margin-left: auto;
  margin-right: auto;
}
.lede-light {
  color: #c6d1e0;
}

/* ---------------------------------------
   Header
--------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid var(--line-dark);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.wordmark {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  letter-spacing: 0.06em;
  font-weight: 400;
  color: #fff;
}
.wordmark-accent {
  color: var(--amber-light);
}

.wordmark-mark {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 auto;
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}
.site-nav a {
  color: #dbe3ee;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.15s ease;
}
.site-nav a:hover {
  color: #fff;
}

.nav-cta {
  background: var(--amber);
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 3px;
  font-weight: 700;
}
.nav-cta:hover {
  background: var(--amber-light);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 1px;
}

/* ---------------------------------------
   Buttons
--------------------------------------- */
.btn {
  display: inline-block;
  padding: 14px 26px;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 3px;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    background 0.15s ease,
    color 0.15s ease,
    border-color 0.15s ease;
}
.btn-primary {
  background: var(--amber);
  color: #fff;
}
.btn-primary:hover {
  background: #c26805;
}
.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}
.btn-secondary:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.16);
}
.btn-block {
  width: 100%;
  text-align: center;
}

/* ---------------------------------------
   Hero
--------------------------------------- */
.hero {
  position: relative;
  color: #fff;
  padding: 150px 0 120px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  min-height: 640px;
  display: flex;
  align-items: center;
}

.hero-inner {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
}
.hero h1 {
  color: #fff;
}

.hero-sub {
  font-size: 1.15rem;
  color: #dbe3ee;
  max-width: 62ch;
  margin: 0 auto 2.2em;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Angle dividers */
.angle-divider {
  width: 100%;
  line-height: 0;
}
.angle-divider svg {
  width: 100%;
  height: 44px;
  display: block;
}
.angle-divider-amber {
  background: var(--navy-dark);
}
.angle-divider-amber polygon {
  fill: var(--amber);
}
.angle-divider-navy {
  background: var(--paper-alt);
}
.angle-divider-navy polygon {
  fill: var(--navy-dark);
}

/* ---------------------------------------
   Sections
--------------------------------------- */
.section {
  padding: 96px 0;
}
.section-alt {
  background: var(--paper-alt);
}

/* Mission band */
.mission-band {
  background: var(--navy-dark);
  color: #dbe3ee;
  padding-top: 76px;
}
.mission-band .eyebrow-center {
  margin-bottom: 8px;
}

.tagline {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: #fff;
  text-align: center;
  margin: 0 0 64px;
  font-weight: 700;
}

.link {
  color: var(--amber-light);
}

.link:hover {
  color: var(--amber);
}

.mission-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}

.mission-diagram {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.mission-diagram svg {
  width: 100%;
  max-width: 260px;
  height: auto;
}
.mission-diagram .ring {
  stroke: rgba(217, 119, 6, 0.4);
  stroke-width: 1.5;
  stroke-dasharray: 4 6;
}
.mission-diagram .node {
  fill: var(--navy-mid);
  stroke: var(--amber);
  stroke-width: 2;
}
.mission-diagram .node-label {
  fill: #fff;
  font-family: var(--font-mono);
  font-size: 14px;
  text-anchor: middle;
  font-weight: 700;
}
.diagram-key {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 300px;
}
.diagram-key li {
  font-size: 0.9rem;
  color: #b7c3d4;
  display: flex;
  gap: 10px;
}
.diagram-key span {
  font-family: var(--font-mono);
  color: var(--amber-light);
  font-weight: 700;
  flex: 0 0 auto;
}

.mission-band h2 {
  color: #fff;
}

/* .scope-block {
  margin-top: 80px;
  padding-top: 72px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
} */

.mission-band .framework-footnote {
  color: #b7c3d4;
  margin-left: auto;
  margin-right: auto;
}

/* Callout */
.callout-strip {
  background: var(--paper);
  padding: 56px 0 0;
}
.callout {
  border-left: 3px solid var(--amber);
  background: #fff;
  box-shadow: 0 1px 3px rgba(22, 46, 82, 0.08);
  padding: 26px 30px;
  margin: 0 auto;
  max-width: 74ch;
}
.callout p {
  margin: 0;
  font-size: 1.05rem;
}
.callout strong {
  color: var(--navy);
}

.dimension-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.dimension-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 30px 26px;
  box-shadow: 0 1px 2px rgba(22, 46, 82, 0.05);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}
.dimension-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(22, 46, 82, 0.1);
}
.dimension-num {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--amber);
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}
.dimension-card h4 {
  margin-bottom: 10px;
}
.dimension-card p {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
}

.framework-footnote {
  margin-top: 32px;
  font-size: 1rem;
  color: var(--muted);
  max-width: 68ch;
  font-style: italic;
}

/* Services */
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  /* padding: 34px 32px; */
  padding: 34px 32px 12px 32px;
  text-align: center;
  box-shadow: 0 1px 2px rgba(22, 46, 82, 0.05);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(22, 46, 82, 0.1);
}
.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  color: #fff;
  border-radius: 50%;
  margin-bottom: 20px;
}
.service-icon svg {
  width: 26px;
  height: 26px;
}
.service-icon-navy {
  background: var(--navy);
}
.service-icon-amber {
  background: var(--amber);
}
.service-card h3 {
  margin-bottom: 12px;
}
.service-value {
  color: var(--navy);
  font-weight: 500;
  font-size: 1rem;
  margin: 0 auto 20px;
  max-width: 42ch;
}
.service-card ul {
  text-align: left;
  display: inline-block;
}
.service-card ul li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.95rem;
}
.service-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--amber);
}
.service-card ul li:last-child {
  margin-bottom: 0;
}

/* Why Watershed / Proof */
.proof-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  margin-top: 48px;
}
.proof-card {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 34px 30px;
  text-align: center;
  box-shadow: 0 1px 2px rgba(22, 46, 82, 0.05);
  flex: 1 1 320px;
  max-width: 360px;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    border-color 0.15s ease;
}
.proof-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(22, 46, 82, 0.1);
  border-color: var(--amber);
}
.proof-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  font-size: 1.4rem;
  border-radius: 50%;
  background: var(--paper-alt);
  border: 2px solid var(--amber);
  margin-bottom: 20px;
  overflow: hidden;
}
.proof-icon-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.proof-card h3 {
  margin-bottom: 10px;
}
.proof-card:hover h3 {
  color: var(--amber);
}
.proof-card p {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
}

.why-closing {
  max-width: 74ch;
  margin: 56px auto 0;
  text-align: center;
}
.why-para {
  font-size: 1.02rem;
  color: var(--muted);
}
.why-closing .btn {
  margin-top: 8px;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info .btn {
  margin-top: 8px;
}

.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  padding: 34px;
}
.form-row {
  margin-bottom: 18px;
}
.form-row label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-row input,
.form-row textarea {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--paper);
  color: var(--ink);
}
.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--amber);
}
.form-note {
  margin: 14px 0 0;
  font-size: 0.9rem;
  color: var(--muted);
  min-height: 1.2em;
}

.form-success {
  background: #fff;
  border: 1px solid var(--line);
  padding: 56px 34px;
  text-align: center;
}
.form-success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--amber);
  color: #fff;
  margin-bottom: 20px;
}
.form-success-icon svg {
  width: 26px;
  height: 26px;
}
.form-success h3 {
  margin-bottom: 10px;
}
.form-success p {
  color: var(--muted);
  margin: 0;
}

/* ---------------------------------------
   Footer
--------------------------------------- */
.site-footer {
  background: var(--navy-dark);
  color: #b7c3d4;
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.9fr 1.1fr;
  gap: 32px;
  padding-bottom: 44px;
}
.footer-col-title {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber-light);
  margin: 0 0 16px;
}
.wordmark-footer {
  margin-bottom: 14px;
}
.footer-tag a {
  color: var(--amber-light);
  text-decoration: underline;
}
.footer-tag a:hover {
  color: #fff;
}
.footer-tag {
  font-size: 0.9rem;
  max-width: 34ch;
  margin: 0;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a {
  font-size: 0.9rem;
  color: #b7c3d4;
}
.footer-nav a:hover {
  color: #fff;
}
.footer-col a:hover {
  color: #fff;
}
.footer-bottom {
  border-top: 1px solid var(--line-dark);
  padding: 20px 0;
  font-size: 0.82rem;
  color: #8494a9;
}
.footer-bottom p {
  margin: 0;
}

/* ---------------------------------------
   Responsive
--------------------------------------- */
@media (max-width: 900px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
  .dimension-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .proof-card {
    flex-basis: 100%;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .mission-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .site-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 32px 28px;
    gap: 18px;
    border-bottom: 1px solid var(--line-dark);
    display: none;
  }
  .site-nav.open {
    display: flex;
  }
  .nav-cta {
    margin-top: 6px;
  }
  .nav-toggle {
    display: flex;
  }
  .dimension-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 64px 0;
  }
  .hero {
    padding: 110px 0 80px;
    min-height: 560px;
  }
  .wrap {
    padding: 0 22px;
  }
}
