:root {
  --bg: #f4f1e8;
  --paper: #f8f6ef;
  --ink: #1d1f1b;
  --muted: #6d7067;
  --line: rgba(29, 31, 27, 0.13);
  --green: #59684c;
  --green-dark: #44513a;
  --dark: #1b1d19;
  --white: #f8f6ef;
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; }
.container { width: min(1320px, calc(100% - 48px)); margin: 0 auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

.grid-bg {
  background-image:
    linear-gradient(to right, rgba(29,31,27,.07) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(29,31,27,.07) 1px, transparent 1px);
  background-size: 80px 80px;
}

.site-header {
  min-height: 116px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 22px 3.6vw;
  border-bottom: 1px solid var(--line);
  background: rgba(248,246,239,.96);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
}

.brand { display: inline-flex; align-items: center; gap: 16px; }
.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 5px;
  align-items: center;
  justify-items: center;
}
.brand-mark span { width: 1px; height: 11px; background: #767a70; position: relative; }
.brand-mark span::after { content:""; width: 11px; height: 1px; background: #767a70; position:absolute; left:-5px; top:5px; }
.brand-mark i { width: 8px; height: 8px; border-radius: 50%; background: var(--green); display:block; }
.brand-type { display:flex; flex-direction:column; line-height:1; }
.brand-type strong { font-size: 2.1rem; letter-spacing: .16em; font-weight: 500; }
.brand-type small { font-size:.72rem; letter-spacing:.55em; margin-top:7px; padding-left:5px; }

.site-nav { display:flex; justify-content:flex-end; gap:34px; align-items:center; }
.site-nav a { font-size:.96rem; transition:.2s ease; }
.site-nav a:hover { color:var(--green); }
.header-cta { margin-left:4px; }
.menu-toggle { display:none; border:0; background:transparent; padding:10px; }
.menu-toggle span:not(.sr-only) { display:block; width:28px; height:1px; background:var(--ink); margin:7px 0; }

.button {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:24px;
  min-height:58px;
  padding:0 30px;
  border-radius:4px;
  border:1px solid transparent;
  font-weight:500;
  transition:.25s ease;
}
.button-dark { background:var(--green-dark); color:var(--white); }
.button-dark:hover { background:var(--ink); transform:translateY(-2px); }
.button-outline { border-color:var(--green-dark); color:var(--green-dark); background:rgba(255,255,255,.15); }
.button-outline:hover { background:var(--green-dark); color:var(--white); }
.button-light { background:var(--white); color:var(--ink); }
.button-light:hover { background:#fff; transform:translateY(-2px); }

.hero { min-height: 650px; padding: 84px 0 72px; display:flex; align-items:center; border-bottom:1px solid var(--line); }

.hero-layout {
  display:grid;
  grid-template-columns:minmax(0, 1.12fr) minmax(360px, .88fr);
  gap:70px;
  align-items:center;
}
.hero-main { min-width:0; }
.hero-system {
  align-self:stretch;
  min-height:540px;
  border-left:1px solid var(--line);
  border-right:1px solid var(--line);
  background:rgba(248,246,239,.52);
  display:flex;
  flex-direction:column;
}
.system-topline {
  min-height:62px;
  padding:0 24px;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  display:flex;
  align-items:center;
  justify-content:space-between;
  text-transform:uppercase;
  letter-spacing:.13em;
  font-size:.69rem;
  color:var(--muted);
}
.system-status {
  display:flex;
  align-items:center;
  gap:8px;
  color:var(--green-dark);
}
.system-status i {
  width:7px;
  height:7px;
  border-radius:50%;
  background:rgba(89,104,76,.9);
  display:block;
}

.clarity-system {
  min-height:500px;
}
.clarity-visual {
  position:relative;
  flex:1;
  min-height:360px;
  display:grid;
  place-items:center;
  overflow:hidden;
}
.clarity-ring {
  position:absolute;
  border:1px solid rgba(29,31,27,.11);
  border-radius:50%;
}
.ring-outer {
  width:78%;
  aspect-ratio:1;
}
.ring-middle {
  width:56%;
  aspect-ratio:1;
}
.ring-inner {
  width:30%;
  aspect-ratio:1;
}
.clarity-center {
  z-index:3;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
}
.clarity-center i {
  width:9px;
  height:9px;
  border-radius:50%;
  background:var(--green);
  margin-bottom:12px;
}
.clarity-center strong {
  font-family:var(--serif);
  font-size:2.65rem;
  line-height:1;
  font-weight:400;
}
.clarity-center small {
  margin-top:8px;
  color:var(--muted);
  font-size:.72rem;
  text-transform:uppercase;
  letter-spacing:.14em;
}
.clarity-label {
  position:absolute;
  z-index:2;
  background:var(--paper);
  padding:6px 10px;
  color:var(--muted);
  font-size:.68rem;
  text-transform:uppercase;
  letter-spacing:.14em;
}
.label-top {
  top:9%;
  left:50%;
  transform:translateX(-50%);
}
.label-right {
  right:2%;
  top:50%;
  transform:translateY(-50%);
}
.label-bottom {
  bottom:8%;
  left:50%;
  transform:translateX(-50%);
}
.label-left {
  left:2%;
  top:50%;
  transform:translateY(-50%);
}
.clarity-outcomes {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  border-top:1px solid var(--line);
}
.clarity-outcomes > div {
  min-height:108px;
  padding:18px 20px;
  border-right:1px solid var(--line);
}
.clarity-outcomes > div:last-child {
  border-right:0;
}
.clarity-outcomes span {
  color:#969a91;
  font-size:.68rem;
  letter-spacing:.12em;
}
.clarity-outcomes p {
  margin:10px 0 0;
  font-size:.76rem;
  line-height:1.4;
}


.eyebrow {
  margin:0 0 28px;
  text-transform:uppercase;
  letter-spacing:.23em;
  font-size:.87rem;
  color:var(--green-dark);
  font-weight:500;
}
.eyebrow.small { font-size:.75rem; margin:0; }
.eyebrow.light { color:#b9c1af; }
.hero h1 {
  font-family:var(--serif);
  font-weight:400;
  font-size:clamp(5.3rem, 8.5vw, 9.7rem);
  line-height:.82;
  letter-spacing:-.045em;
  margin:0;
  max-width:1050px;
}
.accent-dot { color:var(--green); }
.hero-copy {
  max-width:690px;
  font-size:1.45rem;
  margin:44px 0 32px;
  line-height:1.45;
}
.hero-actions { display:flex; gap:20px; flex-wrap:wrap; }

.trust-strip { border-bottom:1px solid var(--line); background:var(--paper); }
.trust-row { min-height:102px; display:grid; grid-template-columns:280px 1fr; align-items:center; gap:36px; }
.logos { display:grid; grid-template-columns:repeat(5,1fr); align-items:center; text-align:center; gap:25px; color:#878a82; }
.logos span { font-size:1.1rem; letter-spacing:.15em; font-weight:500; }
.logos small { display:block; font-size:.55rem; letter-spacing:.25em; margin-top:4px; }

.section { padding:120px 0; }
.intro-section { border-bottom:1px solid var(--line); }
.intro-grid { display:grid; grid-template-columns:.9fr 1.4fr; gap:90px; align-items:start; }
h2 {
  font-family:var(--serif);
  font-weight:400;
  letter-spacing:-.025em;
  line-height:.96;
  font-size:clamp(3.1rem,5.2vw,6rem);
  margin:0;
}
h2 em { color:var(--green); font-weight:400; }
.benefit-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:42px; padding-top:40px; }
.benefit h3, .solution-card h3, .offer-card h3, .method-steps h3, .insight-grid h3 { font-weight:500; margin:18px 0 10px; }
.benefit h3 { font-size:1.2rem; }
.benefit p { color:var(--muted); margin:0; }
.icon-box { width:50px; height:50px; background:rgba(89,104,76,.08); display:grid; place-items:center; font-size:1.6rem; color:var(--green-dark); border-radius:4px; }

.dark-section { background:var(--dark); color:var(--white); }
.section-heading { margin-bottom:64px; }
.split-heading { display:grid; grid-template-columns:1.25fr .75fr; gap:80px; align-items:end; }
.split-heading > p { color:#b9bdb4; font-size:1.1rem; max-width:520px; margin:0 0 5px; }
.solution-grid { display:grid; grid-template-columns:repeat(2,1fr); border-top:1px solid rgba(255,255,255,.16); border-left:1px solid rgba(255,255,255,.16); }
.solution-card { padding:48px; border-right:1px solid rgba(255,255,255,.16); border-bottom:1px solid rgba(255,255,255,.16); min-height:390px; }
.card-number { color:#899181; font-size:.85rem; letter-spacing:.18em; }
.solution-card h3 { font-family:var(--serif); font-size:2.6rem; }
.solution-card p { color:#b9bdb4; max-width:560px; }
.solution-card ul { list-style:none; margin:30px 0 0; padding:0; display:grid; gap:10px; }
.solution-card li::before { content:"—"; margin-right:10px; color:#8d997f; }

.method-section { background:var(--paper); border-bottom:1px solid var(--line); }
.method-grid { display:grid; grid-template-columns:.8fr 1.2fr; gap:120px; align-items:start; }
.sticky-copy { position:sticky; top:160px; }
.sticky-copy > p:last-child { color:var(--muted); font-size:1.08rem; max-width:480px; margin-top:32px; }
.method-steps article {
  display:grid;
  grid-template-columns:80px 1fr;
  gap:34px;
  padding:35px 0;
  border-top:1px solid var(--line);
}
.method-steps article:last-child { border-bottom:1px solid var(--line); }
.method-steps > article > span { color:#9a9c95; letter-spacing:.12em; }
.method-steps h3 { font-family:var(--serif); font-size:2.7rem; margin:0 0 8px; }
.method-steps p { color:var(--muted); margin:0; font-size:1.07rem; }

.offers-section { border-bottom:1px solid var(--line); }
.offer-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.offer-card { border:1px solid var(--line); padding:38px; background:rgba(248,246,239,.8); min-height:460px; display:flex; flex-direction:column; }
.offer-card.featured { background:var(--green-dark); color:var(--white); }
.offer-label { text-transform:uppercase; letter-spacing:.15em; font-size:.75rem; color:#878b82; }
.featured .offer-label { color:#bec6b7; }
.offer-card h3 { font-family:var(--serif); font-size:2.8rem; margin:28px 0 18px; }
.offer-card > p:not(.offer-label) { color:var(--muted); }
.featured > p:not(.offer-label) { color:#d3d8ce; }
.offer-outcome { border-top:1px solid var(--line); border-bottom:1px solid var(--line); padding:18px 0; margin:28px 0; font-size:.92rem; }
.featured .offer-outcome { border-color:rgba(255,255,255,.22); }
.offer-card a { margin-top:auto; font-weight:500; display:flex; justify-content:space-between; }

.about-section { background:var(--paper); }
.about-grid { display:grid; grid-template-columns:1.15fr .85fr; gap:100px; align-items:center; }
.about-copy > p:not(.eyebrow) { max-width:720px; color:var(--muted); font-size:1.12rem; }

.transformation {
  border:1px solid var(--line);
  background:rgba(244,241,232,.5);
  display:grid;
  grid-template-columns:1fr 54px 1fr;
  position:relative;
}
.transformation-header {
  grid-column:1 / -1;
  min-height:62px;
  border-bottom:1px solid var(--line);
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 24px;
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:.7rem;
  color:var(--muted);
}
.transformation-column {
  padding:28px;
  min-height:500px;
}
.before-column { background:rgba(29,31,27,.025); }
.after-column { background:rgba(89,104,76,.06); }
.transformation-label {
  margin:0 0 30px;
  text-transform:uppercase;
  letter-spacing:.17em;
  font-size:.72rem;
  color:var(--green-dark);
  font-weight:500;
}
.flow-step {
  border:1px solid var(--line);
  background:rgba(248,246,239,.78);
  padding:20px;
  min-height:112px;
}
.flow-step span {
  display:block;
  color:#94988f;
  letter-spacing:.12em;
  font-size:.68rem;
  margin-bottom:10px;
}
.flow-step p {
  margin:0;
  font-size:.94rem;
  line-height:1.45;
}
.flow-connector {
  width:1px;
  height:24px;
  background:var(--line);
  margin:0 auto;
}
.transformation-divider {
  border-left:1px solid var(--line);
  border-right:1px solid var(--line);
  display:grid;
  place-items:center;
  color:var(--green-dark);
}
.transformation-divider span {
  width:32px;
  height:32px;
  border:1px solid var(--line);
  background:var(--paper);
  border-radius:50%;
  display:grid;
  place-items:center;
}


.contact-section { padding:0 0 60px; background:var(--paper); }
.contact-panel { background:var(--green-dark); color:var(--white); padding:70px; display:grid; grid-template-columns:1fr auto; align-items:end; gap:60px; }
.contact-panel h2 { max-width:850px; }
.contact-panel p:not(.eyebrow) { color:#d4d9d0; max-width:650px; font-size:1.1rem; margin-top:26px; }

.site-footer { background:var(--dark); color:var(--white); padding:80px 0 28px; }
.footer-grid { display:grid; grid-template-columns:1.5fr repeat(3,1fr); gap:50px; }
.footer-grid > div { display:flex; flex-direction:column; gap:12px; }
.footer-grid > div:first-child { max-width:320px; }
.footer-grid a { color:#c0c4bc; font-size:.95rem; }
.footer-grid a:hover { color:var(--white); }
.footer-grid > div:first-child p { color:#92978e; }
.footer-heading { text-transform:uppercase; letter-spacing:.16em; font-size:.72rem; color:#80857c; margin:0 0 10px; }
.footer-brand .brand-type strong { font-size:1.6rem; }
.footer-brand .brand-mark { transform:scale(.8); transform-origin:left center; }
.footer-bottom { display:flex; justify-content:space-between; margin-top:70px; padding-top:24px; border-top:1px solid rgba(255,255,255,.13); color:#7e837a; font-size:.82rem; }

@media (max-width: 1100px) {
  .site-header { grid-template-columns:auto auto; justify-content:space-between; }
  .site-nav {
    display:none;
    position:absolute;
    top:100%;
    left:0;
    right:0;
    background:var(--paper);
    flex-direction:column;
    align-items:flex-start;
    padding:28px 24px 36px;
    border-bottom:1px solid var(--line);
  }
  .site-nav.open { display:flex; }
  .header-cta { display:none; }
  .menu-toggle { display:block; }
  .trust-row { grid-template-columns:1fr; padding:28px 0; }
  .logos { grid-template-columns:repeat(3,1fr); }
  .hero-layout { grid-template-columns:1fr; gap:48px; }
  .hero-system { min-height:470px; border-top:1px solid var(--line); }
  .intro-grid, .method-grid, .about-grid { grid-template-columns:1fr; gap:60px; }
  .transformation { max-width:900px; }
  .sticky-copy { position:static; }
  .benefit-grid { padding-top:0; }
}

@media (max-width: 780px) {
  .container { width:min(100% - 30px, 1320px); }
  .site-header { min-height:88px; padding:16px 18px; }
  .brand-type strong { font-size:1.45rem; }
  .brand-type small { font-size:.55rem; }
  .brand-mark { width:38px; height:38px; }
  .hero { min-height:auto; padding:70px 0 60px; }
  .hero-layout { gap:38px; }
  .hero-system { min-height:auto; }
  .hero h1 { font-size:clamp(4rem, 17vw, 6.4rem); line-height:.88; }
  .hero-copy { font-size:1.16rem; margin-top:32px; }
  .button { width:100%; min-height:54px; }
  .logos { grid-template-columns:repeat(2,1fr); row-gap:28px; }
  .section { padding:82px 0; }
  .benefit-grid, .offer-grid, .solution-grid, .insight-grid { grid-template-columns:1fr; }
  .solution-grid, .insight-grid { border-left:0; }
  .solution-card, .insight-grid article { border-left:1px solid rgba(255,255,255,.16); }
  .insight-grid article { border-left-color:var(--line); }
  .split-heading { grid-template-columns:1fr; gap:28px; }
  .method-steps article { grid-template-columns:48px 1fr; gap:18px; }
  .contact-panel { padding:46px 28px; grid-template-columns:1fr; gap:35px; }
  .transformation { grid-template-columns:1fr; }
  .transformation-header { grid-column:1; }
  .transformation-divider {
    min-height:54px;
    border-left:0;
    border-right:0;
    border-top:1px solid var(--line);
    border-bottom:1px solid var(--line);
  }
  .transformation-divider span { transform:rotate(90deg); }
  .transformation-column { min-height:auto; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .footer-grid > div:first-child { grid-column:1 / -1; }
}

@media (max-width: 520px) {
  .grid-bg { background-size:52px 52px; }
  .eyebrow { font-size:.72rem; letter-spacing:.17em; }
  .hero h1 { font-size:3.9rem; }
  h2 { font-size:3.1rem; }
  .benefit-grid { grid-template-columns:1fr; }
  .logos { grid-template-columns:1fr 1fr; }
  .solution-card, .offer-card { padding:28px; min-height:auto; }
  .hero-system { min-height:auto; }
  .system-footer span:last-child { border-bottom:0; }
  .system-metrics { grid-template-columns:1fr; }
  .system-metrics > div { min-height:auto; border-right:0; border-bottom:1px solid var(--line); }
  .system-metrics > div:last-child { border-bottom:0; }
  .diagram { margin-top:20px; }
  .footer-grid { grid-template-columns:1fr; }
  .footer-grid > div:first-child { grid-column:auto; }
  .footer-bottom { flex-direction:column; gap:10px; }
}


.clarity-outcomes p{
max-width:170px;
font-weight:500;
}
