
:root {
  --ink: #102119;
  --ink-2: #283f35;
  --cream: #f4f1e9;
  --paper: #fffdf8;
  --sage: #dce7de;
  --sage-2: #eef3ef;
  --accent: #b96f2a;
  --accent-dark: #8c501b;
  --amber-soft: #f2dec8;
  --line: rgba(16, 33, 25, .14);
  --muted: #607067;
  --max: 1180px;
  --radius: 22px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

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

a { color: inherit; }
img, svg { max-width: 100%; }

.skip-link {
  position: fixed;
  left: 16px;
  top: 8px;
  transform: translateY(-150%);
  background: var(--ink);
  color: white;
  padding: 10px 14px;
  border-radius: 8px;
  z-index: 9999;
}
.skip-link:focus { transform: none; }

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 248, .94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 760;
  letter-spacing: -.02em;
  white-space: nowrap;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  font-family: Georgia, serif;
  font-size: 20px;
  font-weight: 700;
}

nav {
  display: flex;
  gap: 22px;
  margin-left: auto;
}
nav a {
  text-decoration: none;
  color: var(--ink-2);
  font-size: .92rem;
}
nav a:hover { color: var(--accent-dark); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  font-weight: 720;
  line-height: 1.2;
  transition: transform .2s ease, background .2s ease;
}
.button:hover {
  transform: translateY(-1px);
  background: var(--ink-2);
}
.button-small {
  min-height: 42px;
  padding: 10px 16px;
  font-size: .88rem;
}

.hero {
  padding: 90px 0 72px;
  background:
    radial-gradient(circle at 84% 8%, rgba(185,111,42,.14), transparent 25rem),
    linear-gradient(180deg, var(--paper), var(--cream));
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.32fr) minmax(340px, .68fr);
  gap: 66px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-dark);
  font-size: .76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .13em;
}

h1, h2, h3 {
  margin-top: 0;
  line-height: 1.08;
  letter-spacing: -.035em;
}

h1 {
  max-width: 850px;
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 6.7vw, 6.25rem);
  font-weight: 500;
}

h2 {
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 4.4vw, 4.05rem);
  font-weight: 500;
}

h3 {
  font-size: 1.22rem;
  letter-spacing: -.02em;
}

.hero-recognition {
  max-width: 790px;
  margin: 0 0 20px;
  color: var(--ink);
  font-size: clamp(1.14rem, 2.2vw, 1.36rem);
  font-weight: 620;
}

.hero-copy {
  max-width: 770px;
  margin: 0 0 30px;
  color: var(--ink-2);
  font-size: 1.04rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
}

.text-link {
  font-weight: 740;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.proof-strip span {
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255,255,255,.45);
  font-size: .8rem;
  font-weight: 650;
}

.diagnostic-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.68);
  box-shadow: 0 24px 64px rgba(16,33,25,.08);
  overflow: hidden;
}
.diagnostic-topline {
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.signal-label {
  margin: 0;
  font-weight: 800;
}
.diagnostic-tag {
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--sage);
  font-size: .72rem;
  font-weight: 760;
  letter-spacing: .04em;
}
.diagnostic-list > div {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 10px;
  align-items: start;
  padding: 19px 26px;
  border-bottom: 1px solid var(--line);
}
.diagnostic-list > div:last-child { border-bottom: 0; }
.diagnostic-list span {
  color: var(--accent-dark);
  font-size: .76rem;
  font-weight: 800;
}
.diagnostic-list p { margin: 0; color: var(--ink-2); }

.section { padding: 96px 0; }

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

.split-heading {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 50px;
}
.split-heading p:last-child {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 1.05rem;
}

