:root {
  --ink: #17212b;
  --muted: #5d6670;
  --paper: #fbfaf6;
  --white: #ffffff;
  --warm: #f3ece1;
  --mist: #e9eff0;
  --sage: #6d8376;
  --teal: #1c4c52;
  --clay: #b5674f;
  --line: #d8d1c6;
  --shadow: 0 18px 48px rgba(23, 33, 43, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

p,
h1,
h2,
h3,
blockquote {
  margin: 0;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 20;
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 4px;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(250px, 1fr) auto auto;
  gap: 24px;
  align-items: center;
  min-height: 78px;
  padding: 12px 48px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(216, 209, 198, 0.8);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  font-weight: 700;
}

.brand img {
  width: 250px;
  height: 58px;
  object-fit: contain;
  object-position: left center;
  mix-blend-mode: multiply;
}

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

.site-nav a,
.footer-links a,
.contact-lines a {
  border-bottom: 1px solid transparent;
}

.site-nav a:hover,
.footer-links a:hover,
.contact-lines a:hover {
  border-color: currentColor;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid var(--teal);
  border-radius: 6px;
  color: var(--teal);
  font-size: 15px;
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

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

.button-primary:hover {
  background: #143b40;
}

.button-secondary {
  background: transparent;
  color: var(--teal);
  border-color: rgba(28, 76, 82, 0.35);
}

.button-secondary:hover {
  border-color: var(--teal);
  background: rgba(233, 239, 240, 0.55);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: 64px;
  align-items: center;
  max-width: 1180px;
  min-height: 680px;
  margin: 0 auto;
  padding: 74px 48px 56px;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  color: var(--clay);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}

h1,
h2 {
  font-family: "Newsreader", Georgia, serif;
  font-weight: 600;
  line-height: 1.02;
  overflow-wrap: break-word;
}

h1 {
  margin-top: 18px;
  max-width: 820px;
  font-size: 64px;
}

h2 {
  margin-top: 12px;
  font-size: 46px;
}

h3 {
  font-size: 21px;
  line-height: 1.25;
}

.hero-text {
  max-width: 660px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 20px;
}

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

.hero-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: end;
}

.hero-portrait {
  width: min(100%, 440px);
  height: 560px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.founder-note {
  position: absolute;
  left: -24px;
  bottom: 34px;
  width: 240px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(23, 33, 43, 0.08);
}

.founder-note p {
  font-weight: 800;
}

.founder-note span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.audience-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.audience-strip p {
  min-height: 78px;
  display: grid;
  place-items: center;
  padding: 18px;
  background: var(--white);
  color: var(--teal);
  font-weight: 700;
  text-align: center;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 84px 48px;
}

.intro-section {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 70px;
  align-items: start;
}

.section-heading {
  max-width: 580px;
}

.section-heading.wide {
  max-width: 780px;
}

.section-heading p,
.intro-copy,
.split-copy p,
.about-copy p,
.contact-copy p {
  color: var(--muted);
}

.intro-copy {
  display: grid;
  gap: 18px;
  font-size: 19px;
}

.approach-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding-top: 0;
}

.approach-points article {
  min-height: 220px;
  padding: 30px;
  background: var(--mist);
  border-top: 4px solid var(--sage);
}

.approach-points p {
  margin-top: 12px;
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 58px;
  align-items: center;
  background: var(--white);
  max-width: none;
  padding-left: max(48px, calc((100vw - 1180px) / 2 + 48px));
  padding-right: max(48px, calc((100vw - 1180px) / 2 + 48px));
}

.image-panel img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 8px;
}

.split-copy {
  max-width: 620px;
}

.split-copy p:not(.eyebrow) {
  margin-top: 20px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 24px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  background: var(--sage);
  border-radius: 50%;
}

.services-section {
  padding-bottom: 70px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
}

.service-card,
.package-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-card {
  min-height: 212px;
  padding: 26px;
}

.service-card p {
  margin-top: 14px;
  color: var(--muted);
}

.packages-section {
  background: var(--warm);
  max-width: none;
  padding-left: max(48px, calc((100vw - 1180px) / 2 + 48px));
  padding-right: max(48px, calc((100vw - 1180px) / 2 + 48px));
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.package-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 24px;
  min-height: 540px;
  padding: 28px;
}

.package-card.featured {
  border-color: var(--teal);
  box-shadow: var(--shadow);
}

.package-label {
  color: var(--clay);
  font-weight: 800;
}

.package-card h3 {
  margin-top: 10px;
  font-size: 40px;
  line-height: 1;
}

.package-card h3 span {
  color: var(--muted);
  font-size: 18px;
  font-weight: 600;
}

.package-card p:not(.package-label) {
  margin-top: 16px;
  color: var(--muted);
}

.package-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: var(--ink);
}

.package-link {
  align-self: end;
}

.project-section {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 48px;
  align-items: stretch;
}

.project-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.project-options article {
  min-height: 210px;
  padding: 28px;
  border-left: 4px solid var(--clay);
  background: var(--white);
}

.project-options p {
  margin-top: 14px;
  color: var(--teal);
  font-size: 24px;
  font-weight: 800;
}

.project-options span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
}

