:root {
  --green: #4caf2f;
  --charcoal: #343434;
  --charcoal-deep: #252525;
  --berry: #bd2f5d;
  --yellow: #ffbd22;
  --mint: #96c7a8;
  --paper: #f2f2ef;
  --white: #ffffff;
  --ink: #303030;
  --muted: #646460;
  --line: #d7d7d1;
  --shadow: 0 24px 70px rgba(32, 32, 32, .16);
  --sans: "DM Sans", Arial, sans-serif;
  --display: "Anton", Impact, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; color: var(--ink); background: var(--paper); font: 400 1rem/1.65 var(--sans); -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
h1, h2, h3 { margin: 0; font-family: var(--display); font-weight: 400; line-height: .98; letter-spacing: .015em; text-transform: uppercase; text-wrap: balance; }
h1 { max-width: 850px; font-size: clamp(4rem, 8vw, 8.2rem); }
h2 { font-size: clamp(3rem, 5.8vw, 6rem); }
h3 { font-size: clamp(1.8rem, 3vw, 2.8rem); }
p { margin: 0; }
section { scroll-margin-top: 88px; }

.shell { width: min(1220px, calc(100% - 48px)); margin-inline: auto; }
.section { padding: 126px 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 18px; top: -80px; z-index: 200; padding: 12px 18px; background: var(--yellow); color: var(--charcoal); font-weight: 700; text-decoration: none; transition: top .2s; }
.skip-link:focus { top: 18px; }

.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; color: var(--berry); font-size: .78rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow::before { width: 24px; height: 3px; flex: 0 0 auto; background: currentColor; content: ""; }
.eyebrow-yellow { color: var(--yellow); }
.eyebrow-mint { color: var(--mint); }
.button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; padding: 14px 23px; border: 2px solid var(--berry); border-radius: 2px; background: var(--berry); color: var(--white); font-weight: 700; line-height: 1.2; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-3px); box-shadow: 8px 8px 0 var(--yellow); }
.button:focus-visible, .main-nav a:focus-visible, .text-link:focus-visible, .card-link:focus-visible, .contact-link:focus-visible { outline: 3px solid var(--yellow); outline-offset: 4px; }
.button-small { min-height: 44px; padding: 10px 17px; font-size: .88rem; }
.button-yellow { border-color: var(--yellow); background: var(--yellow); color: var(--charcoal); }
.button-yellow:hover { box-shadow: 8px 8px 0 var(--berry); }
.button-charcoal { border-color: var(--charcoal); background: var(--charcoal); color: var(--white); }
.text-link { font-weight: 700; text-decoration-thickness: 2px; text-underline-offset: 5px; }
.text-link span, .card-link span { display: inline-block; margin-left: 7px; transition: transform .2s; }
.text-link:hover span { transform: translateY(4px); }
.card-link:hover span { transform: translateX(4px); }