.drag-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.drag-grid article {
  min-height: 250px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.drag-grid p { color: var(--muted); }
.card-number {
  display: inline-block;
  margin-bottom: 42px;
  font-size: .78rem;
  font-weight: 800;
  color: var(--accent-dark);
  letter-spacing: .08em;
}

.framework-section {
  padding: 104px 0;
  background: var(--ink);
  color: #f8f5ef;
}
.framework-section .eyebrow { color: #e8b57e; }

.framework-intro {
  max-width: 820px;
  margin-bottom: 54px;
}
.framework-intro > p:last-child {
  color: #cbd5cf;
  font-size: 1.08rem;
}

.framework-board {
  display: grid;
  grid-template-columns: 1fr 140px 1fr;
  gap: 24px;
  align-items: stretch;
}

.workflow-column {
  padding: 30px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 24px;
}
.workflow-drag { background: rgba(255,255,255,.045); }
.workflow-designed { background: rgba(220,231,222,.08); }

.workflow-heading {
  padding-bottom: 24px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.workflow-heading strong {
  display: block;
  margin-top: 5px;
  font-family: Georgia, serif;
  font-size: 1.65rem;
  font-weight: 500;
}
.workflow-kicker {
  color: #e6b27c;
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.flow-stack {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.flow-node {
  padding: 13px 16px;
  border-radius: 12px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.12);
  text-align: center;
  font-weight: 650;
}
.workflow-designed .flow-node {
  background: rgba(220,231,222,.14);
}
.flow-arrow {
  align-self: center;
  padding: 7px 0;
  color: #e6b27c;
  font-weight: 800;
}

.framework-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #e6b27c;
  font-size: .74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.framework-arrow {
  font-size: 2rem;
  line-height: 1;
}

.framework-note {
  max-width: 900px;
  margin: 40px auto 0;
  text-align: center;
  color: #cbd5cf;
}

.review-section { background: var(--cream); }
.review-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.review-section .lead {
  color: var(--ink-2);
  font-size: 1.12rem;
}

.deliverable-panel {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--paper);
}
.panel-kicker {
  margin: 0 0 18px;
  font-weight: 800;
}
.check-list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.check-list li {
  position: relative;
  padding: 12px 0 12px 31px;
  border-top: 1px solid var(--line);
}
.check-list li:first-child { border-top: 0; }
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-dark);
  font-weight: 800;
}

.methodology-section { background: var(--paper); }
.methodology-header {
  max-width: 800px;
  margin-bottom: 48px;
}
.methodology-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.methodology-grid article {
  padding: 26px 22px 24px;
  border-top: 2px solid var(--ink);
  background: var(--sage-2);
}
.methodology-grid article > span {
  display: inline-block;
  margin-bottom: 50px;
  color: var(--accent-dark);
  font-size: .76rem;
  font-weight: 800;
}
.methodology-grid p { color: var(--muted); }

.answer-section {
  background: var(--sage);
}
.answer-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 78px;
  align-items: start;
}
.answer-grid p {
  margin-top: 0;
  color: var(--ink-2);
  font-size: 1.12rem;
}

.credibility-section { background: var(--paper); }
.credibility-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.credibility-grid p {
  font-size: 1.1rem;
  color: var(--ink-2);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 52px;
}
.section-heading.narrow { max-width: 760px; }

.faq-section {
  border-top: 1px solid var(--line);
  background: #fff;
}
.faq-list {
  max-width: 920px;
  border-top: 1px solid var(--line);
}
details { border-bottom: 1px solid var(--line); }
summary {
  padding: 24px 42px 24px 0;
  cursor: pointer;
  font-weight: 760;
  font-size: 1.08rem;
}
details p {
  max-width: 800px;
  margin: -4px 0 26px;
  color: var(--muted);
}
summary::marker { color: var(--accent); }

