:root {
  --ink: #16231d;
  --muted: #59645f;
  --green: #193f32;
  --green-deep: #102e25;
  --sage: #9eb7a8;
  --cream: #f4f0e8;
  --paper: #fbfaf7;
  --gold: #b9894d;
  --line: rgba(22, 35, 29, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }

.site-header {
  align-items: center;
  backdrop-filter: blur(12px);
  background: rgba(251, 250, 247, 0.94);
  border-bottom: 1px solid var(--line);
  display: flex;
  height: 84px;
  justify-content: space-between;
  padding: 0 5vw;
  position: sticky;
  top: 0;
  z-index: 20;
}

.brand { align-items: center; display: inline-flex; gap: 12px; }
.brand-logo {
  background: #f7f3ec;
  display: block;
  height: 48px;
  overflow: hidden;
  position: relative;
  width: 48px;
}
.brand-logo img {
  display: block;
  max-width: none;
  position: absolute;
  transform: translate(-58px, -7px);
  width: 166px;
}
.brand-copy { display: flex; flex-direction: column; line-height: 1; }
.brand-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 600;
}
.brand-copy small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.19em;
  margin-top: 6px;
  text-transform: uppercase;
}
.main-nav { align-items: center; display: flex; gap: 30px; font-size: 13px; font-weight: 700; }
.main-nav > a:not(.nav-cta) { border-bottom: 1px solid transparent; padding: 9px 0; }
.main-nav > a:not(.nav-cta):hover,
.main-nav > a:not(.nav-cta):focus-visible { border-color: var(--green); }
.nav-cta { background: var(--green); color: white; padding: 13px 20px; }

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: calc(100vh - 84px);
  overflow: hidden;
}
.hero-copy { align-self: center; padding: 90px 6vw 90px 9vw; }
.eyebrow {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  margin: 0 0 24px;
  text-transform: uppercase;
}
.eyebrow.light { color: #d0b182; }
.hero h1, .section h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.04em;
  margin: 0;
}
.hero h1 { font-size: clamp(50px, 6.1vw, 90px); line-height: 0.98; }
.hero h1 em { color: var(--green); font-weight: 400; }
.hero-summary {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
  margin: 34px 0 36px;
  max-width: 620px;
}
.hero-actions { align-items: center; display: flex; flex-wrap: wrap; gap: 25px; }
.button {
  align-items: center;
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  justify-content: center;
  letter-spacing: 0.08em;
  min-height: 52px;
  padding: 0 25px;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-primary { background: var(--green); color: white; }
.button-primary:hover, .button-primary:focus-visible { background: var(--green-deep); }
.text-link { color: var(--muted); font-size: 13px; }
.text-link span { border-bottom: 1px solid var(--green); color: var(--green); font-weight: 700; padding-bottom: 4px; }

.hero-visual { background: var(--cream); min-height: 680px; overflow: hidden; position: relative; }
.hero-visual::before {
  background-image: linear-gradient(rgba(25, 63, 50, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(25, 63, 50, 0.07) 1px, transparent 1px);
  background-size: 54px 54px;
  content: "";
  inset: 0;
  position: absolute;
}
.visual-orbit { border: 1px solid rgba(185, 137, 77, 0.45); border-radius: 50%; position: absolute; }
.visual-orbit-one { height: 570px; right: -170px; top: 70px; width: 570px; }
.visual-orbit-two { bottom: -150px; height: 430px; left: -170px; width: 430px; }
.ledger-card { background: rgba(255, 255, 255, 0.96); box-shadow: 0 28px 70px rgba(22, 35, 29, 0.14); position: absolute; }
.ledger-card-main { left: 12%; padding: 42px; right: 12%; top: 22%; }
.ledger-card-main > p { color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: 0.18em; margin: 0 0 28px; }
.ledger-line { border-bottom: 1px solid var(--line); display: flex; font-size: 13px; justify-content: space-between; padding: 14px 0; }
.ledger-line span { color: var(--muted); }
.ledger-line strong { color: var(--green); font-size: 12px; }
.ledger-chart { align-items: flex-end; display: flex; gap: 8px; height: 80px; margin-top: 30px; }
.ledger-chart i { background: var(--sage); display: block; flex: 1; }
.ledger-chart i:nth-child(1) { height: 36%; }
.ledger-chart i:nth-child(2) { height: 52%; }
.ledger-chart i:nth-child(3) { height: 46%; }
.ledger-chart i:nth-child(4) { height: 72%; }
.ledger-chart i:nth-child(5) { background: var(--green); height: 92%; }
.ledger-card-note { align-items: center; bottom: 17%; display: flex; gap: 13px; left: 6%; padding: 20px 24px; }
.ledger-card-note div { display: flex; flex-direction: column; }
.ledger-card-note strong { font-family: Georgia, "Times New Roman", serif; font-size: 15px; }
.ledger-card-note small { color: var(--muted); font-size: 10px; margin-top: 5px; }
.status-dot { background: var(--gold); border-radius: 50%; height: 10px; width: 10px; }

.trust-strip {
  align-items: center;
  background: var(--green);
  color: white;
  display: grid;
  font-size: 11px;
  font-weight: 700;
  grid-template-columns: repeat(4, 1fr);
  letter-spacing: 0.1em;
  min-height: 76px;
  padding: 0 7vw;
  text-align: center;
  text-transform: uppercase;
}
.trust-strip span + span { border-left: 1px solid rgba(255, 255, 255, 0.25); }
.section { padding: 120px 8vw; }
.section-heading h2 { font-size: clamp(42px, 4.8vw, 69px); line-height: 1.06; }
.two-column-heading, .services-heading { align-items: end; display: grid; gap: 8vw; grid-template-columns: 1fr 0.85fr; }
.section-heading > p:last-child { color: var(--muted); font-size: 16px; line-height: 1.8; margin: 0; }

.outcome-grid {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 80px;
}
.outcome-grid article { min-height: 290px; padding: 38px; }
.outcome-grid article + article { border-left: 1px solid var(--line); }
.outcome-grid span, .service-item > span { color: var(--gold); font-size: 11px; font-weight: 800; letter-spacing: 0.12em; }
.outcome-grid h3, .service-item h3, .process-grid h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.2;
  margin: 58px 0 15px;
}
.outcome-grid p, .service-item p, .process-grid p { color: var(--muted); font-size: 14px; line-height: 1.75; margin: 0; }

.services { background: var(--green-deep); color: white; }
.services-heading > p:last-child { color: rgba(255, 255, 255, 0.68); }
.service-list { border-top: 1px solid rgba(255, 255, 255, 0.18); display: grid; grid-template-columns: repeat(2, 1fr); margin-top: 75px; }
.service-item { display: grid; gap: 20px; grid-template-columns: 45px 0.7fr 1fr; min-height: 180px; padding: 35px 20px 35px 0; }
.service-item:nth-child(even) { border-left: 1px solid rgba(255, 255, 255, 0.18); padding-left: 38px; }
.service-item:nth-child(n + 3) { border-top: 1px solid rgba(255, 255, 255, 0.18); }
.service-item h3 { color: white; font-size: 22px; margin: 0; }
.service-item p { color: rgba(255, 255, 255, 0.66); }

.centered-heading { margin: 0 auto; max-width: 780px; text-align: center; }
.centered-heading > p:last-child { margin: 24px auto 0; max-width: 650px; }
.process-grid { display: grid; gap: 20px; grid-template-columns: repeat(4, 1fr); margin-top: 80px; }
.process-grid article { background: white; border: 1px solid var(--line); min-height: 310px; padding: 32px; position: relative; }
.process-grid article::after { background: var(--gold); bottom: -1px; content: ""; height: 4px; left: -1px; position: absolute; transition: width 200ms ease; width: 44px; }
.process-grid article:hover::after { width: calc(100% + 2px); }
.process-grid article > span {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--green);
  display: flex;
  font-family: Georgia, "Times New Roman", serif;
  height: 40px;
  justify-content: center;
  width: 40px;
}
.process-grid h3 { font-size: 21px; margin-top: 54px; }

