:root {
  --aoa-green: #b9df13;
  --aoa-green-dark: #789604;
  --aoa-gold: #c9a441;
  --aoa-ink: #11120f;
  --aoa-text: #393b35;
  --aoa-muted: #73766d;
  --aoa-bg: #f4f5e8;
  --aoa-paper: #ffffff;
  --aoa-soft: #f5f5f2;
  --aoa-line: #dedfd6;
  --aoa-serif: Georgia, "Times New Roman", serif;
  --aoa-sans: Inter, "Avenir Next", "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 0 0, rgba(185, 223, 19, .14), transparent 38rem),
    radial-gradient(circle at 100% 100%, rgba(201, 164, 65, .14), transparent 42rem),
    var(--aoa-bg);
  color: var(--aoa-ink);
  font: 16px/1.65 var(--aoa-sans);
  overflow-x: hidden;
}
a { color: inherit; }
img { max-width: 100%; }

.site-header {
  position: absolute;
  z-index: 20;
  inset: 0 0 auto;
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 10px clamp(22px, 5vw, 78px);
}
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img {
  width: 168px;
  height: 66px;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: multiply;
}
.site-header nav ul {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.3vw, 38px);
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-header nav a {
  position: relative;
  color: #4f514a;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-decoration: none;
  text-transform: uppercase;
}
.site-header nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--aoa-green);
  transition: right .2s ease;
}
.site-header nav a:hover::after,
.site-header nav .is-active a::after { right: 0; }
.menu-toggle {
  display: none;
  border: 1px solid #cfd0c8;
  border-radius: 999px;
  background: rgba(255,255,255,.75);
  padding: 10px 15px;
  color: var(--aoa-ink);
  font: 700 10px/1 var(--aoa-sans);
  letter-spacing: .14em;
  text-transform: uppercase;
}

.home-hero {
  min-height: 940px;
  padding: 120px clamp(18px, 4vw, 64px) 64px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(12px); pointer-events: none; }
