:root {
  --bg: #05090d;
  --bg-soft: #0a1218;
  --surface: #0d1820;
  --surface-2: #11242c;
  --text: #f4f8f8;
  --muted: #9babb0;
  --line: rgba(148, 184, 190, 0.17);
  --cyan: #43d5dc;
  --cyan-soft: #a5f3f6;
  --amber: #d9a55e;
  --danger: #e27878;
  --container: 1220px;
  --gutter: clamp(24px, 5vw, 72px);
  --radius: 8px;
  --shadow: 0 28px 72px rgba(0, 0, 0, 0.38);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
section[id] { scroll-margin-top: 110px; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 82% 3%, rgba(67, 213, 220, 0.08), transparent 28%),
    linear-gradient(180deg, #05090d 0%, #091118 47%, #05090d 100%);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.65;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; }
:focus-visible { outline: 3px solid rgba(67, 213, 220, 0.72); outline-offset: 4px; }
.skip-link { position: fixed; top: 12px; left: 12px; z-index: 100; padding: 10px 14px; border-radius: 7px; background: #fff; color: #05090d; font-weight: 900; transform: translateY(-160%); }
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 10px;
  z-index: 30;
  display: flex;
  width: min(var(--container), calc(100% - var(--gutter)));
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin: 14px auto 0;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(5, 9, 13, 0.76);
  backdrop-filter: blur(18px) saturate(130%);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
  transition: background 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}
.site-header.is-scrolled { border-color: rgba(148, 184, 190, 0.25); background: rgba(5, 9, 13, 0.92); box-shadow: 0 20px 52px rgba(0, 0, 0, 0.38); }
.brand { display: inline-flex; align-items: center; gap: 11px; white-space: nowrap; font-size: 0.96rem; font-weight: 900; letter-spacing: 0.03em; }
.brand img { width: 40px; height: 40px; border: 1px solid rgba(67, 213, 220, 0.23); border-radius: 10px; box-shadow: 0 12px 28px rgba(67, 213, 220, 0.12); }
.header-menu { display: flex; min-width: 0; align-items: center; gap: 10px; }
.primary-nav { display: flex; min-width: 0; align-items: center; gap: 3px; }
.primary-nav a { padding: 9px 11px; border-radius: 7px; color: var(--muted); font-size: 0.86rem; font-weight: 760; transition: background 200ms ease, color 200ms ease; }
.primary-nav a:hover, .primary-nav a.is-active { background: rgba(67, 213, 220, 0.09); color: var(--cyan-soft); }
.primary-nav .studio-link { margin-left: 3px; border-left: 1px solid var(--line); color: #c9d4d6; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 1px solid var(--line); border-radius: 9px; background: var(--surface); cursor: pointer; }
.menu-toggle span { display: block; width: 20px; height: 2px; margin: 4px auto; border-radius: 999px; background: var(--text); transition: transform 200ms ease, opacity 200ms ease; }
.site-header.is-menu-open .menu-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.site-header.is-menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
.site-header.is-menu-open .menu-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.language-switch { position: relative; display: inline-flex; }
.language-trigger { display: inline-flex; min-height: 44px; align-items: center; gap: 9px; padding: 0 13px; border: 1px solid var(--line); border-radius: 999px; background: rgba(13, 24, 32, 0.78); color: var(--muted); cursor: pointer; font-size: 0.82rem; font-weight: 850; }
.language-trigger svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
.language-trigger .language-chevron { width: 15px; height: 15px; transition: transform 200ms var(--ease); }
.language-switch.is-open .language-trigger { border-color: rgba(67, 213, 220, 0.35); color: var(--cyan-soft); }
.language-switch.is-open .language-chevron { transform: rotate(180deg); }
.language-menu { position: absolute; top: calc(100% + 9px); right: 0; z-index: 20; display: grid; width: 190px; gap: 4px; padding: 7px; border: 1px solid var(--line); border-radius: 10px; background: rgba(5, 9, 13, 0.97); box-shadow: var(--shadow); }
.language-menu[hidden] { display: none; }
.language-menu button { display: flex; min-height: 44px; align-items: center; justify-content: space-between; padding: 9px 11px; border: 0; border-radius: 7px; background: transparent; color: var(--muted); cursor: pointer; font-size: 0.87rem; font-weight: 800; text-align: left; }
.language-menu button:hover, .language-menu button.is-active { background: rgba(67, 213, 220, 0.1); color: var(--text); }
.language-menu button.is-active::before { width: 7px; height: 7px; margin-right: 9px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 14px rgba(67, 213, 220, 0.5); content: ""; }
.language-menu button.is-active span { margin-right: auto; }
.language-menu small { margin-left: 12px; color: #61737a; font-size: 0.7rem; }

main, .site-footer { width: min(var(--container), calc(100% - var(--gutter))); margin: 0 auto; }
.hero { display: grid; min-height: 730px; grid-template-columns: minmax(0, 1fr) minmax(420px, 0.86fr); align-items: center; gap: clamp(48px, 7vw, 92px); padding: clamp(64px, 7vw, 96px) 0 88px; }
.hero-copy { position: relative; z-index: 2; min-width: 0; }
.status-line { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 22px; padding: 8px 11px; border: 1px solid rgba(67, 213, 220, 0.26); border-radius: 999px; background: rgba(67, 213, 220, 0.07); color: var(--cyan-soft); font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.11em; }
.status-line span { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 14px rgba(67, 213, 220, 0.8); animation: pulse 2.4s ease-in-out infinite; }
.status-line strong { font-weight: 900; }
.eyebrow { margin: 0 0 16px; color: var(--cyan); font-size: 0.75rem; font-weight: 900; letter-spacing: 0.16em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 760px; margin-bottom: 24px; font-size: clamp(3.25rem, 6vw, 5.65rem); line-height: 0.99; letter-spacing: 0; }
h2 { margin-bottom: 20px; font-size: clamp(2.25rem, 4vw, 3.8rem); line-height: 1.06; }
h3 { margin-bottom: 10px; font-size: 1.3rem; line-height: 1.25; }
.lead { max-width: 700px; margin-bottom: 32px; color: var(--muted); font-size: clamp(1.08rem, 1.7vw, 1.24rem); line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; padding: 0 20px; border: 1px solid var(--line); border-radius: 999px; background: rgba(13, 24, 32, 0.9); color: var(--text); font-weight: 850; transition: transform 240ms var(--ease), border-color 240ms ease, box-shadow 240ms ease, background 240ms ease; }
.button.primary { border-color: transparent; background: linear-gradient(135deg, #16848d, #2bb7bc); color: #fff; box-shadow: 0 16px 36px rgba(27, 171, 178, 0.2); }
.button:hover { border-color: rgba(67, 213, 220, 0.42); transform: translateY(-2px); box-shadow: 0 20px 42px rgba(0, 0, 0, 0.27); }
.hero-facts { display: flex; flex-wrap: wrap; gap: 9px; margin: 28px 0 0; padding: 0; list-style: none; }
.hero-facts li { display: inline-flex; align-items: center; min-height: 40px; padding: 8px 11px; border: 1px solid var(--line); border-radius: 7px; background: rgba(13, 24, 32, 0.64); color: #bcc9cc; font-size: 0.86rem; font-weight: 740; }
.hero-facts li::before { width: 6px; height: 6px; margin-right: 8px; border-radius: 50%; background: var(--cyan); content: ""; }

.hero-art { position: relative; display: grid; min-height: 590px; place-items: center; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: radial-gradient(circle at 50% 48%, rgba(67, 213, 220, 0.14), transparent 49%), #030608; box-shadow: var(--shadow); }
.hero-art::before { position: absolute; width: 82%; aspect-ratio: 1; border: 1px solid rgba(67, 213, 220, 0.18); border-radius: 50%; content: ""; }
.hero-art img { position: relative; z-index: 2; width: min(82%, 460px); border: 1px solid rgba(67, 213, 220, 0.16); border-radius: 28px; box-shadow: 0 34px 72px rgba(0, 0, 0, 0.58); transform: rotate(1.5deg); transition: transform 500ms var(--ease), box-shadow 500ms var(--ease); }
.hero-art:hover img { box-shadow: 0 40px 90px rgba(0, 0, 0, 0.68); transform: rotate(0) scale(1.025); }
.signal { position: absolute; width: 1px; height: 100%; background: linear-gradient(transparent, rgba(67, 213, 220, 0.36), transparent); opacity: 0.5; }
.signal-one { left: 24%; } .signal-two { right: 21%; }
.case-stamp { position: absolute; right: 22px; bottom: 22px; z-index: 3; display: grid; min-width: 138px; padding: 13px; border: 1px solid rgba(67, 213, 220, 0.27); background: rgba(5, 9, 13, 0.82); backdrop-filter: blur(10px); }
.case-stamp span, .case-stamp small { color: var(--muted); font-size: 0.62rem; font-weight: 850; letter-spacing: 0.13em; text-transform: uppercase; }
.case-stamp strong { color: var(--cyan-soft); font-size: 1.32rem; }

.intro-band { display: grid; grid-template-columns: 0.7fr 1.1fr 1.2fr; align-items: start; gap: 28px; margin-bottom: 112px; padding: 38px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.intro-band h2 { margin: 0; font-size: clamp(2rem, 3.4vw, 3rem); }
.intro-band > p:last-child { max-width: 570px; margin: 0; color: var(--muted); }
.section { padding: 0 0 112px; }
.section-heading { display: grid; max-width: 940px; grid-template-columns: 0.7fr 1.3fr; gap: 0 46px; margin-bottom: 44px; }
.section-heading .eyebrow { grid-column: 1 / -1; }
.section-heading h2 { margin-bottom: 0; }
.section-heading > p:last-child { margin: 5px 0 0; color: var(--muted); }
.steps-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.steps-grid article { min-height: 280px; padding: 30px 24px; border-right: 1px solid var(--line); transition: background 280ms ease, transform 280ms var(--ease); }
.steps-grid article:last-child { border-right: 0; }
.steps-grid article:hover { background: rgba(67, 213, 220, 0.04); transform: translateY(-3px); }
.steps-grid span { display: inline-flex; margin-bottom: 42px; color: var(--cyan); font-size: 0.76rem; font-weight: 900; letter-spacing: 0.12em; }
.steps-grid p { margin: 0; color: var(--muted); font-size: 0.94rem; }

.office-showcase { display: grid; grid-template-columns: minmax(330px, 0.86fr) minmax(0, 1.14fr); min-height: 620px; align-items: stretch; margin-bottom: 112px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(145deg, rgba(17, 36, 44, 0.84), rgba(9, 17, 24, 0.96)); box-shadow: var(--shadow); }
.office-image { min-height: 620px; overflow: hidden; }
.office-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 43%; filter: saturate(0.84) contrast(1.04); transition: transform 600ms var(--ease); }
.office-showcase:hover .office-image img { transform: scale(1.025); }
.office-copy { display: flex; padding: clamp(42px, 6vw, 74px); flex-direction: column; justify-content: center; }
.office-copy > p:not(.eyebrow) { max-width: 650px; color: var(--muted); font-size: 1.05rem; }
.office-copy ul { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 24px 0 0; padding: 0; list-style: none; }
.office-copy li { padding: 13px 14px; border: 1px solid var(--line); border-radius: 7px; color: #c8d4d6; font-size: 0.9rem; font-weight: 750; }
.office-copy li::before { margin-right: 9px; color: var(--cyan); content: "+"; }

.cases-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.case-card { display: grid; min-height: 530px; grid-template-columns: 0.78fr 1.22fr; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(13, 24, 32, 0.88); box-shadow: 0 22px 58px rgba(0, 0, 0, 0.24); transition: transform 320ms var(--ease), border-color 320ms ease, box-shadow 320ms ease; }
.case-card:hover { border-color: rgba(67, 213, 220, 0.34); box-shadow: 0 30px 70px rgba(0, 0, 0, 0.34); transform: translateY(-4px); }
.case-image { min-height: 100%; overflow: hidden; }
.case-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 480ms var(--ease); }
.case-card:hover .case-image img { transform: scale(1.035); }
.case-copy { display: flex; padding: 32px; flex-direction: column; justify-content: center; }
.case-copy > span { color: var(--cyan); font-size: 0.7rem; font-weight: 900; letter-spacing: 0.14em; }
.case-copy h3 { margin: 10px 0 16px; font-size: clamp(1.65rem, 2.5vw, 2.35rem); }
.case-copy p { color: var(--muted); }
.case-copy small { width: fit-content; margin-top: auto; padding: 8px 10px; border: 1px solid var(--line); border-radius: 6px; color: #c6d3d5; font-weight: 750; }
.case-wide { grid-column: 1 / -1; min-height: 400px; grid-template-columns: 1.25fr 0.75fr; }

.evidence-section { display: grid; grid-template-columns: 0.9fr 1.1fr; align-items: center; gap: clamp(42px, 7vw, 86px); margin-bottom: 112px; padding: clamp(42px, 6vw, 70px); border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(140deg, rgba(67, 213, 220, 0.05), rgba(13, 24, 32, 0.9)); }
.evidence-copy p:last-child { color: var(--muted); }
.evidence-terminal { overflow: hidden; border: 1px solid rgba(67, 213, 220, 0.24); border-radius: 8px; background: #050b0f; box-shadow: 0 26px 64px rgba(0, 0, 0, 0.4); }
.terminal-top { display: flex; align-items: center; gap: 7px; padding: 12px 14px; border-bottom: 1px solid var(--line); }
.terminal-top span { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); opacity: 0.4; }
.terminal-top strong { margin-left: auto; color: #70868b; font-size: 0.63rem; letter-spacing: 0.12em; }
.terminal-tabs { display: grid; grid-template-columns: repeat(3, 1fr); border-bottom: 1px solid var(--line); }
.terminal-tabs span { padding: 13px; color: #64777d; font-size: 0.75rem; font-weight: 850; text-align: center; }
.terminal-tabs .active { background: rgba(67, 213, 220, 0.08); color: var(--cyan-soft); }
.terminal-record { margin: 18px; padding: 18px; border: 1px solid var(--line); background: rgba(17, 36, 44, 0.58); }
.terminal-record small { display: block; color: #71868b; text-transform: uppercase; letter-spacing: 0.12em; }
.terminal-record strong { display: block; margin: 5px 0 10px; color: var(--cyan-soft); }
.terminal-record p { margin: 0; color: #aab9bc; font-size: 0.9rem; }
.terminal-result { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin: 0 18px 18px; padding: 13px; border-left: 2px solid var(--cyan); background: rgba(67, 213, 220, 0.07); }
.terminal-result span { color: var(--muted); font-size: 0.75rem; }
.terminal-result strong { color: var(--cyan-soft); font-size: 0.85rem; }

.development-section { display: grid; grid-template-columns: 1.08fr 0.92fr; align-items: center; gap: 54px; margin-bottom: 94px; padding: clamp(38px, 6vw, 68px); border: 1px solid rgba(67, 213, 220, 0.22); border-radius: var(--radius); background: rgba(67, 213, 220, 0.045); }
.development-section > div > p:last-child { color: var(--muted); }
.development-card { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: 0 24px 58px rgba(0, 0, 0, 0.28); }
.development-card > span { display: inline-flex; margin-bottom: 18px; padding: 7px 9px; border: 1px solid rgba(67, 213, 220, 0.25); border-radius: 999px; color: var(--cyan-soft); font-size: 0.7rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.11em; }
.development-card > strong { display: block; margin-bottom: 9px; font-size: 1.35rem; }
.development-card p { color: var(--muted); }
.error-page { min-height: 100vh; margin: 0; place-items: center; }
.error-page > div { max-width: 760px; }
.error-page h1 { font-size: clamp(3rem, 8vw, 6rem); }
.error-page p:not(.eyebrow) { color: var(--muted); }

.site-footer { padding: 62px 0 32px; border-top: 1px solid var(--line); color: var(--muted); }
.footer-main { display: grid; grid-template-columns: minmax(250px, 1.45fr) repeat(3, minmax(150px, 1fr)); gap: clamp(34px, 5vw, 64px); }
.footer-brand { max-width: 340px; }
.footer-brand p { margin: 22px 0 13px; }
.footer-brand > a:last-child { color: var(--cyan-soft); font-weight: 780; }
.footer-column { display: grid; align-content: start; gap: 11px; }
.footer-column h2 { margin: 0 0 8px; color: var(--text); font-size: 0.72rem; letter-spacing: 0.13em; text-transform: uppercase; }
.footer-column a { color: var(--muted); font-size: 0.9rem; font-weight: 720; }
.footer-column a:hover, .footer-brand > a:last-child:hover { color: var(--cyan); }
.footer-bottom { margin-top: 52px; padding-top: 23px; border-top: 1px solid var(--line); }
.footer-bottom p { margin: 0; }
.back-to-top { position: fixed; right: 22px; bottom: 22px; z-index: 25; width: 52px; height: 52px; border: 1px solid rgba(67, 213, 220, 0.42); border-radius: 50%; background: rgba(5, 9, 13, 0.78); color: var(--cyan); cursor: pointer; font-weight: 900; opacity: 0; pointer-events: none; transform: translateY(12px); transition: opacity 200ms ease, transform 200ms var(--ease), box-shadow 200ms ease; }
.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { box-shadow: 0 16px 38px rgba(67, 213, 220, 0.14); }

.motion-ready .reveal-item { opacity: 0; transform: translateY(22px); transition: opacity 700ms ease, transform 700ms var(--ease); transition-delay: var(--reveal-delay, 0ms); }
.motion-ready .reveal-item.is-revealed { opacity: 1; transform: translateY(0); }
@keyframes pulse { 0%, 100% { opacity: 0.65; transform: scale(0.88); } 50% { opacity: 1; transform: scale(1.12); } }

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; }
  .hero-art { min-height: 540px; }
  .intro-band { grid-template-columns: 1fr 1fr; }
  .intro-band > p:last-child { grid-column: 2; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid article:nth-child(2) { border-right: 0; }
  .steps-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .office-showcase, .evidence-section, .development-section { grid-template-columns: 1fr; }
  .office-image { min-height: 520px; max-height: 620px; }
  .cases-grid { grid-template-columns: 1fr; }
  .case-wide { grid-column: auto; }
  .footer-main { grid-template-columns: repeat(2, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 780px) {
  section[id] { scroll-margin-top: 92px; }
  .site-header { display: grid; grid-template-columns: minmax(0, 1fr) auto; width: calc(100% - 20px); min-height: 60px; margin-top: 8px; padding: 9px 10px; }
  .menu-toggle { display: block; }
  .header-menu { position: absolute; top: calc(100% + 8px); right: 0; left: 0; display: grid; max-height: 0; gap: 7px; padding: 0 10px; border: 1px solid transparent; border-radius: 12px; background: rgba(5, 9, 13, 0.97); box-shadow: var(--shadow); opacity: 0; overflow: hidden; pointer-events: none; transform: translateY(-8px); transition: max-height 300ms var(--ease), padding 300ms var(--ease), opacity 200ms ease, transform 300ms var(--ease), border-color 200ms ease; }
  .site-header.is-menu-open .header-menu { max-height: 540px; padding: 10px; border-color: var(--line); opacity: 1; pointer-events: auto; transform: translateY(0); }
  .primary-nav { display: grid; }
  .primary-nav a { display: flex; min-height: 46px; align-items: center; }
  .primary-nav .studio-link { margin: 0; border-top: 1px solid var(--line); border-left: 0; }
  .language-switch, .language-trigger { width: 100%; }
  .language-trigger { justify-content: flex-start; border-radius: 8px; }
  .language-chevron { margin-left: auto; }
  .language-menu { position: static; width: 100%; margin-top: 7px; box-shadow: none; }
  main, .site-footer { width: calc(100% - 24px); }
  .hero { min-height: auto; gap: 36px; padding: 46px 0 70px; }
  h1 { font-size: clamp(2.75rem, 13vw, 4.2rem); line-height: 1.01; }
  .hero-art { min-height: auto; padding: 34px 0 78px; }
  .hero-art img { width: min(78%, 420px); }
  .intro-band { grid-template-columns: 1fr; margin-bottom: 76px; }
  .intro-band > p:last-child { grid-column: auto; }
  .section { padding-bottom: 78px; }
  .section-heading { grid-template-columns: 1fr; gap: 10px; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid article { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .steps-grid article:last-child { border-bottom: 0; }
  .steps-grid span { margin-bottom: 28px; }
  .office-showcase, .evidence-section { margin-bottom: 78px; }
  .office-image { min-height: 440px; }
  .office-copy { padding: 30px 24px; }
  .office-copy ul { grid-template-columns: 1fr; }
  .case-card, .case-wide { min-height: auto; grid-template-columns: 1fr; }
  .case-image { height: 330px; }
  .case-copy { min-height: 290px; padding: 26px 24px; }
  .case-wide .case-image { height: 260px; }
  .evidence-section, .development-section { padding: 26px 22px; }
  .terminal-result { align-items: flex-start; flex-direction: column; }
  .footer-main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .brand span { font-size: 0.86rem; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .hero-facts li { width: 100%; }
  .hero-art img { width: 84%; border-radius: 20px; }
  .case-stamp { right: 14px; bottom: 14px; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .site-footer { padding-bottom: 84px; }
}

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