:root {
  --ink: #0f0e14;
  --ink-soft: #17151f;
  --ink-card: #201d2a;
  --paper: #f5f3ee;
  --paper-bright: #fffefa;
  --white: #ffffff;
  --muted: #ada8b6;
  --muted-dark: #65616c;
  --purple: #5b3e99;
  --purple-bright: #7a55cb;
  --purple-pale: #e7defb;
  --green: #54b435;
  --green-bright: #73d94f;
  --green-pale: #dff5d7;
  --line: rgba(255, 255, 255, .13);
  --line-dark: rgba(15, 14, 20, .13);
  --radius: 1.5rem;
  --shell: min(1240px, calc(100vw - 64px));
  --font-display: "Manrope", "Arial Black", sans-serif;
  --font-body: "DM Sans", Arial, sans-serif;
  --ease: cubic-bezier(.2, .75, .25, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

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

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }

::selection { background: var(--green); color: var(--ink); }

.shell { width: var(--shell); margin-inline: auto; }
.section { padding-block: clamp(6.5rem, 10vw, 10rem); }
.light-section { background: var(--paper); color: var(--ink); }
.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; }

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 1000;
  transform: translateY(-150%);
  padding: .7rem 1rem;
  border-radius: .5rem;
  background: var(--green);
  color: var(--ink);
  font-weight: 700;
}
.skip-link:focus { transform: translateY(0); }

:focus-visible { outline: 3px solid var(--green-bright); outline-offset: 4px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding-block: 1.2rem;
  transition: background .35s ease, padding .35s ease, border-color .35s ease, backdrop-filter .35s ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  padding-block: .75rem;
  background: rgba(15, 14, 20, .84);
  border-color: rgba(255, 255, 255, .09);
  backdrop-filter: blur(18px);
}

.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 154px;
  padding: .55rem .7rem;
  background: var(--white);
  border-radius: .85rem;
  box-shadow: 0 12px 35px rgba(0, 0, 0, .15);
}
.brand img { width: 137px; height: auto; }

.site-nav { display: flex; align-items: center; gap: clamp(1.5rem, 3vw, 2.8rem); margin-left: auto; }
.site-nav a { position: relative; color: rgba(255, 255, 255, .78); font-size: .94rem; font-weight: 600; }
.site-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -.5rem; height: 2px; background: var(--green); transition: right .3s var(--ease); }
.site-nav a:hover { color: var(--white); }
.site-nav a:hover::after { right: 0; }

.menu-toggle { display: none; appearance: none; border: 0; background: transparent; width: 44px; height: 44px; padding: 10px; cursor: pointer; }
.menu-toggle > span:not(.sr-only) { display: block; width: 24px; height: 2px; margin: 6px auto; background: white; transition: transform .25s ease; }
.menu-toggle[aria-expanded="true"] > span:first-child { transform: translateY(4px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] > span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  min-height: 54px;
  padding: .9rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: .94rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s ease, color .25s ease, background .25s ease;
}
.button span { font-size: 1.08em; transition: transform .25s var(--ease); }
.button:hover { transform: translateY(-2px); }
.button:hover span { transform: translate(3px, -3px); }
.button-small { min-height: 46px; padding-inline: 1.1rem; background: var(--purple); }
.button-small:hover { background: var(--purple-bright); box-shadow: 0 12px 32px rgba(91, 62, 153, .4); }
.button-primary { background: var(--green); color: var(--ink); box-shadow: 0 14px 40px rgba(84, 180, 53, .2); }
.button-primary:hover { background: var(--green-bright); box-shadow: 0 18px 45px rgba(84, 180, 53, .3); }
.button-outline { border-color: rgba(255, 255, 255, .34); color: var(--white); }
.button-outline:hover { background: var(--white); color: var(--ink); }

.text-link, .arrow-link { display: inline-flex; align-items: center; gap: .8rem; font-weight: 700; }
.text-link { padding: .5rem; color: rgba(255, 255, 255, .76); }
.text-link span, .arrow-link span { transition: transform .25s var(--ease); }
.text-link:hover { color: var(--white); }
.text-link:hover span { transform: translateY(4px); }
.arrow-link { padding-bottom: .35rem; border-bottom: 1px solid currentColor; }
.arrow-link:hover span { transform: translate(3px, -3px); }
.arrow-link-light { color: var(--white); }

