:root {
  --ink: #1c1816;
  --paper: #f6efe4;
  --cream: #fffdf9;
  --acid: #e07840;
  --moss: #c43b5a;
  --berry-dark: #a02e49;
  --berry-light: #f8e8ec;
  --lavender: #b7a7d9;
  --lavender-light: #eae5f5;
  --muted: #7a6a62;
  --line: #ded0c4;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin: 0;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

.hero-shell {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}
.hero-shell::before {
  content: "";
  opacity: .055;
  background-image: linear-gradient(var(--ink) 1px, transparent 1px), linear-gradient(90deg, var(--ink) 1px, transparent 1px);
  pointer-events: none;
  background-size: 48px 48px;
  position: absolute;
  inset: 0;
}
.nav-wrap {
  z-index: 2;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1240px;
  min-height: 88px;
  margin: auto;
  padding: 0 28px;
  position: relative;
}
.brand {
  letter-spacing: .09em;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 800;
  display: flex;
}
.brand-mark {
  background: var(--ink);
  width: 34px;
  height: 34px;
  color: var(--acid);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 16px;
}
.nav-cta {
  border-bottom: 1px solid var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 3px;
  font-size: 14px;
  font-weight: 700;
}
.hero-grid {
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(360px, .78fr);
  align-items: center;
  gap: clamp(42px, 7vw, 92px);
  max-width: 1240px;
  margin: auto;
  padding: 78px 28px 92px;
  position: relative;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .14em;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  font-size: 12px;
  font-weight: 800;
  display: flex;
}
.eyebrow span {
  background: var(--ink);
  width: 28px;
  height: 3px;
}
.hero-copy h1,
.section-intro h2,
.framework-copy h2,
.host-section h2,
.final-cta h2,
.registration-card h2 {
  font-family: Manrope, Inter, ui-sans-serif, system-ui, sans-serif;
}
.hero-copy h1 {
  letter-spacing: -.075em;
  margin: 0;
  font-size: clamp(64px, 8vw, 116px);
  font-weight: 780;
  line-height: .88;
}
.hero-copy h1 em {
  color: var(--moss);
  letter-spacing: -.055em;
  font-family: Georgia, serif;
  font-weight: 400;
}
.hero-deck {
  color: #4f4540;
  max-width: 680px;
  margin: 36px 0 38px;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.48;
}
.event-strip {
  flex-wrap: wrap;
  gap: 22px;
  display: flex;
}
.event-strip > div {
  border-right: 1px solid var(--line);
  align-items: center;
  gap: 10px;
  padding-right: 22px;
  display: flex;
}
.event-strip > div:last-child { border: 0; }
.event-strip span:not(.icon) {
  flex-direction: column;
  display: flex;
}
.event-strip b { font-size: 14px; }
.event-strip small { color: var(--muted); font-size: 12px; }
.icon {
  border: 1px solid var(--line);
  color: var(--moss);
  background: #fff;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 900;
}

.registration-card {
  background: var(--cream);
  color: var(--ink);
  border: 1px solid var(--line);
  border-top: 8px solid var(--moss);
  box-shadow: 18px 18px 0 var(--acid);
  border-radius: 4px;
  padding: clamp(28px, 4vw, 46px);
}
.card-kicker {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  font-weight: 700;
}
.card-kicker span {
  color: #fff;
  background: var(--moss);
  border-radius: 2px;
  margin-right: 8px;
  padding: 5px 8px;
  display: inline-block;
}
.registration-card h2 {
  color: var(--moss);
  letter-spacing: -.04em;
  margin: 24px 0 8px;
  font-size: clamp(30px, 3vw, 42px);
}
.registration-card > p {
  color: var(--muted);
  margin: 0 0 26px;
  line-height: 1.55;
}
form, form label {
  flex-direction: column;
  display: flex;
}
form { gap: 18px; }
form label {
  color: var(--ink);
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
}
.name-row {
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  display: grid;
}
form input:not([type=checkbox]) {
  border: 2px solid var(--line);
  color: var(--ink);
  background: #fff;
  border-radius: 2px;
  outline: none;
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
}
form input:focus {
  border-color: var(--acid);
  box-shadow: 0 0 0 3px #e078403d;
}
.attendance-check {
  cursor: pointer;
  flex-direction: row;
  align-items: flex-start;
  gap: 11px;
  font-weight: 500;
  line-height: 1.4;
}
.attendance-check input {
  width: 17px;
  height: 17px;
  accent-color: var(--acid);
  margin-top: 1px;
}
form button {
  background: var(--moss);
  min-height: 54px;
  color: #fff;
  cursor: pointer;
  border: 0;
  border-radius: 2px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  font-weight: 850;
  box-shadow: 0 4px 0 var(--berry-dark);
  transition: transform .2s, background .2s;
  display: flex;
}
form button:hover {
  background: var(--berry-dark);
  transform: translateY(-2px);
}
.privacy-note {
  color: var(--muted);
  text-align: center;
  font-size: 10.5px;
  line-height: 1.45;
}
.form-success {
  color: #166534;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  margin: 0;
  padding: 12px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.promise-section, .agenda-section {
  max-width: 1240px;
  margin: auto;
  padding: 110px 28px;
}
.section-intro {
  grid-template-columns: 1.4fr .6fr;
  align-items: end;
  gap: 60px;
  margin-bottom: 58px;
  display: grid;
}
.section-intro .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -30px;
}
.section-intro h2 {
  letter-spacing: -.055em;
  margin: 0;
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.02;
}
.section-intro > p:last-child {
  color: #5c5f58;
  margin: 0;
  font-size: 17px;
  line-height: 1.65;
}
.outcomes-grid {
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(4, 1fr);
  display: grid;
}
.outcome-card {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  min-height: 280px;
  padding: 28px;
}
.outcome-number {
  color: #7a7d75;
  font-size: 12px;
  font-weight: 900;
}
.outcome-card h3 {
  letter-spacing: -.035em;
  margin: 65px 0 14px;
  font-size: 23px;
}
.outcome-card p {
  color: #5d6058;
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.framework-section {
  background: var(--moss);
  color: #fff;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(60px, 9vw, 120px);
  padding: 110px max(28px, calc(50vw - 592px));
  display: grid;
}
.framework-visual { color: var(--ink); }
.house-roof {
  clip-path: polygon(50% 0, 100% 42%, 100% 100%, 0 100%, 0 42%);
  background: var(--acid);
  color: #fff;
  letter-spacing: .07em;
  justify-content: center;
  align-items: flex-end;
  min-height: 150px;
  padding: 34px;
  font-weight: 900;
  display: flex;
}
.house-grid {
  background: var(--lavender-light);
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 8px;
  display: grid;
}
.house-grid div {
  background: var(--paper);
  border: 1px solid var(--line);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 112px;
  display: flex;
}
.house-grid b { letter-spacing: .12em; font-size: 13px; }
.house-grid span { color: var(--muted); margin-top: 4px; font-size: 12px; }
.house-foundation {
  background: var(--ink);
  color: #fff;
  letter-spacing: .12em;
  border: 1px solid #555;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  font-size: 12px;
  font-weight: 800;
  display: flex;
}
.eyebrow.light span { background: var(--acid); }
.framework-copy h2 {
  letter-spacing: -.055em;
  margin: 0 0 28px;
  font-size: clamp(38px, 4.2vw, 60px);
  line-height: 1.02;
}
.framework-copy > p:not(.eyebrow) {
  color: var(--berry-light);
  font-size: 17px;
  line-height: 1.68;
}
.framework-copy ul {
  gap: 14px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
}
.framework-copy li {
  align-items: center;
  gap: 11px;
  font-size: 14px;
  display: flex;
}
.framework-copy li::before {
  content: "✓";
  color: var(--acid);
  font-weight: 900;
}

.section-intro.compact {
  grid-template-columns: 1fr;
  max-width: 860px;
}
.timeline { border-top: 1px solid var(--line); }
.timeline > div {
  border-bottom: 1px solid var(--line);
  grid-template-columns: 90px 44px 1fr;
  align-items: center;
  gap: 24px;
  min-height: 104px;
  display: grid;
}
.timeline time { font-weight: 800; }
.timeline > div > span {
  background: var(--moss);
  width: 42px;
  height: 42px;
  color: #fff;
  border-radius: 50%;
  place-items: center;
  display: grid;
  font-size: 11px;
  font-weight: 900;
}
.timeline p { color: #60635b; margin: 0; }
.timeline p b {
  min-width: 210px;
  color: var(--ink);
  font-size: 18px;
  display: inline-block;
}
.host-section {
  background: var(--cream);
  border: 1px solid var(--line);
  grid-template-columns: 150px 1fr auto;
  align-items: center;
  gap: 40px;
  max-width: 1184px;
  margin: 0 auto 110px;
  padding: 54px;
  display: grid;
}
.host-monogram {
  background: var(--berry-light);
  color: var(--moss);
  width: 140px;
  height: 140px;
  border-radius: 50%;
  place-items: center;
  font-size: 44px;
  font-weight: 900;
  display: grid;
}
.host-section .eyebrow { margin-bottom: 12px; }
.host-section h2 {
  letter-spacing: -.04em;
  margin: 0 0 10px;
  font-size: 30px;
}
.host-section p:last-child {
  color: #60635b;
  margin: 0;
  line-height: 1.6;
}
.host-section > a, .final-cta > a {
  background: var(--ink);
  color: #fff;
  white-space: nowrap;
  align-items: center;
  gap: 9px;
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 750;
  display: inline-flex;
}
.final-cta {
  text-align: center;
  color: #fff;
  background: var(--ink);
  padding: 100px 28px;
}
.final-cta .eyebrow { justify-content: center; }
.final-cta h2 {
  letter-spacing: -.06em;
  margin: 0 auto 34px;
  font-size: clamp(44px, 6vw, 80px);
  line-height: 1;
}
.final-cta > a {
  background: var(--acid);
  color: #fff;
}
.final-cta > p:last-child {
  color: #9da098;
  margin-top: 24px;
  font-size: 12px;
}
footer {
  background: var(--ink);
  color: #858880;
  text-transform: uppercase;
  letter-spacing: .1em;
  border-top: 1px solid #363733;
  justify-content: space-between;
  align-items: center;
  min-height: 68px;
  padding: 0 max(28px, calc(50vw - 592px));
  font-size: 11px;
  display: flex;
}

@media (max-width: 900px) {
  .hero-grid, .framework-section { grid-template-columns: 1fr; }
  .hero-grid { padding-top: 58px; }
  .registration-card { max-width: 620px; }
  .section-intro { grid-template-columns: 1fr; gap: 22px; }
  .section-intro .eyebrow { margin-bottom: 0; }
  .outcomes-grid { grid-template-columns: 1fr 1fr; }
  .host-section { grid-template-columns: 120px 1fr; margin-inline: 28px; }
  .host-monogram { width: 110px; height: 110px; }
  .host-section > a { grid-column: 2; justify-self: start; }
}

@media (max-width: 580px) {
  .nav-wrap { min-height: 72px; }
  .nav-cta { font-size: 0; }
  .nav-cta::before { content: "Register"; font-size: 13px; }
  .hero-grid { padding: 46px 20px 72px; }
  .hero-copy h1 { font-size: 59px; }
  .event-strip { display: grid; }
  .event-strip > div { border-right: 0; padding-right: 0; }
  .registration-card { box-shadow: 9px 9px 0 var(--acid); }
  .name-row, .outcomes-grid { grid-template-columns: 1fr; }
  .promise-section, .agenda-section { padding: 80px 20px; }
  .outcome-card { min-height: 230px; }
  .outcome-card h3 { margin-top: 42px; }
  .framework-section { padding: 80px 20px; }
  .timeline > div { grid-template-columns: 60px 38px 1fr; gap: 10px; padding: 15px 0; }
  .timeline p b { min-width: 0; display: block; }
  .host-section { grid-template-columns: 1fr; margin: 0 20px 80px; padding: 30px; }
  .host-section > a { grid-column: 1; }
  footer { padding: 0 20px; gap: 18px; flex-direction: column; justify-content: center; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