.site-header { position: sticky; top: 0; z-index: 100; border-bottom: 1px solid rgba(48,48,48,.12); background: rgba(242,242,239,.94); backdrop-filter: blur(16px); }
.header-inner { min-height: 84px; display: flex; align-items: center; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--ink); text-decoration: none; }
.brand-mark { width: 48px; height: 48px; overflow: hidden; flex: 0 0 auto; border-radius: 8px; background: var(--green); }
.brand-mark img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 3%; }
.brand-copy { display: flex; flex-direction: column; line-height: 1; }
.brand-copy strong { font: 400 1.3rem var(--display); letter-spacing: .02em; text-transform: uppercase; }
.brand-copy small { margin-top: 6px; color: var(--muted); font-size: .65rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.full-logo { display: block; width: 104px; height: auto; border-radius: 16px; box-shadow: 0 16px 38px rgba(25,25,25,.22); }
.main-nav { display: flex; align-items: center; gap: 25px; margin-left: auto; }
.main-nav a { position: relative; color: var(--ink); font-size: .88rem; font-weight: 700; text-decoration: none; }
.main-nav a::after { position: absolute; left: 0; right: 100%; bottom: -8px; height: 3px; background: var(--berry); content: ""; transition: right .2s; }
.main-nav a:hover::after { right: 0; }
.menu-toggle { display: none; width: 46px; height: 46px; margin-left: auto; padding: 11px; border: 0; background: transparent; cursor: pointer; }
.menu-toggle > span:not(.sr-only) { display: block; width: 100%; height: 2px; margin: 5px 0; background: var(--ink); transition: transform .2s, opacity .2s; }

.hero { position: relative; overflow: hidden; padding: 72px 0 94px; background: linear-gradient(105deg, var(--paper) 0 66%, var(--charcoal) 66%); }
.hero::before { position: absolute; width: 42vw; height: 26px; left: -8vw; top: 16%; background: var(--yellow); content: ""; transform: rotate(-4deg); opacity: .9; }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.08fr .7fr; align-items: center; gap: 88px; }
.hero-copy { position: relative; z-index: 2; padding: 42px 0; }
.hero h1 { color: var(--berry); }
.hero h1 em { color: var(--charcoal); font-style: normal; }
.hero-lead { max-width: 710px; margin: 30px 0 34px; color: var(--muted); font-size: clamp(1.08rem, 1.55vw, 1.28rem); }
.hero-actions { display: flex; align-items: center; gap: 26px; }
.hero-values { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 48px; }
.hero-values span { padding: 8px 12px; border: 1px solid var(--charcoal); color: var(--charcoal); font-size: .78rem; font-weight: 700; text-transform: uppercase; }
.hero-visual { position: relative; min-height: 670px; }
.hero-photo { position: absolute; inset: 0; overflow: hidden; border: 10px solid var(--white); box-shadow: var(--shadow); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%; }
.hero-full-logo { position: absolute; z-index: 3; top: 24px; right: -32px; transform: rotate(3deg); }
.hero-note { position: absolute; z-index: 2; left: -70px; bottom: 28px; display: flex; flex-direction: column; width: 330px; padding: 22px 25px; background: var(--berry); color: var(--white); box-shadow: 12px 12px 0 var(--yellow); }
.hero-note strong { font-size: 1rem; text-transform: uppercase; }
.hero-note span { font-size: .86rem; }
.photo-caption { position: absolute; z-index: 2; right: 20px; bottom: 15px; padding: 6px 9px; background: var(--charcoal); color: var(--white); font-size: .68rem; letter-spacing: .04em; }

.statement-band { background: var(--yellow); color: var(--charcoal); }
.statement-inner { min-height: 96px; display: flex; align-items: center; justify-content: center; gap: 28px; }
.statement-inner p { font: 400 clamp(1.5rem, 2.8vw, 2.55rem)/1 var(--display); text-transform: uppercase; }
.statement-inner span { width: 12px; height: 12px; background: var(--berry); transform: rotate(45deg); }

.section-intro { max-width: 880px; margin-bottom: 62px; }
.section-intro.split { max-width: none; display: grid; grid-template-columns: 1.08fr .72fr; align-items: end; gap: 90px; }
.section-lead, .intro-copy { margin-top: 24px; color: var(--muted); font-size: 1.1rem; }
.section-intro.split .intro-copy { margin: 0; }
.intro-copy p + p { margin-top: 18px; }

.evidence { background: var(--white); }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--charcoal); }
.stats article { min-height: 290px; padding: 38px; border-right: 1px solid var(--charcoal); background: var(--paper); }
.stats article:last-child { border-right: 0; }
.stats strong { display: block; margin-bottom: 28px; color: var(--berry); font: 400 clamp(4.5rem, 8vw, 7.5rem)/.85 var(--display); }
.stats strong span { color: var(--charcoal); font-size: .45em; }
.stats p { max-width: 285px; color: var(--muted); }
.stats .stat-highlight { background: var(--yellow); }
.stats .stat-highlight strong, .stats .stat-highlight p { color: var(--charcoal); }
.source { margin-top: 18px; color: var(--muted); font-size: .76rem; }
.source a { text-underline-offset: 3px; }

