/* Leewood AI — global theme, from the new home page design.
   Fonts: Geist + Geist Mono (Google Fonts), Georgia for display, Arial Narrow for the hero.
   Inner-page layer lives in pages.css. */
:root{--font-geist-sans:"Geist";--font-geist-mono:"Geist Mono"}
:root {
  --bg: #eef1ec;
  --bg-elev: #e2e7e0;
  --bg-tint: #d4dcd2;
  --ink: #1a2e2b;
  --ink-deep: #0f1a19;
  --muted: #4f5c58;
  --hair: #c8d1c7;
  --moss: #3e5f5b;
  --olive: #505d2c;
  --warm-white: #f4f5f1;
  --max: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-geist-sans), "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: var(--bg);
  background:
    radial-gradient(circle at 74% 48%, rgba(62, 95, 91, 0.16), transparent 28rem),
    linear-gradient(140deg, #101f1d 0%, var(--ink-deep) 54%, #0b1716 100%);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.22;
  background-image:
    repeating-radial-gradient(ellipse at 75% 53%, transparent 0 32px, rgba(200, 209, 199, 0.07) 33px 34px, transparent 35px 44px);
  transform: rotate(-6deg) scale(1.2);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' 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)' opacity='.55'/%3E%3C/svg%3E");
}

.site-header {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(calc(100% - 64px), var(--max));
  min-height: 84px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(200, 209, 199, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  width: fit-content;
  color: var(--bg);
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: grayscale(1) brightness(2.4);
  opacity: 0.95;
}

.brand > span {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.brand strong {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.brand small {
  color: var(--hair);
  font-size: 13px;
}

.site-header nav {
  display: flex;
  gap: 34px;
}

.site-header nav a {
  position: relative;
  color: rgba(238, 241, 236, 0.78);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
}

.site-header nav a::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: -10px;
  left: 0;
  height: 1px;
  background: var(--bg-tint);
  transition: right 180ms ease;
}

.site-header nav a:hover::after,
.site-header nav a:focus-visible::after {
  right: 0;
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--bg);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.header-cta span,
.button span,
.text-link span {
  transition: transform 180ms ease;
}

.header-cta:hover span,
.button:hover span,
.text-link:hover span {
  transform: translate(3px, -3px);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  align-items: center;
  width: min(calc(100% - 128px), 1360px);
  min-height: calc(100svh - 154px);
  margin: 0 auto;
  padding: 64px 0 104px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 780px;
  animation: hero-rise 700ms cubic-bezier(.22, 1, .36, 1) both;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 30px;
  color: rgba(238, 241, 236, 0.64);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 26px;
  height: 1px;
  background: var(--moss);
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--bg);
  font-family: "Arial Narrow", "Aptos Narrow", var(--font-geist-sans), sans-serif;
  font-size: clamp(70px, 7.5vw, 118px);
  font-stretch: condensed;
  font-weight: 700;
  line-height: 0.86;
  letter-spacing: -0.068em;
}

.hero h1 em {
  display: inline-block;
  color: var(--bg-tint);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.96em;
  font-weight: 400;
  letter-spacing: -0.055em;
}

.hero-lead {
  max-width: 610px;
  margin: 34px 0 0;
  color: rgba(238, 241, 236, 0.78);
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 62px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  min-width: 332px;
  color: var(--bg);
  background: var(--moss);
}

.button-primary:hover {
  background: #4c716c;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--bg-tint);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.proof-row {
  display: flex;
  gap: 14px;
  margin-top: 42px;
}

.proof-row > span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  border: 1px solid rgba(200, 209, 199, 0.24);
  border-radius: 999px;
  color: rgba(238, 241, 236, 0.7);
  font-size: 11px;
  white-space: nowrap;
}

.proof-row i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--moss);
}

.branch-system {
  position: absolute;
  top: 1%;
  right: -1%;
  bottom: -1%;
  width: min(54vw, 820px);
  min-width: 660px;
  pointer-events: none;
}

.tree-asset {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  opacity: 0;
  transform: translateY(14px) scale(1.03);
  animation: tree-reveal 1.1s cubic-bezier(.22, 1, .36, 1) 180ms forwards;
}

.branch-label {
  position: absolute;
  right: 0;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--bg-tint);
  font-family: var(--font-geist-mono), monospace;
  text-transform: uppercase;
  opacity: 0;
  animation: label-in 450ms ease 1.55s forwards;
}