.about-section {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 58px;
  align-items: center;
  background: var(--teal);
  color: var(--white);
  max-width: none;
  padding-left: max(48px, calc((100vw - 1180px) / 2 + 48px));
  padding-right: max(48px, calc((100vw - 1180px) / 2 + 48px));
}

.about-image img {
  width: 100%;
  max-height: 580px;
  object-fit: cover;
  border-radius: 8px;
}

.about-copy {
  max-width: 650px;
}

.about-copy .eyebrow {
  color: #f0c6b5;
}

.about-copy p:not(.eyebrow) {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.8);
}

.proof-section {
  padding-bottom: 90px;
}

.proof-layout {
  display: grid;
  grid-template-columns: 0.88fr 1fr;
  gap: 32px;
  align-items: start;
  margin-top: 36px;
}

.work-example-grid {
  display: grid;
  gap: 14px;
}

.work-example {
  padding: 24px;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.work-example h3 {
  margin-top: 10px;
  font-family: "Newsreader", Georgia, serif;
  font-size: 30px;
  line-height: 1.12;
}

.work-example p:not(.eyebrow) {
  margin-top: 12px;
  color: var(--muted);
}

.testimonial-stack {
  display: grid;
  gap: 18px;
}

blockquote {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

blockquote p {
  font-family: "Newsreader", Georgia, serif;
  font-size: 24px;
  line-height: 1.2;
}

blockquote cite {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 15px;
  font-style: normal;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 56px;
  align-items: start;
  padding: 86px max(48px, calc((100vw - 1180px) / 2 + 48px));
  background: var(--ink);
  color: var(--white);
}

.contact-copy {
  position: sticky;
  top: 116px;
}

.contact-copy .eyebrow {
  color: #f0c6b5;
}

.contact-copy p:not(.eyebrow) {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.76);
}

.contact-lines {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  color: var(--white);
  font-weight: 700;
}

.practice-form,
.newsletter-form {
  background: var(--white);
  color: var(--ink);
  border-radius: 8px;
}

.practice-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 30px;
}

.form-row {
  display: grid;
  gap: 7px;
}

.form-row.full,
.checkbox-row,
.privacy-note,
.submit-button,
.form-status {
  grid-column: 1 / -1;
}

label {
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cfc8bd;
  border-radius: 6px;
  background: #fffdf9;
  color: var(--ink);
  padding: 12px 13px;
}

textarea {
  resize: vertical;
  min-height: 140px;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(109, 131, 118, 0.28);
  border-color: var(--sage);
}

.checkbox-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
}

.checkbox-row input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.privacy-note {
  color: var(--muted);
  font-size: 14px;
}

.submit-button {
  width: fit-content;
}

.form-status {
  min-height: 24px;
  color: var(--teal);
  font-weight: 800;
}

.newsletter-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px;
  align-items: center;
  padding: 56px max(48px, calc((100vw - 1180px) / 2 + 48px));
  background: var(--mist);
}

.newsletter-section h2 {
  font-size: 34px;
}

.newsletter-form {
  padding: 24px;
}

.newsletter-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: 8px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: start;
  padding: 34px 48px;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin-top: 6px;
  color: var(--muted);
}

.footer-links {
  display: grid;
  gap: 6px;
  justify-items: end;
  color: var(--teal);
  font-weight: 700;
}

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

  .site-nav {
    display: none;
  }

  .hero,
  .intro-section,
  .split-section,
  .project-section,
  .about-section,
  .proof-layout,
  .contact-section,
  .newsletter-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: auto;
    max-width: 520px;
  }

  .founder-note {
    left: 20px;
  }

  .approach-points,
  .service-grid,
  .package-grid {
    grid-template-columns: 1fr 1fr;
  }

  .project-options {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    position: static;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 16px;
  }

  .site-header {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 12px 18px;
  }

  .brand img {
    width: 190px;
    height: 50px;
  }

  .nav-cta {
    display: none;
  }

  .hero,
  .section,
  .split-section,
  .packages-section,
  .about-section,
  .contact-section,
  .newsletter-section {
    width: 100%;
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    overflow: hidden;
  }

  .hero {
    padding-top: 46px;
    gap: 36px;
  }

  .hero-copy,
  .hero-text,
  .hero-visual,
  .section-heading,
  .intro-copy,
  .split-copy,
  .about-copy,
  .contact-copy {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .hero-copy,
  .hero-text,
  .hero-visual {
    max-width: 340px;
  }

  .eyebrow {
    font-size: 13px;
    max-width: 340px;
  }

  h1 {
    font-size: 34px;
    line-height: 1.08;
  }

  h2 {
    font-size: 32px;
  }

  .hero-text {
    font-size: 18px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-portrait {
    width: 100%;
    height: 430px;
  }

  .founder-note {
    position: static;
    width: 100%;
    margin-top: 12px;
  }

  .audience-strip,
  .approach-points,
  .service-grid,
  .package-grid,
  .practice-form,
  .newsletter-row,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .audience-strip p {
    min-height: 58px;
  }

  .image-panel img {
    height: 330px;
  }

  .package-card {
    min-height: auto;
  }

  .proof-section {
    padding-bottom: 60px;
  }

  .footer-links {
    justify-items: start;
  }
}
