:root {
  --cream: #f3f0e9;
  --paper: #faf8f2;
  --ink: #0d1210;
  --muted: #646863;
  --teal: #14a38f;
  --teal-bright: #31d6bd;
  --line: rgba(13, 18, 16, .16);
  --coral: #f07967;
  --navy: #192d4c;
  --mint: #a9d9c3;
  --mono: "DM Mono", monospace;
  --sans: "Manrope", sans-serif;
  --shell: 1240px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body { margin: 0; overflow-x: hidden; color: var(--ink); background: var(--cream); font-family: var(--sans); -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea { color: inherit; font: inherit; }
img, svg { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
button { border: 0; }
::selection { color: var(--ink); background: var(--teal-bright); }
:focus-visible { outline: 2px solid var(--teal); outline-offset: 4px; }
.skip-link { position: fixed; top: 12px; left: 12px; z-index: 999; padding: 10px 16px; color: white; background: var(--ink); transform: translateY(-180%); transition: transform .2s; }
.skip-link:focus { transform: translateY(0); }
.noise { position: fixed; inset: 0; z-index: 9999; opacity: .045; 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='.7'/%3E%3C/svg%3E"); }
.shell { width: min(var(--shell), calc(100% - 80px)); margin-inline: auto; }

/* navigation */
.site-header { position: sticky; top: 0; z-index: 100; border-bottom: 1px solid transparent; transition: background .3s, border-color .3s; }
.site-header.is-scrolled { background: rgba(243, 240, 233, .88); border-color: var(--line); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
.nav-shell { min-height: 86px; display: flex; align-items: center; justify-content: space-between; }
.wordmark { display: inline-flex; align-items: center; color: #080a09; font-family: var(--mono); font-size: 1.25rem; letter-spacing: -.08em; }
.wordmark-jk { color: var(--teal); }
.wordmark-cursor { width: 9px; height: 22px; margin-left: 7px; background: var(--teal); animation: blink 1.15s steps(1) infinite; }
.main-nav { display: flex; align-items: center; gap: 34px; font-family: var(--mono); font-size: .74rem; text-transform: uppercase; letter-spacing: .08em; }
.main-nav > a:not(.nav-availability) { position: relative; padding: 12px 0; }
.main-nav > a:not(.nav-availability)::after { position: absolute; right: 0; bottom: 5px; left: 0; height: 1px; background: var(--teal); content: ""; transform: scaleX(0); transform-origin: right; transition: transform .25s var(--ease); }
.main-nav > a:hover::after, .main-nav > a.is-current::after { transform: scaleX(1); transform-origin: left; }
.nav-availability { display: flex; align-items: center; gap: 8px; padding: 10px 14px; border: 1px solid var(--line); border-radius: 99px; }
.nav-availability span { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 4px rgba(20,163,143,.12); }
.menu-toggle { display: none; position: relative; width: 46px; height: 46px; background: transparent; border: 1px solid var(--line); border-radius: 50%; }
.menu-toggle span { position: absolute; left: 12px; width: 20px; height: 1px; background: var(--ink); transition: transform .2s; }
.menu-toggle span:first-child { transform: translateY(-4px); }.menu-toggle span:last-child { transform: translateY(4px); }
.menu-toggle[aria-expanded="true"] span:first-child { transform: rotate(45deg); }.menu-toggle[aria-expanded="true"] span:last-child { transform: rotate(-45deg); }

/* shared typography and controls */
.eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; color: #666a65; font-family: var(--mono); font-size: .7rem; line-height: 1.4; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow > span { display: grid; width: 26px; height: 26px; place-items: center; border: 1px solid currentColor; border-radius: 50%; font-size: .58rem; }
.eyebrow-light { color: rgba(255,255,255,.55); }
.button-row { display: flex; align-items: center; gap: 28px; }
.button { display: inline-flex; min-height: 54px; padding: 0 24px; align-items: center; justify-content: center; gap: 32px; border: 1px solid currentColor; border-radius: 2px; font-family: var(--mono); font-size: .72rem; letter-spacing: .05em; text-transform: uppercase; cursor: pointer; transition: transform .25s var(--ease), background .25s, color .25s; }
.button:hover { transform: translateY(-3px); }
.button-dark { color: white; background: var(--ink); border-color: var(--ink); }.button-dark:hover { color: var(--ink); background: var(--teal-bright); border-color: var(--teal-bright); }
.button-light { color: var(--ink); background: var(--cream); border-color: var(--cream); }.button-light:hover { background: var(--teal-bright); border-color: var(--teal-bright); }
.button-accent { color: var(--ink); background: var(--teal-bright); border-color: var(--teal-bright); }
.text-link { display: inline-flex; align-items: center; gap: 14px; padding-block: 8px; border-bottom: 1px solid currentColor; font-family: var(--mono); font-size: .76rem; text-transform: uppercase; letter-spacing: .05em; }
.text-link span { transition: transform .2s; }.text-link:hover span { transform: translate(3px,-3px); }
.section { padding-block: 145px; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 80px; margin-bottom: 70px; }
.section-heading h2 { margin: 0; font-size: clamp(2.5rem, 5vw, 5rem); line-height: .98; letter-spacing: -.065em; }
.section-heading .eyebrow { margin-bottom: 30px; }
.section-intro { max-width: 430px; margin: 0; color: var(--muted); font-size: 1.05rem; line-height: 1.8; }

/* home hero */
.hero { min-height: calc(100vh - 86px); display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 7vw; padding-block: 70px 90px; }
.hero h1, .page-hero h1 { margin: 0 0 32px; font-size: clamp(4rem, 8vw, 8.6rem); line-height: .85; letter-spacing: -.09em; }
.hero h1 em, .page-hero h1 em { color: var(--teal); font-family: Georgia, serif; font-weight: 400; letter-spacing: -.07em; }
.hero-intro { max-width: 585px; margin-bottom: 38px; color: var(--muted); font-size: clamp(1.02rem, 1.5vw, 1.2rem); line-height: 1.75; }
.hero-playground { position: relative; min-height: min(660px, 70vh); overflow: hidden; color: white; background: var(--ink); isolation: isolate; }
.hero-playground::before { position: absolute; width: 350px; height: 350px; top: var(--mouse-y, 50%); left: var(--mouse-x, 50%); z-index: -1; border-radius: 50%; background: radial-gradient(circle, rgba(49,214,189,.25), transparent 68%); content: ""; transform: translate(-50%,-50%); transition: top .12s, left .12s; }
.playground-grid { position: absolute; inset: 0; opacity: .13; background-image: linear-gradient(rgba(255,255,255,.25) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.25) 1px,transparent 1px); background-size: 70px 70px; }
.hero-monogram { position: absolute; inset: 50% auto auto 50%; display: flex; align-items: end; font-family: var(--mono); font-size: clamp(6rem, 14vw, 12rem); line-height: .7; letter-spacing: -.16em; transform: translate(-53%,-50%); }
.hero-monogram span:first-child { color: var(--teal-bright); }.hero-monogram span:nth-child(2) { color: white; }
.hero-monogram i { width: 27px; height: .7em; margin-left: .13em; background: var(--teal-bright); animation: blink 1.15s steps(1) infinite; }
.orbit { position: absolute; z-index: 2; display: grid; width: 64px; height: 64px; place-items: center; color: var(--ink); background: var(--teal-bright); border-radius: 50%; font-family: var(--mono); font-size: .58rem; letter-spacing: .1em; animation: float 5s ease-in-out infinite; }
.orbit-one { top: 13%; left: 10%; }.orbit-two { top: 19%; right: 10%; width: 80px; height: 80px; color: white; background: var(--coral); animation-delay: -1.2s; }.orbit-three { right: 12%; bottom: 13%; color: white; background: var(--navy); animation-delay: -2.4s; }
.coordinate { position: absolute; color: rgba(255,255,255,.4); font-family: var(--mono); font-size: .56rem; letter-spacing: .14em; }.coordinate-top { top: 22px; left: 22px; }.coordinate-bottom { right: 22px; bottom: 22px; }
.drag-note { position: absolute; bottom: 22px; left: 22px; font-family: var(--mono); font-size: .56rem; text-transform: uppercase; letter-spacing: .12em; }
.ticker { overflow: hidden; color: white; background: var(--teal); border-block: 1px solid var(--ink); transform: rotate(-1deg) scale(1.02); }
.ticker-track { display: flex; width: max-content; align-items: center; gap: 30px; padding-block: 18px; font-family: var(--mono); font-size: .72rem; text-transform: uppercase; letter-spacing: .13em; animation: marquee 24s linear infinite; }
.ticker-track i { font-style: normal; color: var(--ink); }

/* project visuals */
.project-list { display: grid; grid-template-columns: repeat(2,1fr); gap: 80px 28px; }
.project { min-width: 0; }
.project:nth-child(3) { grid-column: 1/-1; width: calc(50% - 14px); margin-left: auto; }
.project-visual { position: relative; display: grid; min-width: 0; min-height: 510px; padding: 60px; place-items: center; overflow: hidden; }
.project-index { position: absolute; top: 22px; right: 22px; z-index: 2; padding: 8px 10px; color: rgba(255,255,255,.75); background: rgba(0,0,0,.16); font-family: var(--mono); font-size: .6rem; letter-spacing: .1em; }
.project-navy { background: #a7b5cc; }.project-coral { background: var(--coral); }.project-mint { background: var(--mint); }
.browser-mockup { width: min(100%,560px); min-width: 0; color: #f7f3ea; background: var(--navy); border: 1px solid rgba(255,255,255,.25); box-shadow: 0 35px 60px rgba(17,24,39,.27); transform: rotate(-2deg); transition: transform .6s var(--ease); }
.project-visual:hover .browser-mockup, .case-visual:hover .browser-mockup { transform: rotate(0) scale(1.035); }
.browser-bar { display: flex; height: 34px; align-items: center; gap: 6px; padding: 0 12px; background: #f2eee7; }
.browser-bar i { width: 6px; height: 6px; border-radius: 50%; background: #9d9c99; }.browser-bar span { margin-left: auto; color: #777; font-family: var(--mono); font-size: .45rem; }
.ormonde-screen { position: relative; min-height: 310px; padding: 35px; overflow: hidden; }
.ormonde-screen::before { position: absolute; right: -65px; bottom: -105px; width: 270px; height: 270px; border: 50px solid rgba(255,255,255,.07); border-radius: 50%; content: ""; }
.mock-nav { display: block; margin-bottom: 62px; font-family: var(--mono); font-size: .65rem; letter-spacing: .12em; }.mock-nav b { color: #d1a66b; }
.ormonde-screen strong { display: block; font-family: Georgia,serif; font-size: clamp(1.8rem,4vw,3rem); font-weight: 400; line-height: .98; }.ormonde-screen small { display: block; margin-top: 22px; color: rgba(255,255,255,.6); }.ormonde-screen > i { display: block; width: 55px; height: 2px; margin-top: 26px; background: #d1a66b; }
.phone-pair { position: relative; width: 360px; height: 380px; transition: transform .6s var(--ease); }.project-visual:hover .phone-pair, .case-visual:hover .phone-pair { transform: translateY(-10px) rotate(1deg); }
.phone { position: absolute; right: 12px; bottom: -25px; width: 195px; height: 390px; padding: 35px 18px 18px; color: var(--ink); background: #fff9ee; border: 7px solid #121212; border-radius: 29px; box-shadow: 0 30px 50px rgba(74,24,15,.25); }
.phone-back { top: 28px; right: auto; bottom: auto; left: 2px; z-index: -1; color: white; background: #6c1f19; transform: rotate(-10deg); }.phone-speaker { position: absolute; top: 10px; left: 50%; width: 45px; height: 5px; border-radius: 99px; background: #111; transform: translateX(-50%); }.phone small { display: block; margin-bottom: 18px; font-family: var(--mono); font-size: .47rem; letter-spacing: .12em; }.phone strong { display: block; font-family: Georgia,serif; font-size: 1.6rem; font-weight: 400; }.phone b { display: block; margin-top: 14px; padding: 11px; color: white; background: #6c1f19; border-radius: 3px; font-family: var(--mono); font-size: .48rem; text-align: center; text-transform: uppercase; }.qr { position: absolute; bottom: 50px; left: 50%; width: 70px; height: 70px; border: 8px dotted white; transform: translateX(-50%); }
.photo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5px; }.photo-grid i { height: 110px; background: linear-gradient(145deg,#e7bca5,#7e958d); }.photo-grid i:nth-child(2) { background: linear-gradient(145deg,#85685f,#f2d1b5); }.photo-grid i:nth-child(3) { height: 70px; background: linear-gradient(145deg,#bf8588,#f0c999); }.photo-grid i:nth-child(4) { height: 70px; background: linear-gradient(145deg,#738b72,#dfc5b4); }
.food-ui { position: relative; width: min(100%,510px); height: 390px; overflow: hidden; background: #eaf1e6; border: 8px solid var(--ink); border-radius: 20px; box-shadow: 0 32px 55px rgba(31,78,62,.25); transform: rotate(2deg); transition: transform .6s var(--ease); }.project-visual:hover .food-ui, .case-visual:hover .food-ui { transform: rotate(0) scale(1.025); }
.food-head { position: relative; z-index: 2; display: flex; padding: 25px; align-items: center; justify-content: space-between; }.food-head span { font-size: 1.15rem; font-weight: 800; }.food-head b { padding: 7px 9px; color: white; background: var(--teal); border-radius: 99px; font-family: var(--mono); font-size: .48rem; }
.map-lines { position: absolute; inset: 0; opacity: .45; background-image: repeating-linear-gradient(28deg,transparent 0 38px,#adbaab 39px 42px),repeating-linear-gradient(112deg,transparent 0 60px,#c2cdc0 61px 64px); }
.map-dot { position: absolute; width: 20px; height: 20px; background: var(--coral); border: 5px solid white; border-radius: 50%; box-shadow: 0 2px 6px #777; }.dot-one { top: 34%; left: 25%; }.dot-two { top: 28%; right: 20%; }.dot-three { right: 40%; bottom: 35%; }
.food-card { position: absolute; right: 18px; bottom: 18px; left: 18px; z-index: 2; padding: 18px; background: white; box-shadow: 0 8px 25px rgba(0,0,0,.12); }.food-card span { float: right; color: var(--teal); font-family: var(--mono); font-size: .65rem; }.food-card strong,.food-card small { display: block; }.food-card small { margin-top: 5px; color: var(--muted); font-size: .7rem; }
.project-meta { display: flex; justify-content: space-between; gap: 30px; padding-top: 22px; border-top: 1px solid var(--line); }.project-meta h3 { margin-bottom: 7px; font-size: 1.2rem; }.project-meta p { margin: 0; color: var(--muted); font-size: .82rem; }.project-meta ul { display: flex; flex-wrap: wrap; justify-content: end; gap: 6px; margin: 0; padding: 0; list-style: none; }.project-meta li { padding: 6px 9px; border: 1px solid var(--line); border-radius: 99px; font-family: var(--mono); font-size: .55rem; text-transform: uppercase; }

/* about banner and capabilities */
.about-banner { color: white; background: var(--ink); }.about-banner-grid { display: grid; min-height: 760px; grid-template-columns: .9fr 1.1fr; gap: 10vw; align-items: center; }
.portrait-card { position: relative; height: 530px; overflow: hidden; background: var(--teal); border-radius: 50% 50% 3px 3px; }.portrait-type { position: absolute; top: -5%; left: -2%; color: var(--teal-bright); font-size: 12rem; font-weight: 800; line-height: .7; letter-spacing: -.15em; mix-blend-mode: screen; transform: rotate(-8deg); }.portrait-stamp { position: absolute; right: 10%; bottom: 12%; display: flex; width: 230px; height: 230px; align-items: center; justify-content: center; flex-direction: column; color: var(--ink); background: var(--cream); border-radius: 50%; transform: rotate(7deg); }.portrait-stamp span,.portrait-stamp small { font-family: var(--mono); font-size: .56rem; letter-spacing: .14em; }.portrait-stamp strong { font-size: 5rem; line-height: 1; letter-spacing: -.08em; }
.about-copy h2 { margin-bottom: 32px; font-size: clamp(2.6rem,5vw,5.5rem); line-height: .95; letter-spacing: -.07em; }.about-copy > p:not(.eyebrow) { max-width: 570px; margin-bottom: 36px; color: rgba(255,255,255,.65); font-size: 1.05rem; line-height: 1.8; }
.capability-grid { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }.capability { min-height: 470px; padding: 32px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }.capability > span { font-family: var(--mono); font-size: .65rem; }.capability-icon { display: grid; width: 90px; height: 90px; margin: 65px 0 35px; place-items: center; color: var(--teal); border: 1px solid var(--line); border-radius: 50%; font-family: var(--mono); font-size: 1.2rem; transition: transform .4s var(--ease), background .3s; }.capability:hover .capability-icon { color: var(--ink); background: var(--teal-bright); transform: rotate(8deg) scale(1.08); }.capability h3 { font-size: 1.5rem; }.capability p { min-height: 92px; color: var(--muted); font-size: .9rem; line-height: 1.7; }.capability ul { display: flex; flex-wrap: wrap; gap: 7px; padding: 0; list-style: none; }.capability li { padding: 6px 8px; color: var(--muted); border: 1px solid var(--line); border-radius: 99px; font-family: var(--mono); font-size: .54rem; text-transform: uppercase; }

/* CTA and footer */
.contact-cta { padding-block: 130px; border-top: 1px solid var(--line); }.contact-cta > a { display: grid; grid-template-columns: .85fr 1.15fr auto; align-items: center; gap: 30px; }.contact-cta a span { color: var(--muted); font-size: clamp(1.5rem,3vw,3rem); }.contact-cta a strong { font-size: clamp(3.5rem,8vw,8rem); letter-spacing: -.08em; transition: color .25s; }.contact-cta a i { display: grid; width: 80px; height: 80px; place-items: center; color: white; background: var(--ink); border-radius: 50%; font-size: 1.8rem; font-style: normal; transition: transform .4s var(--ease), background .25s; }.contact-cta a:hover strong { color: var(--teal); }.contact-cta a:hover i { color: var(--ink); background: var(--teal-bright); transform: rotate(45deg); }
.site-footer { padding: 80px 0 32px; color: white; background: var(--ink); }.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: start; gap: 50px; }.footer-wordmark { color: white; font-size: 1.7rem; }.footer-grid > p { margin: 0; color: rgba(255,255,255,.45); line-height: 1.65; }.footer-links { display: flex; justify-content: end; gap: 28px; font-family: var(--mono); font-size: .68rem; text-transform: uppercase; }.footer-links a:hover { color: var(--teal-bright); }.footer-bottom { grid-column: 1/-1; display: grid; grid-template-columns: repeat(3,1fr); margin-top: 70px; padding-top: 24px; color: rgba(255,255,255,.35); border-top: 1px solid rgba(255,255,255,.12); font-family: var(--mono); font-size: .58rem; text-transform: uppercase; letter-spacing: .08em; }.footer-bottom span:nth-child(2) { text-align: center; }.footer-bottom a { text-align: right; }

/* interior pages */
.page-hero { padding: 130px 0 150px; border-bottom: 1px solid var(--line); }.page-hero h1 { max-width: 1050px; margin-bottom: 45px; }.page-hero > p:last-child { max-width: 570px; margin: 0 0 0 auto; color: var(--muted); font-size: 1.1rem; line-height: 1.8; }
.case-studies { padding-block: 140px; }.case-study { display: grid; grid-template-columns: 55px .75fr 1.25fr; gap: 50px; align-items: center; padding-block: 110px; border-bottom: 1px solid var(--line); }.case-study:first-child { padding-top: 0; }.case-number { align-self: start; font-family: var(--mono); font-size: .65rem; }.case-copy h2 { margin: 0 0 28px; font-size: clamp(2.6rem,5vw,5rem); line-height: .9; letter-spacing: -.07em; }.case-copy > p:not(.eyebrow) { color: var(--muted); line-height: 1.8; }.case-copy dl { margin: 35px 0 0; }.case-copy dl div { display: grid; grid-template-columns: 85px 1fr; padding: 11px 0; border-top: 1px solid var(--line); font-size: .72rem; }.case-copy dt { color: var(--muted); font-family: var(--mono); text-transform: uppercase; }.case-copy dd { margin: 0; }.case-visual { min-height: 610px; display: grid; padding: 65px; place-items: center; overflow: hidden; }.case-visual .phone-pair { transform: scale(1.15); }.case-reverse .case-copy { order: 3; }.case-reverse .case-visual { order: 2; }
.process-section,.values-section { padding-block: 130px; color: white; background: var(--ink); }.process-grid { display: grid; grid-template-columns: repeat(4,1fr); margin: 0; padding: 0; border-top: 1px solid rgba(255,255,255,.18); border-left: 1px solid rgba(255,255,255,.18); list-style: none; }.process-grid li { min-height: 280px; padding: 28px; border-right: 1px solid rgba(255,255,255,.18); border-bottom: 1px solid rgba(255,255,255,.18); }.process-grid span { color: var(--teal-bright); font-family: var(--mono); font-size: .65rem; }.process-grid h3 { margin-top: 80px; }.process-grid p { color: rgba(255,255,255,.5); font-size: .84rem; line-height: 1.7; }
.about-hero { padding-bottom: 100px; border: 0; }.about-story { display: grid; grid-template-columns: .9fr 1.1fr; gap: 10vw; align-items: center; padding-bottom: 150px; }.about-art { position: relative; min-height: 620px; overflow: hidden; background: var(--teal); }.about-art-type { display: flex; position: absolute; top: 8%; left: 5%; color: var(--teal-bright); font-size: 18rem; font-weight: 800; line-height: 1; letter-spacing: -.2em; mix-blend-mode: screen; transform: rotate(-8deg); }.about-art-label { position: absolute; right: 20px; bottom: 20px; z-index: 2; color: white; font-family: var(--mono); font-size: .58rem; line-height: 1.6; letter-spacing: .12em; text-align: right; }.about-art img { position: absolute; right: 8%; bottom: 10%; width: 55%; border-radius: 50%; mix-blend-mode: multiply; transform: rotate(6deg); }.story-copy .lead { color: var(--ink); font-size: clamp(1.6rem,2.7vw,2.5rem); line-height: 1.4; letter-spacing: -.035em; }.story-copy p { color: var(--muted); line-height: 1.85; }.story-copy strong { color: var(--ink); }.story-copy .text-link { margin-top: 20px; }
.numbers-strip { padding-block: 70px; color: white; background: var(--teal); }.numbers-grid { display: grid; grid-template-columns: repeat(3,1fr); }.numbers-grid div { display: flex; align-items: end; gap: 18px; padding-inline: 45px; border-right: 1px solid rgba(255,255,255,.25); }.numbers-grid div:first-child { padding-left: 0; }.numbers-grid div:last-child { border: 0; }.numbers-grid strong { font-size: clamp(4rem,8vw,7.5rem); line-height: .8; letter-spacing: -.08em; }.numbers-grid span { max-width: 100px; font-family: var(--mono); font-size: .6rem; line-height: 1.5; text-transform: uppercase; letter-spacing: .08em; }
.tool-list { border-top: 1px solid var(--line); }.tool-list > div { display: grid; grid-template-columns: .35fr 1.65fr; gap: 50px; padding: 28px 0; border-bottom: 1px solid var(--line); }.tool-list span { font-family: var(--mono); font-size: .7rem; text-transform: uppercase; }.tool-list p { margin: 0; color: var(--muted); }.values-grid { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid rgba(255,255,255,.15); border-left: 1px solid rgba(255,255,255,.15); }.values-grid article { min-height: 330px; padding: 35px; border-right: 1px solid rgba(255,255,255,.15); border-bottom: 1px solid rgba(255,255,255,.15); }.values-grid article > span { color: var(--teal-bright); font-size: 1.5rem; }.values-grid h3 { margin-top: 95px; font-size: 1.4rem; }.values-grid p { color: rgba(255,255,255,.5); font-size: .86rem; line-height: 1.7; }

/* contact */
.contact-page { color: white; background: var(--ink); }.contact-page .site-header.is-scrolled { background: rgba(13,18,16,.9); border-color: rgba(255,255,255,.12); }.contact-page .wordmark { color: white; }.contact-page .menu-toggle { border-color: rgba(255,255,255,.25); }.contact-page .menu-toggle span { background: white; }.contact-page .main-nav > a:not(.nav-availability)::after { background: var(--teal-bright); }.contact-page .nav-availability { border-color: rgba(255,255,255,.2); }.contact-layout { display: grid; min-height: calc(100vh - 86px); grid-template-columns: .9fr 1.1fr; gap: 9vw; align-items: start; padding-block: 100px 140px; }.contact-intro { position: sticky; top: 150px; }.contact-intro h1 { margin: 0 0 35px; font-size: clamp(4rem,7vw,7.5rem); line-height: .83; letter-spacing: -.09em; }.contact-intro h1 em { color: var(--teal-bright); font-family: Georgia,serif; font-weight: 400; }.contact-intro > p:not(.eyebrow) { max-width: 500px; color: rgba(255,255,255,.55); line-height: 1.8; }.email-link { display: inline-flex; gap: 18px; margin-top: 20px; padding-bottom: 6px; color: var(--teal-bright); border-bottom: 1px solid var(--teal-bright); font-family: var(--mono); font-size: .86rem; }.contact-details { display: flex; gap: 50px; margin-top: 65px; }.contact-details span,.contact-details strong { display: block; }.contact-details span { margin-bottom: 8px; color: rgba(255,255,255,.38); font-family: var(--mono); font-size: .55rem; text-transform: uppercase; letter-spacing: .1em; }.contact-details strong { font-size: .8rem; font-weight: 500; }
.contact-form { padding: 42px; color: var(--ink); background: var(--cream); }.form-heading { display: flex; align-items: center; gap: 15px; margin-bottom: 45px; font-family: var(--mono); font-size: .62rem; letter-spacing: .1em; }.form-heading i { flex: 1; height: 1px; background: var(--line); }.contact-form > label { display: block; margin-bottom: 36px; }.contact-form > label > span,.contact-form legend { display: block; margin-bottom: 12px; color: var(--muted); font-family: var(--mono); font-size: .62rem; text-transform: uppercase; letter-spacing: .08em; }.contact-form input[type="text"],.contact-form input[type="email"],.contact-form textarea { width: 100%; padding: 12px 0; background: transparent; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; font-size: 1.1rem; outline: none; resize: vertical; transition: border-color .2s; }.contact-form input:focus,.contact-form textarea:focus { border-color: var(--teal); }.contact-form fieldset { margin: 0 0 38px; padding: 0; border: 0; }.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }.choice-grid label { cursor: pointer; }.choice-grid input { position: absolute; opacity: 0; pointer-events: none; }.choice-grid span { display: block; padding: 13px 15px; border: 1px solid var(--line); font-size: .8rem; transition: background .2s,border-color .2s; }.choice-grid input:checked + span { background: var(--teal-bright); border-color: var(--ink); }.choice-grid input:focus-visible + span { outline: 2px solid var(--teal); outline-offset: 2px; }.contact-form .button { width: 100%; }.form-note { margin: 16px 0 0; color: var(--muted); font-size: .7rem; text-align: center; }.contact-footer { border-top: 1px solid rgba(255,255,255,.12); }

/* animation */
.reveal { opacity: 0; transform: translateY(38px); transition: opacity .75s var(--ease), transform .75s var(--ease); }.reveal[data-delay="1"] { transition-delay: .1s; }.reveal[data-delay="2"] { transition-delay: .2s; }.reveal[data-delay="3"] { transition-delay: .3s; }.reveal.is-visible { opacity: 1; transform: none; }
@keyframes blink { 0%,48% { opacity: 1; } 49%,100% { opacity: 0; } }
@keyframes float { 0%,100% { transform: translateY(0) rotate(-4deg); } 50% { transform: translateY(-16px) rotate(5deg); } }
@keyframes marquee { to { transform: translateX(-50%); } }

@media (max-width: 1050px) {
  .shell { width: min(var(--shell),calc(100% - 48px)); }
  .hero { gap: 40px; }.hero-playground { min-height: 540px; }.hero h1 { font-size: clamp(4rem,8.5vw,6rem); }
  .project-visual { min-height: 430px; padding: 45px; }.phone-pair { transform: scale(.85); }.case-visual .phone-pair { transform: scale(1); }
  .about-banner-grid { gap: 7vw; }.portrait-card { height: 480px; }
  .case-study { grid-template-columns: 35px .8fr 1.2fr; gap: 30px; }.case-visual { min-height: 520px; padding: 40px; }
}

@media (max-width: 800px) {
  .shell { width: min(var(--shell),calc(100% - 36px)); }.section { padding-block: 95px; }
  body.menu-open .site-header.is-scrolled { background: transparent; border-color: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; }
  .menu-toggle { display: block; z-index: 102; }.main-nav { position: fixed; inset: 0; z-index: 101; display: flex; width: 100%; min-height: 100vh; min-height: 100dvh; padding: 110px 28px 40px; overflow-y: auto; overscroll-behavior: contain; align-items: stretch; justify-content: center; flex-direction: column; gap: 0; color: white; background-color: var(--ink); visibility: hidden; opacity: 0; transform: translateY(-10px); transition: opacity .25s,visibility .25s,transform .25s; }.main-nav.is-open { visibility: visible; opacity: 1; transform: none; }.main-nav > a:not(.nav-availability) { padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.15); font-family: var(--sans); font-size: clamp(2rem,8vw,4rem); font-weight: 700; letter-spacing: -.04em; text-transform: none; }.main-nav .nav-availability { width: fit-content; margin-top: 30px; }.menu-toggle[aria-expanded="true"] { position: fixed; top: 20px; right: 18px; border-color: rgba(255,255,255,.25); }.menu-toggle[aria-expanded="true"] span { background: white; }
  .hero { min-height: auto; grid-template-columns: 1fr; padding: 75px 0 90px; }.hero-copy { padding-block: 20px; }.hero h1 { font-size: clamp(4.2rem,17vw,7rem); }.hero-playground { min-height: 580px; }.ticker { transform: rotate(-1.5deg) scale(1.03); }
  .section-heading { align-items: start; flex-direction: column; gap: 28px; margin-bottom: 50px; }.section-heading h2 { font-size: clamp(2.8rem,11vw,5rem); }.section-heading .text-link { align-self: flex-end; }
  .project-list { grid-template-columns: 1fr; gap: 65px; }.project:nth-child(3) { grid-column: auto; width: 100%; }.project-visual { min-height: 520px; }.project-meta { align-items: start; flex-direction: column; }.project-meta ul { justify-content: start; }
  .about-banner-grid { min-height: auto; grid-template-columns: 1fr; gap: 70px; padding-block: 90px; }.portrait-card { height: 560px; }.about-copy { padding-bottom: 30px; }
  .capability-grid { grid-template-columns: 1fr; }.capability { min-height: auto; }.capability-icon { margin-block: 45px 28px; }.capability p { min-height: auto; }
  .contact-cta { padding-block: 90px; }.contact-cta > a { grid-template-columns: 1fr auto; }.contact-cta a span { grid-column: 1/-1; }.contact-cta a strong { font-size: clamp(3.2rem,11vw,6rem); }
  .footer-grid { grid-template-columns: 1fr 1fr; }.footer-links { grid-column: 2; grid-row: 1/3; flex-direction: column; align-items: end; }.footer-bottom { grid-template-columns: 1fr; gap: 13px; }.footer-bottom span:nth-child(2),.footer-bottom a { text-align: left; }
  .page-hero { padding: 90px 0 100px; }.page-hero h1 { font-size: clamp(4rem,15vw,7rem); }.page-hero > p:last-child { margin-left: 0; }
  .case-studies { padding-block: 80px; }.case-study { grid-template-columns: 35px 1fr; padding-block: 80px; }.case-copy { grid-column: 2; }.case-visual { grid-column: 1/-1; min-height: 570px; }.case-reverse .case-copy { order: initial; }.case-reverse .case-visual { order: initial; }.process-grid { grid-template-columns: 1fr 1fr; }
  .about-story { grid-template-columns: 1fr; gap: 65px; padding-bottom: 100px; }.about-art { min-height: 620px; }.numbers-grid { grid-template-columns: 1fr; gap: 40px; }.numbers-grid div { padding: 0 0 35px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.25); }.numbers-grid div:last-child { padding: 0; }.values-grid { grid-template-columns: 1fr; }.values-grid article { min-height: 270px; }.values-grid h3 { margin-top: 60px; }
  .contact-layout { grid-template-columns: 1fr; padding-block: 80px 100px; }.contact-intro { position: static; }.contact-form { padding: 32px; }
}

@media (max-width: 520px) {
  .shell { width: min(var(--shell),calc(100% - 28px)); }.nav-shell { min-height: 76px; }
  .hero { padding-top: 45px; }.hero h1 { font-size: clamp(3.75rem,18vw,5.5rem); }.hero-intro { font-size: .98rem; }.button-row { align-items: stretch; flex-direction: column; gap: 18px; }.button-row .text-link { align-self: flex-start; }.hero-playground { min-height: 430px; }.hero-monogram { font-size: 7rem; }.orbit { width: 52px; height: 52px; }.orbit-two { width: 62px; height: 62px; }
  .project-visual { min-height: 390px; padding: 28px; }.browser-mockup { transform: rotate(-2deg) scale(.95); }.ormonde-screen { min-height: 250px; padding: 25px; }.mock-nav { margin-bottom: 46px; }.phone-pair { transform: scale(.72); }.project-visual:hover .phone-pair { transform: scale(.72) translateY(-8px); }.food-ui { height: 300px; }.project-meta { padding-top: 17px; }
  .portrait-card { height: 430px; }.portrait-type { font-size: 9rem; }.portrait-stamp { width: 175px; height: 175px; }.portrait-stamp strong { font-size: 4rem; }
  .contact-cta > a { gap: 18px; }.contact-cta a i { width: 58px; height: 58px; }.contact-cta a strong { font-size: 2.85rem; }.footer-grid { grid-template-columns: 1fr; }.footer-links { grid-column: auto; grid-row: auto; align-items: start; }.footer-bottom { margin-top: 35px; }
  .case-study { grid-template-columns: 25px 1fr; gap: 16px; }.case-visual { min-height: 400px; padding: 24px; }.case-visual .phone-pair { transform: scale(.76); }.case-copy h2 { font-size: 3rem; }.process-grid { grid-template-columns: 1fr; }.process-grid li { min-height: 220px; }.process-grid h3 { margin-top: 55px; }
  .about-art { min-height: 430px; }.about-art-type { font-size: 11rem; }.about-art img { width: 65%; }.tool-list > div { grid-template-columns: 1fr; gap: 12px; }.numbers-grid div { align-items: center; }.numbers-grid strong { font-size: 4.5rem; }
  .contact-intro h1 { font-size: clamp(3.7rem,17vw,5.4rem); }.contact-form { padding: 25px 20px; }.choice-grid { grid-template-columns: 1fr; }.contact-details { gap: 25px; flex-direction: column; }.email-link { font-size: .7rem; }
}

/* Portrait-led About page */
.about-page main { width: 100%; max-width: 100%; overflow-x: clip; }

.about-profile-hero {
  display: grid;
  width: min(1480px, calc(100% - 80px));
  min-height: calc(100dvh - 86px);
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr);
  gap: clamp(55px, 8vw, 140px);
  align-items: center;
  padding-block: 75px 110px;
}

.about-role {
  margin-bottom: 32px;
  color: var(--teal);
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.about-profile-copy h1 {
  max-width: 900px;
  margin: 0 0 38px;
  font-size: clamp(4rem, 5.4vw, 5.65rem);
  line-height: .88;
  letter-spacing: -.085em;
}

.about-profile-copy h1 em { color: var(--teal); font-family: Georgia, serif; font-weight: 400; }

.about-profile-intro { max-width: 650px; margin-bottom: 42px; color: var(--muted); font-size: clamp(1rem, 1.35vw, 1.18rem); line-height: 1.8; }
.about-profile-links { display: flex; align-items: center; gap: 30px; }

.about-portrait-stage {
  position: relative;
  min-height: min(720px, 73vh);
  margin: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 64% 35%, rgba(49, 214, 189, .44), transparent 35%),
    #16221e;
  isolation: isolate;
}

.about-portrait-stage::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .16;
  background-image:
    linear-gradient(rgba(255,255,255,.35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.35) 1px, transparent 1px);
  background-size: 66px 66px;
  content: "";
}

.about-portrait-type {
  position: absolute;
  top: 4%;
  left: -5%;
  z-index: -1;
  color: rgba(49, 214, 189, .22);
  font-size: clamp(12rem, 24vw, 25rem);
  font-weight: 800;
  line-height: .8;
  letter-spacing: -.18em;
}

.about-portrait-line { position: absolute; top: 8%; right: 8%; width: 1px; height: 38%; background: rgba(255,255,255,.4); }
.about-portrait-stage > img { position: absolute; right: 2%; bottom: 0; width: 94%; max-height: 92%; object-fit: contain; object-position: bottom center; }
.about-portrait-stage figcaption { position: absolute; right: 26px; bottom: 24px; z-index: 2; display: grid; gap: 6px; padding: 14px 17px; color: white; background: rgba(13,18,16,.78); backdrop-filter: blur(10px); }
.about-portrait-stage figcaption strong { font-size: .86rem; }
.about-portrait-stage figcaption span { color: rgba(255,255,255,.58); font-family: var(--mono); font-size: .5rem; letter-spacing: .08em; text-transform: uppercase; }

.about-bento-section { padding-block: 180px 210px; }
.about-section-heading { display: grid; grid-template-columns: 1.1fr .9fr; gap: 9vw; align-items: end; margin-bottom: 85px; }
.about-section-heading h2 { margin: 0; font-size: clamp(3.6rem, 7.2vw, 7.3rem); line-height: .86; letter-spacing: -.08em; }
.about-section-heading p { max-width: 540px; margin: 0; color: var(--muted); font-size: 1.06rem; line-height: 1.85; }

.about-bento {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: dense;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.about-bento-card { position: relative; min-width: 0; padding: clamp(28px, 4vw, 58px); overflow: hidden; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); isolation: isolate; }
.about-bento-card::after { position: absolute; inset: auto 0 0; z-index: -1; height: 5px; background: var(--teal); content: ""; transform: scaleX(0); transform-origin: left; transition: transform .55s var(--ease); }
.about-bento-card:hover::after { transform: scaleX(1); }
.about-bento-card > span { display: block; margin-bottom: 42px; color: var(--teal); font-family: var(--mono); font-size: .62rem; letter-spacing: .09em; text-transform: uppercase; }
.about-bento-card h3 { max-width: 660px; margin: 0 0 22px; font-size: clamp(1.65rem, 3vw, 3.1rem); line-height: 1.05; letter-spacing: -.055em; }
.about-bento-card p { max-width: 620px; margin: 0; color: var(--muted); line-height: 1.75; }
.about-origin { grid-column: span 7; min-height: 430px; display: flex; flex-direction: column; justify-content: flex-end; }
.about-honours { grid-column: span 5; min-height: 430px; color: white; background: var(--teal); }
.about-honours > span { color: rgba(255,255,255,.65); }
.about-honours strong { display: block; margin: 20px 0 34px; font-size: clamp(6rem, 12vw, 11rem); line-height: .7; letter-spacing: -.09em; }
.about-honours h3 { margin-bottom: 15px; font-size: 1.55rem; }
.about-honours p { color: rgba(255,255,255,.68); }
.about-honours::after { background: var(--teal-bright); }
.about-discipline { grid-column: span 4; min-height: 320px; }
.about-discipline h3 { margin-top: 68px; font-size: clamp(1.5rem, 2.5vw, 2.35rem); }

.about-marquee { overflow: hidden; color: var(--ink); background: var(--teal-bright); border-block: 1px solid var(--ink); transform: rotate(-1deg) scale(1.015); }
.about-marquee-track { display: flex; width: max-content; align-items: center; gap: 32px; padding-block: 24px; font-family: var(--mono); font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; animation: aboutMarquee 28s linear infinite; }
.about-marquee-track i { width: 7px; height: 7px; background: var(--ink); transform: rotate(45deg); }

.about-manifesto-section { padding-block: 220px 250px; }
.about-manifesto { max-width: 1180px; margin: 0; font-size: clamp(3.1rem, 6.5vw, 7rem); font-weight: 600; line-height: .98; letter-spacing: -.075em; text-wrap: balance; }
.about-manifesto span { display: inline; }

.about-process-section { padding-block: 190px 230px; color: white; background: var(--ink); }
.about-process-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(80px, 12vw, 190px); align-items: start; }
.about-process-pin > p { margin-bottom: 28px; color: var(--teal-bright); font-family: var(--mono); font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; }
.about-process-pin h2 { margin: 0 0 48px; font-size: clamp(3rem, 4.2vw, 4.8rem); line-height: .88; letter-spacing: -.075em; }
.about-process-pin .text-link { color: white; }
.about-process-steps { min-width: 0; }
.about-process-step { display: flex; min-height: 68vh; padding-block: 80px; justify-content: center; flex-direction: column; border-top: 1px solid rgba(255,255,255,.18); transform-origin: center; }
.about-process-step:last-child { border-bottom: 1px solid rgba(255,255,255,.18); }
.about-process-step > span { margin-bottom: 55px; color: var(--teal-bright); font-family: var(--mono); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; }
.about-process-step h3 { max-width: 680px; margin: 0 0 30px; font-size: clamp(2.6rem, 5vw, 5.2rem); line-height: .95; letter-spacing: -.065em; }
.about-process-step p { max-width: 580px; margin: 0; color: rgba(255,255,255,.56); font-size: 1rem; line-height: 1.85; }

.about-contact-cta { padding-block: 175px 190px; }
.about-cta-kicker { margin-bottom: 42px; color: var(--teal); font-family: var(--mono); font-size: .67rem; letter-spacing: .1em; text-transform: uppercase; }

@keyframes aboutMarquee { to { transform: translateX(-50%); } }

@media (max-width: 1050px) {
  .about-profile-hero { grid-template-columns: minmax(0, 1fr) minmax(320px, .8fr); gap: 48px; }
  .about-profile-copy h1 { font-size: clamp(3.5rem, 6vw, 4.8rem); }
  .about-portrait-stage { min-height: 590px; }
}

@media (max-width: 900px) {
  .about-profile-hero { width: min(var(--shell), calc(100% - 48px)); min-height: auto; grid-template-columns: 1fr; padding-block: 80px 120px; }
  .about-profile-copy h1 { max-width: 780px; font-size: clamp(4rem, 8.8vw, 5.3rem); }
  .about-portrait-stage { min-height: 680px; }
  .about-section-heading { grid-template-columns: 1fr; gap: 35px; }
  .about-origin, .about-honours { grid-column: span 6; }
  .about-discipline { grid-column: span 4; }
  .about-bento-section { padding-block: 135px 165px; }
  .about-manifesto-section { padding-block: 160px 180px; }
  .about-process-section { padding-block: 140px 170px; }
  .about-process-layout { grid-template-columns: 1fr; gap: 100px; }
  .about-process-step { min-height: 520px; }
}

@media (max-width: 620px) {
  .about-profile-hero { width: min(var(--shell), calc(100% - 28px)); padding-block: 54px 90px; }
  .about-profile-copy h1 { font-size: clamp(2.5rem, 10.2vw, 3.5rem); }
  .about-role { max-width: 260px; line-height: 1.65; }
  .about-profile-links { align-items: stretch; flex-direction: column; gap: 20px; }
  .about-profile-links .text-link { align-self: flex-start; }
  .about-portrait-stage { min-height: 470px; }
  .about-portrait-stage > img { right: -4%; width: 108%; max-height: 91%; }
  .about-portrait-stage figcaption { right: 14px; bottom: 14px; }
  .about-section-heading { margin-bottom: 55px; }
  .about-section-heading h2 { font-size: 3.65rem; }
  .about-bento { grid-template-columns: 1fr; }
  .about-origin, .about-honours, .about-discipline { grid-column: 1 / -1; min-height: 330px; }
  .about-bento-card > span { margin-bottom: 25px; }
  .about-discipline h3 { margin-top: 42px; }
  .about-marquee-track { padding-block: 18px; }
  .about-manifesto-section { padding-block: 120px 135px; }
  .about-manifesto { font-size: 3.1rem; }
  .about-process-section { padding-block: 115px 135px; }
  .about-process-layout { gap: 70px; }
  .about-process-pin h2 { font-size: 3.65rem; }
  .about-process-step { min-height: 430px; padding-block: 60px; }
  .about-process-step h3 { font-size: 2.85rem; }
  .about-contact-cta { padding-block: 120px 135px; }
}

/* Real project imagery on the homepage */
.project-photo {
  display: block;
  width: 100%;
  max-height: 390px;
  object-fit: contain;
  box-shadow: 0 28px 55px rgba(13, 18, 16, .24);
  transition: transform .6s var(--ease);
}

.project-photo-wide {
  border: 7px solid var(--paper);
  transform: rotate(-2deg);
}

.project-photo-poster {
  width: min(78%, 330px);
  border: 7px solid var(--ink);
  transform: rotate(3deg);
}

.project-visual:hover .project-photo-wide,
.project-visual:hover .project-photo-poster {
  transform: rotate(0) scale(1.025);
}

.project-photo-pair {
  display: flex;
  width: min(100%, 460px);
  height: 390px;
  align-items: flex-end;
  justify-content: center;
}

.project-photo-pair img {
  width: 48%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 22px 24px rgba(25, 67, 54, .25));
  transition: transform .6s var(--ease);
}

.project-photo-pair img:first-child { transform: translateX(9%) rotate(-5deg); }
.project-photo-pair img:last-child { transform: translateX(-9%) translateY(-4%) rotate(5deg); }
.project-visual:hover .project-photo-pair img:first-child { transform: translateX(3%) rotate(-2deg); }
.project-visual:hover .project-photo-pair img:last-child { transform: translateX(-3%) translateY(-4%) rotate(2deg); }

/* Image-led work archive */
.work-page figure { margin: 0; }
.work-page img { width: 100%; height: auto; }
.work-page h2,
.work-page h3 { text-wrap: balance; }

.work-hero {
  display: grid;
  min-height: calc(100dvh - 86px);
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(45px, 5vw, 90px);
  align-items: center;
  padding-block: 70px 90px;
}

.work-kicker {
  margin-bottom: 25px;
  color: var(--teal);
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.work-hero h1 {
  max-width: 760px;
  margin: 0 0 30px;
  font-size: clamp(4rem, 5.8vw, 7rem);
  line-height: .88;
  letter-spacing: -.085em;
}

.work-hero h1 span { display: block; white-space: nowrap; }

.work-hero-copy > p:not(.work-kicker) {
  max-width: 540px;
  margin-bottom: 35px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.work-jump-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
}

.work-jump-links a {
  padding-bottom: 5px;
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: .65rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: color .2s, border-color .2s;
}

.work-jump-links a:hover { color: var(--teal); border-color: var(--teal); }

.work-hero-collage {
  position: relative;
  min-height: min(650px, 72vh);
}

.work-hero-collage figure {
  position: absolute;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(13, 18, 16, .17);
}

.work-hero-collage img { width: 100%; height: 100%; object-fit: cover; }
.hero-collage-wide { top: 4%; right: 0; width: 86%; height: 43%; background: var(--navy); transform: rotate(1.5deg); }
.hero-collage-phone { bottom: 0; left: 8%; z-index: 2; width: 31%; height: 58%; background: #f4f4f2; transform: rotate(-4deg); }
.hero-collage-phone img { object-position: top; }
.hero-collage-square { right: 5%; bottom: 3%; width: 45%; aspect-ratio: 1; padding: 5%; background: #f8f7f3; transform: rotate(3deg); }
.hero-collage-square img { object-fit: contain; }

.findit-feature {
  padding-block: 150px 180px;
  background: #dce9e4;
}

.findit-layout {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(60px, 9vw, 150px);
  align-items: start;
}

.findit-copy {
  position: sticky;
  top: 135px;
}

.work-category {
  margin-bottom: 20px;
  color: var(--teal);
  font-family: var(--mono);
  font-size: .7rem;
}

.findit-copy h2,
.waterford-copy h2 {
  margin: 0 0 28px;
  font-size: clamp(4.5rem, 9vw, 9rem);
  line-height: .8;
  letter-spacing: -.09em;
}

.work-lead {
  color: var(--ink) !important;
  font-size: clamp(1.35rem, 2.2vw, 2rem) !important;
  line-height: 1.35 !important;
  letter-spacing: -.035em;
}

.findit-copy > p:not(.work-category):not(.work-tools) {
  color: #52615c;
  line-height: 1.8;
}

.work-tools {
  margin: 30px 0 0;
  color: #53736a;
  font-family: var(--mono);
  font-size: .67rem;
  line-height: 1.8;
}

.findit-screens {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px 38px;
  align-items: start;
}

.app-screen:nth-child(even) { margin-top: 120px; }
.app-screen img {
  border: 8px solid var(--ink);
  border-radius: 30px;
  background: var(--ink);
  box-shadow: 0 28px 55px rgba(38, 78, 66, .18);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}

.app-screen:hover img { transform: translateY(-8px); box-shadow: 0 38px 70px rgba(38, 78, 66, .24); }
.app-screen figcaption { margin-top: 13px; color: #5a6c66; font-size: .75rem; }

.portfolio-section { padding-block: 160px; }
.portfolio-heading,
.experiments-heading { max-width: 820px; margin-bottom: 85px; }
.portfolio-heading h2,
.experiments-heading h2 {
  margin: 0 0 30px;
  font-size: clamp(3.4rem, 7vw, 7rem);
  line-height: .88;
  letter-spacing: -.075em;
}
.portfolio-heading p,
.experiments-heading p { max-width: 590px; margin: 0; color: var(--muted); line-height: 1.8; }

.ormonde-feature { margin-bottom: 140px; }
.ormonde-image {
  padding: clamp(18px, 3vw, 42px);
  overflow: hidden;
  background: var(--navy);
}
.ormonde-image img { box-shadow: 0 25px 50px rgba(6, 16, 33, .35); transition: transform .7s var(--ease); }
.ormonde-feature:hover .ormonde-image img { transform: scale(1.018); }
.ormonde-copy {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 45px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.ormonde-copy .work-category { grid-column: 1 / -1; margin: 0; }
.ormonde-copy h3 { margin: 0; font-size: clamp(2rem, 4vw, 4rem); line-height: .95; letter-spacing: -.055em; }
.ormonde-copy > p:not(.work-category):not(.work-tools) { margin: 0; color: var(--muted); line-height: 1.8; }
.ormonde-copy .work-tools { grid-column: 2; margin-top: 0; }

.product-pair {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: clamp(28px, 5vw, 75px);
  align-items: start;
}

.wedding-image {
  display: grid;
  min-height: 600px;
  padding: 55px 30px;
  place-items: center;
  overflow: hidden;
  background: #e8d1bd;
}
.wedding-image img {
  width: min(82%, 410px);
  max-height: 520px;
  object-fit: contain;
  box-shadow: 0 28px 55px rgba(79, 48, 34, .18);
  transform: rotate(-2deg);
  transition: transform .6s var(--ease);
}
.wedding-project:hover .wedding-image img { transform: rotate(0) translateY(-5px); }

.places-images {
  display: flex;
  min-height: 690px;
  padding: 65px 30px 30px;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  background: #b9d8cd;
}
.places-images figure { width: 45%; transition: transform .6s var(--ease); }
.places-images figure:first-child { transform: translateX(8%) rotate(-5deg); }
.places-images figure:last-child { transform: translateX(-8%) translateY(-7%) rotate(5deg); }
.places-images img { filter: drop-shadow(0 28px 30px rgba(33, 72, 61, .25)); }
.places-project:hover .places-images figure:first-child { transform: translateX(3%) rotate(-2deg); }
.places-project:hover .places-images figure:last-child { transform: translateX(-3%) translateY(-7%) rotate(2deg); }

.compact-project-copy { padding-top: 24px; }
.compact-project-copy h3 { margin-bottom: 14px; font-size: clamp(1.8rem, 3.2vw, 3.2rem); line-height: 1; letter-spacing: -.055em; }
.compact-project-copy > p:not(.work-category):not(.work-tools) { max-width: 560px; color: var(--muted); line-height: 1.75; }

.waterford-feature { padding-block: 150px 170px; color: #f5f2eb; background: #151716; }
.waterford-copy { max-width: 790px; margin-bottom: 85px; }
.waterford-copy .work-category { color: #ff6a32; }
.waterford-copy h2 { font-size: clamp(4rem, 9vw, 9rem); }
.waterford-copy > p:not(.work-category):not(.work-tools) { max-width: 620px; color: rgba(255, 255, 255, .58); line-height: 1.8; }
.waterford-copy .work-tools { color: #d57550; }
.waterford-gallery {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  grid-template-rows: auto auto;
  gap: 26px;
  align-items: stretch;
}
.waterford-gallery figure { display: grid; min-width: 0; overflow: hidden; place-items: center; background: #202220; }
.waterford-cover { grid-row: 1 / 3; padding: 45px; }
.waterford-cover img { max-height: 870px; object-fit: contain; }
.waterford-logo { min-height: 380px; padding: 45px; background: #f6f4ee !important; }
.waterford-logo img { max-height: 330px; object-fit: contain; }
.waterford-trifold { padding: 25px; }
.waterford-trifold img { object-fit: contain; }
.waterford-gallery img { transition: transform .65s var(--ease); }
.waterford-gallery figure:hover img { transform: scale(1.025); }

.experiments-section { padding-bottom: 190px; }
.experiments-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 75px 28px;
  align-items: start;
}
.experiment-poster { grid-column: 1 / 6; grid-row: 1 / 3; }
.experiment-album { grid-column: 7 / 13; grid-row: 1; }
.experiment-animation { grid-column: 6 / 13; grid-row: 2; }
.experiment-mark { grid-column: 2 / 7; grid-row: 3; }
.experiment figure { overflow: hidden; background: #e8e6df; }
.experiment-poster figure { padding: 30px; background: #2469a8; }
.experiment-mark figure { padding: 45px; background: #f7f6f2; }
.experiment img { transition: transform .65s var(--ease); }
.experiment:hover img { transform: scale(1.025); }
.experiment > div { display: grid; grid-template-columns: .8fr 1.2fr; gap: 25px; padding-top: 20px; }
.experiment h3 { margin: 0; font-size: 1.15rem; }
.experiment p { margin: 0; color: var(--muted); font-size: .8rem; line-height: 1.65; }

@media (max-width: 1050px) {
  .work-hero { gap: 35px; }
  .work-hero h1 { font-size: clamp(3.8rem, 6.4vw, 5.4rem); }
  .findit-layout { gap: 60px; }
  .findit-screens { gap: 40px 24px; }
  .app-screen:nth-child(even) { margin-top: 75px; }
  .wedding-image { min-height: 510px; }
  .places-images { min-height: 580px; }
}

@media (max-width: 800px) {
  .work-hero { min-height: auto; grid-template-columns: 1fr; padding-block: 75px 100px; }
  .work-hero h1 { font-size: clamp(3.9rem, 11.5vw, 6.2rem); }
  .work-hero-collage { min-height: 620px; }
  .findit-feature { padding-block: 105px 120px; }
  .findit-layout { grid-template-columns: 1fr; }
  .findit-copy { position: static; max-width: 650px; }
  .portfolio-section { padding-block: 110px; }
  .portfolio-heading,
  .experiments-heading { margin-bottom: 60px; }
  .ormonde-feature { margin-bottom: 100px; }
  .ormonde-copy { grid-template-columns: 1fr; gap: 20px; }
  .ormonde-copy .work-tools { grid-column: auto; }
  .product-pair { grid-template-columns: 1fr; gap: 90px; }
  .wedding-project { width: 82%; }
  .places-images { min-height: 650px; }
  .waterford-feature { padding-block: 110px 125px; }
  .waterford-gallery { grid-template-columns: 1fr; grid-template-rows: auto; }
  .waterford-cover { grid-row: auto; }
  .waterford-cover img { max-height: 760px; }
  .experiments-grid { gap: 60px 22px; }
  .experiment-poster { grid-column: 1 / 7; grid-row: 1; }
  .experiment-album { grid-column: 8 / 13; }
  .experiment-animation { grid-column: 5 / 13; }
  .experiment-mark { grid-column: 1 / 7; }
  .experiment > div { grid-template-columns: 1fr; gap: 8px; }
}

@media (max-width: 520px) {
  .project-photo { max-height: 315px; }
  .project-photo-pair { height: 315px; }
  .work-hero { padding-top: 50px; }
  .work-hero h1 { font-size: clamp(3rem, 13.5vw, 4.2rem); }
  .work-hero-collage { min-height: 420px; }
  .hero-collage-wide { top: 0; width: 94%; height: 39%; }
  .hero-collage-phone { bottom: 0; left: 3%; width: 36%; height: 59%; }
  .hero-collage-square { right: 0; width: 53%; }
  .findit-feature { padding-block: 85px 95px; }
  .findit-copy h2,
  .waterford-copy h2 { font-size: 4.4rem; }
  .findit-screens {
    display: flex;
    width: calc(100% + 28px);
    gap: 18px;
    margin-right: -14px;
    padding: 8px 28px 25px 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .findit-screens::-webkit-scrollbar { display: none; }
  .app-screen { min-width: 78%; scroll-snap-align: start; }
  .app-screen:nth-child(even) { margin-top: 0; }
  .app-screen img { border-width: 6px; border-radius: 24px; }
  .portfolio-section { padding-block: 90px; }
  .portfolio-heading h2,
  .experiments-heading h2 { font-size: 3.25rem; }
  .ormonde-image { padding: 12px; }
  .wedding-project { width: 100%; }
  .wedding-image { min-height: 440px; padding: 38px 20px; }
  .places-images { min-height: 460px; padding: 45px 12px 20px; }
  .places-images figure { width: 52%; }
  .waterford-copy { margin-bottom: 55px; }
  .waterford-cover,
  .waterford-logo { padding: 24px; }
  .waterford-logo { min-height: 300px; }
  .experiments-section { padding-bottom: 110px; }
  .experiments-grid { grid-template-columns: 1fr; gap: 65px; }
  .experiment-poster,
  .experiment-album,
  .experiment-animation,
  .experiment-mark { grid-column: auto; grid-row: auto; }
  .experiment-poster figure,
  .experiment-mark figure { padding: 22px; }
}

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