:root {
  --navy: #142b36;
  --navy-2: #0d222b;
  --cream: #f5f0e7;
  --paper: #fffcf7;
  --coral: #f8755d;
  --yellow: #f5c84b;
  --mint: #9dcdb8;
  --ink: #172e38;
  --muted: #68767b;
  --line: rgba(20, 43, 54, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

.site-header {
  height: 84px;
  padding: 0 clamp(24px, 5vw, 76px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--paper);
  position: relative;
  z-index: 20;
}
.brand { display: inline-flex; align-items: center; gap: 12px; font: 800 22px/1 "Manrope", sans-serif; letter-spacing: -.8px; }
.brand-dot { color: var(--coral); }
.brand-mark { width: 28px; height: 28px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 3px; transform: rotate(45deg); }
.brand-mark span { background: var(--navy); border-radius: 5px 1px 5px 1px; }
.brand-mark span:nth-child(2), .brand-mark span:nth-child(3) { background: var(--coral); }
.main-nav { display: flex; align-items: center; gap: clamp(22px, 3vw, 46px); font-weight: 600; font-size: 14px; }
.main-nav a:not(.nav-cta) { position: relative; }
.main-nav a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; bottom: -5px; height: 2px; width: 0; background: var(--coral); transition: width .25s ease; }
.main-nav a:hover::after { width: 100%; }
.nav-cta { padding: 12px 18px; border: 1px solid var(--ink); transition: .2s; }
.nav-cta:hover { background: var(--ink); color: white; }
.menu-toggle { display: none; background: transparent; border: 0; padding: 10px; }
.menu-toggle > span:not(.sr-only) { display: block; width: 25px; height: 2px; background: var(--ink); margin: 5px; }

.hero { min-height: 690px; display: grid; grid-template-columns: 1.08fr .92fr; padding: clamp(55px, 8vw, 110px) clamp(24px, 7vw, 110px) 80px; overflow: hidden; }
.hero-copy { align-self: center; max-width: 720px; position: relative; z-index: 2; }
.eyebrow { margin: 0 0 22px; display: flex; align-items: center; gap: 10px; text-transform: uppercase; letter-spacing: 2px; font-size: 11px; font-weight: 700; }
.eyebrow > span { width: 24px; height: 2px; background: var(--coral); }
.eyebrow.light { color: rgba(255,255,255,.7); }
h1, h2, h3 { font-family: "Manrope", sans-serif; margin: 0; line-height: 1.03; letter-spacing: -.045em; }
h1 { font-size: clamp(58px, 7.3vw, 112px); max-width: 900px; }
h1 em, h2 em { color: var(--coral); font-style: normal; }
.hero-intro { max-width: 570px; margin: 30px 0; font-size: clamp(17px, 1.4vw, 20px); color: #52656c; }
.hero-actions { display: flex; align-items: center; gap: 32px; }
.button { display: inline-flex; border: 0; align-items: center; justify-content: center; gap: 24px; padding: 15px 19px; font-weight: 700; cursor: pointer; transition: transform .2s, box-shadow .2s; }
.button:hover { transform: translateY(-3px); box-shadow: 0 9px 24px rgba(10,30,40,.16); }
.button-primary { background: var(--coral); color: var(--navy); }
.button span, .nav-cta span { font-size: 19px; }
.text-link { font-size: 14px; font-weight: 700; border-bottom: 1px solid var(--line); padding-bottom: 5px; }
.text-link span { margin-left: 8px; }
.trusted { margin-top: 70px; display: flex; align-items: center; gap: 28px; color: #809095; font-size: 11px; text-transform: uppercase; letter-spacing: 1.2px; font-weight: 700; }
.logo-row { display: flex; gap: 30px; align-items: center; color: #89969a; letter-spacing: 0; font-size: 13px; }
.logo-row strong:first-child { font-size: 18px; text-transform: lowercase; }
.logo-row strong:first-child span { color: var(--coral); font-size: 9px; }
.logo-row strong:last-child { font-family: Georgia, serif; text-transform: lowercase; font-size: 16px; }

.hero-visual { position: relative; align-self: center; justify-self: center; width: min(44vw, 590px); aspect-ratio: 1; }
.hero-visual::before { content: ""; position: absolute; inset: 3%; background: #f0e8dc; border-radius: 50%; }
.orbit { position: absolute; border: 1px solid rgba(20,43,54,.23); border-radius: 50%; z-index: 1; animation: spin 24s linear infinite; }
.orbit-one { inset: 12%; }
.orbit-two { inset: 28%; animation-direction: reverse; animation-duration: 17s; }
.orbit::after { content: ""; position: absolute; width: 12px; height: 12px; background: var(--coral); border-radius: 50%; left: 15%; top: 8%; }
.orbit-two::after { background: var(--yellow); left: auto; top: auto; right: -5px; bottom: 42%; }
.sun { position: absolute; inset: 40%; background: var(--yellow); border-radius: 50%; z-index: 2; box-shadow: 0 0 0 15px rgba(245,200,75,.18); }
.step { position: absolute; width: 170px; height: 78px; padding: 14px 18px; background: var(--navy); color: white; z-index: 3; box-shadow: 9px 9px 0 rgba(20,43,54,.1); animation: float 5s ease-in-out infinite; }
.step span { display: block; color: var(--coral); font-size: 10px; letter-spacing: 2px; }
.step b { font: 700 18px "Manrope", sans-serif; }
.step-one { left: 1%; top: 18%; }
.step-two { right: -2%; top: 45%; animation-delay: -1.5s; background: var(--coral); color: var(--navy); }
.step-two span { color: var(--navy); }
.step-three { left: 9%; bottom: 8%; animation-delay: -3s; }
.visual-note { position: absolute; right: 2%; top: 14%; font: 700 12px/1.3 "Manrope"; transform: rotate(8deg); }
.scribble { position: absolute; width: 35%; right: 0; bottom: 10%; fill: none; stroke: var(--coral); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }

.ticker { overflow: hidden; background: var(--navy); color: white; transform: rotate(-1.2deg) scale(1.02); }
.ticker > div { height: 62px; width: max-content; display: flex; align-items: center; gap: 30px; animation: marquee 22s linear infinite; text-transform: uppercase; letter-spacing: 2.5px; font-size: 12px; font-weight: 700; }
.ticker i { color: var(--coral); font-style: normal; font-size: 18px; }

.section { padding: clamp(90px, 11vw, 155px) clamp(24px, 7vw, 110px); }
.section-heading { display: grid; grid-template-columns: 1fr auto; align-items: end; column-gap: 40px; }
.section-heading .eyebrow { grid-column: 1 / -1; }
.section-heading h2, .approach h2, .contact h2 { font-size: clamp(44px, 5.7vw, 82px); }
.section-heading > p:last-child { max-width: 420px; color: var(--muted); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 68px; }
.service-card { min-height: 430px; padding: 30px; position: relative; display: flex; flex-direction: column; align-items: flex-start; transition: transform .25s, box-shadow .25s; overflow: hidden; }
.service-card:hover { transform: translateY(-8px) rotate(-.4deg); box-shadow: 14px 16px 0 var(--navy); }
.service-card.coral { background: var(--coral); }
.service-card.yellow { background: var(--yellow); }
.service-card.mint { background: var(--mint); }
.card-number { font: 700 11px "Manrope"; letter-spacing: 2px; border: 1px solid rgba(20,43,54,.45); border-radius: 50%; width: 38px; height: 38px; display: grid; place-items: center; }
.card-icon { height: 115px; width: 130px; margin: 22px auto 18px; position: relative; align-self: center; }
.icon-team i { position: absolute; border: 3px solid var(--navy); border-radius: 50%; width: 52px; height: 52px; }
.icon-team i:nth-child(1) { left: 5px; top: 20px; }
.icon-team i:nth-child(2) { right: 5px; top: 20px; }
.icon-team i:nth-child(3) { left: 39px; top: 49px; background: rgba(255,255,255,.22); }
.icon-lead i { position: absolute; width: 34px; height: 74px; border: 3px solid var(--navy); bottom: 10px; }
.icon-lead i:nth-child(1) { left: 4px; height: 42px; }
.icon-lead i:nth-child(2) { left: 47px; height: 70px; }
.icon-lead i:nth-child(3) { right: 4px; height: 100px; }
.icon-org { display: grid; grid-template-columns: repeat(2, 42px); gap: 8px; place-content: center; transform: rotate(45deg); }
.icon-org i { width: 42px; height: 42px; background: var(--navy); }
.icon-org i:nth-child(2), .icon-org i:nth-child(3) { background: transparent; border: 3px solid var(--navy); }
.service-card h3 { font-size: clamp(24px, 2vw, 31px); }
.service-card p { line-height: 1.55; margin: 16px 0 26px; }
.service-card a { margin-top: auto; font-size: 13px; font-weight: 700; border-bottom: 1px solid rgba(20,43,54,.4); padding-bottom: 4px; }
.service-card a span { margin-left: 8px; }

.approach { background: var(--navy); color: white; display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(60px, 10vw, 150px); }
.approach-intro > p:last-child { max-width: 440px; margin-top: 30px; color: rgba(255,255,255,.62); font-size: 18px; }
.process-list { margin: 0; padding: 0; list-style: none; }
.process-list li { display: grid; grid-template-columns: 64px 1fr; padding: 28px 0; border-top: 1px solid rgba(255,255,255,.16); }
.process-list li:last-child { border-bottom: 1px solid rgba(255,255,255,.16); }
.process-list > li > span { color: var(--coral); font-size: 11px; letter-spacing: 2px; padding-top: 7px; }
.process-list h3 { font-size: 25px; letter-spacing: -.02em; }
.process-list p { color: rgba(255,255,255,.6); margin: 10px 0 0; max-width: 490px; }

.results { background: var(--cream); }
.results-top { display: grid; grid-template-columns: 1.3fr .7fr; align-items: end; gap: 50px; }
.results-top .section-heading { display: block; }
.results-copy { max-width: 400px; color: var(--muted); font-size: 18px; }
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin: 80px 0; }
.stat { padding: 35px 28px; border-right: 1px solid var(--line); }
.stat:last-child { border: 0; }
.stat strong { font: 800 clamp(60px, 7vw, 100px)/1 "Manrope"; letter-spacing: -.07em; }
.stat b { color: var(--coral); font: 700 28px "Manrope"; margin-left: 6px; }
.stat p { margin: 12px 0 0; color: var(--muted); font-size: 13px; text-transform: uppercase; letter-spacing: 1px; }
.quote { margin: 0 auto; max-width: 900px; text-align: center; }
.quote blockquote { margin: 0; font: 600 clamp(26px, 3vw, 42px)/1.35 "Manrope"; letter-spacing: -.03em; }
.quote figcaption { display: flex; justify-content: center; align-items: center; gap: 12px; margin-top: 30px; text-align: left; }
.quote figcaption > span { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--coral); font-size: 11px; font-weight: 700; }
.quote figcaption div { display: flex; flex-direction: column; }
.quote figcaption strong { font-size: 13px; }
.quote figcaption small { color: var(--muted); }

.contact { background: var(--coral); padding: clamp(80px, 10vw, 130px) clamp(24px, 9vw, 140px); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(60px, 10vw, 160px); }
.contact .eyebrow.light { color: rgba(20,43,54,.65); }
.contact .eyebrow > span { background: var(--navy); }
.contact h2 em { color: white; }
.contact-copy > p:last-child { max-width: 460px; font-size: 18px; }
.contact-form { display: flex; flex-direction: column; gap: 24px; }
.contact-form label span { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 1.2px; font-weight: 700; margin-bottom: 6px; }
.contact-form input, .contact-form textarea { width: 100%; background: transparent; border: 0; border-bottom: 1px solid rgba(20,43,54,.45); padding: 7px 0 12px; outline: 0; color: var(--navy); resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { border-color: white; }
.contact-form ::placeholder { color: rgba(20,43,54,.52); }
.button-light { align-self: flex-start; background: var(--navy); color: white; margin-top: 4px; }
.form-status { margin: 0; min-height: 24px; font-weight: 700; }

footer { background: var(--navy-2); color: rgba(255,255,255,.75); min-height: 150px; padding: 48px clamp(24px, 7vw, 110px); display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 50px; font-size: 13px; }
.footer-brand { color: white; }
.footer-brand .brand-mark span { background: white; }
.footer-brand .brand-mark span:nth-child(2), .footer-brand .brand-mark span:nth-child(3) { background: var(--coral); }
.footer-links { display: flex; gap: 28px; align-items: center; }
.footer-links a:hover { color: var(--coral); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes float { 50% { transform: translateY(-9px); } }
@keyframes marquee { to { transform: translateX(-50%); } }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 60px; }
  .hero-visual { width: min(90vw, 550px); margin-top: 55px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 350px; }
  .approach, .contact { grid-template-columns: 1fr; }
  .results-top { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr; gap: 18px; }
}

@media (max-width: 650px) {
  .site-header { height: 72px; }
  .menu-toggle { display: block; z-index: 2; }
  .main-nav { position: absolute; top: 0; left: 0; right: 0; background: var(--paper); padding: 90px 28px 30px; flex-direction: column; align-items: stretch; transform: translateY(-120%); transition: transform .3s; box-shadow: 0 10px 30px rgba(10,30,40,.12); }
  .main-nav.open { transform: translateY(0); }
  .hero { padding-top: 45px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 22px; }
  .trusted { align-items: flex-start; flex-direction: column; gap: 15px; margin-top: 50px; }
  .logo-row { gap: 18px; }
  .step { width: 140px; height: 68px; padding: 10px 13px; }
  .step b { font-size: 15px; }
  .section-heading { display: block; }
  .section-heading > p:last-child { margin-top: 25px; }
  .stat-grid { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .contact { gap: 50px; }
  .footer-links { flex-wrap: wrap; }
}

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