:root {
  --ink: #11110f;
  --paper: #f6f5f1;
  --gold: #b79a5a;
  --gold-soft: #d8c9a7;
  --green: #174a3b;
  --green-soft: #d5e4dc;
  --stone: #e7e3da;
  --muted: #6d6c67;
  --line: rgba(17, 17, 15, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 400 16px/1.55 "DM Sans", sans-serif;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  height: 84px;
  padding: 0 clamp(24px, 5vw, 78px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  background: rgba(246, 245, 241, 0.92);
  backdrop-filter: blur(12px);
}

.brand {
  color: inherit;
  font: 800 1.3rem Manrope, sans-serif;
  letter-spacing: -0.04em;
  text-decoration: none;
}
.brand span { color: var(--green); }
.site-header nav { display: flex; gap: 36px; }
.site-header nav a,
footer a {
  color: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
}
.site-header nav a:hover,
footer a:hover { opacity: 0.55; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--ink);
  color: inherit;
  font-weight: 700;
  text-decoration: none;
  transition: 0.22s ease;
}
.btn-small { padding: 10px 17px; border-radius: 100px; }
.btn-small:hover,
.btn-outline:hover { background: var(--green); border-color: var(--green); color: white; }
.btn-primary {
  padding: 17px 24px;
  border-radius: 2px;
  background: var(--green);
  border-color: var(--green);
  color: white;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(17, 17, 15, 0.14);
}
.btn-outline { padding: 13px 18px; white-space: nowrap; }
.btn-dark {
  padding: 13px 18px;
  background: var(--ink);
  color: white;
  white-space: nowrap;
}
.btn-dark:hover { background: var(--green); border-color: var(--green); }

.section-pad { padding: clamp(80px, 10vw, 150px) clamp(24px, 7vw, 112px); }
h1, h2, h3 {
  margin: 0;
  font-family: Manrope, sans-serif;
  letter-spacing: -0.045em;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font: 700 0.78rem Manrope, sans-serif;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(183, 154, 90, 0.14);
}

.hero {
  min-height: calc(100vh - 84px);
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(270px, 0.65fr);
  gap: clamp(48px, 7vw, 110px);
  align-items: center;
  padding-top: 80px;
  padding-bottom: 100px;
}
h1 {
  max-width: 1030px;
  margin: 26px 0 32px;
  font-size: clamp(3rem, 6.15vw, 7.1rem);
  line-height: 0.94;
}
h1 em { color: var(--green); font-style: normal; }
.hero-lead {
  max-width: 710px;
  color: #3f3f3a;
  font-size: clamp(1.05rem, 1.4vw, 1.3rem);
}
.hero-actions { display: flex; align-items: center; gap: 30px; margin: 38px 0; }
.text-link,
.contact-link { color: inherit; font-weight: 700; text-underline-offset: 5px; }
.trust-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 13px;
  color: var(--muted);
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.trust-line i { width: 4px; height: 4px; border-radius: 50%; background: var(--green); }

.hero-visual { position: relative; width: 100%; max-width: 350px; justify-self: end; }
.photo-frame {
  position: relative;
  overflow: visible;
  background: #dad7d0;
  box-shadow: 13px 13px 0 var(--green-soft);
}
.photo-frame img {
  width: 100%;
  display: block;
  height: auto;
}
.photo-tag {
  position: absolute;
  top: 18px;
  right: -14px;
  width: auto;
  height: auto;
  padding: 10px 13px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background: var(--green);
  color: white;
  font: 700 0.86rem/1.15 Manrope, sans-serif;
  text-align: left;
}
.photo-tag strong { color: #dbe9e1; font-size: 0.64rem; letter-spacing: 0.06em; text-transform: uppercase; }
.hero-card {
  position: static;
  width: 100%;
  margin-top: 20px;
  padding: 17px 0 0;
  border-top: 1px solid var(--line);
  background: transparent;
  box-shadow: none;
}
.hero-card-label,
.section-kicker {
  color: var(--green);
  font: 700 0.72rem Manrope, sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hero-card p { margin: 10px 0 0; line-height: 1.45; }

.proof-strip {
  padding: 50px clamp(24px, 7vw, 112px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #123b30;
  color: white;
}
.proof-strip article { padding: 0 clamp(18px, 3vw, 54px); border-left: 1px solid rgba(255,255,255,0.2); }
.proof-strip article:first-child { padding-left: 0; border-left: 0; }
.proof-strip strong { font: 800 clamp(2.2rem, 4vw, 4.5rem)/1 Manrope, sans-serif; letter-spacing: -0.06em; }
.proof-strip strong span { margin-left: 2px; color: #d7c18e; font-size: 0.48em; }
.proof-strip p { margin: 12px 0 0; color: #c9c7c1; font-size: 0.9rem; }

.conversion-bar {
  padding: 34px clamp(24px, 7vw, 112px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border-bottom: 1px solid var(--line);
  background: var(--green-soft);
}
.conversion-bar div { display: flex; flex-direction: column; gap: 4px; }
.conversion-bar span { color: var(--green); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.conversion-bar strong { font: 600 clamp(1.05rem, 1.7vw, 1.45rem) Manrope, sans-serif; letter-spacing: -0.025em; }

.problem-grid {
  margin: 24px 0 80px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 90px;
}
.problem h2,
.experience h2,
.method h2 { font-size: clamp(2.2rem, 4.4vw, 5.2rem); line-height: 1.04; }
.problem h2 span,
.experience h2 span { color: var(--green); }
.problem-copy { color: #3f3f3a; font-size: 1.1rem; }
.problem-copy p:first-child { margin-top: 4px; }
.services { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--ink); }
.services article { padding: 30px 26px 20px; border-right: 1px solid var(--line); }
.services article:first-child { padding-left: 0; }
.services article:last-child { border-right: 0; }
.services article > span { color: var(--green); font: 700 0.75rem Manrope; }
.services h3 { margin: 34px 0 13px; font-size: 1.35rem; }
.services p { color: var(--muted); font-size: 0.94rem; }

.section-cta {
  margin-top: 64px;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}
.section-cta p { margin: 0; color: var(--muted); }
.section-cta p strong { color: var(--ink); font: 600 1.1rem Manrope, sans-serif; }
.section-cta.compact { margin-top: 52px; }

.method {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(60px, 9vw, 150px);
  background: var(--green);
  color: white;
}
.section-kicker.light { color: #d8ebdf; }
.method h2 { margin: 22px 0; }
.method h2 span { color: #c8e0d3; }
.method-intro > p { max-width: 520px; color: #c5c2bb; font-size: 1.05rem; }
.steps { margin: 0; padding: 0; list-style: none; }
.steps li { padding: 28px 0; display: grid; grid-template-columns: 70px 1fr; gap: 20px; border-bottom: 1px solid rgba(255,255,255,0.18); }
.steps li:first-child { padding-top: 0; }
.steps li > span { padding-top: 6px; color: #c8e0d3; font: 700 0.75rem Manrope; }
.steps h3 { font-size: 1.5rem; }
.steps p { margin: 7px 0 0; color: #c5c2bb; }
.method-cta {
  grid-column: 1 / -1;
  margin-top: 6px;
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.method-cta p { max-width: 600px; margin: 0; color: #c5c2bb; }
.method-cta a { color: white; font-weight: 700; text-underline-offset: 5px; white-space: nowrap; }

.experience-head {
  margin-bottom: 80px;
  display: grid;
  grid-template-columns: 1.15fr 0.65fr;
  gap: 80px;
  align-items: end;
}
.experience-head h2 { margin-top: 22px; }
.experience-head > p { color: #3f3f3a; font-size: 1.08rem; }
.timeline { border-top: 1px solid var(--ink); }
.timeline article { padding: 28px 0; display: grid; grid-template-columns: 110px 1fr auto; gap: 35px; align-items: center; border-bottom: 1px solid var(--line); }
.timeline time { color: var(--green); font: 700 0.77rem Manrope; }
.timeline h3 { font-size: 1.18rem; letter-spacing: -0.025em; }
.timeline p { margin: 4px 0 0; color: var(--muted); }
.timeline strong { padding: 9px 13px; background: #e9e3d8; font: 700 0.94rem Manrope; }

.fit { padding-top: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.fit-card { padding: clamp(32px, 4vw, 60px); border: 1px solid var(--ink); }
.fit-yes { background: var(--green-soft); }
.fit-no { background: #e7e5df; }
.fit-card > span { font: 700 0.72rem Manrope; letter-spacing: 0.13em; text-transform: uppercase; }
.fit-card h2 { margin: 24px 0 30px; font-size: clamp(1.8rem, 3vw, 3.2rem); line-height: 1.05; }
.fit-card ul { margin: 0; padding: 0; list-style: none; }
.fit-card li { position: relative; padding: 13px 0 13px 30px; border-top: 1px solid rgba(17,17,15,0.18); }
.fit-card li::before { content: "→"; position: absolute; left: 0; font-weight: 700; }
.fit-no li::before { content: "—"; }

.final-cta { background: #123b30; color: white; text-align: center; }
.final-cta .eyebrow { justify-content: center; color: #d7c18e; }
.final-cta h2 { max-width: 1100px; margin: 30px auto; font-size: clamp(2.6rem, 6vw, 7rem); line-height: 0.98; }
.final-cta > p:not(.eyebrow) { max-width: 620px; margin: 0 auto; color: #c5c2bb; font-size: 1.12rem; }
.cta-row { margin-top: 40px; display: flex; align-items: center; justify-content: center; gap: 32px; }
.final-cta .btn-primary { background: white; border-color: white; color: var(--green); }
.final-cta .contact-link { color: white; }

footer {
  padding: 34px clamp(24px, 7vw, 112px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
}
footer p { color: var(--muted); font-size: 0.85rem; }
footer div { display: flex; gap: 24px; }
.mobile-cta { display: none; }

@media (max-width: 980px) {
  .site-header nav { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 65px; }
  .hero-visual { width: min(78%, 350px); margin-top: 25px; justify-self: center; }
  .proof-strip { grid-template-columns: 1fr 1fr; gap: 35px; }
  .proof-strip article:nth-child(3) { padding-left: 0; border-left: 0; }
  .problem-grid,
  .method,
  .experience-head { grid-template-columns: 1fr; gap: 35px; }
  .services { grid-template-columns: 1fr 1fr; }
  .services article:nth-child(2) { border-right: 0; }
  .services article:nth-child(3) { padding-left: 0; }
  .timeline article { grid-template-columns: 90px 1fr; }
  .timeline strong { grid-column: 2; }
  .fit { grid-template-columns: 1fr; }
  .conversion-bar,
  .section-cta,
  .method-cta { align-items: flex-start; flex-direction: column; }
  .method-cta { grid-column: auto; }
}

@media (max-width: 620px) {
  body { padding-bottom: 64px; }
  .site-header { position: relative; height: 70px; }
  .site-header .btn-small { display: none; }
  .hero { min-height: auto; padding-top: 55px; }
  .hero-actions,
  .cta-row { align-items: flex-start; flex-direction: column; }
  .hero-visual { width: 76%; max-width: 310px; }
  .photo-tag { top: 16px; right: -8px; padding: 12px 14px; font-size: 0.9rem; }
  .proof-strip { padding-top: 30px; padding-bottom: 30px; grid-template-columns: 1fr; }
  .proof-strip article { padding: 24px 0; border-top: 1px solid rgba(255,255,255,0.2); border-left: 0; }
  .proof-strip article:first-child { border-top: 0; }
  .conversion-bar { padding-top: 28px; padding-bottom: 28px; }
  .conversion-bar .btn,
  .section-cta .btn { width: 100%; }
  .services { grid-template-columns: 1fr; }
  .services article { padding: 26px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .timeline article { grid-template-columns: 1fr; gap: 8px; }
  .timeline strong { grid-column: 1; justify-self: start; }
  .fit { padding-right: 14px; padding-left: 14px; }
  footer { align-items: flex-start; flex-direction: column; gap: 12px; }
  footer p { margin: 0; }
  .mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
    height: 64px;
    padding: 8px;
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    gap: 8px;
    border-top: 1px solid var(--line);
    background: white;
  }
  .mobile-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--ink);
    color: var(--ink);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
  }
  .mobile-cta a:last-child { background: var(--ink); color: white; }
}