.eyebrow, .section-label {
  margin: 0;
  font-family: var(--font-display);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow { display: flex; align-items: center; gap: .65rem; color: var(--green-bright); }
.eyebrow span { width: 28px; height: 2px; background: currentColor; }
.section-label { color: var(--purple); }
.section-label-light { color: var(--green-bright); }

.hero {
  position: relative;
  min-height: min(980px, 100svh);
  padding: clamp(9rem, 14vh, 11rem) 0 7rem;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(rgba(255,255,255,.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.024) 1px, transparent 1px),
    var(--ink);
  background-size: 64px 64px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(transparent, var(--ink));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(490px, 1.08fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

.hero-copy h1 {
  max-width: 760px;
  margin: 1.3rem 0 1.65rem;
  font-family: var(--font-display);
  font-size: clamp(4rem, 7vw, 7.8rem);
  line-height: .89;
  letter-spacing: -.07em;
  font-weight: 800;
}
.hero-copy h1 em { color: var(--green-bright); font-style: normal; }
.hero-lead { max-width: 600px; margin: 0; color: rgba(255,255,255,.67); font-size: clamp(1.05rem, 1.5vw, 1.22rem); line-height: 1.75; }
.hero-actions { display: flex; align-items: center; gap: 1.3rem; margin-top: 2.4rem; }
.hero-proof { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: clamp(3rem, 7vh, 5rem); padding-top: 1.6rem; border-top: 1px solid var(--line); }
.hero-proof div { display: flex; flex-direction: column; }
.hero-proof strong { font-family: var(--font-display); font-size: 1.45rem; line-height: 1; }
.hero-proof span { margin-top: .5rem; color: rgba(255,255,255,.48); font-size: .76rem; line-height: 1.35; }

.hero-glow { position: absolute; z-index: -1; border-radius: 50%; filter: blur(20px); pointer-events: none; }
.hero-glow-one { width: 560px; height: 560px; right: -170px; top: 8%; background: rgba(91,62,153,.24); }
.hero-glow-two { width: 360px; height: 360px; left: 38%; bottom: -180px; background: rgba(84,180,53,.1); }

.hero-art { position: relative; min-height: 620px; display: grid; place-items: center; perspective: 1500px; }
.browser-card {
  position: relative;
  z-index: 3;
  width: min(100%, 650px);
  border: 1px solid rgba(255,255,255,.23);
  border-radius: 1.35rem;
  overflow: hidden;
  background: #1b1921;
  box-shadow: 0 50px 100px rgba(0,0,0,.5), 0 0 0 12px rgba(255,255,255,.025);
  transform: rotateY(-7deg) rotateX(3deg);
  transition: transform .35s var(--ease);
}
.browser-card:hover { transform: rotateY(-3deg) rotateX(1deg) translateY(-5px); }
.browser-bar { display: flex; align-items: center; gap: 1rem; height: 48px; padding: 0 1rem; background: #292631; color: rgba(255,255,255,.42); font-size: .7rem; }
.browser-dots { display: flex; gap: 6px; }
.browser-dots i { width: 7px; height: 7px; border-radius: 50%; background: #686371; }
.browser-bar > span { flex: 1; max-width: 250px; padding: .34rem .8rem; border-radius: 999px; text-align: center; background: rgba(255,255,255,.05); }
.browser-lock { margin-left: auto; font-style: normal; }
.browser-screen { position: relative; min-height: 450px; padding: 1.35rem; overflow: hidden; background: linear-gradient(135deg, #ebe4fd 0%, #f8f5ef 44%, #ddf6d4 100%); color: var(--ink); }
.browser-screen::before { content: ""; position: absolute; width: 320px; height: 320px; right: -120px; top: -100px; border-radius: 50%; background: linear-gradient(145deg, var(--purple), #9e77ed); filter: blur(1px); opacity: .92; }
.browser-screen::after { content: ""; position: absolute; width: 230px; height: 230px; left: -100px; bottom: -105px; border-radius: 50%; background: var(--green); opacity: .75; }
.screen-nav { position: relative; z-index: 2; display: flex; align-items: center; gap: .65rem; }
.screen-nav img { width: 28px; height: 28px; border-radius: 8px; }
.screen-nav span { display: block; width: 34px; height: 5px; border-radius: 9px; background: rgba(15,14,20,.23); }
.screen-nav span:first-of-type { margin-left: auto; }
.screen-content { position: relative; z-index: 2; padding: clamp(4rem, 8vw, 6rem) .5rem 2rem; }
.screen-content p { margin: 0 0 1rem; color: var(--purple); font-weight: 700; font-size: .7rem; letter-spacing: .13em; text-transform: uppercase; }
.screen-content h2 { margin: 0; font-family: var(--font-display); font-size: clamp(2.7rem, 5vw, 4.6rem); letter-spacing: -.06em; line-height: .92; }
.screen-content h2 b { color: var(--purple); }
.screen-button { display: inline-flex; align-items: center; gap: .8rem; margin-top: 2rem; padding: .65rem 1rem; border-radius: 99px; background: var(--ink); color: white; font-size: .74rem; font-weight: 700; }
.screen-grid { position: absolute; z-index: 1; right: 1.2rem; bottom: 1.2rem; display: grid; grid-template-columns: repeat(3, 38px); gap: 7px; transform: rotate(-8deg); }
.screen-grid i { aspect-ratio: 1; border-radius: 10px; background: rgba(255,255,255,.36); border: 1px solid rgba(255,255,255,.4); }

.orbit { position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,.13); pointer-events: none; }
.orbit-one { width: 610px; height: 610px; animation: orbit 18s linear infinite; }
.orbit-two { width: 770px; height: 430px; transform: rotate(-24deg); border-color: rgba(84,180,53,.16); animation: orbitWide 25s linear infinite; }
.orbit-one::after, .orbit-two::after { content: ""; position: absolute; width: 10px; height: 10px; border-radius: 50%; background: var(--green-bright); box-shadow: 0 0 24px var(--green); }
.orbit-one::after { left: 48px; top: 105px; }
.orbit-two::after { right: 84px; top: 40px; background: var(--purple-bright); box-shadow: 0 0 24px var(--purple); }
.spark { position: absolute; z-index: 4; color: var(--green-bright); font-size: 2rem; animation: pulse 3s ease-in-out infinite; }
.spark-a { top: 7%; right: 8%; }
.spark-b { bottom: 10%; left: 2%; color: var(--purple-bright); animation-delay: 1.1s; }
.floating-tag, .floating-note { position: absolute; z-index: 5; border: 1px solid rgba(255,255,255,.16); box-shadow: 0 20px 60px rgba(0,0,0,.35); backdrop-filter: blur(15px); }
.floating-tag { display: flex; align-items: center; gap: .65rem; padding: .7rem 1rem; border-radius: 999px; background: rgba(28,25,36,.8); font-size: .75rem; font-weight: 600; }
.floating-tag > span:first-child { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(84,180,53,.13); }
.tag-top { top: 10%; left: -3%; }
.tag-bottom { right: -2%; bottom: 13%; flex-direction: column; align-items: flex-start; gap: 0; border-radius: 1rem; padding: .85rem 1.05rem; }
.tag-bottom strong { color: var(--green-bright); font-family: var(--font-display); font-size: 1.1rem; }
.tag-bottom span { color: rgba(255,255,255,.55); font-size: .67rem; }
.floating-note { left: 7%; bottom: 7%; padding: .75rem 1rem; border-radius: .9rem; background: rgba(91,62,153,.85); transform: rotate(-5deg); font-size: .76rem; }
.floating-note strong { color: var(--green-bright); }
.scroll-cue { position: absolute; z-index: 3; left: 2rem; bottom: 3.5rem; display: flex; align-items: center; gap: .8rem; transform: rotate(-90deg); transform-origin: left center; color: rgba(255,255,255,.35); font-size: .67rem; letter-spacing: .11em; text-transform: uppercase; }
.scroll-cue span { display: block; width: 42px; height: 1px; background: currentColor; }

@keyframes orbit { to { transform: rotate(360deg); } }
@keyframes orbitWide { from { transform: rotate(-24deg); } to { transform: rotate(336deg); } }
@keyframes pulse { 0%, 100% { opacity: .35; transform: scale(.8) rotate(0); } 50% { opacity: 1; transform: scale(1.15) rotate(45deg); } }

.ticker { overflow: hidden; background: var(--green); color: var(--ink); border-block: 1px solid rgba(0,0,0,.15); }
.ticker-track { display: flex; align-items: center; width: max-content; padding-block: 1.05rem; animation: ticker 30s linear infinite; }
.ticker span { padding-inline: 2rem; font-family: var(--font-display); font-size: clamp(1rem, 1.6vw, 1.35rem); font-weight: 800; letter-spacing: -.03em; text-transform: uppercase; }
.ticker i { font-style: normal; font-size: .85rem; }
@keyframes ticker { to { transform: translateX(-50%); } }

.statement { padding-block: clamp(7rem, 11vw, 11rem); }
.statement-grid { display: grid; grid-template-columns: .3fr 1.7fr; gap: 3rem; }
.statement-copy h2 { margin: -.15em 0 3.5rem; font-family: var(--font-display); font-size: clamp(3.2rem, 6vw, 6.6rem); line-height: .98; letter-spacing: -.065em; }
.statement-copy h2 span { color: var(--purple); }
.statement-detail { display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 3rem; padding-top: 2.5rem; border-top: 1px solid var(--line-dark); }
.statement-detail p { max-width: 720px; margin: 0; color: var(--muted-dark); font-size: clamp(1.08rem, 1.6vw, 1.25rem); line-height: 1.75; }
.statement-detail .arrow-link { justify-self: end; }

.services { background: var(--ink); }
.section-heading, .work-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 4rem; margin-bottom: 4rem; }
.section-heading h2, .work-heading h2, .process-intro h2, .motion-heading h2, .contact-copy h2 {
  margin: .9rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 5.7vw, 6rem);
  line-height: .96;
  letter-spacing: -.065em;
}
.section-heading h2 span, .process-intro h2 span, .motion-heading h2 span, .contact-copy h2 span { color: var(--green-bright); }
.section-heading > p { max-width: 450px; margin: 0 0 .5rem; color: var(--muted); font-size: 1.05rem; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.service-card { position: relative; min-height: 620px; display: flex; flex-direction: column; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--ink-card); transition: transform .4s var(--ease), border-color .35s ease; }
.service-card:hover { transform: translateY(-8px); border-color: rgba(115,217,79,.5); }
.service-featured { background: var(--purple); }
.service-image { position: relative; height: 210px; overflow: hidden; }
.service-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 20%, var(--ink-card)); }
.service-featured .service-image::after { background: linear-gradient(transparent 20%, var(--purple)); }
.service-image img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.15) contrast(1.05); transition: transform .7s var(--ease), filter .5s ease; }
.service-card:hover .service-image img { transform: scale(1.06); filter: grayscale(0); }
.service-number { position: absolute; top: 1rem; right: 1rem; z-index: 2; min-width: 44px; padding: .38rem .55rem; text-align: center; border: 1px solid rgba(255,255,255,.35); border-radius: 99px; background: rgba(15,14,20,.5); backdrop-filter: blur(10px); font-family: var(--font-display); font-size: .7rem; font-weight: 700; }
.service-body { flex: 1; display: flex; flex-direction: column; padding: 1.5rem 1.6rem 1.8rem; }
.service-icon { width: 45px; height: 45px; display: grid; place-items: center; border-radius: 50%; background: var(--green); color: var(--ink); font-size: 1.15rem; font-weight: 800; }
.service-card h3 { margin: 1.5rem 0 .8rem; font-family: var(--font-display); font-size: clamp(1.75rem, 2.4vw, 2.35rem); line-height: 1.08; letter-spacing: -.045em; }
.service-card p { margin: 0; color: rgba(255,255,255,.65); line-height: 1.7; }
.service-featured p { color: rgba(255,255,255,.75); }
.service-card ul { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem 1rem; margin: auto 0 0; padding: 1.4rem 0 0; border-top: 1px solid rgba(255,255,255,.15); list-style: none; }
.service-card li { position: relative; padding-left: .9rem; color: rgba(255,255,255,.75); font-size: .78rem; }
.service-card li::before { content: ""; position: absolute; left: 0; top: .68em; width: 4px; height: 4px; border-radius: 50%; background: var(--green-bright); }

.work { padding-bottom: clamp(7rem, 12vw, 12rem); }
.work-heading { margin-bottom: 5rem; }
.work-heading h2 span { color: var(--purple); }
.work-heading > p { max-width: 380px; margin: 0 0 .5rem; color: var(--muted-dark); font-size: 1.05rem; }

/* Portfolio: two equal columns on desktop. */
.work-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 4.5rem 2rem; align-items: start; }
.project-card { display: flex; min-width: 0; width: 100%; height: 100%; flex-direction: column; }
.project-card:last-child { grid-column: auto; width: 100%; justify-self: auto; }

.project-visual { position: relative; aspect-ratio: 4 / 3; overflow: hidden; border-radius: var(--radius); background: #ddd; box-shadow: 0 35px 80px rgba(15,14,20,.14); }
.project-visual > img { width: 100%; height: calc(100% - 38px); margin-top: 38px; object-fit: cover; object-position: top; transition: transform .7s var(--ease), filter .5s ease; }
.project-card:hover .project-visual > img { transform: scale(1.035); }
.project-browser { position: absolute; z-index: 4; inset: 0 0 auto; height: 38px; display: flex; align-items: center; gap: 5px; padding-inline: 12px; background: rgba(255,255,255,.93); backdrop-filter: blur(10px); color: var(--ink); }
.project-browser span { width: 7px; height: 7px; border-radius: 50%; background: #d2d0d5; }
.project-browser em { position: absolute; left: 50%; transform: translateX(-50%); padding: .25rem 1rem; border-radius: 20px; background: #eae9ec; color: #77727e; font-style: normal; font-size: .62rem; }
.project-arrow { position: absolute; z-index: 5; right: 1.2rem; bottom: 1.2rem; width: 52px; height: 52px; display: grid; place-items: center; border-radius: 50%; background: var(--green); color: var(--ink); font-size: 1.25rem; font-weight: 800; transform: translateY(10px) scale(.8); opacity: 0; transition: transform .35s var(--ease), opacity .3s ease; }
.project-card:hover .project-arrow { transform: none; opacity: 1; }
.project-cunneen { background: #272620; }
.project-cunneen > img { object-position: top; }
.project-kidz { background: #ffe8d7; }
.project-greenstar { background: #a9d850; }
.project-greenstar > img { object-position: top; }
.project-eastwood { background: #eaf3e4; }
.medical-stage { height: calc(100% - 38px); margin-top: 38px; display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; overflow: hidden; background: linear-gradient(135deg, #e8f2e3, #fff 70%); }
.medical-stage img { width: 100%; height: 100%; object-fit: cover; mix-blend-mode: multiply; }
.medical-copy { position: relative; z-index: 2; padding: 2rem; color: #184226; }
.medical-copy small { display: block; color: #4f7f41; font-size: clamp(.8rem, 1.3vw, 1rem); font-weight: 700; }
.medical-copy strong { display: block; font-family: var(--font-display); font-size: clamp(2rem, 3.8vw, 4rem); line-height: .95; letter-spacing: -.06em; }
.medical-copy i { display: block; width: 48px; height: 5px; margin: 1rem 0; border-radius: 9px; background: #8ac936; }
.medical-copy p { max-width: 220px; margin: 0; color: #65756a; font-size: .8rem; }
.project-meta { display: flex; min-height: 86px; justify-content: space-between; align-items: flex-start; gap: 2rem; padding-top: 1.3rem; }
.project-meta > div { min-width: 0; }
.project-meta h3 { margin: 0; font-family: var(--font-display); font-size: 1.35rem; line-height: 1.2; letter-spacing: -.025em; }
.project-meta p { margin: .28rem 0 0; color: var(--muted-dark); font-size: .82rem; }
.project-meta > span { align-self: center; color: var(--purple); font-size: .72rem; font-weight: 600; text-align: right; }

.process { position: relative; overflow: hidden; background: var(--purple); }
.process::before { content: ""; position: absolute; width: 620px; height: 620px; left: -300px; bottom: -380px; border: 1px solid rgba(255,255,255,.17); border-radius: 50%; box-shadow: 0 0 0 80px rgba(255,255,255,.025), 0 0 0 160px rgba(255,255,255,.02); }
.process-grid { position: relative; display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(4rem, 9vw, 9rem); align-items: start; }
.process-intro { position: sticky; top: 8rem; }
.process-intro > p:not(.section-label) { max-width: 480px; margin: 1.8rem 0 2.2rem; color: rgba(255,255,255,.72); font-size: 1.04rem; }
.process-list { margin: 0; padding: 0; list-style: none; }
.process-list li { display: grid; grid-template-columns: 52px 1fr auto; gap: 1.3rem; align-items: start; padding: 2.2rem 0; border-top: 1px solid rgba(255,255,255,.22); }
.process-list li:last-child { border-bottom: 1px solid rgba(255,255,255,.22); }
.process-list > li > span { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; color: var(--green-bright); font-family: var(--font-display); font-size: .72rem; font-weight: 700; }
.process-list h3 { margin: 0 0 .5rem; font-family: var(--font-display); font-size: 1.6rem; letter-spacing: -.035em; }
.process-list p { max-width: 480px; margin: 0; color: rgba(255,255,255,.67); }
.process-list i { color: rgba(255,255,255,.4); font-style: normal; font-size: 1.35rem; }

.motion { background: var(--ink); }
.motion-heading { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 3rem; margin-bottom: 4rem; }
.motion-heading .section-label { grid-column: 1 / -1; }
.motion-heading h2 { margin-top: 0; }
.video-grid { display: grid; grid-template-columns: 1fr 1.25fr 1fr; gap: 1.25rem; align-items: center; }
.video-card { position: relative; display: block; aspect-ratio: 4 / 5; overflow: hidden; border-radius: var(--radius); background: var(--ink-card); }
.video-tall { aspect-ratio: 4 / 5.2; }
.video-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 40%, rgba(15,14,20,.9)); }
.video-card img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.75); transition: transform .7s var(--ease), filter .5s ease; }
.video-card:hover img { transform: scale(1.06); filter: saturate(1); }
.play { position: absolute; z-index: 2; inset: 50% auto auto 50%; transform: translate(-50%,-50%); width: 66px; height: 66px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; background: rgba(255,255,255,.13); backdrop-filter: blur(12px); transition: background .3s ease, transform .3s var(--ease); }
.play i { margin-left: 4px; font-style: normal; font-size: 1rem; }
.video-card:hover .play { background: var(--green); color: var(--ink); transform: translate(-50%,-50%) scale(1.08); }
.video-card > p { position: absolute; z-index: 2; left: 1.4rem; bottom: 1rem; margin: 0; font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; }

.testimonials { padding-block: clamp(7rem, 10vw, 10rem); }
.quote-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: 1.4rem; margin-top: 3rem; }
.quote-main, .quote-small { margin: 0; border-radius: var(--radius); }
.quote-main { position: relative; min-height: 460px; display: flex; flex-direction: column; justify-content: space-between; padding: clamp(2rem, 5vw, 4.2rem); overflow: hidden; background: var(--green-pale); }
.quote-main::after { content: ""; position: absolute; width: 260px; height: 260px; right: -90px; bottom: -120px; border: 44px solid rgba(84,180,53,.22); border-radius: 50%; }
.quote-mark { position: absolute; top: 1.8rem; right: 3rem; color: var(--green); font-family: Georgia, serif; font-size: 8rem; line-height: 1; opacity: .55; }
.quote-main > p { position: relative; z-index: 2; max-width: 850px; margin: 0; font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 4.4rem); line-height: 1.07; letter-spacing: -.055em; }
.quote-main footer, .quote-small footer { position: relative; z-index: 2; display: flex; flex-direction: column; }
.quote-main footer strong, .quote-small footer strong { font-family: var(--font-display); }
.quote-main footer span, .quote-small footer span { color: var(--muted-dark); font-size: .8rem; }
.quote-stack { display: grid; grid-template-rows: 1fr 1fr; gap: 1.4rem; }
.quote-small { display: flex; flex-direction: column; justify-content: space-between; padding: 2rem; background: var(--paper-bright); border: 1px solid var(--line-dark); }
.quote-small > p { margin: 0 0 2rem; font-family: var(--font-display); font-size: clamp(1.2rem, 2vw, 1.65rem); line-height: 1.3; letter-spacing: -.03em; }
.quote-purple { background: var(--purple); border-color: transparent; color: white; }
.quote-purple footer span { color: rgba(255,255,255,.55); }

.contact { position: relative; overflow: hidden; background: #15121c; }
.contact-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(4rem, 9vw, 9rem); align-items: start; }
.contact-copy > p:not(.section-label) { max-width: 520px; margin: 1.8rem 0 3rem; color: var(--muted); font-size: 1.04rem; }
.contact-direct { display: grid; gap: .9rem; }
.contact-direct a { display: flex; flex-direction: column; padding-bottom: .9rem; border-bottom: 1px solid var(--line); }
.contact-direct small { color: var(--muted); }
.contact-direct strong { font-family: var(--font-display); font-size: 1.3rem; }
.contact-direct a:hover strong { color: var(--green-bright); }
.contact-orb { position: absolute; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.contact-orb-one { width: 520px; height: 520px; left: -270px; bottom: -260px; background: radial-gradient(circle at 65% 35%, rgba(84,180,53,.3), transparent 65%); border: 1px solid rgba(84,180,53,.18); }
.contact-orb-two { width: 620px; height: 620px; right: -300px; top: -310px; background: radial-gradient(circle at 35% 65%, rgba(91,62,153,.55), transparent 68%); border: 1px solid rgba(122,85,203,.25); }

.project-form { padding: clamp(1.6rem, 4vw, 2.7rem); border: 1px solid rgba(255,255,255,.13); border-radius: var(--radius); background: rgba(255,255,255,.055); backdrop-filter: blur(18px); box-shadow: 0 35px 90px rgba(0,0,0,.22); }
.project-form label { display: block; margin-bottom: 1.25rem; }
.project-form label > span { display: block; margin-bottom: .45rem; color: rgba(255,255,255,.62); font-size: .72rem; font-weight: 600; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.project-form input, .project-form select, .project-form textarea { width: 100%; border: 1px solid rgba(255,255,255,.13); border-radius: .8rem; background: rgba(15,14,20,.6); color: white; padding: .9rem 1rem; outline: none; transition: border-color .2s ease, background .2s ease; }
.project-form input, .project-form select { min-height: 52px; }
.project-form textarea { resize: vertical; min-height: 120px; }
.project-form input::placeholder, .project-form textarea::placeholder { color: rgba(255,255,255,.3); }
.project-form input:focus, .project-form select, .project-form textarea:focus { border-color: var(--green); background: rgba(15,14,20,.92); }
.project-form select { color-scheme: dark; }
.form-button { width: 100%; border: 0; }
.form-note { margin: .85rem 0 0; color: rgba(255,255,255,.37); font-size: .68rem; text-align: center; }
.form-note.is-ready { color: var(--green-bright); }
.form-status { padding: .8rem 1rem; border-radius: .75rem; font-size: .82rem; font-weight: 600; }
.form-status-success { background: rgba(84,180,53,.16); color: var(--green-bright); }
.form-status-error { background: rgba(255,110,110,.13); color: #ffb0b0; }
.moodi-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

body.admin-bar .site-header { top: 32px; }

.standard-page { min-height: 72vh; padding: clamp(9rem, 13vw, 12rem) 0 clamp(5rem, 9vw, 8rem); }
.standard-page__content { max-width: 900px; }
.content-entry + .content-entry { margin-top: 4rem; padding-top: 4rem; border-top: 1px solid var(--line-dark); }
.standard-page h1 { margin: 0 0 2.2rem; font-family: var(--font-display); font-size: clamp(3rem, 7vw, 6rem); line-height: .98; letter-spacing: -.06em; }
.standard-page h2, .standard-page h3, .standard-page h4 { margin: 2.2rem 0 .8rem; font-family: var(--font-display); line-height: 1.15; letter-spacing: -.035em; }
.standard-page h2 { font-size: clamp(2rem, 4vw, 3rem); }
.standard-page h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
.standard-page p, .standard-page li { color: #494550; }
.standard-page a:not(.button) { color: var(--purple); text-decoration: underline; text-decoration-thickness: .08em; text-underline-offset: .18em; }
.standard-page img { height: auto; border-radius: 1rem; }
.standard-page blockquote { margin: 2rem 0; padding: 1rem 1.5rem; border-left: 4px solid var(--green); background: var(--green-pale); }
.standard-page .wp-block-separator { border-color: var(--line-dark); }
.error-page > p:not(.section-label) { max-width: 520px; margin-bottom: 2rem; font-size: 1.1rem; }
.error-page .button { text-decoration: none; }

.site-footer { background: #0a090d; }
.footer-top { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; padding-block: 5rem; }
.footer-brand .brand { margin-bottom: 1.4rem; }
.footer-brand p { margin: 0; color: var(--muted); }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.footer-links > div { display: flex; flex-direction: column; align-items: flex-start; gap: .5rem; }
.footer-links small { margin-bottom: .45rem; color: var(--green-bright); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.footer-links a, .footer-links span { color: rgba(255,255,255,.64); font-size: .9rem; }
.footer-links a:hover { color: white; }
.footer-bottom { display: grid; grid-template-columns: 1fr auto 1fr; gap: 2rem; align-items: center; padding-block: 1.5rem 2rem; border-top: 1px solid rgba(255,255,255,.09); color: rgba(255,255,255,.36); font-size: .73rem; }
.footer-bottom div { display: flex; gap: 1.2rem; }
.footer-bottom a:hover { color: var(--green-bright); }
.back-top { justify-self: end; }

.reveal { opacity: 0; transform: translateY(32px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal[data-delay="1"] { transition-delay: .12s; }
.reveal[data-delay="2"] { transition-delay: .24s; }
.reveal[data-delay="3"] { transition-delay: .36s; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  :root { --shell: min(100% - 42px, 980px); }
  .header-cta { display: none; }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 800px; }
  .hero-art { min-height: 610px; width: min(100%, 730px); margin: -1rem auto 0; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .service-card:last-child { grid-column: 1 / -1; min-height: 520px; }
  .process-grid, .contact-grid { gap: 4rem; }
  .video-grid { grid-template-columns: 1fr 1fr; }
  .video-card:last-child { grid-column: 1 / -1; aspect-ratio: 2 / 1; }
}

@media (max-width: 820px) {
  :root { --shell: min(100% - 32px, 720px); }
  .site-header { padding-block: .85rem; }
  .brand { min-width: auto; }
  .brand img { width: 120px; }
  .site-header .brand, .menu-toggle { position: relative; z-index: 2; }
  .menu-toggle { display: block; margin-left: auto; }
  .site-nav { position: fixed; inset: 0; z-index: 1; display: flex; min-height: 100vh; min-height: 100dvh; flex-direction: column; align-items: flex-start; justify-content: flex-start; gap: 1.2rem; padding: 8.5rem 2rem 3rem; overflow-y: auto; background: rgba(15,14,20,.98); opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s ease; }
  .site-nav.is-open { opacity: 1; visibility: visible; }
  .site-nav a { font-family: var(--font-display); font-size: clamp(2.3rem, 10vw, 4rem); line-height: 1; letter-spacing: -.05em; }
  .site-nav a::after { display: none; }
  .hero { padding-top: 8rem; }
  .hero-copy h1 { font-size: clamp(3.6rem, 14vw, 6.4rem); }
  .hero-proof { gap: .8rem; }
  .hero-art { min-height: 520px; }
  .browser-card { width: 90%; transform: none; }
  .browser-screen { min-height: 360px; }
  .orbit-one { width: 500px; height: 500px; }
  .orbit-two { width: 620px; height: 360px; }
  .tag-top { left: 0; }
  .tag-bottom { right: 0; }
  .floating-note { left: 2%; }
  .scroll-cue { display: none; }
  .statement-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .statement-copy h2 { margin-bottom: 2.5rem; }
  .statement-detail { grid-template-columns: 1fr; }
  .statement-detail .arrow-link { justify-self: start; }
  .section-heading, .work-heading { align-items: flex-start; flex-direction: column; gap: 1.5rem; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card, .service-card:last-child { grid-column: auto; min-height: 580px; }
  .work-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .project-card:last-child { grid-column: auto; width: 100%; }
  .project-meta { flex-direction: column; gap: .65rem; }
  .project-meta > span { align-self: flex-start; text-align: left; }
  .process-grid, .contact-grid { grid-template-columns: 1fr; }
  .process-intro { position: static; }
  .motion-heading { grid-template-columns: 1fr; }
  .motion-heading .section-label { grid-column: auto; }
  .motion-heading .arrow-link { justify-self: start; }
  .quote-grid { grid-template-columns: 1fr; }
  .quote-main { min-height: 400px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { grid-template-columns: 1fr auto; }
  .footer-bottom div { order: 3; grid-column: 1 / -1; }
}

@media (max-width: 782px) {
  body.admin-bar .site-header { top: 46px; }
}

@media (max-width: 600px) {
  :root { --shell: calc(100% - 28px); --radius: 1.15rem; }
  .section { padding-block: 5.5rem; }
  .hero { padding-bottom: 5rem; }
  .hero-copy h1 { font-size: clamp(3.35rem, 16vw, 5rem); }
  .hero-lead { font-size: 1rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .text-link { justify-content: center; }
  .hero-proof { grid-template-columns: 1fr; }
  .hero-proof div { display: grid; grid-template-columns: 64px 1fr; align-items: center; gap: .6rem; }
  .hero-proof span { margin-top: 0; }
  .hero-art { min-height: 420px; margin-top: 1rem; }
  .browser-card { width: 100%; }
  .browser-screen { min-height: 300px; }
  .screen-content { padding-top: 3.3rem; }
  .screen-content h2 { font-size: 2.7rem; }
  .screen-grid { display: none; }
  .floating-tag { padding: .55rem .75rem; }
  .tag-top { top: 2%; }
  .tag-bottom { bottom: 4%; }
  .floating-note { display: none; }
  .orbit-one { width: 370px; height: 370px; }
  .orbit-two { width: 460px; height: 260px; }
  .statement { padding-block: 5.5rem; }
  .statement-copy h2, .section-heading h2, .work-heading h2, .process-intro h2, .motion-heading h2, .contact-copy h2 { font-size: clamp(2.65rem, 13vw, 4rem); }
  .service-card, .service-card:last-child { min-height: 600px; }
  .work-grid { grid-template-columns: 1fr; }
  .project-card:last-child { grid-column: auto; width: 100%; }
  .project-visual { aspect-ratio: 4 / 3.3; }
  .medical-copy { padding: 1rem; }
  .medical-copy strong { font-size: 1.65rem; }
  .process-list li { grid-template-columns: 42px 1fr; }
  .process-list i { display: none; }
  .video-grid { grid-template-columns: 1fr; }
  .video-card, .video-card:last-child { grid-column: auto; aspect-ratio: 4 / 4.5; }
  .quote-main { min-height: 440px; padding: 2rem 1.5rem; }
  .quote-main > p { font-size: 2rem; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .contact-direct strong { font-size: 1.05rem; }
  .footer-links { grid-template-columns: 1fr; }
  .footer-bottom { grid-template-columns: 1fr; }
  .back-top { justify-self: start; }
}

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