:root {
  --ink: #12382a;
  --muted: #53635d;
  --line: #d5dad3;
  --paper: #f8f8f8;
  --white: #fbfbf7;
  --green: #2e8b57;
  --green-dark: #0d3526;
  --mint: #78d59c;
  --sage: #cbd1c8;
  --blue: #3a5a66;
  --lilac: #f8f1ff;
  --gold: #d7ded0;
  --shadow: 0 18px 50px rgba(18, 56, 42, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(13, 53, 38, 0.88), rgba(13, 53, 38, 0));
}

.anchor-target {
  display: block;
  position: relative;
  top: -90px;
  visibility: hidden;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 30px);
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-cta {
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--white);
  color: var(--green-dark);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 116px clamp(20px, 5vw, 72px) 56px;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(13, 53, 38, 0.95) 0%, rgba(18, 56, 42, 0.78) 38%, rgba(18, 56, 42, 0.18) 76%, rgba(18, 56, 42, 0.05) 100%),
    linear-gradient(0deg, rgba(13, 53, 38, 0.34), rgba(120, 213, 156, 0.05));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  color: var(--white);
}

.eyebrow,
.section-label {
  margin: 0 0 14px;
  color: var(--mint);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

.nowrap {
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: keep-all;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.4rem, 10vw, 8.6rem);
  line-height: 0.88;
  letter-spacing: 0;
}

h1,
h2,
h3,
.main-nav,
.button,
.section-label,
.eyebrow {
  font-family: Montserrat, "Segoe UI", system-ui, sans-serif;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.1rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 680px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(13, 53, 38, 0.3);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

section {
  padding: clamp(64px, 9vw, 116px) clamp(20px, 5vw, 72px);
}

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

.section-grid,
.booking {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 6vw, 96px);
  align-items: start;
}

.strategy-grid,
.trust-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.strategy-grid article,
.trust-grid article,
.blog-grid article,
.workshop-highlight {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.strategy-grid p,
.trust-grid p,
.workshop-highlight p {
  color: var(--muted);
}

.consulting-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding: 22px 24px;
  border-radius: 8px;
  background: var(--lilac);
}

.consulting-cta p {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}

.workshop-highlight {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: var(--lilac);
}

.workshop-highlight > div {
  max-width: 820px;
}

.copy-stack p,
.booking-copy p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1.08rem;
}

.booking-copy h2 {
  margin-bottom: 20px;
}

.outcomes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--line);
}

.metric {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
  background: var(--paper);
}

.metric strong {
  color: var(--green-dark);
  font-size: clamp(1.9rem, 4vw, 3.6rem);
  line-height: 1;
}

.metric span {
  margin-top: 10px;
  color: var(--muted);
  font-weight: 600;
}

.section-head {
  max-width: 890px;
  margin-bottom: 36px;
}

.speaker-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

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

.speaker,
.price {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.speakers .speaker {
  background: var(--sage);
}

.speaker h3 a {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.speaker blockquote {
  margin: 18px 0 0;
  padding-left: 16px;
  border-left: 3px solid var(--green);
  color: var(--green-dark);
  font-weight: 700;
}

.blog-grid span {
  display: block;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.speaker-role {
  display: block;
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.speaker p,
.timeline p,
.price p,
.audience-grid p {
  color: var(--muted);
}

.timeline {
  max-width: 980px;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.timeline li {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

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

.timeline p {
  margin: 8px 0 0;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.audience-grid p {
  min-height: 150px;
  display: flex;
  align-items: flex-end;
  margin: 0;
  padding: 22px;
  background: var(--white);
  font-weight: 700;
}

.price {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.price strong {
  display: block;
  color: var(--green-dark);
  font-size: 2.4rem;
  line-height: 1;
}

.price a {
  font-weight: 800;
  color: var(--green-dark);
}

.price.highlighted {
  border-color: var(--green);
  box-shadow: var(--shadow);
}

.booking {
  align-items: stretch;
}

.date-box,
.venue-box,
.network-box {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 16px;
  padding: 18px 20px;
  border-left: 4px solid var(--green);
  background: var(--sage);
}

.venue-box {
  font-style: normal;
}

.date-box span,
.venue-box span,
.network-box span {
  color: var(--muted);
  font-weight: 700;
}

.date-box strong,
.venue-box strong {
  font-size: 1.35rem;
}

.network-box p {
  margin: 0;
  color: var(--ink);
}

.network-box a {
  font-weight: 800;
  color: var(--green-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-content {
  display: grid;
  gap: 22px;
  max-width: 980px;
}

.legal-content > div {
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.legal-content p {
  margin: 10px 0 0;
  color: var(--muted);
}

.legal-content a {
  color: var(--green-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.booking-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--sage);
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #c4ccc4;
  border-radius: 8px;
  padding: 13px 14px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 12px;
}

.form-footer span {
  display: block;
  color: var(--muted);
  font-weight: 700;
}

.form-footer strong {
  font-size: 1.8rem;
  color: var(--green-dark);
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--green-dark);
  font-weight: 700;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(20px, 5vw, 72px);
  background: var(--green);
  color: rgba(255, 255, 255, 0.78);
}

.footer-brand {
  display: grid;
  gap: 8px;
}

.footer-brand img {
  display: block;
  width: 156px;
  height: auto;
}

.footer-brand span {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

@media (max-width: 960px) {
  .main-nav {
    display: none;
  }

  .hero {
    min-height: 86vh;
  }

  .section-grid,
  .booking,
  .outcomes,
  .strategy-grid,
  .trust-grid,
  .blog-grid,
  .speaker-list,
  .price-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .metric {
    min-height: 130px;
  }

  .workshop-highlight,
  .consulting-cta {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 18px;
  }

  .hero {
    padding: 96px 18px 42px;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(13, 53, 38, 0.96), rgba(18, 56, 42, 0.7));
  }

  section {
    padding: 56px 18px;
  }

  .timeline li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
  }
}
