:root {
  --ink: #17211f;
  --muted: #5b6764;
  --teal: #0f766e;
  --dark-teal: #134e4a;
  --mint: #ccfbf1;
  --paper: #fffdf7;
  --page: #f7f8f4;
  --line: #d8d5ca;
  --coral: #e76f51;
  --yellow: #f6c85f;
  --green: #5b8f74;
  --blue: #2f6690;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--page);
  font-family:
    Arial,
    "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px 40px;
  background: rgba(255, 253, 247, 0.96);
  border-bottom: 1px solid var(--line);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--dark-teal);
  border-radius: 6px;
  font-weight: 700;
}

.brand-mark strong {
  font-size: 1rem;
}

nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.94rem;
}

nav a {
  text-decoration: none;
}

nav a:hover {
  color: var(--ink);
}

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: center;
  padding: 72px 40px 92px;
  background:
    linear-gradient(90deg, rgba(19, 78, 74, 0.94) 0%, rgba(19, 78, 74, 0.86) 42%, rgba(19, 78, 74, 0.08) 72%),
    url("assets/hero-first-look-fix.png") center / cover no-repeat;
}

.hero-copy {
  max-width: 760px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero .eyebrow {
  color: var(--yellow);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: 4.6rem;
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: 2.4rem;
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 20px;
  color: var(--yellow);
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.25;
}

.hero-body {
  max-width: 680px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.12rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 2px solid transparent;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
}

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

.button.primary:hover {
  background: var(--white);
  border-color: var(--white);
}

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

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

.section {
  padding: 82px 40px;
}

.section-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: start;
}

.copy-stack p {
  color: var(--muted);
  font-size: 1.08rem;
}

.check-list,
.plain-list {
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.check-list li,
.plain-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
}

.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
  content: "+";
}

.plain-list li::before {
  position: absolute;
  left: 0;
  color: var(--coral);
  font-weight: 700;
  content: "-";
}

.offer {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading.compact {
  max-width: 680px;
}

.feature-grid,
.example-grid,
.pricing-grid,
.split-lists {
  display: grid;
  gap: 22px;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-grid article,
.pricing-grid article,
.example-grid article {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.feature-grid article {
  padding: 26px;
}

.feature-grid p,
.example-grid p,
.pricing-grid p,
.pricing-grid li {
  color: var(--muted);
}

.examples {
  background: #edf7f1;
}

.example-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.example-grid article {
  overflow: hidden;
  background: var(--white);
}

.example-grid img {
  width: 100%;
  aspect-ratio: 14 / 9;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.example-grid h3,
.example-grid p {
  padding-left: 18px;
  padding-right: 18px;
}

.example-grid h3 {
  margin-top: 18px;
}

.example-grid p {
  padding-bottom: 18px;
}

.split-lists {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.split-lists > div {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.warn {
  color: var(--coral);
}

.pricing {
  background: var(--paper);
}

.pricing-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pricing-grid article {
  padding: 28px;
  background: var(--white);
}

.plan-label {
  margin-bottom: 6px;
  color: var(--teal);
  font-weight: 700;
  text-transform: uppercase;
}

.pricing-grid h3 {
  margin-bottom: 12px;
  font-size: 2.9rem;
  color: var(--dark-teal);
}

.pricing-grid ul {
  margin: 22px 0 0;
  padding-left: 20px;
}

.contact {
  color: var(--white);
  background: var(--dark-teal);
}

.contact .eyebrow {
  color: var(--yellow);
}

.contact-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
}

.contact-band p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.9);
}

.intake-hero {
  padding: 74px 40px 62px;
  color: var(--white);
  background: var(--dark-teal);
}

.intake-hero .eyebrow {
  color: var(--yellow);
}

.intake-hero h1 {
  max-width: 860px;
  margin-bottom: 18px;
  font-size: 3.6rem;
}

.intake-hero p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.12rem;
}

.intake-section {
  background: var(--paper);
}

.intake-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 28px;
  align-items: start;
}

.intake-form,
.intake-side {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.intake-form {
  display: grid;
  gap: 18px;
}

.intake-form h2,
.intake-side h2 {
  margin-bottom: 4px;
}

.intake-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 700;
}

.intake-form input,
.intake-form textarea,
.intake-form select {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
}

.intake-form textarea {
  resize: vertical;
}

.form-submit {
  justify-self: start;
  margin-top: 6px;
  border: 0;
  cursor: pointer;
}

.form-note {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.intake-side ol {
  padding-left: 22px;
  color: var(--muted);
}

.intake-side li {
  margin-bottom: 12px;
}

.mini-card {
  margin-top: 26px;
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.mini-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--dark-teal);
  font-size: 2.4rem;
  line-height: 1;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px 40px;
  color: var(--muted);
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .site-header {
    position: static;
    align-items: flex-start;
    padding: 16px 22px;
  }

  nav {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px 16px;
  }

  .hero {
    min-height: 760px;
    padding: 62px 24px 78px;
    background:
      linear-gradient(90deg, rgba(19, 78, 74, 0.98) 0%, rgba(19, 78, 74, 0.94) 64%, rgba(19, 78, 74, 0.88) 100%),
      url("assets/hero-first-look-fix.png") center / cover no-repeat;
  }

  h1 {
    font-size: 3.2rem;
  }

  h2 {
    font-size: 2rem;
  }

  .two-column,
  .feature-grid,
  .example-grid,
  .pricing-grid,
  .split-lists,
  .contact-band,
  .intake-layout {
    grid-template-columns: 1fr;
  }

  .contact-band {
    display: grid;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 15px;
  }

  .site-header {
    display: block;
  }

  .brand-mark {
    margin-bottom: 14px;
  }

  nav {
    justify-content: flex-start;
  }

  .hero,
  .section,
  .intake-hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero {
    min-height: 700px;
  }

  h1 {
    font-size: 2.6rem;
  }

  .intake-hero h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero-lede {
    font-size: 1.25rem;
  }

  .hero-body,
  .copy-stack p,
  .section-heading p {
    font-size: 1rem;
  }

  .button {
    width: 100%;
  }

  .form-submit {
    justify-self: stretch;
  }

  .site-footer {
    display: block;
    padding: 26px 18px;
  }

  .site-footer p + p {
    margin-top: 6px;
  }
}