.cta-section {
  padding: 72px 0;
  background: var(--paper);
}
.cta-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: 48px 52px;
  border-radius: 28px;
  background: var(--accent-dark);
  color: white;
}
.cta-box h2 {
  max-width: 800px;
  margin-bottom: 12px;
  font-size: clamp(2.1rem, 4vw, 3.55rem);
}
.cta-box .eyebrow { color: #ffe0bc; }
.cta-box p:last-child { margin-bottom: 0; color: #f7e7d6; }
.button-light {
  flex: 0 0 auto;
  border-color: white;
  background: white;
  color: var(--ink);
}
.button-light:hover { background: var(--cream); }

.site-footer {
  padding: 42px 0 30px;
  background: var(--ink);
  color: #edf1ee;
}
.footer-wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px 40px;
  align-items: start;
}
.brand-footer { color: white; }
.site-footer p { color: #aebbb4; }
.footer-links {
  display: flex;
  gap: 20px;
}
.footer-links a {
  color: #edf1ee;
  text-underline-offset: 4px;
}
.copyright {
  grid-column: 1 / -1;
  padding-top: 22px;
  margin: 0;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: .88rem;
}

@media (max-width: 960px) {
  nav { display: none; }
  .nav-wrap .button-small { margin-left: auto; }

  .hero-grid,
  .review-grid,
  .credibility-grid,
  .answer-grid,
  .split-heading {
    grid-template-columns: 1fr;
    gap: 42px;
  }

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

  .framework-board {
    grid-template-columns: 1fr;
  }
  .framework-center {
    flex-direction: row;
    min-height: 70px;
  }
  .framework-arrow { transform: rotate(90deg); }

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

@media (max-width: 640px) {
  .container { width: min(var(--max), calc(100% - 28px)); }

  .site-header .brand span:last-child { display: none; }
  .nav-wrap { min-height: 68px; }
  .button-small { font-size: .8rem; padding-inline: 12px; }

  h1 { font-size: clamp(2.7rem, 14vw, 4.25rem); }

  .hero,
  .section,
  .framework-section {
    padding: 72px 0;
  }

  .drag-grid,
  .methodology-grid {
    grid-template-columns: 1fr;
  }

  .drag-grid article { min-height: 220px; }

  .workflow-column,
  .deliverable-panel {
    padding: 24px 20px;
  }

  .cta-box {
    padding: 36px 26px;
    border-radius: 20px;
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-wrap { grid-template-columns: 1fr; }
  .footer-links { flex-direction: column; gap: 8px; }
  .copyright { grid-column: 1; }
}


.inquiry-section {
  padding: 96px 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(185,111,42,.10), transparent 22rem),
    var(--cream);
  border-top: 1px solid var(--line);
}

.inquiry-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 72px;
  align-items: start;
}

.inquiry-copy {
  position: sticky;
  top: 118px;
}

.inquiry-lead {
  max-width: 620px;
  color: var(--ink-2);
  font-size: 1.08rem;
}

.inquiry-notes {
  margin-top: 34px;
  border-top: 1px solid var(--line);
}

.inquiry-notes > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.inquiry-notes span {
  color: var(--accent-dark);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.inquiry-notes p {
  margin: 0;
  color: var(--muted);
}

.inquiry-panel {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--paper);
  box-shadow: 0 22px 56px rgba(16,33,25,.07);
}

.inquiry-form {
  margin: 0;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-span-2 {
  grid-column: 1 / -1;
}

.field-group label {
  font-size: .9rem;
  font-weight: 760;
  color: var(--ink);
}

.optional {
  color: var(--muted);
  font-weight: 500;
}

.field-group input,
.field-group textarea {
  width: 100%;
  border: 1px solid rgba(16,33,25,.20);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  line-height: 1.4;
  padding: 13px 14px;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.field-group textarea {
  resize: vertical;
  min-height: 150px;
}

.field-group input::placeholder,
.field-group textarea::placeholder {
  color: #8a9690;
}

.field-group input:focus,
.field-group textarea:focus {
  outline: none;
  border-color: var(--accent-dark);
  box-shadow: 0 0 0 3px rgba(140,80,27,.10);
}

.inquiry-submit {
  width: 100%;
  margin-top: 24px;
  border: 0;
  cursor: pointer;
}

.form-note {
  margin: 14px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: .88rem;
}

.form-note a {
  font-weight: 700;
  text-underline-offset: 3px;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

@media (max-width: 960px) {
  .inquiry-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .inquiry-copy {
    position: static;
  }
}

@media (max-width: 640px) {
  .inquiry-section {
    padding: 72px 0;
  }

  .inquiry-panel {
    padding: 24px 20px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .field-span-2 {
    grid-column: auto;
  }
}