.offer { position: relative; overflow: hidden; background: var(--charcoal); color: var(--white); }
.offer::after { position: absolute; width: 500px; height: 38px; right: -90px; bottom: 130px; background: var(--yellow); content: ""; transform: rotate(-8deg); opacity: .16; }
.offer .shell { position: relative; }
.offer .section-intro { position: relative; z-index: 1; }
.offer .section-lead { max-width: 720px; color: #d4d4d0; }
.offer-full-logo { position: absolute; z-index: 2; top: 0; right: 18px; transform: rotate(-3deg); }
.service-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.service-card { min-height: 610px; display: flex; flex-direction: column; padding: 44px; color: var(--charcoal); }
.service-card-media { background: var(--berry); color: var(--white); }
.service-card-art { background: var(--mint); }
.service-number { display: block; margin-bottom: 58px; color: var(--yellow); font: 400 3.2rem/1 var(--display); }
.service-card-art .service-number { color: var(--berry); }
.service-label { margin-bottom: 12px; font-size: .76rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.service-card h3 { max-width: 460px; font-size: clamp(2.5rem, 4.5vw, 4.4rem); }
.service-card > p:not(.service-label) { max-width: 520px; margin: 22px 0 28px; color: rgba(255,255,255,.82); }
.service-card-art > p:not(.service-label) { color: #46514b; }
.service-card ul { margin: auto 0 0; padding: 22px 0 0; border-top: 1px solid rgba(255,255,255,.35); list-style: none; }
.service-card-art ul { border-top-color: rgba(48,48,48,.25); }
.service-card li { position: relative; padding: 7px 0 7px 20px; font-size: .91rem; }
.service-card li::before { position: absolute; left: 0; top: 16px; width: 8px; height: 3px; background: var(--yellow); content: ""; }
.service-card-art li::before { background: var(--berry); }
.card-link { align-self: flex-start; margin-top: 28px; font-weight: 700; text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 5px; }

.media { background: var(--paper); }
.media-benefits { display: grid; grid-template-columns: repeat(4, 1fr); margin-bottom: 82px; border: 1px solid var(--charcoal); }
.media-benefits span { padding: 18px; border-right: 1px solid var(--charcoal); color: var(--berry); font-weight: 800; text-align: center; text-transform: uppercase; }
.media-benefits span:last-child { border-right: 0; }
.media-group-heading { display: grid; grid-template-columns: 1fr .8fr; align-items: end; gap: 70px; margin: 0 0 34px; }
.media-group-heading h3 { margin-top: 8px; font-size: clamp(2.6rem, 4.4vw, 4.4rem); }
.media-group-heading > p { padding-bottom: 8px; color: var(--muted); font-size: 1rem; }
.media-group-heading-programs { margin-top: 102px; }
.media-product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.media-product-card { min-height: 760px; display: flex; flex-direction: column; padding: 40px; border: 1px solid var(--charcoal); background: var(--white); }
.media-product-top { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.media-product-top > span { color: var(--berry); font: 400 2rem/1 var(--display); }
.media-product-top > small { padding: 7px 10px 6px; border: 1px solid currentColor; font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.media-product-card h3 { margin: 38px 0 12px; color: var(--berry); font-size: clamp(2.7rem, 4vw, 4.25rem); }
.media-product-tagline { max-width: 470px; margin-bottom: 25px; font-size: 1.08rem; font-weight: 800; line-height: 1.42; }
.media-product-copy p { margin-top: 12px; color: var(--muted); font-size: .98rem; line-height: 1.55; }
.media-product-copy p strong { color: var(--charcoal); }
.media-product-price { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; margin-top: auto; padding-top: 27px; border-top: 1px solid currentColor; }
.media-product-price strong { color: var(--berry); font: 400 1.85rem var(--display); text-transform: uppercase; }
.media-product-price span { color: var(--muted); font-size: .78rem; font-weight: 700; text-align: right; }
.media-product-yellow { border-color: var(--yellow); background: var(--yellow); }
.media-product-dark { border-color: var(--charcoal); background: var(--charcoal); color: var(--white); }
.media-product-dark .media-product-top > span, .media-product-dark h3, .media-product-dark .media-product-price strong { color: var(--yellow); }
.media-product-dark .media-product-copy p, .media-product-dark .media-product-price span { color: #d1d1cd; }
.media-product-dark .media-product-copy p strong { color: var(--white); }
.light-glue-result { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; margin-top: 28px; border: 1px solid currentColor; background: currentColor; }
.light-glue-result > div { min-height: 122px; padding: 20px; background: var(--yellow); color: var(--charcoal); }
.media-product-dark .light-glue-result > div { background: var(--charcoal); color: var(--white); }
.light-glue-result strong { display: block; margin-bottom: 8px; color: var(--berry); font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; }
.media-product-dark .light-glue-result strong { color: var(--yellow); }
.light-glue-result span { display: block; font-size: .84rem; font-weight: 650; line-height: 1.45; }
.product-boundary { margin-top: 24px; padding: 15px 17px; border-left: 5px solid var(--yellow); background: rgba(255,255,255,.08); color: #e4e4df; font-size: .88rem; line-height: 1.5; }
.product-boundary strong { color: var(--yellow); }
.media-product-footer { margin-top: auto; padding-top: 28px; }
.media-product-footer .media-product-price { margin: 0 0 22px; }
.media-support-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.media-support-card { min-height: 520px; display: flex; flex-direction: column; padding: 32px; border: 1px solid var(--charcoal); background: var(--white); }
.media-support-card h3 { margin: 34px 0 20px; color: var(--berry); font-size: clamp(2.1rem, 3vw, 3rem); }
.media-support-card > p { color: var(--muted); font-size: .96rem; line-height: 1.55; }
.media-support-card ul { display: grid; gap: 11px; margin: 26px 0 32px; padding: 0; list-style: none; }
.media-support-card li { position: relative; padding-left: 22px; font-size: .9rem; font-weight: 650; }
.media-support-card li::before { position: absolute; left: 0; top: .55em; width: 9px; height: 4px; background: var(--yellow); content: ""; }
.media-support-card-featured { border-color: var(--berry); background: var(--berry); color: var(--white); }
.media-support-card-featured .media-product-top > span, .media-support-card-featured h3, .media-support-card-featured .media-product-price strong { color: var(--yellow); }
.media-support-card-featured > p, .media-support-card-featured .media-product-price span { color: rgba(255,255,255,.82); }
.media-choice { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 70px; margin-top: 70px; padding: 46px 50px; background: var(--charcoal); color: var(--white); }
.media-choice h3 { margin-top: 8px; color: var(--yellow); font-size: clamp(2.5rem, 4.2vw, 4rem); }
.media-choice p:not(.eyebrow) { max-width: 720px; margin-top: 16px; color: #d1d1cd; }
.media-choice .button { white-space: nowrap; }

.art { background: var(--charcoal); color: var(--white); }
.art .intro-copy { color: #d1d1cd; }
.art-benefits { display: grid; grid-template-columns: repeat(4, 1fr); margin-bottom: 36px; border: 1px solid #686864; }
.art-benefits span { padding: 18px; border-right: 1px solid #686864; color: var(--yellow); font-weight: 700; text-align: center; text-transform: uppercase; }
.art-benefits span:last-child { border-right: 0; }
.art-products { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.art-card { min-height: 430px; display: grid; grid-template-columns: .9fr 1.1fr; overflow: hidden; background: var(--white); color: var(--charcoal); }
.art-card img { width: 100%; height: 100%; min-height: 430px; object-fit: cover; }
.art-card-copy { display: flex; flex-direction: column; padding: 30px; }
.art-card-copy > span { color: var(--mint); font: 400 2rem/1 var(--display); }
.art-card-copy h3 { margin: 26px 0 22px; color: var(--berry); font-size: 2.15rem; }
.art-card-copy p { margin-top: 10px; color: var(--muted); font-size: .86rem; line-height: 1.5; }
.art-card-copy p strong { color: var(--charcoal); }
.art-pricing { display: grid; grid-template-columns: .85fr 1.15fr auto; align-items: center; gap: 46px; margin-top: 52px; padding: 42px; background: var(--yellow); color: var(--charcoal); }
.art-pricing .eyebrow { color: var(--berry); }
.art-pricing h3 { font-size: 2.7rem; }
.art-pricing > p { font-size: .92rem; }
.art-pricing .button { white-space: nowrap; }

.process { background: var(--white); }
.workflow-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.workflow { padding: 42px; }
.workflow-media { background: var(--berry); color: var(--white); }
.workflow-art { background: var(--mint); color: var(--charcoal); }
.workflow-label { margin-bottom: 35px; font: 400 2.4rem var(--display); text-transform: uppercase; }
.workflow-media .workflow-label { color: var(--yellow); }
.workflow-art .workflow-label { color: var(--berry); }
.workflow ol { margin: 0; padding: 0; list-style: none; }
.workflow li { display: grid; grid-template-columns: 52px 1fr; gap: 18px; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.34); }
.workflow-art li { border-top-color: rgba(48,48,48,.24); }
.workflow li > span { color: var(--yellow); font: 400 1.4rem var(--display); }
.workflow-art li > span { color: var(--berry); }
.workflow h3 { font: 700 1.05rem var(--sans); text-transform: none; }
.workflow p { margin-top: 6px; color: rgba(255,255,255,.8); font-size: .9rem; }
.workflow-art p { color: #4d5852; }

.mission { background: var(--paper); }
.mission-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 96px; }
.mission-photo { position: relative; min-height: 650px; }
.mission-photo > img { position: absolute; inset: 0 0 50px; width: 100%; height: calc(100% - 50px); object-fit: cover; object-position: 50% 50%; filter: saturate(.88) contrast(1.04); }
.mission-stamp { position: absolute; right: -34px; bottom: 0; width: 235px; padding: 23px; background: var(--yellow); box-shadow: 10px 10px 0 var(--berry); }
.mission-stamp span { display: block; color: var(--berry); font: 400 3.6rem/.9 var(--display); }
.mission-stamp p { margin-top: 10px; font-size: .77rem; font-weight: 700; line-height: 1.35; }
.mission h2 { color: var(--berry); }
.mission-copy > p:not(.eyebrow):not(.founder) { margin-top: 28px; color: var(--muted); font-size: 1.06rem; }
.mission blockquote { margin: 36px 0 28px; padding: 24px 28px; border-left: 8px solid var(--berry); background: var(--white); color: var(--charcoal); font: 600 clamp(1.25rem, 2.1vw, 1.7rem)/1.45 var(--sans); }
.founder { font-weight: 700; }
.founder span { display: block; color: var(--muted); font-size: .75rem; font-weight: 600; }
.mission-full-logo { width: 82px; margin-top: 32px; border-radius: 12px; }

.final-cta { padding: 104px 0; background: var(--charcoal); color: var(--white); }
.final-cta-inner { max-width: 1080px; }
.final-cta h2 { max-width: 1040px; color: var(--yellow); }
.final-cta-inner > p:not(.eyebrow) { max-width: 760px; margin-top: 26px; color: #d1d1cd; font-size: 1.12rem; }
.final-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 25px; margin-top: 36px; }
.contact-link { color: var(--white); font-weight: 700; text-decoration-thickness: 2px; text-underline-offset: 5px; }

.site-footer { padding: 62px 0 22px; background: var(--charcoal-deep); color: var(--white); }
.footer-main { display: grid; grid-template-columns: 1fr 1fr auto; align-items: center; gap: 48px; padding-bottom: 48px; }
.brand-footer { color: var(--white); }
.brand-footer .brand-copy small, .footer-main > p { color: #a8a8a3; }
.footer-links { display: flex; gap: 22px; }
.footer-links a { color: var(--white); font-size: .87rem; font-weight: 700; text-decoration: none; }
.footer-links a:hover { color: var(--yellow); }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 18px; border-top: 1px solid #50504d; color: #90908c; font-size: .72rem; }

[data-reveal] { opacity: 1; transform: none; }
.reveal-ready [data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .62s ease, transform .62s ease; }
.reveal-ready [data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  .main-nav { gap: 17px; }
  .hero-grid { gap: 52px; }
  .hero-visual { min-height: 610px; }
  .hero-note { left: -36px; }
  .section-intro.split { gap: 52px; }
  .service-card { padding: 36px; }
  .art-card { grid-template-columns: 1fr; }
  .art-card img { height: 245px; min-height: 245px; }
  .art-pricing { grid-template-columns: 1fr 1.2fr; }
  .art-pricing .button { justify-self: start; }
  .mission-grid { gap: 56px; }
}

@media (max-width: 860px) {
  .shell { width: min(100% - 36px, 1220px); }
  .section { padding: 92px 0; }
  .header-inner { min-height: 76px; }
  .menu-toggle { display: block; }
  .header-cta { display: none; }
  .main-nav { position: absolute; left: 0; right: 0; top: 100%; display: none; flex-direction: column; align-items: flex-start; gap: 0; padding: 15px 18px 24px; border-top: 1px solid var(--line); background: var(--paper); box-shadow: 0 18px 35px rgba(32,32,32,.14); }
  .main-nav.open { display: flex; }
  .main-nav a { width: 100%; padding: 13px 18px; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero { padding: 46px 0 85px; background: var(--paper); }
  .hero::before { width: 80vw; }
  .hero-grid, .section-intro.split, .mission-grid { grid-template-columns: 1fr; }
  .hero-copy { padding: 18px 0 6px; }
  .hero-visual { min-height: 680px; }
  .hero-full-logo { top: 20px; right: 18px; }
  .hero-note { left: 20px; }
  .statement-inner { min-height: 118px; flex-direction: column; gap: 7px; text-align: center; }
  .statement-inner span { width: 34px; height: 4px; transform: none; }
  .section-intro.split { gap: 30px; }
  .stats, .service-grid, .workflow-grid { grid-template-columns: 1fr; }
  .stats article { min-height: auto; border-right: 0; border-bottom: 1px solid var(--charcoal); }
  .stats article:last-child { border-bottom: 0; }
  .service-card { min-height: 560px; }
  .offer-full-logo { position: relative; top: auto; right: auto; width: 86px; margin: -25px 0 38px auto; }
  .media-group-heading, .media-choice { grid-template-columns: 1fr; gap: 28px; }
  .media-product-grid, .media-support-grid { grid-template-columns: 1fr; }
  .media-product-card, .media-support-card { min-height: 0; }
  .media-benefits { grid-template-columns: 1fr 1fr; }
  .media-benefits span:nth-child(2) { border-right: 0; }
  .media-benefits span:nth-child(n+3) { border-top: 1px solid var(--charcoal); }
  .media-choice .button { justify-self: start; }
  .art-benefits { grid-template-columns: 1fr 1fr; }
  .art-benefits span:nth-child(2) { border-right: 0; }
  .art-benefits span:nth-child(n+3) { border-top: 1px solid #686864; }
  .art-pricing { grid-template-columns: 1fr; }
  .mission-photo { min-height: 550px; }
  .mission-stamp { right: -5px; }
  .footer-main { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 620px) {
  .shell { width: min(100% - 28px, 1220px); }
  .section { padding: 74px 0; }
  .brand-copy small { display: none; }
  h1 { font-size: clamp(3rem, 13.5vw, 4.4rem); }
  h2 { font-size: clamp(2.8rem, 13vw, 4rem); }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 17px; }
  .hero-values { display: grid; grid-template-columns: 1fr; }
  .hero-visual { min-height: 540px; }
  .hero-photo { border-width: 7px; }
  .hero-full-logo { top: 14px; right: 10px; width: 78px; border-radius: 12px; }
  .hero-note { left: 12px; bottom: 22px; width: calc(100% - 35px); box-shadow: 7px 7px 0 var(--yellow); }
  .photo-caption { display: none; }
  .stats article { padding: 32px 25px; }
  .service-card { min-height: auto; padding: 32px 25px; }
  .service-number { margin-bottom: 38px; }
  .service-card ul { margin-top: 30px; }
  .media-benefits { grid-template-columns: 1fr; margin-bottom: 62px; }
  .media-benefits span { border-right: 0; border-top: 1px solid var(--charcoal); }
  .media-benefits span:first-child { border-top: 0; }
  .media-product-card, .media-support-card { padding: 30px 25px; }
  .media-product-price { align-items: flex-start; flex-direction: column; gap: 5px; }
  .media-product-price span { text-align: left; }
  .light-glue-result { grid-template-columns: 1fr; }
  .light-glue-result > div { min-height: auto; }
  .media-group-heading-programs { margin-top: 76px; }
  .media-choice { padding: 34px 25px; }
  .art-products { grid-template-columns: 1fr; }
  .art-card img { height: 230px; min-height: 230px; }
  .art-card-copy { padding: 26px; }
  .art-benefits { grid-template-columns: 1fr; }
  .art-benefits span { border-right: 0; border-top: 1px solid #686864; }
  .art-benefits span:first-child { border-top: 0; }
  .art-pricing { padding: 30px 25px; }
  .workflow { padding: 30px 24px; }
  .mission-photo { min-height: 440px; }
  .mission-photo > img { right: 18px; width: calc(100% - 18px); }
  .mission-stamp { width: 195px; padding: 19px; }
  .mission-full-logo { width: 72px; }
  .final-cta { padding: 76px 0; }
  .final-actions { align-items: flex-start; flex-direction: column; }
  .footer-links { flex-wrap: wrap; }
  .footer-bottom { flex-direction: column; gap: 6px; }
}

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