.branch-icon {
  display: grid;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(212, 220, 210, 0.42);
  border-radius: 50%;
  place-items: center;
  color: var(--bg-tint);
  background: rgba(15, 26, 25, 0.82);
}

.branch-index {
  color: var(--moss);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.branch-label strong {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
}

.label-automate { top: 23%; }
.label-connect { top: 36%; }
.label-activate { top: 48%; }
.label-grow { top: 59%; }

.hero-foot {
  position: absolute;
  right: 32px;
  bottom: 0;
  left: 32px;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 70px;
  padding: 0 30px;
  border-top: 1px solid rgba(200, 209, 199, 0.18);
  color: rgba(238, 241, 236, 0.5);
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-foot p {
  margin: 0;
}

.hero-foot span {
  color: var(--bg-tint);
}

@keyframes tree-reveal {
  from { opacity: 0; transform: translateY(14px) scale(1.03); }
  to { opacity: 0.9; transform: translateY(0) scale(1.03); }
}

@keyframes label-in {
  from { opacity: 0; transform: translateX(-8px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes hero-rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-header nav {
    display: none;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    width: min(calc(100% - 80px), 960px);
  }

  .branch-system {
    right: -22%;
    width: 70vw;
    opacity: 0.42;
  }
}

@media (max-width: 720px) {
  .site-header {
    width: calc(100% - 36px);
    min-height: 72px;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .brand small {
    display: none;
  }

  .header-cta {
    padding: 10px 13px;
    border: 1px solid rgba(200, 209, 199, 0.3);
  }

  .header-cta span {
    display: none;
  }

  .hero-inner {
    align-items: flex-start;
    width: calc(100% - 40px);
    min-height: auto;
    padding: 64px 0 130px;
  }

  .hero h1 {
    font-size: clamp(58px, 17.5vw, 88px);
    line-height: 0.89;
  }

  .hero-lead {
    margin-top: 28px;
    font-size: 17px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 22px;
  }

  .button-primary {
    min-width: 0;
    width: 100%;
  }

  .proof-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .branch-system {
    top: 26%;
    right: -58%;
    width: 145vw;
    min-width: 0;
    opacity: 0.2;
  }

  .branch-label {
    display: none;
  }

  .hero-foot {
    right: 18px;
    left: 18px;
    padding: 0;
  }

  .hero-foot p:last-child {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Shared content system */
.section-shell {
  width: min(calc(100% - 128px), 1280px);
  margin: 0 auto;
}

.section-pad {
  padding: 132px 0;
}

#services,
#process,
#why,
#contact {
  scroll-margin-top: 20px;
}

.section-kicker {
  margin: 0 0 26px;
  color: var(--moss);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section-kicker::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 1px;
  margin-right: 12px;
  background: currentColor;
  vertical-align: middle;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.46fr);
  align-items: end;
  gap: 40px;
  margin-bottom: 76px;
}

.section-heading .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: -8px;
}

.section-heading h2,
.mission h2,
.why h2,
.contact h2 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 5.3vw, 76px);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -0.05em;
}

.section-heading > p:last-child,
.section-lead,
.why-intro > p,
.contact-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

/* Mission */
.mission {
  background: var(--bg);
  border-bottom: 1px solid var(--hair);
}

.mission-grid {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: 70px;
}

.mission .section-kicker {
  margin-top: 10px;
}

.mission h2 {
  max-width: 920px;
}

.section-lead {
  max-width: 720px;
  margin-top: 34px;
  font-size: 20px;
}

/* Services */
.services {
  background:
    linear-gradient(rgba(26, 46, 43, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 46, 43, 0.025) 1px, transparent 1px),
    var(--bg-elev);
  background-size: 64px 64px;
}

.service-list {
  border-top: 1px solid var(--hair);
}

.service-item {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 170px 24px;
  align-items: start;
  gap: 34px;
  padding: 38px 16px;
  border-bottom: 1px solid var(--hair);
  color: inherit;
  text-decoration: none;
  transition: background 220ms ease, padding 220ms ease;
}

.service-item:hover {
  padding-right: 26px;
  padding-left: 26px;
  background: rgba(238, 241, 236, 0.78);
}

.service-number,
.service-outcome {
  margin: 4px 0 0;
  color: var(--moss);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-item h3 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 2.3vw, 36px);
  font-weight: 400;
  letter-spacing: -0.035em;
}

.service-item div p {
  max-width: 760px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.service-item > span {
  color: var(--moss);
  font-size: 19px;
  transition: transform 180ms ease;
}

.service-item:hover > span {
  transform: translate(4px, -4px);
}

.service-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 32px;
  padding: 24px 26px;
  color: var(--bg);
  background: var(--ink);
}

.service-cta p {
  margin: 0;
  color: var(--hair);
}

.service-cta a {
  display: inline-flex;
  gap: 18px;
  font-weight: 600;
  text-decoration: none;
}

/* Founder point of view */
.quote-band {
  position: relative;
  overflow: hidden;
  padding: 112px 0;
  color: var(--bg);
  background: var(--ink-deep);
}

.quote-rings {
  position: absolute;
  top: -90%;
  right: -15%;
  width: 860px;
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: 0.25;
  background: repeating-radial-gradient(circle, transparent 0 25px, var(--moss) 26px 27px, transparent 28px 39px);
  transform: scaleX(1.35) rotate(-12deg);
}

.quote-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 90px 1fr 200px;
  align-items: end;
  gap: 46px;
}

