/* Dream Lucid — proof-led studio system */

:root {
  --ink: #0d1720;
  --ink-2: #16222d;
  --paper: #eff4f7;
  --white: #ffffff;
  --accent: #65bec2;
  --accent-2: #566d8f;
  --accent-light: #d7eef0;
  --text: #3b3c38;
  --muted: #6b6b6b;
  --line: rgba(13, 23, 32, 0.16);
  --line-dark: rgba(255, 255, 255, 0.18);
  --max: 1360px;
  --font: "Manrope", ui-sans-serif, system-ui, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }
html { background: var(--ink); scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; overflow-x: hidden; background: var(--paper); color: var(--text); font-family: var(--font); font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
::selection { background: var(--accent); color: var(--ink); }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 { margin-bottom: .5em; color: var(--ink); font-weight: 600; line-height: 1.04; letter-spacing: 0; text-wrap: balance; }
h1 { font-size: 80px; }
h2 { font-size: 58px; }
h3 { font-size: 24px; }

.shell { width: min(var(--max), calc(100% - 72px)); margin-inline: auto; }
.shell.narrow, .narrow { width: min(800px, calc(100% - 72px)); margin-inline: auto; }
.center { text-align: center; }
.left { margin-inline: 0; text-align: left; }
.section { padding: 128px 0; }
.section-soft { background: var(--white); border-block: 1px solid var(--line); }
.section-head { max-width: 700px; margin-inline: auto; margin-bottom: 58px; }
.section-head h2 { margin: 0 0 14px; }
.section-sub { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.5; }
.center .eyebrow { justify-content: center; }
.section-copy { max-width: 650px; margin-inline: auto; font-size: 18px; }
.section-copy.left { margin-inline: 0; }
.section-action { margin-top: 44px; }

.eyebrow { display: flex; align-items: center; gap: 12px; margin: 0 0 22px; color: var(--muted); font-size: 10px; font-weight: 800; line-height: 1; text-transform: uppercase; }
.eyebrow::before { width: 22px; height: 1px; background: var(--accent); content: ""; }
.eyebrow.light { color: rgba(255,255,255,.58); }
.eyebrow.light::before { background: var(--accent); }
.lede { max-width: 650px; margin-inline: auto; color: var(--text); font-size: 19px; line-height: 1.55; }

/* Header */
.site-header { position: fixed; inset: 0 0 auto; z-index: 100; color: #fff; transition: color .3s var(--ease), background .3s var(--ease); }
.site-header.is-scrolled { color: var(--ink); background: rgba(239,244,247,.92); border-bottom: 1px solid var(--line); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); }
.site-header.menu-active { color: #fff; background: var(--ink); }
.header-main { position: relative; z-index: 2; display: flex; min-height: 78px; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark { display: grid; width: 38px; height: 38px; place-items: center; }
.brand-mark img { width: 26px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-size: 14px; font-weight: 800; }
.brand-sub { margin-top: 4px; font-size: 8px; font-weight: 700; text-transform: uppercase; opacity: .6; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links > a { font-size: 12px; font-weight: 700; }
.nav-links > a:not(.nav-cta) { position: relative; }
.nav-links > a:not(.nav-cta)::after { position: absolute; right: 0; bottom: -6px; left: 0; height: 1px; background: currentColor; content: ""; transform: scaleX(0); transform-origin: right; transition: transform .3s var(--ease); }
.nav-links > a:not(.nav-cta):hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { display: inline-flex; align-items: center; gap: 14px; padding: 11px 15px; border: 1px solid currentColor; border-radius: 3px; }
.nav-cta:hover { background: #fff; border-color: #fff; color: var(--ink); }
.is-scrolled .nav-cta:hover { background: var(--ink); border-color: var(--ink); color: #fff; }
.menu-toggle { display: none; width: 42px; height: 42px; padding: 0; border: 1px solid currentColor; border-radius: 50%; background: transparent; color: inherit; cursor: pointer; }
.menu-toggle span { display: block; width: 16px; height: 1px; margin: 5px auto; background: currentColor; transition: transform .3s var(--ease); }
.menu-active .menu-toggle span:first-child { transform: translateY(3px) rotate(45deg); }
.menu-active .menu-toggle span:last-child { transform: translateY(-3px) rotate(-45deg); }
.mobile-menu { position: fixed; inset: 0; display: flex; visibility: hidden; flex-direction: column; justify-content: center; background: var(--ink); opacity: 0; transition: opacity .35s var(--ease), visibility .35s; }
.menu-active .mobile-menu { visibility: visible; opacity: 1; }
.mobile-menu-links { display: grid; }
.mobile-menu-links a { display: flex; align-items: baseline; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--line-dark); color: #fff; font-size: 46px; line-height: 1.1; }
.mobile-menu-links span { color: var(--accent); font-size: 10px; }
.mobile-menu-foot { position: absolute; bottom: 28px; display: flex; justify-content: space-between; color: rgba(255,255,255,.5); font-size: 10px; text-transform: uppercase; }

/* Commands */
.btn { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; gap: 20px; padding: 0 20px; border: 1px solid var(--ink); border-radius: 3px; background: var(--ink); color: #fff; font-size: 11px; font-weight: 800; transition: background .25s, border-color .25s, color .25s, transform .25s var(--ease); }
.btn:hover { background: var(--accent); border-color: var(--accent); color: var(--ink); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--ink); }
.btn-outline:hover { background: var(--ink); border-color: var(--ink); color: #fff; }
.btn-light { background: #fff; border-color: #fff; color: var(--ink); }
.btn-light:hover { background: var(--accent); border-color: var(--accent); }
.btn-sm { min-height: 42px; padding: 0 15px; }
.btn-row { display: flex; align-items: center; gap: 26px; }
.btn-row.center { justify-content: center; }
.text-link { display: inline-flex; align-items: center; gap: 10px; padding-bottom: 4px; border-bottom: 1px solid currentColor; color: var(--ink); font-size: 12px; font-weight: 800; }
.text-link::after { content: "↗"; }
.light-link { color: #fff; }

/* Homepage hero */
.hero { position: relative; isolation: isolate; display: flex; min-height: min(920px, calc(100svh - 26px)); align-items: stretch; overflow: hidden; background: var(--ink); color: #fff; }
.hero-aurora { position: absolute; inset: 0; z-index: -3; display: block; width: 100%; height: 100%; pointer-events: none; background: radial-gradient(90% 70% at 72% 16%, rgba(101,190,194,.16), transparent 60%), radial-gradient(70% 65% at 20% 36%, rgba(86,109,143,.24), transparent 65%), radial-gradient(120% 120% at 50% 42%, var(--ink-2) 0%, var(--ink) 62%, #081019 100%); }
.hero-shade { position: absolute; inset: 0; z-index: -2; background: linear-gradient(180deg, rgba(13,23,32,.42) 0%, rgba(13,23,32,.28) 42%, rgba(13,23,32,.88) 100%); pointer-events: none; }
.hero-inner { display: flex; flex-direction: column; justify-content: space-between; padding-top: 125px; padding-bottom: 58px; }
.hero-topline { display: flex; justify-content: space-between; color: rgba(255,255,255,.64); font-size: 9px; font-weight: 800; text-transform: uppercase; }
.hero-title { margin: auto 0 38px; color: #fff; font-size: 154px; font-weight: 600; line-height: .78; }
.hero-title span { display: block; --glow: 0; text-shadow: 0 0 calc(var(--glow) * 12px) rgb(215 238 240 / calc(var(--glow) * 0.85)), 0 0 calc(var(--glow) * 34px) rgb(101 190 194 / calc(var(--glow) * 0.55)); }
.hero-title span:last-child { margin-left: 16%; color: var(--accent-light); }
.hero-bottom { display: flex; align-items: end; justify-content: space-between; gap: 40px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.35); }
.hero-lede { max-width: 560px; margin: 0; color: rgba(255,255,255,.8); font-size: 18px; }
.hero-actions { flex-shrink: 0; }
.proof-bar { background: var(--accent); color: var(--ink); }
.proof-grid { display: grid; grid-template-columns: repeat(5, 1fr); }
.proof-grid span { padding: 16px 0; border-right: 1px solid rgba(13,23,32,.2); font-size: 9px; font-weight: 800; text-align: center; text-transform: uppercase; }
.proof-grid span:first-child { border-left: 1px solid rgba(13,23,32,.2); }

html.js .hero.is-ready .hero-aurora { animation: hero-wall-in .9s var(--ease) both; }
html.js .hero.is-ready .hero-eyebrow { animation: hero-item-in .55s .08s var(--ease) both; }
html.js .hero.is-ready .hero-title span:first-child { animation: hero-item-in .7s .14s var(--ease) both; }
html.js .hero.is-ready .hero-title span:last-child { animation: hero-item-in .7s .2s var(--ease) both; }
html.js .hero.is-ready .hero-bottom { animation: hero-item-in .65s .3s var(--ease) both; }
@keyframes hero-wall-in { from { opacity: 0; transform: scale(1.02); } }
@keyframes hero-item-in { from { opacity: 0; transform: translateY(18px); } }

/* Homepage intro */
.home-intro { background: var(--paper); }
.intro-statement { display: grid; grid-template-columns: .6fr 2fr 1fr; gap: 56px; align-items: start; }
.intro-statement h2 { margin: 0; font-size: 66px; }
.intro-statement h2 span { color: var(--muted); }
.intro-aside { padding-top: 8px; }
.intro-aside p { margin-bottom: 28px; }

/* Featured work */
.selected-work { background: var(--ink); color: #fff; }
.section-heading { display: grid; grid-template-columns: 1.4fr .6fr; gap: 60px; align-items: end; margin-bottom: 78px; }
.section-heading h2 { margin: 0; color: #fff; font-size: 70px; }
.section-heading > p { max-width: 420px; margin: 0 0 8px auto; color: rgba(255,255,255,.56); }
.project-list { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 78px 26px; }
.project-media { position: relative; overflow: hidden; aspect-ratio: 16 / 10; background: var(--ink-2); }
.project-media img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform .9s var(--ease), filter .5s; }
.project-feature:hover .project-media img { transform: scale(1.025); }
.project-open { position: absolute; right: 18px; bottom: 18px; padding: 8px 10px; border-radius: 2px; background: #fff; color: var(--ink); font-size: 9px; font-weight: 800; opacity: 0; transform: translateY(8px); transition: opacity .25s, transform .25s var(--ease); }
.project-feature:hover .project-open { opacity: 1; transform: none; }
.project-caption { display: grid; grid-template-columns: 1fr 1.2fr auto; gap: 28px; align-items: start; padding-top: 18px; border-top: 1px solid var(--line-dark); }
.project-caption > div { display: flex; align-items: baseline; gap: 14px; }
.project-number { color: var(--accent); font-size: 9px; font-weight: 800; }
.project-caption h3 { margin: 0; color: #fff; font-size: 21px; }
.project-caption p { margin: 0; color: rgba(255,255,255,.52); font-size: 12px; }
.project-tag { color: rgba(255,255,255,.42); font-size: 9px; text-align: right; text-transform: uppercase; }

/* Capabilities */
.capabilities-section { background: var(--paper); }
.capabilities-head { display: grid; grid-template-columns: .6fr 2fr; gap: 56px; margin-bottom: 70px; }
.capabilities-head h2 { max-width: 850px; margin: 0; }
.capabilities-list { border-top: 1px solid var(--line); }
.capability-row { display: grid; grid-template-columns: 70px 1fr 1.35fr 30px; gap: 24px; align-items: center; min-height: 132px; border-bottom: 1px solid var(--line); transition: padding .3s var(--ease), background .3s; }
.capability-row:hover { padding-inline: 16px; background: var(--white); }
.capability-row > span { color: var(--accent-2); font-size: 9px; font-weight: 800; }
.capability-row h3, .capability-row p { margin: 0; }
.capability-row h3 { font-size: 28px; }
.capability-row p { max-width: 560px; color: var(--muted); font-size: 14px; }
.capability-row i { font-style: normal; }

/* Process */
.process-section { background: var(--ink-2); color: #fff; }
.process-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 120px; }
.process-heading { position: sticky; top: 130px; align-self: start; }
.process-heading h2 { color: #fff; }
.process-heading > p:last-child { max-width: 440px; color: rgba(255,255,255,.55); }
.process-steps { border-top: 1px solid var(--line-dark); }
.process-steps article { display: grid; grid-template-columns: 65px 1fr; gap: 20px; padding: 34px 0; border-bottom: 1px solid var(--line-dark); }
.process-steps article > span { color: var(--accent); font-size: 9px; font-weight: 800; }
.process-steps h3 { margin-bottom: 12px; color: #fff; font-size: 28px; }
.process-steps p { max-width: 520px; margin: 0; color: rgba(255,255,255,.55); font-size: 14px; }

/* Testimonial */
.testimonial-section { background: var(--white); border-block: 1px solid var(--line); padding: 88px 0; }
.testimonial-section .eyebrow { justify-content: center; margin-bottom: 40px; }
.testimonial-section .eyebrow::after { width: 22px; height: 1px; background: var(--accent); content: ""; }
.testimonial-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; margin-top: 8px; }
.testimonial { display: flex; flex-direction: column; gap: 28px; margin: 0; }
.testimonial-quote { margin: 0; color: var(--ink); font-size: 20px; font-weight: 500; line-height: 1.45; letter-spacing: -0.005em; text-wrap: balance; }
.testimonial-quote::before { display: block; margin-bottom: 22px; color: var(--accent); content: "\201C"; font-size: 56px; line-height: .35; }
.testimonial-author { display: flex; flex-direction: column; gap: 5px; margin-top: auto; padding-top: 22px; border-top: 1px solid var(--line); }
.testimonial-name { color: var(--ink); font-size: 12px; font-weight: 800; }
.testimonial-role { color: var(--muted); font-size: 10px; font-weight: 700; text-transform: uppercase; }

/* Interior heroes */
.page-hero { padding: 190px 0 105px; background: var(--ink); color: #fff; }
.page-hero h1 { color: #fff; font-size: 78px; }
.page-hero .lede { color: rgba(255,255,255,.6); }
.page-hero .eyebrow { justify-content: center; color: rgba(255,255,255,.55); }
.page-hero-action { margin-top: 28px; }
.page-hero .btn { background: #fff; border-color: #fff; color: var(--ink); }
.interior-section { padding-top: 86px; }

/* Services */
.service-list { display: flex; flex-direction: column; }
.service-row { display: grid; grid-template-columns: 1.15fr 1fr; gap: 72px; align-items: center; padding: 68px 0; border-bottom: 1px solid var(--line); }
.service-row.reverse { direction: rtl; }
.service-row.reverse > * { direction: ltr; }
.service-media { overflow: hidden; background: var(--accent-light); }
.service-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .8s var(--ease); }
.service-row:hover .service-media img { transform: scale(1.025); }
.service-copy { max-width: 480px; }
.service-copy h2 { font-size: 46px; }
.service-copy p { margin-bottom: 28px; }
.benefit-list { max-width: 900px; margin: 0 auto; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.benefit-list li { position: relative; padding: 22px 55px 22px 0; border-bottom: 1px solid var(--line); color: var(--ink); font-size: 20px; }
.benefit-list li::after { position: absolute; right: 0; color: var(--accent-2); content: "✓"; }

/* Pricing */
.grid { display: grid; gap: 18px; }
.grid-3 { grid-template-columns: repeat(3,minmax(0,1fr)); }
.pricing-grid { align-items: stretch; }
.card { border: 1px solid var(--line); background: var(--white); }
.pricing-card { display: flex; min-height: 530px; flex-direction: column; padding: 32px; }
.pricing-card.featured { border: 2px solid var(--accent); }
.plan-name { margin: 0; font-size: 19px; }
.tag { align-self: flex-start; margin-bottom: 22px; padding: 6px 8px; border-radius: 2px; background: var(--accent); color: var(--ink); font-size: 8px; font-weight: 800; text-transform: uppercase; }
.price { display: flex; align-items: baseline; margin: 34px 0; color: var(--ink); }
.price-currency { align-self: flex-start; margin-top: 11px; font-size: 16px; }
.price-amount { font-size: 68px; font-weight: 600; line-height: 1; }
.price-period { margin-left: 6px; color: var(--muted); font-size: 11px; }
.feature-list { flex: 1; margin: 0 0 28px; padding: 0; list-style: none; }
.feature-list li { padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 13px; }
.plan-select { width: 100%; margin-top: auto; }
.consult-card { display: grid; grid-template-columns: 1fr 1.5fr auto; gap: 40px; align-items: center; padding: 32px 0; border-block: 1px solid var(--line); }
.consult-section { padding: 80px 0; }
.consult-card h3, .consult-card p { margin: 0; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { display: flex; justify-content: space-between; padding: 23px 0; color: var(--ink); font-size: 17px; font-weight: 700; cursor: pointer; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { color: var(--accent-2); content: "+"; font-size: 21px; font-weight: 400; }
.faq-item[open] summary::after { content: "−"; }
.faq-item p { max-width: 680px; margin: 0 0 27px; }

/* Project cards (pricing) */
.project-card-head { display: flex; flex-direction: column; gap: 6px; margin-bottom: 26px; }
.project-card-head h3 { margin: 0; font-size: 22px; }
.project-subtag { color: var(--muted); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; }
.project-price { display: flex; align-items: baseline; gap: 10px; margin: 0 0 22px; color: var(--ink); }
.project-price .price-amount { font-size: 46px; font-weight: 600; line-height: 1; }
.project-price .price-custom { font-size: 30px; }
.project-from { color: var(--muted); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; }
.project-blurb { margin: 0 0 26px; color: var(--text); font-size: 14px; line-height: 1.5; }
.project-note { margin-bottom: 22px; color: var(--accent-2); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .03em; }

/* Retainer subtitle */
.plan-for { margin: 8px 0 0; color: var(--muted); font-size: 13px; font-style: italic; }
.grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.pricing-card .price { margin: 26px 0 10px; }
.price-billing { margin: 0 0 28px; color: var(--muted); font-size: 12px; font-weight: 700; }
.price-from { margin-right: 6px; color: var(--muted); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; }
.custom-band { display: flex; align-items: center; justify-content: space-between; gap: 32px; margin-top: 36px; padding: 34px 36px; border: 1px solid var(--line); background: var(--white); border-radius: 4px; }
.custom-band h3 { margin: 0 0 6px; }
.custom-band p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.5; }

/* Consultation lead form (contact) */
.consult-form-wrap { margin-top: 40px; }
.consult-form { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.consult-form input[type="email"] { flex: 1 1 280px; min-width: 240px; min-height: 50px; padding: 0 18px; border: 1px solid var(--line); border-radius: 3px; background: var(--white); color: var(--ink); font-size: 14px; font-family: inherit; }
.consult-form input[type="email"]:focus { outline: none; border-color: var(--ink); }
.consult-msg { margin: 16px 0 0; font-size: 13px; font-weight: 700; }
.consult-thanks { color: var(--ink); }
.consult-error { color: #c0392b; }
.consult-alt { margin-top: 30px; color: var(--muted); font-size: 12px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: .85fr 1.25fr; gap: 84px; align-items: center; }
.contact-grid h2 { font-size: 46px; }
.contact-methods { margin-top: 38px; border-top: 1px solid var(--line); }
.contact-method { display: grid; grid-template-columns: 110px 1fr; padding: 17px 0; border-bottom: 1px solid var(--line); color: var(--ink); }
.contact-method .label { color: var(--muted); font-size: 9px; font-weight: 800; text-transform: uppercase; }
.contact-photo { margin: 0; overflow: hidden; }
.contact-photo img { width: 100%; aspect-ratio: 16 / 11; object-fit: cover; }

/* Footer */
.site-footer { padding: 112px 0 26px; background: var(--ink); color: rgba(255,255,255,.58); }
.footer-stage { padding-bottom: 94px; }
.footer-title { display: flex; align-items: flex-start; justify-content: space-between; padding-bottom: 28px; border-bottom: 1px solid var(--line-dark); color: #fff; font-size: 72px; font-weight: 500; line-height: 1; }
.footer-title span { color: var(--accent); font-size: 36px; }
.footer-note { max-width: 440px; margin: 22px 0 0 auto; font-size: 13px; }
.footer-bar { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 30px; align-items: center; padding: 28px 0; border-top: 1px solid var(--line-dark); }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-mark { width: 34px; height: 34px; }
.footer-mark img { width: 23px; }
.footer-brand strong { display: block; color: #fff; font-size: 12px; }
.footer-brand span { display: block; font-size: 8px; text-transform: uppercase; }
.footer-nav { display: flex; gap: 24px; }
.footer-nav a, .footer-email { font-size: 10px; font-weight: 700; }
.footer-nav a:hover, .footer-email:hover { color: var(--accent); }
.footer-email { justify-self: end; }
.footer-legal { display: flex; justify-content: space-between; padding-top: 18px; border-top: 1px solid var(--line-dark); font-size: 8px; text-transform: uppercase; }

/* Reveal */
.reveal, .reveal-stagger > * { opacity: 1; transform: none; }
html.js .reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
html.js .reveal.is-visible { opacity: 1; transform: none; }
html.js .reveal-stagger > * { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
html.js .reveal-stagger.is-visible > * { opacity: 1; transform: none; }
html.js .reveal-stagger.is-visible > *:nth-child(2) { transition-delay: .06s; }
html.js .reveal-stagger.is-visible > *:nth-child(3) { transition-delay: .12s; }
html.js .reveal-stagger.is-visible > *:nth-child(4) { transition-delay: .18s; }
html.js .reveal-stagger.is-visible > *:nth-child(5) { transition-delay: .24s; }

@media (max-width: 1080px) {
  .hero-title { font-size: 122px; }
  .intro-statement { grid-template-columns: .5fr 1.5fr; }
  .intro-aside { grid-column: 2; }
  .project-caption { grid-template-columns: 1fr auto; }
  .project-caption p { grid-column: 1 / -1; grid-row: 2; }
}

@media (max-width: 840px) {
  .shell { width: min(var(--max), calc(100% - 38px)); }
  .shell.narrow, .narrow { width: min(800px, calc(100% - 38px)); }
  h1 { font-size: 54px; }
  h2 { font-size: 43px; }
  .section { padding: 88px 0; }
  .header-main { min-height: 70px; }
  .nav-links { display: none; }
  .menu-toggle { display: block; }
  .hero { min-height: calc(100svh - 20px); }
  .hero-title { font-size: 94px; }
  .hero-bottom { align-items: flex-start; flex-direction: column; }
  .proof-grid { grid-template-columns: repeat(5, auto); overflow: hidden; }
  .intro-statement, .capabilities-head { grid-template-columns: 1fr; gap: 28px; }
  .intro-aside { grid-column: auto; }
  .intro-statement h2 { font-size: 52px; }
  .section-heading { grid-template-columns: 1fr; gap: 26px; }
  .section-heading > p { margin: 0; }
  .project-list { grid-template-columns: 1fr; }
  .capability-row { grid-template-columns: 48px 1fr 28px; }
  .capability-row p { display: none; }
  .process-grid { grid-template-columns: 1fr; gap: 60px; }
  .process-heading { position: static; }
  .testimonial-grid { grid-template-columns: 1fr; gap: 44px; }
  .testimonial-quote { font-size: 18px; }
  .page-hero h1 { font-size: 62px; }
  .service-row, .service-row.reverse { grid-template-columns: 1fr; gap: 34px; direction: ltr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .custom-band { flex-direction: column; align-items: flex-start; }
  .consult-card { grid-template-columns: 1fr; gap: 18px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-title { font-size: 54px; }
  .footer-bar { grid-template-columns: 1fr 1fr; }
  .footer-email { display: none; }
}

@media (max-width: 560px) {
  .brand-sub { display: none; }
  .mobile-menu-links a { font-size: 36px; }
  .mobile-menu-foot { flex-direction: column; gap: 8px; }
  .hero-shade { background: linear-gradient(180deg, rgba(13,23,32,.6), rgba(13,23,32,.95)); }
  .hero-inner { padding-top: 105px; padding-bottom: 38px; }
  .hero-topline span:last-child { display: none; }
  .hero-title { margin-bottom: 30px; font-size: 72px; line-height: .82; }
  .hero-title span:last-child { margin-left: 10%; }
  .hero-lede { font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .proof-grid { grid-template-columns: repeat(5, minmax(0,1fr)); }
  .proof-grid span { padding: 14px 2px; font-size: 8px; }
  .intro-statement h2 { font-size: 40px; }
  .section-heading h2 { font-size: 46px; }
  .project-list { gap: 58px; }
  .project-caption { grid-template-columns: 1fr; gap: 12px; }
  .project-caption p { grid-column: auto; grid-row: auto; }
  .project-tag { text-align: left; }
  .capability-row h3 { font-size: 23px; }
  .page-hero { padding: 145px 0 70px; }
  .page-hero h1 { font-size: 46px; }
  .service-copy h2, .contact-grid h2 { font-size: 37px; }
  .price-amount { font-size: 60px; }
  .consult-form { flex-direction: column; }
  .consult-form input[type="email"], .consult-form .btn { width: 100%; }
  .contact-method { grid-template-columns: 1fr; gap: 5px; }
  .footer-stage { padding-bottom: 68px; }
  .footer-title { font-size: 40px; }
  .footer-title span { font-size: 22px; }
  .footer-bar { grid-template-columns: 1fr; }
  .footer-nav { flex-wrap: wrap; }
  .footer-legal { flex-direction: column; gap: 8px; }
}

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