.hero-glow-left { width: 45rem; height: 45rem; left: -24rem; top: -20rem; background: rgba(185,223,19,.1); }
.hero-glow-right { width: 50rem; height: 50rem; right: -24rem; bottom: -28rem; background: rgba(201,164,65,.1); }
.hero-shell {
  position: relative;
  width: min(1320px, 100%);
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(330px, .8fr);
  gap: clamp(40px, 7vw, 110px);
  align-items: center;
  padding: clamp(42px, 6vw, 88px);
  background: rgba(255,255,255,.94);
  border-radius: 28px;
  border-bottom: 5px solid var(--aoa-gold);
  box-shadow: 0 24px 65px rgba(31, 31, 23, .12);
}
.hero-logo-panel {
  position: absolute;
  top: clamp(24px, 3vw, 42px);
  left: clamp(34px, 6vw, 88px);
  display: flex;
  align-items: center;
  gap: 28px;
}
.hero-logo-panel img { width: 220px; height: 88px; object-fit: cover; object-position: center; }
.hero-logo-panel p { margin: 0; color: var(--aoa-muted); font-size: 10px; letter-spacing: .2em; text-transform: uppercase; }
.hero-logo-panel span { color: var(--aoa-green); padding: 0 5px; }
.hero-copy { padding-top: 78px; min-width: 0; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: #66695f;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.eyebrow span { width: 9px; height: 9px; border-radius: 50%; background: var(--aoa-green); }
.hero-copy h1,
.page-hero h1,
.section-heading h2 {
  font-family: var(--aoa-serif);
  font-weight: 400;
  letter-spacing: -.045em;
}
.hero-copy h1 { max-width: 760px; margin: 0; font-size: clamp(58px, 7.2vw, 104px); line-height: .94; }
.hero-copy h1::first-letter { color: var(--aoa-green-dark); }
.hero-subtitle { margin: 28px 0 0; color: var(--aoa-green-dark); font-size: 12px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.hero-lead { max-width: 660px; margin: 24px 0 34px; color: var(--aoa-text); font-size: clamp(17px, 1.5vw, 21px); }
.hero-actions { display: flex; gap: 13px; flex-wrap: wrap; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  min-height: 52px;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .18s ease, box-shadow .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { min-width: 220px; background: var(--aoa-green); color: #171912; box-shadow: 0 10px 26px rgba(121,151,7,.18); }
.button-secondary { border: 1px solid #d7d8cf; background: linear-gradient(90deg,#fff,#faf7ee); }
.hero-card { align-self: end; min-width: 0; padding: 38px 34px 32px; background: var(--aoa-soft); border-radius: 20px; border-top: 4px solid var(--aoa-gold); }
.hero-card .frame { margin: 0; }
.hero-card h2 { margin: 0 0 18px; font: 400 clamp(32px, 3.5vw, 48px)/1 var(--aoa-serif); letter-spacing: -.035em; }
.hero-card p { color: #55584f; }
.hero-card a { display: flex; justify-content: space-between; margin-top: 24px; padding-top: 17px; border-top: 1px solid #d1d2c9; color: var(--aoa-ink); font-size: 10px; font-weight: 800; letter-spacing: .13em; text-decoration: none; text-transform: uppercase; }

.home-section { padding: 115px clamp(24px, 7vw, 110px); }
.home-services { background: #fff; }
.home-solutions { background: var(--aoa-soft); }
.section-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 40px; margin-bottom: 76px; }
.section-heading > p { margin: 12px 0 0; padding-left: 14px; border-left: 2px solid var(--aoa-green); color: var(--aoa-green-dark); font-size: 10px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.section-heading h2 { width: min(820px, 72%); margin: 0; font-size: clamp(48px, 6vw, 84px); line-height: .95; }
.section-heading em { color: var(--aoa-green-dark); font-weight: 400; }
.content-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--aoa-line); border-left: 1px solid var(--aoa-line); }
.content-grid .frame { min-height: 350px; margin: 0; padding: 34px clamp(23px, 3vw, 44px); border-right: 1px solid var(--aoa-line); border-bottom: 1px solid var(--aoa-line); }
.content-grid .frame::before { display: block; margin-bottom: 42px; color: var(--aoa-green-dark); font: 800 10px/1 var(--aoa-sans); letter-spacing: .16em; }
.content-grid .frame:nth-child(1)::before { content: "01"; }
.content-grid .frame:nth-child(2)::before { content: "02"; }
.content-grid .frame:nth-child(3)::before { content: "03"; }
.content-grid h3 { margin: 0 0 20px; font: 400 clamp(29px, 3vw, 40px)/1.04 var(--aoa-serif); letter-spacing: -.03em; }
.content-grid p { color: #575a52; }
.content-grid a { display: inline-block; margin-top: 18px; color: var(--aoa-ink); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-decoration: none; text-transform: uppercase; }
.content-grid a::after { content: " ↗"; color: var(--aoa-green-dark); }
.text-link { display: inline-flex; gap: 22px; margin-top: 42px; padding-bottom: 5px; border-bottom: 1px solid #aeb1a7; font-size: 11px; font-weight: 800; letter-spacing: .12em; text-decoration: none; text-transform: uppercase; }
.text-link span { color: var(--aoa-green-dark); }

.home-editorial { background: #151711; color: #f6f6ed; }
.home-editorial > .frame { margin: 0; padding: 100px max(24px, calc((100vw - 1120px) / 2)); border-bottom: 1px solid rgba(255,255,255,.12); }
.home-editorial h2 { max-width: 860px; margin: 0 0 28px; font: 400 clamp(44px, 6vw, 78px)/.98 var(--aoa-serif); letter-spacing: -.04em; }
.home-editorial p { max-width: 820px; color: rgba(246,246,237,.72); font-size: 18px; }
.home-editorial a { color: var(--aoa-green); }
.process-list { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); margin: 54px 0 0; padding: 0; border-top: 1px solid rgba(255,255,255,.18); list-style: none; counter-reset: process; }
.process-list li { counter-increment: process; min-height: 190px; padding: 28px 24px 10px 0; border-right: 1px solid rgba(255,255,255,.14); color: rgba(246,246,237,.72); }
.process-list li + li { padding-left: 24px; }
.process-list li::before { content: "0" counter(process); display: block; margin-bottom: 34px; color: var(--aoa-green); font-size: 10px; font-weight: 800; letter-spacing: .16em; }
.process-list strong { display: block; margin-bottom: 8px; color: #fff; font: 400 24px/1.1 var(--aoa-serif); }

.page-hero { min-height: 500px; padding: 185px clamp(24px, 8vw, 130px) 90px; background: rgba(255,255,255,.78); border-bottom: 4px solid var(--aoa-gold); }
.page-hero h1 { max-width: 1000px; margin: 0; font-size: clamp(60px, 9vw, 122px); line-height: .9; }
.page-hero > p:last-child { max-width: 820px; margin: 28px 0 0; color: var(--aoa-text); font-size: clamp(18px, 2vw, 23px); }
.content-wrap { min-height: 450px; padding: 85px max(24px, calc((100vw - 980px) / 2)) 120px; background: #fff; }
.content-wrap .frame { margin: 0 0 64px; }
.content-wrap h2 { margin: 0 0 20px; font: 400 clamp(38px, 5vw, 60px)/1 var(--aoa-serif); letter-spacing: -.035em; }
.content-wrap h3 { margin: 38px 0 14px; font: 400 30px/1.1 var(--aoa-serif); }
.content-wrap p,
.content-wrap li { color: #4d5048; }
.content-wrap a { color: #567003; font-weight: 700; }
.content-wrap ul { padding-left: 22px; }
.content-wrap blockquote { margin: 38px 0; padding: 28px 34px; border-left: 4px solid var(--aoa-green); background: var(--aoa-soft); font: 400 24px/1.4 var(--aoa-serif); }
.solution-list { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); margin: 38px 0; padding: 0; border-top: 1px solid var(--aoa-line); border-left: 1px solid var(--aoa-line); list-style: none; }
.solution-list li { min-height: 220px; padding: 30px; border-right: 1px solid var(--aoa-line); border-bottom: 1px solid var(--aoa-line); }
.solution-list strong { display: block; margin-bottom: 12px; color: var(--aoa-ink); font: 400 28px/1.15 var(--aoa-serif); }
.status-pill { display: inline-block; margin-bottom: 18px; padding: 5px 10px; border-radius: 999px; background: rgba(185,223,19,.18); color: #607703; font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.contact-card { padding: clamp(28px,5vw,52px); border-radius: 20px; background: var(--aoa-soft); border-bottom: 4px solid var(--aoa-gold); }
.contact-card a { font-size: clamp(22px,4vw,40px); }

.site-footer { display: grid; grid-template-columns: 1fr 1fr auto; align-items: center; gap: 55px; padding: 52px clamp(24px, 6vw, 90px); background: #fff; border-top: 1px solid var(--aoa-line); }
.footer-brand .brand img { width: 184px; height: 72px; }
.footer-brand p { margin: 8px 0 0; color: var(--aoa-muted); font-size: 9px; letter-spacing: .16em; text-transform: uppercase; }
.footer-brand p span { color: var(--aoa-green); }
.footer-contact p { margin: 0 0 6px; color: var(--aoa-muted); font-size: 13px; }
.footer-contact a { font: 400 23px/1.2 var(--aoa-serif); text-decoration: none; }
.footer-contact span { color: var(--aoa-green-dark); }
.site-footer > nav { display: flex; gap: 22px; }
.site-footer > nav a { color: #666960; font-size: 9px; font-weight: 800; letter-spacing: .13em; text-decoration: none; text-transform: uppercase; }

@media (max-width: 1000px) {
  .site-header { min-height: 82px; }
  .menu-toggle { display: inline-flex; }
  .site-header nav { display: none; position: absolute; top: 78px; left: 18px; right: 18px; padding: 22px; border-radius: 18px; background: #fff; box-shadow: 0 18px 42px rgba(0,0,0,.14); }
  .site-header nav.is-open { display: block; }
  .site-header nav ul { align-items: flex-start; flex-direction: column; }
  .hero-shell { grid-template-columns: 1fr; padding-top: 145px; }
  .hero-logo-panel { right: 36px; justify-content: space-between; }
  .hero-logo-panel p { display: none; }
  .hero-copy { padding-top: 0; }
  .hero-card { align-self: auto; }
  .section-heading { display: block; }
  .section-heading h2 { width: 100%; margin-top: 25px; }
  .content-grid { grid-template-columns: 1fr; }
  .content-grid .frame { min-height: 0; }
  .process-list { grid-template-columns: repeat(2,1fr); }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .site-footer > nav { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .site-header { padding-inline: 18px; }
  .brand img { width: 132px; height: 52px; }
  .home-hero { min-height: 0; padding: 100px 12px 28px; }
  .hero-shell { min-height: 0; padding: 118px 24px 28px; border-radius: 20px; }
  .hero-logo-panel { top: 24px; left: 22px; right: 22px; }
  .hero-logo-panel img { width: 180px; height: 72px; }
  .hero-copy h1 { font-size: clamp(48px, 15vw, 67px); }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .hero-card { padding: 28px 24px; }
  .home-section { padding: 72px 20px; }
  .section-heading { margin-bottom: 46px; }
  .section-heading h2 { font-size: 46px; }
  .home-editorial > .frame { padding: 72px 20px; }
  .process-list { grid-template-columns: 1fr; }
  .process-list li,
  .process-list li + li { min-height: 0; padding: 22px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); }
  .process-list li::before { margin-bottom: 16px; }
  .page-hero { min-height: 390px; padding: 150px 20px 65px; }
  .content-wrap { padding: 62px 20px 85px; }
  .solution-list { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr; gap: 30px; padding: 42px 22px; }
  .site-footer > nav { grid-column: auto; flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}