.quote-inner > img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  filter: grayscale(1) brightness(2.2);
  opacity: 0.72;
}

.quote-inner blockquote {
  max-width: 850px;
  margin: 0;
  color: var(--bg);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3.55vw, 52px);
  font-weight: 400;
  line-height: 1.13;
  letter-spacing: -0.035em;
}

.quote-inner > p {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 0;
  color: var(--bg);
  font-size: 13px;
}

.quote-inner > p span {
  color: rgba(238, 241, 236, 0.55);
  font-size: 11px;
}

/* Process */
.process {
  background: var(--bg);
}

.process-heading {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
}

.process-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--hair);
}

.process-list::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 0;
  width: 25%;
  height: 7px;
  border-radius: 999px;
  background: var(--moss);
  box-shadow: 320px 0 0 var(--moss), 640px 0 0 var(--olive), 960px 0 0 var(--moss);
  opacity: 0.72;
}

.process-list li {
  display: flex;
  min-height: 350px;
  padding: 36px 28px 28px;
  border-right: 1px solid var(--hair);
  flex-direction: column;
}

.process-list li:first-child {
  border-left: 1px solid var(--hair);
}

.process-list li > span {
  color: var(--moss);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
}

.process-list li > div {
  margin-top: auto;
}

.process-list h3 {
  margin: 0 0 14px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 400;
}

.process-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.process-list small {
  margin-top: 28px;
  color: var(--moss);
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

/* Why Leewood */
.why {
  background: var(--bg-tint);
}

.why-grid {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 110px;
}

.why-intro {
  position: sticky;
  top: 52px;
  align-self: start;
}

.why-intro > p:not(.section-kicker) {
  max-width: 550px;
  margin-top: 30px;
}

.button-dark {
  margin-top: 38px;
  color: var(--bg);
  background: var(--ink);
}

.button-dark:hover {
  background: var(--moss);
}

.why-points {
  border-top: 1px solid rgba(26, 46, 43, 0.18);
}

.why-points article {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 24px;
  padding: 34px 0;
  border-bottom: 1px solid rgba(26, 46, 43, 0.18);
}

.why-points article > span {
  margin-top: 5px;
  color: var(--moss);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
}

.why-points h3 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 400;
}

.why-points p {
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

/* Platform rail */
.tool-rail {
  overflow: hidden;
  padding: 22px 0;
  color: var(--hair);
  background: var(--ink);
  border-top: 1px solid rgba(238, 241, 236, 0.08);
  border-bottom: 1px solid rgba(238, 241, 236, 0.08);
}

.tool-track {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  min-width: max-content;
  padding: 0 28px;
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.tool-track i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--moss);
}

/* Contact */
.contact {
  position: relative;
  overflow: hidden;
  color: var(--bg);
  background: var(--ink-deep);
}

.contact-roots {
  position: absolute;
  top: -45%;
  left: -32%;
  width: 1000px;
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: 0.16;
  background: repeating-radial-gradient(ellipse, transparent 0 24px, var(--moss) 25px 26px, transparent 27px 38px);
  transform: rotate(23deg) scaleX(1.4);
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 110px;
  align-items: start;
}

.contact h2 {
  max-width: 600px;
  color: var(--bg);
}

.contact-copy > p:not(.section-kicker) {
  max-width: 550px;
  margin-top: 30px;
  color: rgba(238, 241, 236, 0.68);
  font-size: 18px;
}

