:root {
  --ink: #0b1730;
  --ink-soft: #172747;
  --coral: #ff6b4a;
  --coral-dark: #e65134;
  --sky: #8ed8f8;
  --paper: #f7f3ea;
  --paper-deep: #e9e2d6;
  --white: #ffffff;
  --muted: #596275;
  --line: rgba(11, 23, 48, 0.16);
  --font-sans: Arial, Helvetica, sans-serif;
  --font-mono: "Courier New", Courier, monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body::selection { background: var(--coral); color: var(--white); }

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

#topo { position: absolute; top: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 0 4vw;
  background: rgba(247, 243, 234, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--white);
  background: var(--ink);
  border-radius: 50% 50% 50% 12%;
  font-family: Georgia, serif;
  font-size: 1.2rem;
  font-style: italic;
  letter-spacing: 0;
}

.main-nav { display: flex; align-items: center; gap: clamp(18px, 2.2vw, 34px); }
.main-nav > a:not(.nav-cta) { position: relative; font-size: 0.88rem; font-weight: 600; }
.main-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}
.main-nav > a:hover::after, .main-nav > a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { padding: 10px 17px; color: var(--white); background: var(--ink); border: 1px solid var(--ink); border-radius: 999px; font-size: 0.82rem; font-weight: 700; }
.nav-cta:hover { color: var(--ink); background: transparent; }
.menu-button { display: none; color: var(--ink); background: transparent; border: 0; font-weight: 700; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  min-height: calc(100vh - 78px);
  padding: clamp(66px, 9vw, 130px) 4vw 7vw;
  background:
    radial-gradient(circle at 13% 16%, rgba(142, 216, 248, 0.35), transparent 23%),
    var(--paper);
}

.hero-copy { align-self: center; max-width: 850px; padding-right: 4vw; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 28px; font-family: var(--font-mono); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; }
.eyebrow > span { width: 30px; height: 2px; background: var(--coral); }
.hero h1, .section-heading h2, .manifesto-copy h2, .contact-intro h2, .legal-page h1 {
  margin-bottom: 30px;
  font-size: clamp(3.6rem, 7.4vw, 8.2rem);
  font-weight: 660;
  letter-spacing: -0.072em;
  line-height: 0.87;
}
.hero h1 em, .section-heading h2 em, .manifesto-copy h2 em, .contact-intro h2 em, .legal-page h1 em {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}
.hero h1 em { color: var(--coral); }
.hero-text { max-width: 620px; margin-bottom: 38px; color: var(--muted); font-size: clamp(1.05rem, 1.4vw, 1.3rem); }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 28px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 24px; min-height: 54px; padding: 0 24px; border: 1px solid transparent; border-radius: 999px; font-size: 0.88rem; font-weight: 750; cursor: pointer; transition: transform 180ms ease, background 180ms ease, color 180ms ease; }
.button:hover { transform: translateY(-2px); }
.button-coral { color: var(--ink); background: var(--coral); }
.button-coral:hover { color: var(--white); background: var(--ink); }
.button-dark { color: var(--white); background: var(--ink); }
.button-dark:hover { background: var(--coral-dark); }
.text-link { font-size: 0.9rem; font-weight: 700; border-bottom: 1px solid var(--ink); }

