:root {
  --red: #f20d0d;
  --ink: #101010;
  --paper: #f3f0e9;
  --white: #fff;
  --acid: #dfff00;
  --blue: #4426ff;
  --line: rgba(16, 16, 16, .18);
  --pad: clamp(1.25rem, 4vw, 4.5rem);
  --display: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --sans: Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--sans); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
::selection { color: var(--white); background: var(--red); }

.sr-only, .hidden { position: absolute !important; 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: 1rem; top: -5rem; z-index: 1000; background: var(--ink); color: #fff; padding: .8rem 1rem; }
.skip-link:focus { top: 1rem; }
.section-pad { padding: clamp(5rem, 9vw, 9rem) var(--pad); }
.section-kicker { margin: 0 0 2.5rem; font-size: .72rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.section-kicker.light { color: rgba(255,255,255,.6); }

.site-header { height: 92px; padding: 12px var(--pad); display: flex; align-items: center; justify-content: space-between; gap: 2rem; background: rgba(243,240,233,.92); border-bottom: 1px solid var(--line); position: fixed; inset: 0 0 auto; z-index: 100; backdrop-filter: blur(14px); transition: transform .35s ease, background .25s ease; }
.site-header.is-hidden { transform: translateY(-102%); }
.brand { width: 128px; flex: 0 0 auto; }
.brand img { width: 100%; height: 62px; object-fit: contain; object-position: left center; }
.site-nav { display: flex; align-items: center; gap: clamp(1rem, 2.3vw, 2.4rem); font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 800; }
.site-nav > a:not(.nav-contact), .shop-trigger { position: relative; }
.site-nav > a:not(.nav-contact)::after, .shop-trigger::after { content: ""; position: absolute; height: 2px; background: var(--red); left: 0; right: 100%; bottom: -.45rem; transition: right .25s ease; }
.site-nav > a:hover::after, .site-nav > a:focus-visible::after, .shop-trigger:hover::after, .shop-trigger:focus-visible::after { right: 0; }
.nav-contact { padding: .9rem 1.15rem; color: #fff; background: var(--ink); transition: background .2s ease, transform .2s ease; }
.nav-contact:hover { background: var(--red); transform: translateY(-2px); }
.shop-menu { position: relative; }
.shop-trigger { border: 0; padding: .5rem 0; background: none; font-size: inherit; text-transform: inherit; letter-spacing: inherit; font-weight: inherit; cursor: pointer; }
.shop-dropdown { position: absolute; top: calc(100% + 1rem); right: -1rem; min-width: 280px; padding: .4rem; background: var(--ink); color: #fff; opacity: 0; visibility: hidden; transform: translateY(-7px); transition: all .2s ease; }
.shop-dropdown::before { content: ""; position: absolute; inset: -1rem 0 auto; height: 1rem; }
.shop-dropdown a { display: flex; justify-content: space-between; gap: 1rem; padding: 1rem; border-bottom: 1px solid rgba(255,255,255,.15); transition: color .2s ease, background .2s ease; }
.shop-dropdown a:last-child { border-bottom: 0; }
.shop-dropdown a:hover, .shop-dropdown a:focus-visible { background: var(--red); color: #fff; }
.shop-menu:hover .shop-dropdown, .shop-menu:focus-within .shop-dropdown, .shop-menu.is-open .shop-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.menu-toggle { display: none; }

.hero { min-height: 100svh; padding-top: 92px; position: relative; display: grid; grid-template-columns: 1.05fr .95fr; overflow: hidden; background: var(--paper); }
.hero-copy { padding: clamp(3rem, 7vw, 8rem) var(--pad) 8rem; display: flex; flex-direction: column; justify-content: center; position: relative; z-index: 2; }
.eyebrow { margin: 0 0 2rem; font-size: clamp(.68rem, .9vw, .82rem); text-transform: uppercase; letter-spacing: .13em; font-weight: 800; }
.hero h1 { margin: 0; font-family: var(--display); font-size: clamp(6rem, 13.5vw, 13rem); line-height: .72; letter-spacing: -.055em; text-transform: uppercase; font-weight: 900; }
.hero h1 em { color: var(--red); font-style: normal; }
.hero-intro { max-width: 560px; margin: clamp(2rem, 4vw, 4rem) 0 0; font-size: clamp(1.15rem, 1.7vw, 1.55rem); line-height: 1.35; font-weight: 600; }
.hero-actions { display: flex; align-items: center; gap: 2rem; margin-top: 2rem; }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: space-between; gap: 2.5rem; padding: 1rem 1.2rem; border: 1px solid transparent; font-size: .76rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; transition: color .2s ease, background .2s ease, transform .2s ease; }
.button:hover { transform: translateY(-3px); }
.button-dark { background: var(--ink); color: #fff; }
.button-dark:hover { background: var(--red); }
.button-red { background: var(--red); color: #fff; }
.button-red:hover { background: var(--ink); }
.button-white { background: #fff; color: var(--ink); width: 100%; }
.button-white:hover { background: var(--acid); }
.text-link { font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 800; border-bottom: 1px solid var(--ink); padding: .55rem 0; }

.hero-art { background: var(--red); min-height: 580px; position: relative; display: grid; place-items: center; isolation: isolate; overflow: hidden; }
.hero-art::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px); background-size: 48px 48px; z-index: -3; }
.hero-art::after { content: ""; position: absolute; width: 75%; aspect-ratio: 1; border-radius: 50%; background: var(--acid); z-index: -2; animation: pulse 7s ease-in-out infinite; }
.hero-art img { width: min(68%, 520px); filter: drop-shadow(24px 28px 0 rgba(0,0,0,.16)); transform: rotate(-4deg); animation: float 5.5s ease-in-out infinite; }
.orbit { position: absolute; border: 2px solid var(--ink); border-radius: 50%; z-index: -1; }
.orbit-one { width: 90%; height: 42%; transform: rotate(28deg); }
.orbit-two { width: 58%; height: 94%; transform: rotate(28deg); }
.art-stamp { position: absolute; right: 5%; bottom: 11%; width: 108px; height: 108px; border: 2px solid var(--ink); border-radius: 50%; display: grid; place-items: center; text-align: center; font-size: .72rem; line-height: 1.35; font-weight: 900; text-transform: uppercase; transform: rotate(8deg); background: var(--paper); }
.hero-ticker { position: absolute; inset: auto 0 0; height: 54px; overflow: hidden; background: var(--ink); color: #fff; display: flex; align-items: center; z-index: 3; }
.hero-ticker div { width: max-content; display: flex; gap: 1.6rem; align-items: center; animation: marquee 24s linear infinite; white-space: nowrap; font-size: .76rem; font-weight: 800; letter-spacing: .1em; }
.hero-ticker i { color: var(--red); font-style: normal; }

.amod-focus { background: var(--ink); color: #fff; border-top: 1px solid rgba(255,255,255,.25); }
.amod-focus-heading { display: grid; grid-template-columns: 1.15fr .65fr; gap: clamp(3rem, 8vw, 9rem); align-items: end; }
.amod-focus h2 { max-width: 1050px; margin: 0; font-family: var(--display); font-size: clamp(4.2rem, 8.5vw, 9rem); line-height: .82; letter-spacing: -.04em; text-transform: uppercase; color: var(--acid); }
.amod-focus-intro { display: grid; gap: 2rem; }
.amod-focus-intro p { margin: 0; color: rgba(255,255,255,.75); font-size: clamp(1.05rem, 1.6vw, 1.3rem); line-height: 1.55; }
.amod-service-grid { margin-top: clamp(3.5rem, 7vw, 7rem); display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.3); border-left: 1px solid rgba(255,255,255,.3); }
.amod-service-grid article { min-height: 300px; padding: clamp(1.5rem, 3vw, 3rem); display: flex; flex-direction: column; border-right: 1px solid rgba(255,255,255,.3); border-bottom: 1px solid rgba(255,255,255,.3); }
.amod-service-grid span { color: var(--red); font-size: .7rem; font-weight: 800; letter-spacing: .1em; }
.amod-service-grid h3 { margin: auto 0 1rem; font-family: var(--display); font-size: clamp(2.5rem, 4.3vw, 4.8rem); line-height: .85; letter-spacing: -.025em; text-transform: uppercase; }
.amod-service-grid p { margin: 0; color: rgba(255,255,255,.62); line-height: 1.5; }

.intro-section { background: var(--paper); }
.intro-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(3rem, 8vw, 10rem); align-items: start; }
.intro-grid h2, .section-heading-row h2, .brands-heading h2, .community-copy h2, .contact-copy h2 { margin: 0; font-family: var(--display); font-size: clamp(4rem, 8.5vw, 9rem); line-height: .85; letter-spacing: -.035em; text-transform: uppercase; font-weight: 900; }
.intro-copy { max-width: 650px; }
.intro-copy p { margin: 0 0 1.4rem; font-size: 1rem; line-height: 1.65; }
.intro-copy .lead { font-size: clamp(1.55rem, 2.6vw, 2.45rem); line-height: 1.18; font-weight: 700; letter-spacing: -.025em; }
.fact-row { margin-top: clamp(4rem, 8vw, 8rem); border-top: 1px solid var(--ink); display: grid; grid-template-columns: repeat(3, 1fr); }
.fact-row > div { padding: 1.8rem 2rem 0 0; display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: end; border-right: 1px solid var(--line); }
.fact-row > div:not(:first-child) { padding-left: 2rem; }
.fact-row > div:last-child { border-right: 0; }
.fact-row strong { font-family: var(--display); font-size: clamp(3rem, 5vw, 5.5rem); line-height: .75; color: var(--red); }
.fact-row span { font-size: .75rem; line-height: 1.4; max-width: 155px; text-transform: uppercase; letter-spacing: .06em; font-weight: 700; }

.industry-section { background: var(--white); border-top: 1px solid var(--ink); }
.industry-heading { display: grid; grid-template-columns: 1fr minmax(320px, .48fr); gap: clamp(3rem, 8vw, 9rem); align-items: end; }
.industry-heading h2 { max-width: 1050px; margin: 0; font-family: var(--display); font-size: clamp(4rem, 7.8vw, 8.5rem); line-height: .83; letter-spacing: -.04em; text-transform: uppercase; }
.industry-intro { max-width: 560px; }
.industry-intro p { margin: 0 0 1.25rem; font-size: 1rem; line-height: 1.62; }
.industry-intro .lead { font-size: clamp(1.35rem, 2.1vw, 2rem); line-height: 1.22; font-weight: 700; letter-spacing: -.02em; }
.industry-showcase { margin-top: clamp(4rem, 8vw, 8rem); display: flex; flex-direction: column; }
.industry-showcase .design-row { order: 1; margin-top: 0; }
.industry-showcase .production-row { order: 2; margin-top: 1rem; }
.industry-row { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: stretch; }
.industry-row + .industry-row { margin-top: 1rem; }
.industry-media { min-width: 0; min-height: 690px; padding: .8rem; display: grid; grid-template-columns: 1.2fr .8fr; gap: .8rem; background: var(--ink); overflow: hidden; }
.industry-photo { min-width: 0; min-height: 0; margin: 0; position: relative; overflow: hidden; background: #ddd; }
.industry-photo-main { height: 100%; }
.industry-photo-secondary { height: 72%; align-self: end; }
.industry-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.industry-photo:hover img { transform: scale(1.035); }
.industry-photo figcaption { position: absolute; inset: auto .75rem .75rem; padding: .6rem .7rem; display: flex; justify-content: space-between; gap: 1rem; background: rgba(16,16,16,.9); color: #fff; font-size: .62rem; font-weight: 800; letter-spacing: .08em; line-height: 1.3; text-transform: uppercase; }
.industry-photo figcaption span { color: var(--acid); }
.industry-panel { min-width: 0; min-height: 690px; padding: clamp(1.8rem, 4vw, 4rem); display: flex; flex-direction: column; }
.production-panel { background: var(--red); color: #fff; }
.design-panel { background: var(--acid); color: var(--ink); }
.panel-index { margin: 0 0 2.5rem; font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.industry-panel h3 { margin: 0; font-family: var(--display); font-size: clamp(4rem, 6.4vw, 7.5rem); line-height: .75; letter-spacing: -.035em; text-transform: uppercase; }
.industry-points { margin-top: auto; padding-top: 3rem; }
.industry-points > div { display: grid; grid-template-columns: 34px minmax(150px, .7fr) 1fr; gap: 1rem; align-items: start; padding: 1.3rem 0; border-top: 1px solid currentColor; }
.industry-points > div:last-child { border-bottom: 1px solid currentColor; }
.industry-points span { padding-top: .25rem; font-size: .62rem; font-weight: 800; letter-spacing: .1em; }
.industry-points h4 { margin: 0; font-size: clamp(1rem, 1.35vw, 1.3rem); line-height: 1.1; }
.industry-points p { margin: 0; font-size: .82rem; line-height: 1.48; }

.statement { min-height: 70vh; padding: var(--pad); display: flex; align-items: center; position: relative; background: var(--acid); overflow: hidden; }
.statement p { margin: 0; position: relative; z-index: 2; font-family: var(--display); font-size: clamp(5.5rem, 15vw, 16rem); line-height: .78; letter-spacing: -.045em; text-transform: uppercase; }
.statement p span { color: var(--red); }
.statement-mark { position: absolute; right: -3vw; bottom: -8vw; color: rgba(16,16,16,.08); font-family: var(--display); font-size: 45vw; line-height: .7; letter-spacing: -.12em; }

.section-heading-row { display: grid; grid-template-columns: 1fr minmax(280px, .45fr); gap: 4rem; align-items: end; }
.section-heading-row > p { margin: 0 0 .6rem; max-width: 410px; font-size: 1.15rem; line-height: 1.55; }
.capability-list { margin-top: 5rem; border-top: 1px solid var(--ink); }
.capability-list article { min-height: 150px; display: grid; grid-template-columns: 70px minmax(220px,.8fr) 1.2fr 40px; gap: 1.5rem; align-items: center; border-bottom: 1px solid var(--ink); transition: color .25s ease, background .25s ease, padding .25s ease; }
.capability-list article:hover { background: var(--red); color: #fff; padding-inline: 1.25rem; }
.cap-number { font-size: .72rem; letter-spacing: .1em; }
.capability-list h3 { margin: 0; font-family: var(--display); font-size: clamp(2.2rem, 4vw, 4.5rem); line-height: .9; text-transform: uppercase; letter-spacing: -.02em; }
.capability-list p { margin: 0; max-width: 520px; line-height: 1.55; }
.cap-arrow { font-size: 1.5rem; justify-self: end; }

.process { padding: clamp(5rem, 9vw, 9rem) var(--pad); background: var(--ink); color: #fff; display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(4rem, 10vw, 10rem); }
.process-title-wrap { position: sticky; top: 145px; align-self: start; }
.process h2 { margin: 0; font-family: var(--display); font-size: clamp(4rem, 7vw, 8rem); line-height: .86; letter-spacing: -.035em; text-transform: uppercase; color: var(--red); }
.process-steps { margin: 0; padding: 0; list-style: none; counter-reset: item; }
.process-steps li { min-height: 180px; padding: 2.5rem 0; display: grid; grid-template-columns: 45px 1fr; gap: 1.2rem; border-top: 1px solid rgba(255,255,255,.25); }
.process-steps li:last-child { border-bottom: 1px solid rgba(255,255,255,.25); }
.process-steps span { color: var(--red); font-size: .72rem; letter-spacing: .1em; }
.process-steps strong { font-family: var(--display); font-size: clamp(2.5rem, 4.5vw, 5rem); line-height: .8; text-transform: uppercase; }
.process-steps p { grid-column: 2; max-width: 480px; margin: .4rem 0 0; color: rgba(255,255,255,.65); line-height: 1.55; }

.brands-heading { display: grid; grid-template-columns: 1fr .35fr; gap: 3rem; align-items: end; }
.brands-heading > p { font-size: 1.1rem; line-height: 1.5; }
.brand-cards { display: grid; grid-template-columns: 1fr 1fr; margin-top: 4rem; }
.brand-card { aspect-ratio: 1.05; min-height: 520px; padding: clamp(1.5rem, 3vw, 3rem); display: flex; flex-direction: column; justify-content: space-between; position: relative; overflow: hidden; transition: transform .25s ease; isolation: isolate; }
.brand-card:hover { transform: translateY(-8px); }
.brand-card::before, .brand-card::after { content: ""; position: absolute; z-index: -1; transition: transform .5s ease; }
.brand-card:hover::before { transform: rotate(12deg) scale(1.1); }
.urban { background: var(--red); color: #fff; }
.urban::before { width: 58%; aspect-ratio: 1; border-radius: 50%; background: var(--acid); right: -8%; top: 14%; }
.urban::after { width: 72%; height: 18%; border-block: 2px solid var(--ink); right: -3%; top: 36%; transform: rotate(-18deg); box-shadow: 0 14px 0 var(--acid), 0 28px 0 var(--ink), 0 42px 0 var(--acid), 0 56px 0 var(--ink); }
.frustrated { background: var(--blue); color: #fff; }
.frustrated::before { width: 45%; height: 75%; background: var(--red); right: 7%; top: 12%; transform: skew(-12deg); }
.frustrated::after { width: 45%; height: 75%; border: 3px solid var(--acid); right: 16%; top: 4%; transform: skew(-12deg); }
.brand-index { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 800; }
.brand-card-copy { position: relative; z-index: 2; }
.brand-card h3 { margin: 0 0 1rem; font-family: var(--display); font-size: clamp(4rem, 7vw, 8rem); line-height: .72; letter-spacing: -.04em; text-transform: uppercase; }
.brand-card p { max-width: 370px; margin: 0; line-height: 1.5; font-weight: 600; }
.brand-card-link { display: flex; justify-content: space-between; align-items: center; padding-top: 1rem; border-top: 1px solid currentColor; font-size: .76rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 800; position: relative; z-index: 2; }
.brand-card-link i { font-style: normal; font-size: 1.5rem; }

.presentation-hub { background: var(--ink); color: #fff; }
.presentation-hub-heading { display: grid; grid-template-columns: 1fr minmax(280px, .4fr); gap: 4rem; align-items: end; }
.presentation-hub-heading h2 { margin: 0; font-family: var(--display); font-size: clamp(4rem, 8.5vw, 9rem); line-height: .84; letter-spacing: -.04em; text-transform: uppercase; }
.presentation-hub-heading > p { margin: 0 0 .5rem; color: rgba(255,255,255,.68); font-size: 1.15rem; line-height: 1.55; }
.presentation-cards { margin-top: 4rem; display: grid; grid-template-columns: 1fr 1fr; }
.presentation-card { min-width: 0; min-height: 520px; padding: clamp(1.5rem, 3vw, 3rem); display: flex; flex-direction: column; justify-content: space-between; position: relative; overflow: hidden; isolation: isolate; transition: transform .25s ease; }
.presentation-card:hover { transform: translateY(-8px); }
.presentation-card > span { font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.presentation-card strong { display: block; max-width: 100%; font-family: var(--display); font-size: clamp(3.6rem, 6.2vw, 7rem); line-height: .74; letter-spacing: -.04em; text-transform: uppercase; }
.presentation-card p { margin: 1rem 0 0; font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.presentation-card i { align-self: flex-end; font-size: 2rem; font-style: normal; }
.groundbreakers-card { background: var(--red); }
.groundbreakers-card::before { content: "US"; position: absolute; right: -3%; bottom: -12%; z-index: -1; color: rgba(255,255,255,.12); font-family: var(--display); font-size: 31vw; line-height: .75; letter-spacing: -.12em; }
.amazon-card { background: var(--acid); color: var(--ink); }
.amazon-card::before { content: "AM"; position: absolute; right: -5%; bottom: -12%; z-index: -1; color: rgba(16,16,16,.09); font-family: var(--display); font-size: 29vw; line-height: .75; letter-spacing: -.12em; }

.brand-partners { background: var(--white); border-top: 1px solid var(--ink); }
.partners-heading { display: grid; grid-template-columns: 1fr minmax(280px, .42fr); gap: 4rem; align-items: end; }
.partners-heading h2 { margin: 0; font-family: var(--display); font-size: clamp(4rem, 8.5vw, 9rem); line-height: .85; letter-spacing: -.035em; text-transform: uppercase; font-weight: 900; }
.partners-intro { display: grid; gap: 2rem; padding-bottom: .5rem; }
.partners-intro p { margin: 0; font-size: 1.15rem; line-height: 1.55; }
.partners-intro span { display: flex; align-items: end; gap: .8rem; font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.partners-intro strong { color: var(--red); font-family: var(--display); font-size: 4rem; line-height: .7; }
.license-carousel { width: calc(100% + 2 * var(--pad)); margin: clamp(3.5rem, 7vw, 7rem) calc(-1 * var(--pad)) 0; overflow: hidden; }
.license-carousel-track { width: max-content; margin: 0; padding-block: 1rem; display: grid; grid-template-rows: repeat(2, 170px); grid-auto-flow: column; grid-auto-columns: 260px; border: 0; background: var(--paper); will-change: transform; }
.license-carousel-track.is-running { animation: license-carousel 24s linear infinite; }
.license-carousel-track.is-paused, .license-carousel:hover .license-carousel-track, .license-carousel:focus-within .license-carousel-track { animation-play-state: paused; }
.license-carousel-track .logo-tile { width: 236px; height: 150px; min-height: 150px; margin: auto 12px; padding: 1.5rem; display: grid; place-items: center; border: 0; background: var(--white); box-shadow: none; scroll-snap-align: start; }
.license-carousel-track .logo-tile:hover { background: var(--white); transform: none; box-shadow: none; }
.license-carousel-track .logo-visual { width: 100%; min-height: 0; height: 100%; padding: 0; }
.license-carousel-track .logo-visual img { height: 82px; }
.license-carousel-track .logo-meta { display: none; }
.license-carousel-controls { padding: 1.25rem var(--pad) 0; display: flex; justify-content: space-between; gap: 1rem; align-items: center; }
.license-carousel-controls > button { min-height: 52px; padding: .9rem 1rem; border: 1px solid var(--ink); background: var(--white); color: var(--ink); font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; }
.license-carousel-controls > button:hover { background: var(--red); color: #fff; }
.license-group { margin-top: clamp(3.5rem, 7vw, 7rem); scroll-margin-top: 110px; }
.license-group + .license-group { padding-top: clamp(2.5rem, 5vw, 5rem); border-top: 4px solid var(--ink); }
.license-group-heading { display: flex; justify-content: space-between; gap: 2rem; align-items: end; }
.license-group-heading > div { display: flex; gap: 1rem; align-items: baseline; }
.license-group-heading span { color: var(--red); font-size: .7rem; font-weight: 800; letter-spacing: .1em; }
.license-group-heading h3 { margin: 0; font-family: var(--display); font-size: clamp(2.8rem, 5vw, 5.5rem); line-height: .85; letter-spacing: -.025em; text-transform: uppercase; }
.license-group-heading p { max-width: 410px; margin: 0; color: rgba(16,16,16,.62); font-size: .72rem; font-weight: 800; letter-spacing: .06em; line-height: 1.45; text-align: right; text-transform: uppercase; }
.previous-licences { background: var(--paper); margin-inline: calc(-1 * var(--pad)); padding-inline: var(--pad); padding-bottom: clamp(3rem, 6vw, 6rem); }
.previous-licences .license-group-heading { padding-top: clamp(3rem, 6vw, 6rem); }
.logo-grid { margin: 2.2rem 0 0; padding: 0; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); border-top: 1px solid var(--ink); border-left: 1px solid var(--ink); }
.logo-grid.is-collapsed .logo-tile:nth-child(n + 16) { display: none; }
.logo-tile { min-height: 158px; padding: 1.2rem; display: grid; grid-template-rows: 1fr auto; gap: .8rem; border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); background: var(--white); list-style: none; position: relative; overflow: hidden; transition: background .22s ease, color .22s ease, transform .22s ease; }
.logo-tile:hover { background: var(--paper); transform: translateY(-3px); z-index: 2; box-shadow: 0 5px 0 var(--red); }
.logo-visual { min-height: 88px; display: grid; place-items: center; padding: .5rem; }
.logo-visual img { width: 100%; height: 72px; object-fit: contain; }
.logo-tile.is-previous { background: var(--paper); }
.logo-tile.is-previous .logo-visual { opacity: .72; }
.brand-wordmark { max-width: 100%; font-family: "Arial Black", Arial, sans-serif; font-size: clamp(1rem, 1.55vw, 1.55rem); line-height: .92; letter-spacing: -.055em; text-align: center; text-transform: uppercase; overflow-wrap: anywhere; }
.brand-wordmark.long { font-size: clamp(.78rem, 1.12vw, 1.08rem); letter-spacing: -.025em; }
.brand-wordmark.xlong { font-size: clamp(.67rem, .92vw, .9rem); letter-spacing: 0; }
.logo-meta { display: flex; justify-content: space-between; align-items: end; gap: .5rem; color: rgba(16,16,16,.55); font-size: .58rem; font-weight: 800; line-height: 1.25; letter-spacing: .07em; text-transform: uppercase; }
.logo-meta span:last-child { max-width: 78%; text-align: right; }
.logo-toggle { width: 100%; margin-top: 1.25rem; padding: 1.1rem 1.25rem; display: flex; align-items: center; justify-content: space-between; border: 1px solid var(--ink); background: var(--white); color: var(--ink); font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; transition: background .2s ease, color .2s ease; }
.logo-toggle:hover, .logo-toggle:focus-visible { background: var(--red); color: #fff; }
.logo-toggle i { font-size: 1rem; font-style: normal; }
.own-brands { margin-top: clamp(5rem, 9vw, 9rem); padding-top: 2rem; border-top: 4px solid var(--ink); }
.own-brands-heading { display: flex; justify-content: space-between; gap: 3rem; align-items: start; }
.own-brands-heading .section-kicker { margin-bottom: 0; }
.own-brands-heading > p:last-child { max-width: 320px; margin: 0; line-height: 1.45; }
.own-brand-grid { margin-top: 3rem; display: grid; grid-template-columns: repeat(4, 1fr); }
.own-brand-grid article { min-width: 0; min-height: 300px; padding: clamp(1.25rem, 2.25vw, 2.5rem); display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; background: var(--ink); color: #fff; border-right: 1px solid rgba(255,255,255,.3); border-bottom: 1px solid rgba(255,255,255,.3); transition: transform .2s ease; }
.own-brand-grid article:nth-child(2) { background: var(--red); }
.own-brand-grid article:nth-child(3) { background: var(--acid); color: var(--ink); }
.own-brand-grid article:nth-child(4) { background: var(--blue); }
.own-brand-grid article:nth-child(5) { background: var(--paper); color: var(--ink); }
.own-brand-grid article:nth-child(6) { background: linear-gradient(135deg, var(--red), var(--blue)); }
.own-brand-grid article:nth-child(7) { background: #ff6b00; }
.own-brand-grid article:nth-child(8) { background: #126b3a; }
.own-brand-grid article:nth-child(4n) { border-right: 0; }
.own-brand-grid article:hover { transform: translateY(-7px); }
.own-brand-grid span { font-size: .7rem; letter-spacing: .1em; }
.own-brand-grid strong { max-width: 100%; font-family: var(--display); font-size: clamp(2.35rem, 3.2vw, 4.8rem); line-height: .82; letter-spacing: -.03em; text-transform: uppercase; overflow-wrap: normal; }
.trademark-note { margin: 1.5rem 0 0; color: rgba(16,16,16,.55); font-size: .62rem; line-height: 1.5; }

.licenses-hero { padding-top: calc(clamp(5rem, 9vw, 9rem) + 92px); background: var(--acid); }
.licenses-hero h1 { margin: 0 0 3rem; font-family: var(--display); font-size: clamp(7rem, 20vw, 20rem); line-height: .7; letter-spacing: -.05em; text-transform: uppercase; }
.license-directory { background: var(--white); }
.license-directory-heading { display: flex; gap: 1.2rem; align-items: baseline; }
.license-directory-heading span { color: var(--red); font-size: .72rem; font-weight: 800; letter-spacing: .1em; }
.license-directory-heading h2 { margin: 0; font-family: var(--display); font-size: clamp(4rem, 9vw, 9rem); line-height: .82; letter-spacing: -.04em; text-transform: uppercase; }
.full-license-grid { margin-top: clamp(3rem, 6vw, 6rem); }
.previous-directory { background: var(--paper); border-top: 4px solid var(--ink); }

.community { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(4rem, 8vw, 9rem); align-items: center; background: var(--white); }
.community-graphic { aspect-ratio: 1; background: var(--ink); border-radius: 50%; color: #fff; display: grid; place-items: center; align-content: center; font-family: var(--display); font-size: clamp(3rem, 7vw, 8rem); line-height: .76; text-align: center; text-transform: uppercase; transform: rotate(-5deg); box-shadow: 24px 24px 0 var(--red); }
.community-graphic span:nth-child(2) { color: var(--red); }
.community-graphic span:nth-child(3) { margin-top: 1rem; font-family: var(--sans); font-size: .72rem; letter-spacing: .2em; }
.community-copy p:not(.section-kicker) { max-width: 550px; font-size: 1.18rem; line-height: 1.6; }
.community-copy .button { margin-top: 1.5rem; }

.contact { background: var(--red); color: #fff; display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(4rem, 10vw, 11rem); }
.contact-copy { position: sticky; top: 140px; align-self: start; }
.contact-copy p:not(.section-kicker) { max-width: 430px; font-size: 1.1rem; line-height: 1.55; }
.contact-details { margin-top: 2rem; display: grid; gap: .65rem; font-style: normal; font-size: .82rem; line-height: 1.5; }
.contact-details strong { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }
.contact-details span { color: rgba(255,255,255,.72); }
.contact-details a { width: fit-content; border-bottom: 1px solid rgba(255,255,255,.6); font-weight: 700; }
.contact-form { display: grid; gap: 1.5rem; }
.contact-form label { display: grid; gap: .6rem; }
.contact-form label > span { font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 800; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 0; border-bottom: 1px solid rgba(255,255,255,.65); border-radius: 0; padding: 1rem 0; background: transparent; color: #fff; outline: 0; transition: border-color .2s ease, background .2s ease; }
.contact-form textarea { resize: vertical; min-height: 130px; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255,255,255,.55); }
.contact-form select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, #fff 50%),linear-gradient(135deg, #fff 50%, transparent 50%); background-position: calc(100% - 15px) 50%, calc(100% - 10px) 50%; background-size: 5px 5px; background-repeat: no-repeat; }
.contact-form option { color: var(--ink); }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--acid); }

.site-footer { background: var(--ink); color: #fff; padding: clamp(4rem, 7vw, 7rem) var(--pad) 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; }
.footer-brand img { width: min(260px, 80%); filter: brightness(0) invert(1); }
.footer-brand p { font-family: var(--display); font-size: clamp(2.5rem, 4vw, 4.5rem); line-height: .85; text-transform: uppercase; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.footer-links > div { display: flex; flex-direction: column; align-items: flex-start; gap: .9rem; }
.footer-links span { margin-bottom: .6rem; color: rgba(255,255,255,.45); font-size: .7rem; text-transform: uppercase; letter-spacing: .12em; }
.footer-links a { font-size: .88rem; border-bottom: 1px solid transparent; }
.footer-links a:hover { border-color: var(--red); }
.footer-bottom { grid-column: 1 / -1; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.2); display: flex; justify-content: space-between; gap: 2rem; color: rgba(255,255,255,.5); font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; }

@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes license-carousel { to { transform: translateX(-50%); } }
@keyframes float { 0%,100% { transform: translateY(0) rotate(-4deg); } 50% { transform: translateY(-18px) rotate(-1deg); } }
@keyframes pulse { 0%,100% { transform: scale(.96); } 50% { transform: scale(1.04); } }

@media (max-width: 980px) {
  .site-header { height: 78px; background: var(--paper); backdrop-filter: none; }
  .brand { width: 108px; }
  .brand img { height: 54px; }
  .menu-toggle { width: 46px; height: 46px; border: 1px solid var(--ink); background: transparent; display: grid; place-content: center; gap: 7px; position: relative; z-index: 2; cursor: pointer; }
  .menu-toggle span:not(.sr-only) { width: 22px; height: 2px; background: var(--ink); transition: transform .25s ease; }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(4.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-4.5px) rotate(-45deg); }
  .site-nav { position: fixed; inset: 78px 0 0; padding: 1.25rem var(--pad) 2rem; background: #f3f0e9; flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0; overflow-y: auto; visibility: hidden; opacity: 0; box-shadow: 0 18px 45px rgba(16,16,16,.2); transition: opacity .25s ease, visibility .25s ease; }
  .site-nav.is-open { visibility: visible; opacity: 1; }
  .site-nav > a, .shop-trigger { width: 100%; min-height: 52px; padding: .9rem .25rem; border-bottom: 1px solid rgba(16,16,16,.3); font-family: var(--sans); font-size: 1rem; font-weight: 800; letter-spacing: .07em; text-align: left; line-height: 1.2; }
  .site-nav > a::after, .shop-trigger::after { display: none; }
  .nav-contact { margin-top: 1rem; padding: 1rem !important; color: #fff; text-align: center !important; }
  .shop-dropdown { position: static; min-width: 0; margin: .5rem 0; padding: .4rem; background: #fff; color: var(--ink); border: 1px solid rgba(16,16,16,.28); box-shadow: 0 8px 20px rgba(16,16,16,.1); opacity: 1; visibility: visible; transform: none; display: none; }
  .shop-menu.is-open .shop-dropdown { display: block; }
  .shop-dropdown a { min-height: 50px; padding: .9rem; align-items: center; font-family: var(--sans); font-size: .88rem; font-weight: 800; }
  .hero { padding-top: 78px; grid-template-columns: 1fr; }
  .hero-copy { min-height: 66svh; }
  .hero-art { min-height: 66svh; }
  .intro-grid, .amod-focus-heading, .industry-heading, .section-heading-row, .process, .brands-heading, .presentation-hub-heading, .partners-heading, .community, .contact { grid-template-columns: 1fr; }
  .intro-grid, .amod-focus-heading, .industry-heading, .section-heading-row, .brands-heading, .presentation-hub-heading, .partners-heading { gap: 2.5rem; }
  .industry-row { grid-template-columns: 1fr; }
  .industry-media, .industry-panel { min-height: 620px; }
  .design-row .industry-media { order: -1; }
  .process-title-wrap, .contact-copy { position: static; }
  .brand-card { min-height: 460px; }
  .presentation-card { min-height: 440px; }
  .community-graphic { width: min(620px, 90%); margin-inline: auto; }
  .own-brand-grid { grid-template-columns: repeat(2, 1fr); }
  .own-brand-grid article:nth-child(4n) { border-right: 1px solid rgba(255,255,255,.3); }
  .own-brand-grid article:nth-child(2n) { border-right: 0; }
  .logo-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .logo-grid.is-collapsed .logo-tile:nth-child(n + 13) { display: none; }
}

@media (max-width: 700px) {
  .section-pad { padding-block: 4.8rem; }
  .hero-copy { padding-block: 4rem 7rem; }
  .hero h1 { font-size: clamp(5.2rem, 29vw, 8rem); }
  .hero-intro { font-size: 1.12rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 1rem; }
  .hero-art { min-height: 520px; }
  .hero-art img { width: 76%; }
  .amod-focus h2 { font-size: clamp(3.8rem, 18vw, 6rem); }
  .amod-service-grid { grid-template-columns: 1fr; }
  .amod-service-grid article { min-height: 250px; }
  .art-stamp { width: 88px; height: 88px; font-size: .62rem; }
  .intro-grid h2, .section-heading-row h2, .brands-heading h2, .community-copy h2, .contact-copy h2 { font-size: clamp(3.9rem, 19vw, 6rem); }
  .industry-heading h2 { font-size: clamp(3.75rem, 17vw, 5.8rem); }
  .industry-showcase { margin-top: 3.5rem; }
  .industry-row + .industry-row { margin-top: 1rem; }
  .industry-media { min-height: 0; aspect-ratio: .9; padding: .55rem; gap: .55rem; }
  .industry-photo-secondary { height: 76%; }
  .industry-photo figcaption { inset: auto .45rem .45rem; padding: .5rem; font-size: .54rem; }
  .industry-panel { min-height: 0; padding: 2rem 1.25rem; }
  .industry-panel h3 { font-size: clamp(4rem, 19vw, 6rem); }
  .industry-points { padding-top: 3rem; }
  .industry-points > div { grid-template-columns: 28px 1fr; gap: .65rem; padding-block: 1.2rem; }
  .industry-points h4 { font-size: 1.15rem; }
  .industry-points p { grid-column: 2; font-size: .8rem; }
  .fact-row { grid-template-columns: 1fr; }
  .fact-row > div, .fact-row > div:not(:first-child) { padding: 1.5rem 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .statement { min-height: 55vh; }
  .statement p { font-size: clamp(4.2rem, 22vw, 7rem); }
  .capability-list article { padding-block: 1.5rem; grid-template-columns: 38px 1fr 24px; gap: .8rem; }
  .capability-list article:hover { padding-inline: .6rem; }
  .capability-list p { grid-column: 2 / -1; }
  .cap-arrow { grid-column: 3; grid-row: 1; }
  .process { padding-block: 4.8rem; gap: 3rem; }
  .process-steps li { min-height: 150px; }
  .brand-cards { grid-template-columns: 1fr; gap: 1rem; }
  .presentation-cards { grid-template-columns: 1fr; gap: 1rem; }
  .brand-card { min-height: 430px; aspect-ratio: auto; }
  .brand-card h3 { font-size: clamp(4rem, 18vw, 6rem); }
  .presentation-hub-heading h2 { font-size: clamp(3.9rem, 19vw, 6rem); }
  .presentation-card { min-height: 390px; }
  .presentation-card strong { font-size: clamp(3.25rem, 14vw, 5.3rem); }
  .groundbreakers-card::before, .amazon-card::before { font-size: 62vw; }
  .partners-heading h2 { font-size: clamp(3.9rem, 19vw, 6rem); }
  .license-group-heading { align-items: flex-start; flex-direction: column; gap: 1rem; }
  .license-group-heading p { text-align: left; }
  .logo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .logo-grid.is-collapsed .logo-tile:nth-child(n + 9) { display: none; }
  .logo-tile { min-height: 145px; padding: .9rem; }
  .logo-visual { min-height: 78px; }
  .logo-visual img { height: 62px; }
  .license-carousel-track { display: grid; grid-template-rows: repeat(2, 150px); grid-auto-columns: 220px; }
  .license-carousel-track .logo-tile { width: 196px; height: 130px; min-height: 130px; margin-inline: 12px; padding: 1.2rem; }
  .license-carousel-track .logo-visual img { height: 70px; }
  .license-carousel-controls { align-items: stretch; flex-direction: column; }
  .license-carousel-controls > button, .license-carousel-controls .button { width: 100%; }
  .licenses-hero { padding-top: calc(4.8rem + 78px); }
  .licenses-hero h1 { font-size: clamp(5.5rem, 27vw, 9rem); }
  .brand-wordmark { font-size: 1rem; }
  .brand-wordmark.long { font-size: .78rem; }
  .brand-wordmark.xlong { font-size: .66rem; }
  .own-brands-heading { flex-direction: column; gap: 1rem; }
  .own-brand-grid { grid-template-columns: 1fr; }
  .own-brand-grid article, .own-brand-grid article:nth-child(4n), .own-brand-grid article:nth-child(2n) { min-height: 260px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.3); }
  .community-graphic { width: 100%; box-shadow: 13px 13px 0 var(--red); }
  .field-row { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr; gap: 3rem; }
  .footer-bottom { flex-direction: column; }
}

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