:root {
  --paper: #f7f4eb;
  --ink: #0c1d38;
  --ink-soft: #24334c;
  --ink-muted: #596475;
  --accent: #bc7d39;
  --rule: rgba(12, 29, 56, 0.16);
  --surface: #fffdf8;
  --shadow: 0 22px 70px rgba(12, 29, 56, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter Tight", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

p,
ul {
  margin: 0;
}

ul {
  padding-left: 1rem;
}

li + li {
  margin-top: 0.55rem;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Fraunces, Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.05;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 50;
  padding: 0.65rem 0.85rem;
  background: var(--ink);
  color: var(--paper);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto auto;
  align-items: center;
  gap: 1.4rem;
  min-height: 72px;
  padding: 0.9rem clamp(1rem, 4vw, 3.25rem);
  color: var(--paper);
}

.site-header::after {
  content: "";
  position: absolute;
  inset: auto clamp(1rem, 4vw, 3.25rem) 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}

.brand img {
  width: 36px;
  height: 36px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: Fraunces, Georgia, serif;
  font-size: 1.1rem;
  font-weight: 500;
}

.brand small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-header nav {
  display: flex;
  gap: 1.3rem;
  font-size: 0.9rem;
}

.site-header nav a,
.header-cta {
  text-decoration: none;
}

.site-header nav a:hover {
  color: #f0cf94;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  min-height: 2.45rem;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 2px;
  padding: 0 0.85rem;
  font-size: 0.85rem;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 18, 34, 0.96), rgba(3, 18, 34, 0.84) 46%, rgba(3, 18, 34, 0.42)),
    linear-gradient(0deg, rgba(3, 18, 34, 0.93), transparent 52%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 8rem 0 clamp(5rem, 13vw, 9rem);
  color: var(--paper);
}

.eyebrow {
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 980px;
  margin-top: 1rem;
  font-size: clamp(3.3rem, 8vw, 8.2rem);
  letter-spacing: 0;
}

.hero-copy {
  max-width: 690px;
  margin-top: 1.4rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.14rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.button {
  min-height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  padding: 0 1rem;
  font-weight: 800;
  text-decoration: none;
}

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

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: var(--paper);
}

.hero-card {
  position: absolute;
  right: clamp(1rem, 5vw, 4.25rem);
  bottom: clamp(1rem, 5vw, 4.25rem);
  z-index: 2;
  width: min(390px, calc(100% - 2rem));
  padding: 1rem 0 0;
  border-top: 2px solid var(--accent);
  color: var(--paper);
}

.hero-card span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-card p {
  margin-top: 0.7rem;
  color: rgba(255, 255, 255, 0.82);
}

.band {
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 4vw, 3.25rem);
  border-bottom: 1px solid var(--rule);
}

.band > * {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(170px, 0.25fr) minmax(0, 0.75fr);
  gap: clamp(1rem, 4vw, 4rem);
  margin-bottom: 2.2rem;
}

.section-head h2,
.closing h2 {
  max-width: 900px;
  font-size: clamp(2rem, 4.8vw, 4.6rem);
}

.plain-grid,
.method-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.plain-grid article,
.method-steps article {
  min-height: 240px;
  padding: 1.25rem;
  border-right: 1px solid var(--rule);
}

.plain-grid article:last-child,
.method-steps article:last-child {
  border-right: 0;
}

.plain-grid h3,
.method-steps h3 {
  margin-bottom: 0.85rem;
  font-size: 1.55rem;
}

.plain-grid p,
.method-steps p,
.outcome-copy,
.fit-list p,
.facilitators p {
  color: var(--ink-soft);
}

.outcome-band {
  background: var(--surface);
}

.outcome-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 0.7fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.artifact-panel {
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 1.4rem;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.artifact-label {
  margin-bottom: 1.2rem;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.artifact-panel li {
  color: var(--ink-soft);
}

.artifact-panel strong {
  color: var(--ink);
}

.outcome-copy {
  display: grid;
  gap: 1.2rem;
  font-size: 1.08rem;
}

.method-band {
  background: #ece8df;
}

.method-steps span {
  display: block;
  margin-bottom: 1.5rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
}

.method-note {
  display: flex;
  gap: 0.65rem;
  margin-top: 1.6rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--rule);
  color: var(--ink-soft);
}

.method-note strong {
  color: var(--ink);
}

.fit-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--rule);
}

.fit-list div {
  display: grid;
  grid-template-columns: minmax(180px, 0.28fr) minmax(0, 0.72fr);
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--rule);
}

.fit-list strong {
  font-family: Fraunces, Georgia, serif;
  font-size: 1.25rem;
  font-weight: 500;
}

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

.facilitators article {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding-top: 1rem;
  border-top: 1px solid var(--rule);
}

.facilitators img {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  object-fit: cover;
}

.facilitators span {
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.facilitators h3 {
  margin: 0.25rem 0 0.55rem;
  font-size: 1.45rem;
}

.closing {
  padding: clamp(4.5rem, 10vw, 9rem) clamp(1rem, 4vw, 3.25rem);
  background: var(--ink);
  color: var(--paper);
}

.closing > * {
  width: min(900px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.closing h2 {
  margin-top: 1rem;
}

.closing .button.secondary {
  background: transparent;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem clamp(1rem, 4vw, 3.25rem);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.62);
  border-top: 1px solid rgba(255, 255, 255, 0.17);
  font-size: 0.86rem;
}

.site-footer span {
  color: var(--paper);
  font-family: Fraunces, Georgia, serif;
}

@media (max-width: 980px) {
  .site-header {
    position: absolute;
    grid-template-columns: 1fr auto;
  }

  .site-header nav {
    grid-column: 1 / -1;
    overflow-x: auto;
    padding-bottom: 0.2rem;
  }

  .header-cta {
    display: none;
  }

  .hero-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(1180px, calc(100% - 2rem));
    margin: -4rem auto 2rem;
  }

  .section-head,
  .outcome-layout,
  .facilitators {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .brand small {
    display: none;
  }

  .site-header nav {
    gap: 0.9rem;
    font-size: 0.84rem;
  }

  .hero h1 {
    font-size: 3.1rem;
  }

  .plain-grid,
  .method-steps {
    grid-template-columns: 1fr;
  }

  .plain-grid article,
  .method-steps article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--rule);
  }

  .plain-grid article:last-child,
  .method-steps article:last-child {
    border-bottom: 0;
  }

  .fit-list div,
  .facilitators article {
    grid-template-columns: 1fr;
  }

  .method-note,
  .site-footer {
    display: block;
  }

  .method-note span,
  .site-footer p {
    display: block;
    margin-top: 0.45rem;
  }
}