.hero-visual { position: relative; min-height: 610px; align-self: center; overflow: hidden; background: var(--ink); border-radius: 48% 48% 12px 12px; }
.hero-visual::before { content: ""; position: absolute; z-index: 1; inset: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,.12); pointer-events: none; }
.hero-visual img { width: 100%; height: 100%; min-height: 610px; object-fit: cover; object-position: center; }
.hero-stamp { position: absolute; z-index: 2; top: 28px; left: 28px; display: flex; align-items: center; gap: 13px; padding: 10px 14px 10px 10px; color: var(--ink); background: var(--paper); border-radius: 999px; }
.hero-stamp strong { display: grid; place-items: center; width: 46px; height: 46px; color: var(--white); background: var(--coral); border-radius: 50%; font-size: 0.77rem; letter-spacing: .08em; }
.hero-stamp span { font-family: var(--font-mono); font-size: .63rem; font-weight: 700; letter-spacing: .07em; line-height: 1.35; text-transform: uppercase; }
.signal-card { position: absolute; z-index: 2; right: 28px; bottom: 28px; display: grid; grid-template-columns: auto 1fr; gap: 0 9px; width: min(265px, calc(100% - 56px)); padding: 17px 19px; color: var(--ink); background: rgba(247,243,234,.94); border-radius: 14px; backdrop-filter: blur(12px); }
.signal-card strong { font-size: .78rem; }
.signal-card small { grid-column: 2; color: var(--muted); font-size: .65rem; }
.signal-dot { width: 8px; height: 8px; margin-top: 6px; background: #2ecf7f; border-radius: 50%; box-shadow: 0 0 0 5px rgba(46,207,127,.16); }

.capability-strip { display: flex; align-items: center; justify-content: space-around; gap: 24px; min-height: 78px; padding: 12px 3vw; color: var(--white); background: var(--ink); overflow: hidden; }
.capability-strip span { flex: none; font-family: var(--font-mono); font-size: .76rem; font-weight: 650; letter-spacing: .16em; }
.capability-strip i { color: var(--coral); font-style: normal; }

.section { padding: clamp(90px, 11vw, 160px) 4vw; }
.section-heading h2, .manifesto-copy h2, .contact-intro h2, .legal-page h1 { font-size: clamp(3.2rem, 6.3vw, 6.9rem); }
.split-heading { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(260px, .6fr); gap: 8vw; align-items: end; margin-bottom: 72px; }
.split-heading > p, .project-heading > p { max-width: 430px; margin-bottom: 28px; color: var(--muted); font-size: 1.05rem; }
.section-heading h2 { margin-bottom: 0; }
.section-heading h2 em { color: var(--coral); }

.services { background: var(--paper); }
.service-list { display: grid; grid-template-columns: repeat(6, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { position: relative; display: flex; flex-direction: column; min-height: 315px; padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: color 180ms ease, background 180ms ease; }
.service-card:nth-child(1), .service-card:nth-child(2), .service-card:nth-child(3) { grid-column: span 2; }
.service-card:nth-child(4), .service-card:nth-child(5) { grid-column: span 3; }
.service-card:hover { color: var(--white); background: var(--ink); }
.service-number { margin-bottom: auto; font-family: var(--font-mono); font-size: .7rem; color: var(--coral); }
.service-card h3 { margin-bottom: 12px; font-size: 1.55rem; letter-spacing: -.035em; }
.service-card p { max-width: 340px; margin-bottom: 0; color: var(--muted); font-size: .93rem; }
.service-card:hover p { color: rgba(255,255,255,.72); }
.service-card > a { position: absolute; top: 22px; right: 22px; display: grid; place-items: center; width: 36px; height: 36px; border: 1px solid var(--line); border-radius: 50%; }
.service-card:hover > a { color: var(--ink); background: var(--coral); border-color: var(--coral); }

.manifesto-section { display: grid; grid-template-columns: minmax(320px, .9fr) minmax(0, 1.1fr); color: var(--white); background: var(--ink); }
.manifesto-art { position: relative; display: grid; place-items: center; min-height: 760px; overflow: hidden; background: var(--sky); }
.manifesto-art::before, .manifesto-art::after { content: ""; position: absolute; background: var(--coral); border-radius: 50%; }
.manifesto-art::before { width: 180px; height: 180px; top: 12%; left: -50px; }
.manifesto-art::after { width: 90px; height: 90px; right: 12%; bottom: 12%; }
.manifesto-art > span { position: relative; z-index: 2; display: grid; place-items: center; width: 280px; height: 280px; color: var(--paper); background: var(--ink); border-radius: 50% 50% 50% 18%; font-family: Georgia, serif; font-size: 13rem; font-style: italic; line-height: 1; box-shadow: 24px 28px 0 var(--coral); }
.orbit { position: absolute; z-index: 1; border: 2px solid var(--ink); border-radius: 50%; transform: rotate(-24deg); }
.orbit-one { width: 590px; height: 280px; }
.orbit-two { width: 420px; height: 650px; border-color: rgba(11,23,48,.4); }
.manifesto-copy { align-self: center; padding: clamp(75px, 9vw, 145px) 7vw; }
.eyebrow-light { color: rgba(255,255,255,.68); }
.manifesto-copy h2 em { color: var(--sky); }
.manifesto-copy > p:not(.eyebrow) { max-width: 650px; color: rgba(255,255,255,.68); font-size: 1.08rem; }
.manifesto-points { display: grid; margin-top: 52px; border-top: 1px solid rgba(255,255,255,.16); }
.manifesto-points > div { display: grid; grid-template-columns: 140px 1fr; gap: 20px; padding: 21px 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.manifesto-points strong { color: var(--coral); }
.manifesto-points span { color: rgba(255,255,255,.72); }

.method { background: var(--paper-deep); }
.centered-heading { max-width: 920px; margin: 0 auto 75px; text-align: center; }
.centered-heading .eyebrow { justify-content: center; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); max-width: 1400px; margin: auto; }
.step-card { position: relative; min-height: 280px; padding: 0 28px 28px; border-left: 1px solid rgba(11,23,48,.25); }
.step-card:last-child { border-right: 1px solid rgba(11,23,48,.25); }
.step-card > span { display: inline-block; margin-bottom: 62px; font-family: var(--font-mono); font-size: .72rem; }
.step-line { position: absolute; top: 6px; left: 70px; width: calc(100% - 88px); height: 1px; background: rgba(11,23,48,.25); }
.step-line::after { content: ""; position: absolute; top: -4px; right: 0; width: 9px; height: 9px; background: var(--coral); border-radius: 50%; }
.step-card h3 { margin-bottom: 12px; font-size: 1.5rem; }
.step-card p { color: var(--muted); font-size: .92rem; }

.projects-section { padding: clamp(95px, 11vw, 160px) 4vw; color: var(--white); background: var(--ink); }
.project-heading { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(260px, .6fr); gap: 8vw; align-items: end; margin-bottom: 72px; }
.project-heading h2 em { color: var(--sky); }
.project-heading > p { color: rgba(255,255,255,.64); }
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.project-card { position: relative; display: flex; flex-direction: column; justify-content: space-between; min-height: 520px; padding: 25px; overflow: hidden; color: var(--ink); }
.project-coral { background: var(--coral); }
.project-sky { background: var(--sky); }
.project-paper { background: var(--paper); }
.project-tag { position: relative; z-index: 2; align-self: flex-start; padding: 7px 11px; color: var(--white); background: var(--ink); font-family: var(--font-mono); font-size: .64rem; letter-spacing: .1em; }
.project-card > div:last-child { position: relative; z-index: 2; padding: 22px; background: rgba(247,243,234,.92); backdrop-filter: blur(8px); }
.project-card h3 { margin-bottom: 6px; font-size: 1.65rem; letter-spacing: -.04em; }
.project-card p { margin-bottom: 0; color: var(--muted); font-size: .9rem; }
.project-shape { position: absolute; top: 18%; left: 50%; width: 220px; height: 220px; transform: translateX(-50%); }
.shape-a { background: var(--ink); border-radius: 50% 50% 8% 50%; box-shadow: 48px 38px 0 var(--sky); transform: translateX(-50%) rotate(18deg); }
.shape-b { width: 260px; height: 260px; border: 44px solid var(--ink); border-radius: 50%; box-shadow: inset 0 0 0 20px var(--coral), 34px 34px 0 var(--coral); }
.shape-c { width: 190px; height: 290px; background: var(--coral); border-radius: 110px 110px 0 0; box-shadow: -60px 55px 0 var(--sky), 60px 75px 0 var(--ink); }

.audiences-section { padding: clamp(90px, 10vw, 140px) 4vw; background: var(--sky); }
.audiences-section > .eyebrow { margin-bottom: 58px; }
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(11,23,48,.35); }
.audience-grid > div { padding: 32px 5vw 18px 0; }
.audience-grid > div + div { padding-left: 3vw; border-left: 1px solid rgba(11,23,48,.35); }
.audience-grid strong { font-family: var(--font-mono); font-size: .72rem; }
.audience-grid h3 { margin: 65px 0 12px; font-size: 1.55rem; }
.audience-grid p { max-width: 360px; margin-bottom: 0; color: rgba(11,23,48,.68); }

.contact-section { display: grid; grid-template-columns: minmax(320px, .88fr) minmax(0, 1.12fr); gap: 8vw; padding: clamp(95px, 11vw, 160px) 4vw; background: var(--paper); }
.contact-intro h2 em { color: var(--coral); }
.contact-intro > p:not(.eyebrow) { max-width: 490px; color: var(--muted); }
.contact-intro > a { display: inline-block; margin-top: 28px; font-weight: 750; border-bottom: 1px solid var(--ink); }
.contact-form { padding: clamp(28px, 4vw, 58px); background: var(--white); border: 1px solid var(--line); box-shadow: 16px 16px 0 var(--sky); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form label { display: block; margin-bottom: 23px; font-size: .78rem; font-weight: 750; }
.contact-form label span { color: var(--muted); font-weight: 500; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; margin-top: 8px; color: var(--ink); background: var(--paper); border: 1px solid transparent; border-bottom-color: rgba(11,23,48,.35); border-radius: 0; outline: none; }
.contact-form input, .contact-form select { height: 52px; padding: 0 13px; }
.contact-form textarea { padding: 13px; resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--coral); box-shadow: 0 0 0 3px rgba(255,107,74,.16); }
.contact-form .button { margin-top: 4px; }
.form-note { margin: 15px 0 0; color: var(--muted); font-size: .72rem; }

.site-footer { padding: 80px 4vw 28px; color: var(--white); background: #071022; }
.footer-lead { display: flex; align-items: end; justify-content: space-between; gap: 30px; padding-bottom: 58px; border-bottom: 1px solid rgba(255,255,255,.16); }
.brand-footer .brand-mark { color: var(--ink); background: var(--coral); }
.footer-lead p { max-width: 400px; margin: 25px 0 0; color: rgba(255,255,255,.58); }
.footer-mail { font-size: clamp(1.15rem, 2.1vw, 2rem); font-weight: 600; border-bottom: 1px solid var(--coral); }
.footer-grid { display: grid; grid-template-columns: 2fr 2fr 1fr 1.4fr; gap: 4vw; padding: 58px 0; }
.footer-grid p, .footer-grid address, .footer-grid a { display: block; margin: 0 0 7px; color: rgba(255,255,255,.62); font-size: .79rem; font-style: normal; }
.footer-grid strong { color: rgba(255,255,255,.9); font-weight: 600; }
.footer-grid .footer-label { margin-bottom: 18px; color: var(--coral); font-family: var(--font-mono); font-size: .65rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.footer-grid a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 25px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.16); }
.footer-bottom p, .footer-bottom a { margin: 0; color: rgba(255,255,255,.46); font-size: .7rem; }

.legal-page { min-height: 80vh; padding: 95px 4vw 130px; }
.legal-page > header { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: 40px; padding-bottom: 65px; border-bottom: 1px solid var(--line); }
.legal-page > header .eyebrow { grid-column: 1 / -1; margin-bottom: 0; }
.legal-page h1 { margin-bottom: 0; font-size: clamp(4rem, 8vw, 8rem); }
.legal-page h1 em { color: var(--coral); }
.legal-page > header > p:last-child { margin: 0; color: var(--muted); font-family: var(--font-mono); font-size: .7rem; }
.legal-content { max-width: 850px; margin: 75px auto 0; }
.legal-content section { display: grid; grid-template-columns: 230px 1fr; gap: 55px; padding: 30px 0; border-bottom: 1px solid var(--line); }
.legal-content h2 { margin: 0; font-size: 1.1rem; }
.legal-content p { margin: 0; color: var(--muted); }
.legal-content a { color: var(--coral-dark); font-weight: 700; text-decoration: underline; }

a:focus-visible, button:focus-visible { outline: 3px solid var(--sky); outline-offset: 4px; }

@media (max-width: 1080px) {
  .hero { grid-template-columns: 1fr 0.78fr; }
  .hero-visual, .hero-visual img { min-height: 540px; }
  .project-card { min-height: 460px; }
  .manifesto-art > span { width: 220px; height: 220px; font-size: 10rem; }
}

@media (max-width: 900px) {
  .menu-button { display: block; }
  .main-nav { position: absolute; top: 78px; right: 0; left: 0; display: none; align-items: stretch; flex-direction: column; gap: 0; padding: 12px 4vw 24px; background: var(--paper); border-bottom: 1px solid var(--line); }
  .main-nav.is-open { display: flex; }
  .main-nav > a { padding: 13px 0; border-bottom: 1px solid var(--line); }
  .main-nav .nav-cta { margin-top: 14px; padding: 12px 18px; text-align: center; border-bottom: 0; }
  .hero { grid-template-columns: 1fr; gap: 65px; }
  .hero-copy { padding-right: 0; }
  .hero-visual { width: min(680px, 100%); min-height: 700px; margin: auto; }
  .hero-visual img { min-height: 700px; }
  .split-heading, .project-heading { grid-template-columns: 1fr; gap: 24px; }
  .service-card:nth-child(n) { grid-column: span 3; }
  .manifesto-section { grid-template-columns: 1fr; }
  .manifesto-art { min-height: 560px; }
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 45px 0; }
  .steps-grid .step-card:nth-child(2) { border-right: 1px solid rgba(11,23,48,.25); }
  .projects-grid { grid-template-columns: 1fr; }
  .project-card { min-height: 560px; }
  .contact-section { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .site-header { min-height: 68px; }
  .main-nav { top: 68px; }
  .hero { min-height: auto; padding: 62px 5vw 72px; }
  .hero h1 { font-size: clamp(3.35rem, 16vw, 5.2rem); }
  .hero-visual, .hero-visual img { min-height: 510px; }
  .hero-visual { border-radius: 46% 46% 8px 8px; }
  .hero-stamp { top: 18px; left: 18px; }
  .signal-card { right: 18px; bottom: 18px; }
  .capability-strip { justify-content: flex-start; padding-left: 5vw; overflow: hidden; }
  .section, .projects-section, .audiences-section, .contact-section { padding-right: 5vw; padding-left: 5vw; }
  .section-heading h2, .manifesto-copy h2, .contact-intro h2 { font-size: clamp(3.05rem, 15vw, 4.8rem); }
  .service-list { grid-template-columns: 1fr; }
  .service-card:nth-child(n) { grid-column: span 1; min-height: 270px; }
  .manifesto-art { min-height: 440px; }
  .manifesto-art > span { width: 170px; height: 170px; font-size: 7.4rem; box-shadow: 16px 19px 0 var(--coral); }
  .orbit-one { width: 410px; height: 210px; }
  .orbit-two { width: 300px; height: 430px; }
  .manifesto-copy { padding: 75px 5vw; }
  .manifesto-points > div { grid-template-columns: 1fr; gap: 4px; }
  .steps-grid { grid-template-columns: 1fr; gap: 38px; }
  .step-card, .steps-grid .step-card:nth-child(2), .step-card:last-child { border-right: 0; }
  .project-card { min-height: 490px; }
  .audience-grid { grid-template-columns: 1fr; }
  .audience-grid > div, .audience-grid > div + div { padding: 28px 0; border-left: 0; border-bottom: 1px solid rgba(11,23,48,.35); }
  .audience-grid h3 { margin-top: 32px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { box-shadow: 9px 9px 0 var(--sky); }
  .contact-form .button { width: 100%; }
  .footer-lead { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .legal-page { padding: 70px 5vw 95px; }
  .legal-page > header { grid-template-columns: 1fr; }
  .legal-content section { grid-template-columns: 1fr; gap: 12px; }
}

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