
:root {
  --offwhite: #F7F5EE;
  --paper: #FBFAF6;
  --sand: #E9E1D3;
  --sage: #A8B59F;
  --deep-sage: #6E7A6D;
  --lilac: #E6E2F2;
  --stone: #8E92A6;
  --charcoal: #1F1F1C;
  --soft: #5D5A52;
  --line: #DDD4C4;
  --terracotta: #B65E3C;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--offwhite);
  color: var(--charcoal);
  font-family: Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 245, 238, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav {
  width: min(1180px, calc(100% - 48px));
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  font-size: 38px;
  letter-spacing: -0.08em;
  font-weight: 500;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--soft);
  font-size: 16px;
}

.nav-links a:hover {
  color: var(--charcoal);
}

.linkedin-icon {
  width: 32px;
  height: 32px;
  border: 1.5px solid var(--charcoal);
  border-radius: 7px;
  display: inline-grid;
  place-items: center;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--charcoal);
}

.nav-cta,
.button,
.email-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  white-space: nowrap;
}

.nav-cta {
  min-height: 44px;
  background: var(--charcoal);
  color: var(--offwhite);
}

.button.primary,
.email-button {
  background: var(--terracotta);
  color: white;
}

.button.secondary {
  border: 1px solid #CFC5B4;
  color: var(--charcoal);
}

.mobile-start {
  display: none;
  color: var(--soft);
}

.section {
  padding: 96px 0;
  border-bottom: 1px solid var(--line);
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.hero {
  padding: 104px 0 112px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 470px;
  gap: 90px;
  align-items: center;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 24px 14px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--soft);
  font-size: 22px;
  line-height: 1;
  margin-bottom: 54px;
}

.kicker-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--deep-sage);
}

.eyebrow {
  margin: 0 0 26px;
  color: var(--terracotta);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 13px;
  font-weight: 700;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 30px;
  font-size: clamp(56px, 7vw, 86px);
  line-height: 0.98;
  letter-spacing: -0.07em;
  font-weight: 500;
}

h2 {
  margin-bottom: 26px;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.06em;
  font-weight: 500;
}

h3 {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.035em;
  font-weight: 700;
}

em {
  font-style: italic;
  color: var(--terracotta);
}

.lede {
  max-width: 670px;
  color: var(--soft);
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: -0.02em;
}

.body-large {
  max-width: 810px;
  color: var(--soft);
  font-size: 23px;
  line-height: 1.55;
  letter-spacing: -0.018em;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 44px;
}

.hero-card,
.card,
.contact-card,
.proof-card,
.faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
}

.hero-card {
  border-radius: 28px;
  padding: 44px;
}

.reality-list {
  display: grid;
  gap: 30px;
}

.reality-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 22px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}

.reality-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.number-dot {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--lilac);
  color: var(--soft);
  font-size: 18px;
}

.reality-item p,
.card p,
.fit-row p,
.about-copy p,
.faq-answer p,
.contact-card p,
.privacy-content p,
.privacy-content li {
  color: var(--soft);
  font-size: 19px;
  line-height: 1.48;
  margin-bottom: 0;
}

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

.premise {
  text-align: center;
}

.premise .body-large {
  margin-left: auto;
  margin-right: auto;
}

.layer-mark {
  width: 86px;
  height: 86px;
  margin: 0 auto 34px;
}

.workfix-grid,
.process-grid,
.fit-grid,
.about-grid,
.faq-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: start;
}

.work-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.card {
  border-radius: 22px;
  padding: 30px;
  min-height: 225px;
}

.card-accent {
  width: 42px;
  height: 3px;
  background: var(--terracotta);
  margin-bottom: 32px;
}

.process-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.process-cards .card {
  min-height: 260px;
}

.process-number {
  display: block;
  margin-bottom: 60px;
  color: var(--terracotta);
  font-size: 48px;
  letter-spacing: -0.05em;
}

.fit-list {
  border-top: 1px solid var(--line);
}