.contact-details {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 13px;
  margin-top: 44px;
}

.contact-details a {
  display: inline-flex;
  gap: 18px;
  margin-bottom: 10px;
  color: var(--bg);
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
}

.contact-details > span {
  color: rgba(238, 241, 236, 0.52);
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-form {
  padding: 42px;
  color: var(--ink);
  background: var(--bg);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.22);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 20px;
}

.contact-form label > span {
  color: var(--muted);
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--hair);
  border-radius: 0;
  padding: 12px 0;
  color: var(--ink);
  background: transparent;
  font-size: 15px;
  line-height: 1.4;
  outline: none;
  transition: border-color 180ms ease;
}

.contact-form textarea {
  min-height: 112px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--moss);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #7a8783;
}

.form-submit {
  width: 100%;
  color: var(--bg);
  cursor: pointer;
  background: var(--moss);
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.65;
}

.form-status {
  min-height: 22px;
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.form-status.sent {
  color: var(--moss);
}

.form-status.error {
  color: #7b3f37;
}

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

/* Footer */
footer {
  color: var(--bg);
  background: #0a1211;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 60px;
  align-items: start;
  padding-top: 70px;
  padding-bottom: 70px;
}

.footer-brand img {
  filter: grayscale(1) brightness(2.2);
}

.footer-top > p {
  margin: 0;
  color: rgba(238, 241, 236, 0.6);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  line-height: 1.25;
}

.footer-top > p span {
  color: var(--bg);
  font-style: italic;
}

.footer-top > div {
  display: grid;
  gap: 13px;
}

.footer-top > div a {
  color: rgba(238, 241, 236, 0.68);
  font-size: 12px;
  text-decoration: none;
}

.footer-top > div a:hover {
  color: var(--bg);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  padding-bottom: 24px;
  border-top: 1px solid rgba(238, 241, 236, 0.11);
  color: rgba(238, 241, 236, 0.38);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-bottom p {
  margin: 0;
}

@supports (animation-timeline: view()) {
  .mission-grid,
  .section-heading,
  .quote-inner,
  .why-grid,
  .contact-grid {
    animation: section-reveal linear both;
    animation-timeline: view();
    animation-range: entry 5% cover 28%;
  }

  @keyframes section-reveal {
    from { transform: translateY(24px); }
    to { transform: translateY(0); }
  }
}

@media (max-width: 1020px) {
  .section-shell {
    width: min(calc(100% - 72px), 900px);
  }

  .section-pad {
    padding: 104px 0;
  }

  .service-item {
    grid-template-columns: 40px 1fr 24px;
  }

  .service-outcome {
    display: none;
  }

  .quote-inner {
    grid-template-columns: 64px 1fr;
  }

  .quote-inner > p {
    grid-column: 2;
  }

  .process-list {
    grid-template-columns: 1fr 1fr;
  }

  .process-list::before {
    display: none;
  }

  .process-list li:nth-child(3) {
    border-left: 1px solid var(--hair);
  }

  .why-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .why-intro {
    position: static;
  }
}

@media (max-width: 720px) {
  .section-shell {
    width: calc(100% - 40px);
  }

  .section-pad {
    padding: 82px 0;
  }

  .mission-grid,
  .section-heading {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .mission h2,
  .section-heading h2,
  .why h2,
  .contact h2 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .section-lead {
    margin-top: 26px;
    font-size: 17px;
  }

  .section-heading {
    margin-bottom: 48px;
  }

  .section-heading .section-kicker {
    margin-bottom: 0;
  }

  .service-item {
    grid-template-columns: 28px 1fr;
    gap: 18px;
    padding: 28px 0;
  }

  .service-item > span {
    display: none;
  }

  .service-item h3 {
    font-size: 27px;
  }

  .service-cta {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .quote-band {
    padding: 82px 0;
  }

  .quote-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .quote-inner > p {
    grid-column: auto;
  }

  .quote-inner blockquote {
    font-size: 31px;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .process-list li,
  .process-list li:nth-child(3) {
    min-height: 270px;
    border-right: 1px solid var(--hair);
    border-left: 1px solid var(--hair);
  }

  .why-grid,
  .contact-grid {
    gap: 56px;
  }

  .tool-track {
    justify-content: flex-start;
    animation: rail-scroll 24s linear infinite;
  }

  @keyframes rail-scroll {
    to { transform: translateX(-55%); }
  }

  .contact-form {
    padding: 28px 20px;
  }

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

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}
