:root {
--bg: #FBF8F3;
--surface: #FFFFFF;
--surface-warm: #F4EFE7;
--ink: #12305E;
--ink-soft: #42576B;
--line: #E5DED2;
--line-strong: #D6CCBC;
--accent: #E5522A;
--accent-dark: #C8421D;
--cool: #8FCBDF;
--navy-deep: #0E2547;
--font: "Onest", "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
--display: "Playfair Display", "Times New Roman", Georgia, serif;
--radius: 12px;
--radius-lg: 20px;
--maxw: 1400px;
--gutter: 24px;
--header-h: 76px;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
body {
margin: 0;
background: var(--bg);
color: var(--ink);
font-family: var(--font);
font-size: 17px;
line-height: 1.6;
-webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; }
img { height: auto; display: block; }
a { color: inherit; }
a:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 3px; }
h1, h2, h3 { margin: 0 0 .5em; font-weight: 500; line-height: 1.1; letter-spacing: -0.01em; }
h1, h2 { font-family: var(--display); }
h1 { font-size: clamp(34px, 4.4vw, 58px); }
h2 { font-size: clamp(28px, 3.8vw, 44px); }
h3 { font-size: clamp(19px, 2vw, 23px); font-weight: 600; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(56px, 8vw, 110px) 0; }
.section--tight { padding: clamp(44px, 5vw, 72px) 0; }
.section--warm { background: var(--surface-warm); }
.section__head { max-width: 780px; margin-bottom: clamp(28px, 4vw, 52px); }
.section__head p { color: var(--ink-soft); font-size: 18px; margin-bottom: 0; max-width: 66ch; }
.eyebrow {
font-size: 13px;
letter-spacing: .16em;
text-transform: uppercase;
color: var(--accent);
margin: 0 0 14px;
font-weight: 500;
}
.lead { font-size: clamp(17px, 1.6vw, 19px); color: var(--ink-soft); max-width: 68ch; }
.muted { color: var(--ink-soft); }
.small { font-size: 14px; }
.rule { width: 56px; height: 3px; background: var(--cool); border-radius: 2px; margin: 26px 0; }
.btn {
display: inline-flex;
align-items: center;
gap: 12px;
padding: 15px 22px;
border-radius: 999px;
border: 1px solid transparent;
font: inherit;
font-size: 16px;
font-weight: 500;
text-decoration: none;
cursor: pointer;
transition: background-color .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}
.btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accent-dark); }
.btn--ghost { border-color: var(--line-strong); color: var(--ink); }
.btn--ghost:hover { border-color: var(--ink); }
.btn--sm { padding: 11px 20px; font-size: 15px; }
.btn:active { transform: translateY(1px); }
.btn__arrow {
width: 26px; height: 26px;
border-radius: 50%;
background: rgba(255,255,255,.22);
display: inline-flex; align-items: center; justify-content: center;
flex: none;
}
.btn--ghost .btn__arrow { background: var(--surface-warm); }
.header {
position: sticky;
top: 0;
z-index: 50;
height: var(--header-h);
display: flex;
align-items: center;
background: var(--bg);
border-bottom: 1px solid transparent;
transition: border-color .2s ease;
}
.header.is-stuck { border-bottom-color: var(--line); }
.header__inner { display: flex; align-items: center; gap: 28px; width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.logo {
font-size: 19px;
font-weight: 700;
letter-spacing: .06em;
text-decoration: none;
color: var(--ink);
white-space: nowrap;
}
.nav { display: flex; gap: 26px; margin-left: auto; }
.nav a { color: var(--ink); text-decoration: none; font-size: 15px; opacity: .82; transition: opacity .16s ease, color .16s ease; }
.nav a:hover, .nav a:focus-visible { opacity: 1; color: var(--accent); }
.burger {
display: none;
margin-left: auto;
width: 44px; height: 44px;
border: 1px solid var(--line-strong);
border-radius: 12px;
background: transparent;
color: var(--ink);
cursor: pointer;
align-items: center;
justify-content: center;
}
.mobile-nav {
display: none;
position: sticky;
top: var(--header-h);
z-index: 49;
background: var(--bg);
border-bottom: 1px solid var(--line);
padding: 8px var(--gutter) 20px;
}
.mobile-nav a { display: block; padding: 12px 0; text-decoration: none; color: var(--ink); border-bottom: 1px solid var(--line); }
.mobile-nav a:last-of-type { border-bottom: none; }
.mobile-nav .btn { width: 100%; justify-content: center; margin-top: 12px; }
.hero { padding: clamp(32px, 5vw, 64px) 0 clamp(48px, 6vw, 84px); }
.hero__inner {
display: grid;
grid-template-columns: minmax(0, 1.06fr) minmax(0, 1fr);
gap: clamp(28px, 4vw, 56px);
align-items: center;
}
.hero h1 { margin-bottom: 0; }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero__sub { max-width: 30em; margin-bottom: 30px; }
.hero__note { font-size: 15px; color: var(--ink-soft); margin-top: 18px; max-width: 34em; }
.hero__art { width: 100%; height: auto; }
.product {
display: grid;
grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
gap: clamp(24px, 4vw, 56px);
align-items: center;
padding: clamp(30px, 4vw, 52px) 0;
border-top: 1px solid var(--line);
}
.product:first-of-type { border-top: none; }
.product--flip .product__text { order: 2; }
.product__num { font-family: var(--display); font-size: 17px; color: var(--accent); margin-bottom: 10px; }
.product__text h3 { font-family: var(--display); font-weight: 500; font-size: clamp(24px, 2.6vw, 32px); margin-bottom: 12px; }
.product__text p { color: var(--ink-soft); font-size: 16px; }
.product__meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.product__role { font-size: 15px; color: var(--ink-soft); margin-top: 14px; }
.product__role b { color: var(--ink); font-weight: 500; }
.tag {
font-size: 13px;
color: var(--ink-soft);
border: 1px solid var(--line-strong);
border-radius: 999px;
padding: 5px 13px;
white-space: nowrap;
}
.tag--accent { color: var(--accent); border-color: rgba(229, 82, 42, .35); }
.product__shot {
border-radius: var(--radius-lg);
overflow: hidden;
box-shadow: 0 24px 48px -28px rgba(18, 48, 94, .35);
}
.product__shot svg { display: block; width: 100%; height: auto; }
.project__link {
display: inline-flex;
align-items: center;
gap: 6px;
color: var(--accent);
text-decoration: none;
font-size: 16px;
border-bottom: 1px solid rgba(229, 82, 42, .3);
}
.project__link:hover { border-bottom-color: var(--accent); }
.hero--plain { padding: clamp(48px, 8vw, 104px) 0 clamp(40px, 6vw, 76px); }
.hero--plain h1 { font-size: clamp(38px, 8vw, 104px); max-width: 16ch; }
.hero__row { display: flex; flex-wrap: wrap; align-items: center; gap: 20px 56px; }
.hero__row .hero__sub { margin-bottom: 0; max-width: 46ch; }
.hero--plain .hero__actions { margin: 0; }
.display-xl { font-size: clamp(44px, 9vw, 116px); line-height: .95; margin-bottom: clamp(28px, 5vw, 64px); }
.cases { display: grid; }
.case { padding: clamp(36px, 6vw, 88px) 0; border-top: 1px solid var(--line-strong); }
.case:first-child { border-top: none; padding-top: 0; }
.case__meta,
.case__foot {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
gap: 8px 24px;
width: 100%;
max-width: var(--maxw);
margin: 0 auto;
padding: 0 var(--gutter);
font-size: 13px;
letter-spacing: .14em;
text-transform: uppercase;
color: var(--ink-soft);
}
.case__meta b { color: var(--accent); font-weight: 400; }
.case__head {
width: 100%;
max-width: var(--maxw);
margin: 18px auto clamp(24px, 3vw, 40px);
padding: 0 var(--gutter);
display: grid;
grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
gap: 12px clamp(24px, 5vw, 72px);
align-items: end;
}
.case__head h3 {
font-family: var(--display);
font-weight: 500;
font-size: clamp(46px, 9vw, 118px);
line-height: .92;
margin: 0;
letter-spacing: -0.02em;
}
.case__head p { color: var(--ink-soft); font-size: clamp(16px, 1.5vw, 19px); margin: 0 0 8px; max-width: 34ch; }
.case__band {
background: var(--band, var(--surface-warm));
padding: clamp(24px, 4vw, 72px) clamp(16px, 4vw, 72px);
}
.case__shot {
width: 100%;
border: 1px solid rgba(255, 255, 255, .12);
max-width: 1180px;
margin: 0 auto;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 40px 80px -40px rgba(0, 0, 0, .5);
}
.case__shot img, .case__shot svg { display: block; width: 100%; height: auto; }
.case__foot { margin-top: clamp(18px, 2.4vw, 28px); align-items: center; }
.case__foot .project__link { letter-spacing: 0; text-transform: none; font-size: 16px; }
.index-list { display: grid; }
.index-row {
display: grid;
grid-template-columns: 72px minmax(0, 1fr) 40px;
gap: 0 clamp(12px, 2vw, 24px);
align-items: baseline;
padding: clamp(20px, 2.4vw, 30px) 0;
border-top: 1px solid var(--line-strong);
text-decoration: none;
color: inherit;
transition: color .16s ease;
}
.index-row:last-child { border-bottom: 1px solid var(--line-strong); }
.index-row__num { font-family: var(--display); font-size: clamp(22px, 2.4vw, 28px); color: var(--accent); line-height: 1; }
.index-row h3 { font-family: var(--display); font-weight: 500; font-size: clamp(22px, 2.4vw, 28px); margin: 0 0 6px; }
.index-row p { color: var(--ink-soft); font-size: 16px; margin: 0; max-width: 52ch; }
.index-row__arrow { justify-self: end; color: var(--line-strong); transition: color .16s ease, transform .16s ease; }
.index-row:hover h3, .index-row:focus-visible h3 { color: var(--accent); }
.index-row:hover .index-row__arrow { color: var(--accent); transform: translateX(4px); }
.index-row:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }
.about { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(28px, 5vw, 80px); align-items: start; }
.creed { display: grid; }
.creed__item { display: grid; grid-template-columns: 44px minmax(0, 1fr); gap: 0 16px; padding: 20px 0; border-top: 1px solid var(--line-strong); }
.creed__item:first-child { border-top: none; padding-top: 0; }
.creed__num { font-family: var(--display); color: var(--accent); font-size: 17px; }
.creed__item h3 { font-size: 19px; margin: 0 0 6px; }
.creed__item p { color: var(--ink-soft); font-size: 16px; margin: 0; }
.contact__panel--wide { max-width: 520px; }
.process { display: grid; grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr); gap: clamp(28px, 5vw, 72px); align-items: start; }
.process__head { position: sticky; top: calc(var(--header-h) + 36px); }
.process__head h2 { margin-bottom: 0; }
.process__head .eyebrow { margin-bottom: 18px; }
.stage {
display: grid;
grid-template-columns: 84px minmax(0, 1fr);
gap: 0 clamp(16px, 2vw, 28px);
padding: clamp(22px, 2.6vw, 32px) 0;
border-top: 1px solid var(--line-strong);
}
.stage:first-child { border-top: none; padding-top: 0; }
.stage .stage__num {
font-family: var(--display);
font-size: clamp(30px, 3.4vw, 40px);
line-height: 1;
color: var(--accent);
grid-row: span 3;
}
.stage h3 { font-family: var(--display); font-weight: 500; font-size: clamp(21px, 2.2vw, 26px); margin: 0 0 8px; }
.stage p { color: var(--ink-soft); font-size: 16px; margin: 0; }
.stage .stage__result { margin-top: 14px; font-size: 16px; color: var(--ink); }
.stage .stage__label {
display: block;
font-size: 11.5px;
letter-spacing: .16em;
text-transform: uppercase;
color: var(--accent);
margin-bottom: 3px;
}
.principles { display: grid; gap: 22px 44px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.principle { padding-top: 20px; border-top: 1px solid var(--line-strong); }
.principle h3 { font-size: 19px; margin-bottom: 6px; }
.principle p { color: var(--ink-soft); font-size: 16px; }
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
list-style: none;
cursor: pointer;
padding: 22px 46px 22px 0;
position: relative;
font-size: 18px;
font-weight: 500;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
content: "";
position: absolute; right: 10px; top: 50%;
width: 11px; height: 11px;
border-right: 1.5px solid var(--ink-soft);
border-bottom: 1.5px solid var(--ink-soft);
transform: translateY(-70%) rotate(45deg);
transition: transform .2s ease, border-color .2s ease;
}
.faq details[open] summary::after { transform: translateY(-20%) rotate(-135deg); border-color: var(--accent); }
.faq summary:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 6px; }
.faq__answer { color: var(--ink-soft); padding: 0 0 24px; max-width: 68ch; }
.contact { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(28px, 4vw, 60px); align-items: start; }
.contact__links { display: grid; gap: 10px; margin-top: 26px; }
.contact__links a { display: inline-flex; align-items: baseline; gap: 14px; text-decoration: none; font-size: 17px; }
.contact__links a span { color: var(--ink-soft); font-size: 13px; letter-spacing: .12em; text-transform: uppercase; min-width: 82px; }
.contact__links a:hover { color: var(--accent); }
.form { display: grid; gap: 15px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(22px, 2.6vw, 32px); position: relative; }
.field { display: grid; gap: 7px; }
.field label { font-size: 14px; color: var(--ink-soft); }
.field input, .field textarea {
font: inherit; font-size: 16px;
color: var(--ink);
background: var(--bg);
border: 1px solid var(--line-strong);
border-radius: var(--radius);
padding: 13px 15px;
width: 100%;
transition: border-color .16s ease;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); }
.form .btn { justify-content: center; }
.form__note { font-size: 13px; color: var(--ink-soft); }
.form__status { font-size: 15px; min-height: 1.4em; }
.form__status[data-state="ok"] { color: #1f7a52; }
.form__status[data-state="error"] { color: var(--accent-dark); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.footer { border-top: 1px solid var(--line); padding: 36px 0 52px; color: var(--ink-soft); font-size: 14px; }
.footer__inner { display: flex; flex-wrap: wrap; gap: 14px 32px; align-items: center; justify-content: space-between; }
.contact--simple { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .9fr); gap: clamp(28px, 4vw, 60px); align-items: center; }
.contact__panel {
background: var(--surface);
border: 1px solid var(--line);
border-radius: var(--radius-lg);
padding: clamp(26px, 3vw, 38px);
}
.contact__panel h3 { margin-bottom: 10px; }
.contact__panel p { color: var(--ink-soft); font-size: 16px; }
.contact__panel .btn { margin-top: 20px; }
.case-lead { padding: clamp(28px, 4vw, 56px) 0 0; }
.case-lead__kicker { font-size: 13px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 20px; }
.case-lead__kicker b { color: var(--accent); font-weight: 400; }
.case-lead h1 { font-size: clamp(46px, 10vw, 132px); line-height: .92; margin-bottom: clamp(18px, 2.4vw, 30px); }
.case-lead__row { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: clamp(20px, 4vw, 64px); align-items: end; margin-bottom: clamp(28px, 4vw, 52px); }
.case-lead__phrase { font-size: clamp(19px, 2.2vw, 26px); line-height: 1.35; color: var(--ink); max-width: 24ch; margin: 0; }
.facts { display: grid; gap: 10px; font-size: 15px; }
.facts div { display: grid; grid-template-columns: 130px minmax(0, 1fr); gap: 14px; }
.facts .k { color: var(--ink-soft); font-size: 13px; letter-spacing: .12em; text-transform: uppercase; }
.band { background: var(--band, var(--surface-warm)); padding: clamp(28px, 5vw, 80px) clamp(16px, 4vw, 72px); }
.band__shot { width: 100%; max-width: 1180px; margin: 0 auto; border-radius: 10px; overflow: hidden; border: 1px solid rgba(255,255,255,.12); box-shadow: 0 40px 80px -40px rgba(0,0,0,.5); }
.band__shot img, .band__shot svg { display: block; width: 100%; height: auto; }
.band__caption {
max-width: 1180px;
margin: 14px auto 0;
font-size: 13.5px;
color: rgba(251, 248, 243, .62);
}
.band--quote { display: grid; place-items: center; text-align: center; }
.band--quote p {
font-family: var(--display);
font-size: clamp(28px, 5vw, 62px);
line-height: 1.06;
color: #FBF8F3;
max-width: 20ch;
margin: 0;
}
.chapter {
display: grid;
grid-template-columns: 210px minmax(0, 1fr);
gap: 10px clamp(24px, 5vw, 72px);
padding: clamp(40px, 6vw, 88px) 0;
border-top: 1px solid var(--line-strong);
}
.chapter__label { font-size: 13px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft); padding-top: 10px; }
.chapter__label b { color: var(--accent); font-weight: 400; margin-right: 10px; }
.chapter h2 { font-size: clamp(28px, 4vw, 52px); line-height: 1.04; margin-bottom: 22px; }
.chapter .measure { max-width: 60ch; }
.chapter .measure p { color: var(--ink-soft); font-size: clamp(16px, 1.5vw, 18px); }
.chapter .measure p + p { margin-top: 1em; }
.points { list-style: none; margin: 26px 0 0; padding: 0; display: grid; }
.points li { padding: 18px 0; border-top: 1px solid var(--line); color: var(--ink-soft); display: grid; grid-template-columns: 34px minmax(0, 1fr); gap: 14px; }
.points li b { color: var(--ink); font-weight: 500; }
.points li span { color: var(--accent); font-family: var(--display); }
.tech-line { margin-top: 26px; font-size: 15px; color: var(--ink-soft); }
.tech-line b { color: var(--ink); font-weight: 500; }
.final { padding: clamp(48px, 7vw, 96px) 0; text-align: left; }
.final p.statement { font-family: var(--display); font-size: clamp(30px, 5.4vw, 68px); line-height: 1.04; max-width: 18ch; margin: 0 0 32px; }
.final__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 28px; }
@media (max-width: 900px) {
.case-lead__row { grid-template-columns: 1fr; align-items: start; }
.chapter { grid-template-columns: 1fr; }
.chapter__label { padding-top: 0; }
.facts div { grid-template-columns: 1fr; gap: 2px; }
}
.case-hero { padding: clamp(28px, 4vw, 52px) 0 clamp(32px, 4vw, 60px); }
.case-hero__inner { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(28px, 4vw, 56px); align-items: center; }
.back {
display: inline-flex; align-items: center; gap: 8px;
font-size: 15px; color: var(--ink-soft); text-decoration: none;
margin-bottom: 22px;
}
.back:hover { color: var(--accent); }
.case-hero h1 { font-size: clamp(32px, 4.4vw, 52px); margin-bottom: 16px; }
.case-hero .lead { margin-bottom: 20px; }
.case-body { max-width: 780px; }
.case-block { padding: clamp(26px, 3vw, 40px) 0; border-top: 1px solid var(--line); }
.case-block:first-child { border-top: none; padding-top: 0; }
.case-block h2 { font-size: clamp(23px, 2.6vw, 30px); margin-bottom: 14px; }
.case-block p { color: var(--ink-soft); }
.case-list { margin: 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.case-list li { position: relative; padding-left: 22px; color: var(--ink-soft); }
.case-list li::before { content: ""; position: absolute; left: 2px; top: .62em; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.case-list b { color: var(--ink); font-weight: 500; }
.stack { display: flex; flex-wrap: wrap; gap: 8px; }
.cta-band { background: var(--surface-warm); }
.cta-band__inner { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: clamp(20px, 3vw, 44px); align-items: center; }
.cta-band h2 { margin-bottom: 8px; }
.cta-band p { color: var(--ink-soft); margin: 0; }
@media (max-width: 1000px) {
.contact--simple, .case-hero__inner, .cta-band__inner { grid-template-columns: 1fr; }
}
.next-case {
display: grid;
grid-template-columns: minmax(0, 1fr) auto;
align-items: end;
gap: 12px 24px;
padding: 26px 0;
border-top: 1px solid var(--line-strong);
border-bottom: 1px solid var(--line-strong);
text-decoration: none;
color: inherit;
}
.next-case__label { grid-column: 1; font-size: 12.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); }
.next-case__name { grid-column: 1; grid-row: 2; font-family: var(--display); font-size: clamp(24px, 3vw, 34px); }
.next-case__arrow { grid-column: 2; grid-row: 2; color: var(--line-strong); transition: color .16s ease, transform .16s ease; }
.next-case:hover .next-case__name { color: var(--accent); }
.next-case:hover .next-case__arrow { color: var(--accent); transform: translateX(5px); }
.next-case:focus-visible { outline: 2px solid var(--accent); outline-offset: 6px; }
.js .reveal { opacity: 0; transform: translateY(14px); transition: opacity .5s ease, transform .5s ease; }
.js .reveal.is-in { opacity: 1; transform: none; }
@media (max-width: 1000px) {
.hero__inner { grid-template-columns: 1fr; }
.case__head { grid-template-columns: 1fr; align-items: start; }
.case__head p { margin-bottom: 0; }
.about { grid-template-columns: 1fr; }
.hero__art { max-width: 640px; margin: 4px auto 0; }
.product, .product--flip .product__text { grid-template-columns: 1fr; order: 0; }
.contact { grid-template-columns: 1fr; }
.process { grid-template-columns: 1fr; }
.process__head { position: static; }
}
@media (max-width: 760px) {
body { font-size: 16px; }
.nav { display: none; }
.header > .header__inner > .btn { display: none; }
.header--plain > .header__inner > .btn { display: inline-flex; padding: 9px 16px; font-size: 14px; }
.burger { display: inline-flex; }
.header.is-open + .mobile-nav { display: block; }
.grid--2, .grid--3, .principles { grid-template-columns: 1fr; }
.stage { grid-template-columns: 54px minmax(0, 1fr); }
.index-row { grid-template-columns: 44px minmax(0, 1fr) 24px; }
.product { padding: 28px 0; }
}
@media (max-width: 620px) {
.hero__media { display: none; }
}
@media (prefers-reduced-motion: reduce) {
html { scroll-behavior: auto; }
*, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
.js .reveal { opacity: 1; transform: none; }
}