.about { background: var(--cream); }
.about-card { display: grid; grid-template-columns: 0.8fr 1.2fr; margin: 0 auto; max-width: 1240px; }
.about-portrait {
  background: #d8cec1;
  min-height: 550px;
  overflow: hidden;
  position: relative;
}
.about-portrait img { height: 100%; inset: 0; object-fit: contain; object-position: center 20%; position: absolute; width: 100%; }
.about-copy { background: white; padding: 70px; }
.about-copy h2 { font-size: clamp(40px, 4vw, 60px); }
.about-copy > p:not(.eyebrow) { color: var(--muted); font-size: 15px; line-height: 1.85; margin: 24px 0 0; }
.about-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 35px; }
.about-tags span { border: 1px solid var(--line); color: var(--green); font-size: 10px; font-weight: 800; letter-spacing: 0.08em; padding: 10px 12px; text-transform: uppercase; }

.contact { display: grid; gap: 8vw; grid-template-columns: 0.8fr 1.2fr; }
.contact-intro h2 { font-size: clamp(44px, 5vw, 72px); }
.contact-intro > p:not(.eyebrow) { color: var(--muted); font-size: 15px; line-height: 1.8; margin: 25px 0 34px; max-width: 520px; }
.contact-panel { border-top: 1px solid var(--ink); }
.contact-row { align-items: flex-start; border-bottom: 1px solid var(--line); display: grid; gap: 25px; grid-template-columns: 110px 1fr; padding: 25px 8px; }
.contact-row > span { color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.contact-row a, .contact-row strong { font-family: Georgia, "Times New Roman", serif; font-size: 18px; font-weight: 500; overflow-wrap: anywhere; }
footer { align-items: center; background: #0c221b; color: white; display: grid; gap: 35px; grid-template-columns: 1fr 1fr 1fr; padding: 52px 6vw; }
.footer-brand .brand-logo { background: #f7f3ec; }
.footer-brand .brand-copy small { color: rgba(255, 255, 255, 0.6); }
footer > p { color: rgba(255, 255, 255, 0.58); font-size: 11px; line-height: 1.6; margin: 0; text-align: center; }
footer > p:last-child { text-align: right; }

@keyframes hero-slide-left {
  from { opacity: 0; transform: translate3d(-48px, 0, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes hero-slide-right {
  from { opacity: 0; transform: translate3d(48px, 0, 0) scale(0.985); }
  to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}

@keyframes note-float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -8px, 0); }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-enter-left {
    animation: hero-slide-left 900ms cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .hero-enter-right {
    animation: hero-slide-right 1000ms 120ms cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .ledger-card-note {
    animation: note-float 5s 1.2s ease-in-out infinite;
  }

  .motion-ready .scroll-reveal {
    opacity: 0;
    transform: translate3d(0, 56px, 0);
    transition: opacity 850ms cubic-bezier(0.16, 1, 0.3, 1),
      transform 850ms cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
  }

  .motion-ready .scroll-reveal.reveal-left { transform: translate3d(-56px, 0, 0); }
  .motion-ready .scroll-reveal.reveal-right { transform: translate3d(56px, 0, 0); }

  .motion-ready .scroll-reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  .motion-ready .stagger-reveal > * {
    opacity: 0;
    transform: translate3d(0, 38px, 0);
    transition: opacity 720ms cubic-bezier(0.16, 1, 0.3, 1),
      transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
  }

  .motion-ready .stagger-reveal.is-visible > * {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  .motion-ready .stagger-reveal.is-visible > *:nth-child(2) { transition-delay: 90ms; }
  .motion-ready .stagger-reveal.is-visible > *:nth-child(3) { transition-delay: 180ms; }
  .motion-ready .stagger-reveal.is-visible > *:nth-child(4) { transition-delay: 270ms; }
  .motion-ready .stagger-reveal.is-visible > *:nth-child(5) { transition-delay: 360ms; }
  .motion-ready .stagger-reveal.is-visible > *:nth-child(6) { transition-delay: 450ms; }
}

@media (max-width: 1050px) {
  .hero { grid-template-columns: 1fr; }
  .hero-copy { padding: 100px 8vw; }
  .hero-visual { min-height: 610px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .about-card { grid-template-columns: 0.9fr 1.1fr; }
  .about-copy { padding: 50px; }
  .service-item { grid-template-columns: 35px 0.8fr 1fr; }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 70px; }
  .site-header { height: 70px; padding: 0 20px; }
  .brand-logo { height: 40px; width: 40px; }
  .brand-logo img { transform: translate(-48px, -6px); width: 138px; }
  .brand-copy strong { font-size: 18px; }
  .brand-copy small { font-size: 7px; }
  .main-nav > a:not(.nav-cta) { display: none; }
  .nav-cta { padding: 11px 15px; }
  .hero-copy { padding: 82px 22px 70px; }
  .hero h1 { font-size: clamp(45px, 15vw, 67px); }
  .hero-summary { font-size: 15px; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-visual { min-height: 520px; }
  .ledger-card-main { left: 20px; padding: 28px; right: 20px; top: 17%; }
  .ledger-card-note { bottom: 12%; left: 34px; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); padding: 18px; row-gap: 22px; }
  .trust-strip span + span { border-left: 0; }
  .section { padding: 82px 22px; }
  .two-column-heading, .services-heading, .contact { align-items: start; gap: 34px; grid-template-columns: 1fr; }
  .section-heading h2 { font-size: 42px; }
  .outcome-grid { grid-template-columns: 1fr; margin-top: 52px; }
  .outcome-grid article { min-height: auto; padding: 32px 0; }
  .outcome-grid article + article { border-left: 0; border-top: 1px solid var(--line); }
  .outcome-grid h3 { margin-top: 30px; }
  .service-list, .process-grid { grid-template-columns: 1fr; }
  .service-item, .service-item:nth-child(even) { border-left: 0; grid-template-columns: 35px 1fr; padding: 30px 0; }
  .service-item h3, .service-item p { grid-column: 2; }
  .service-item:nth-child(n + 2) { border-top: 1px solid rgba(255, 255, 255, 0.18); }
  .process-grid { margin-top: 52px; }
  .process-grid article { min-height: 280px; }
  .about-card { grid-template-columns: 1fr; }
  .about-portrait { min-height: 430px; }
  .about-copy { padding: 42px 28px; }
  .contact-row { grid-template-columns: 72px 1fr; }
  footer { align-items: start; grid-template-columns: 1fr; padding: 48px 22px; }
  footer > p, footer > p:last-child { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
  .hero-enter, .scroll-reveal, .stagger-reveal > * {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Lower the business name beside both logos */
.site-header .brand-copy,
.footer-brand .brand-copy {
  transform: translateY(10px);
}