.fit-row {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 22px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.fit-line {
  margin-top: 13px;
  width: 24px;
  height: 2px;
  background: var(--sage);
}

.outcome-panel {
  text-align: center;
}

.outcome-panel .body-large {
  margin-left: auto;
  margin-right: auto;
}

.about-copy p {
  margin-bottom: 24px;
}

.portrait {
  width: 100%;
  height: 620px;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
  border: 1px solid var(--line);
}

.proof-grid {
  margin-top: 58px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.proof-card {
  border-radius: 22px;
  padding: 28px;
  min-height: 180px;
}

.proof-card h3 {
  font-size: 21px;
}

.proof-card p {
  color: var(--soft);
  font-size: 16px;
  line-height: 1.45;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  border-radius: 20px;
  overflow: hidden;
}

.faq-button {
  width: 100%;
  display: grid;
  grid-template-columns: 44px 1fr 24px;
  gap: 22px;
  align-items: center;
  padding: 24px 28px;
  border: 0;
  background: transparent;
  text-align: left;
  font: inherit;
  cursor: pointer;
  color: var(--charcoal);
}

.faq-button strong {
  font-size: 21px;
  letter-spacing: -0.035em;
}

.faq-toggle {
  font-size: 28px;
  color: var(--deep-sage);
  transition: transform .2s ease;
}

.faq-answer {
  display: none;
  padding: 0 28px 28px 94px;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
}

.contact-card {
  border-radius: 26px;
  padding: 46px;
}

.newsletter-box {
  margin-top: 30px;
  padding: 22px;
  border: 1px dashed var(--line);
  border-radius: 18px;
  color: var(--soft);
  font-size: 16px;
  line-height: 1.45;
}

.consent {
  margin-top: 18px;
  color: #8A857C;
  font-size: 14px;
  line-height: 1.45;
}

.contact-divider {
  height: 1px;
  background: var(--line);
  margin: 34px 0;
}

.site-footer {
  padding: 42px 0;
  background: var(--offwhite);
}

.footer-inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 28px;
}

.footer-wordmark {
  font-size: 34px;
  letter-spacing: -0.08em;
  font-weight: 500;
}

.footer-copy,
.footer-links {
  color: var(--soft);
  font-size: 15px;
}

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

.privacy-page {
  padding: 90px 0;
}

.privacy-content {
  max-width: 850px;
}

.privacy-content h1 {
  font-size: 64px;
}

.privacy-content h2 {
  margin-top: 54px;
  font-size: 34px;
}

.privacy-content ul {
  padding-left: 22px;
}

@media (max-width: 980px) {
  .nav {
    width: min(100% - 36px, 1180px);
  }

  .nav-links {
    display: none;
  }

  .mobile-start {
    display: inline-flex;
  }

  .container {
    width: min(100% - 36px, 1180px);
  }

  .section {
    padding: 76px 0;
  }

  .hero {
    padding: 72px 0 84px;
  }

  .hero-grid,
  .workfix-grid,
  .process-grid,
  .fit-grid,
  .about-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .work-cards,
  .process-cards,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .portrait {
    height: auto;
    max-height: 640px;
  }

  .footer-inner,
  .footer-left,
  .footer-links {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .wordmark {
    font-size: 34px;
  }

  h1 {
    font-size: clamp(50px, 15vw, 68px);
  }

  .hero-card,
  .contact-card {
    padding: 28px;
  }

  .reality-item,
  .fit-row {
    grid-template-columns: 1fr;
  }

  .faq-button {
    grid-template-columns: 38px 1fr 22px;
    gap: 14px;
    padding: 20px;
  }

  .faq-answer {
    padding: 0 20px 24px 72px;
  }
}


/* v2 refinements */
.premise .eyebrow {
  margin-bottom: 32px;
}

.fit-row {
  list-style: none;
}


/* v3 refinements */
.fit-row {
  display: block;
  padding: 28px 0;
}

.process-grid .body-large + .body-large {
  margin-top: 22px;
}

@media (max-width: 980px) {
  .fit-row {
    display: block;
  }
}


/* v5 About layout refinement */
.about-side {
  display: grid;
  gap: 22px;
}

.about-side .proof-grid {
  margin-top: 0;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.about-side .proof-card {
  min-height: 155px;
  padding: 24px;
  text-align: left;
}

.about-side .proof-card h3 {
  font-size: 19px;
}

.about-side .proof-card p {
  font-size: 15px;
}

@media (max-width: 980px) {
  .about-side .proof-grid {
    grid-template-columns: 1fr;
  }
}


/* v8 safe mobile patch: minimal overrides from original */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

.beehiiv-embed,
.beehiiv-embed > *,
.beehiiv-embed iframe {
  width: 100% !important;
  max-width: 100% !important;
}

.beehiiv-embed iframe {
  display: block !important;
  min-width: 0 !important;
  border: 0 !important;
}

@media (max-width: 560px) {
  .nav,
  .container,
  .footer-inner {
    width: min(100% - 32px, 1180px);
  }

  .section {
    padding: 58px 0;
  }

  .hero {
    padding: 48px 0 58px;
  }

  .kicker {
    font-size: 16px;
    margin-bottom: 34px;
    padding: 12px 16px;
  }

  h1 {
    font-size: clamp(40px, 11vw, 54px);
    line-height: 1.02;
    letter-spacing: -0.055em;
  }

  h2 {
    font-size: clamp(32px, 9vw, 44px);
    line-height: 1.05;
  }

  .lede,
  .body-large {
    font-size: 18px;
    line-height: 1.48;
  }

  .actions {
    margin-top: 32px;
  }

  .button,
  .email-button {
    width: 100%;
    min-height: 48px;
    padding: 0 18px;
    white-space: normal;
    text-align: center;
  }

  .reality-item,
  .fit-row {
    grid-template-columns: 44px 1fr;
    gap: 14px;
    align-items: start;
  }

  .number-dot {
    width: 40px;
    height: 40px;
    font-size: 15px;
  }

  .hero-card,
  .contact-card {
    padding: 24px;
  }

  .card,
  .proof-card {
    padding: 22px;
    min-height: auto;
  }

  .about-side .proof-grid {
    grid-template-columns: 1fr;
  }

  .about-copy p {
    margin-bottom: 18px;
  }

  .newsletter-box {
    margin-top: 22px;
    padding: 10px;
    overflow: hidden;
  }

  .contact-divider {
    margin: 28px 0;
  }

  .consent {
    font-size: 13px;
  }
}


/* v14 final responsive QA fixes: mobile/tablet/desktop */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

.nav, .container, .footer-inner {
  max-width: 1180px;
}

.mobile-start {
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--charcoal);
  color: var(--offwhite);
  font-weight: 700;
  white-space: nowrap;
}

.newsletter-actions {
  margin-top: 24px;
}

.dispatch-button {
  background: var(--deep-sage);
  color: var(--offwhite);
}

.dispatch-button:hover {
  background: var(--charcoal);
}

@media (min-width: 981px) and (max-width: 1120px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 52px;
  }

  .nav-links {
    gap: 20px;
    font-size: 15px;
  }

  .proof-card {
    padding: 22px;
  }
}

@media (max-width: 980px) {
  .mobile-start {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero-grid,
  .workfix-grid,
  .process-grid,
  .fit-grid,
  .about-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-card,
  .contact-card,
  .card,
  .proof-card,
  .faq-item {
    max-width: 100%;
  }

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

@media (max-width: 767px) {
  .nav,
  .container,
  .footer-inner {
    width: min(100% - 32px, 1180px);
  }

  .section {
    padding: 56px 0;
  }

  .hero {
    padding: 48px 0 58px;
  }

  .kicker {
    font-size: 16px;
    margin-bottom: 32px;
    padding: 12px 16px;
  }

  h1 {
    font-size: clamp(40px, 11vw, 54px);
    line-height: 1.02;
    letter-spacing: -0.055em;
  }

  h2 {
    font-size: clamp(32px, 9vw, 44px);
    line-height: 1.05;
  }

  h3 {
    font-size: 22px;
  }

  .lede,
  .body-large {
    font-size: 18px;
    line-height: 1.48;
  }

  .actions {
    margin-top: 32px;
  }

  .button,
  .email-button {
    width: 100%;
    min-height: 50px;
    padding: 0 18px;
    white-space: normal;
    text-align: center;
  }

  .hero-card,
  .contact-card {
    padding: 24px;
  }

  .card,
  .proof-card {
    padding: 22px;
    min-height: auto;
  }

  .reality-item {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
  }

  .number-dot {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 15px;
  }

  .fit-row {
    display: block;
  }

  .about-side .proof-grid {
    grid-template-columns: 1fr;
  }

  .about-copy p {
    margin-bottom: 18px;
  }

  .faq-button {
    grid-template-columns: 40px minmax(0, 1fr) 22px;
    gap: 14px;
    padding: 20px;
  }

  .faq-answer {
    padding: 0 20px 24px 74px;
  }

  .newsletter-box {
    display: none;
  }

  .newsletter-actions {
    margin-top: 22px;
  }

  .dispatch-button {
    width: 100%;
  }

  .contact-divider {
    margin: 28px 0;
  }

  .consent {
    font-size: 13px;
  }
}

@media (max-width: 380px) {
  .nav,
  .container,
  .footer-inner {
    width: min(100% - 28px, 1180px);
  }

  .wordmark {
    font-size: 31px;
  }

  .mobile-start {
    min-height: 40px;
    padding: 0 13px;
    font-size: 14px;
  }

  h1 {
    font-size: clamp(38px, 11vw, 50px);
  }

  .hero-card,
  .contact-card,
  .card,
  .proof-card {
    padding: 20px;
  }

  .reality-item {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 12px;
  }

  .number-dot {
    width: 38px;
    height: 38px;
    min-width: 38px;
  }

  .faq-answer {
    padding-left: 20px;
  }
}
