:root {
  --ink: #080808;
  --ink-2: #101010;
  --ink-3: #181818;
  --paper: #f3f1eb;
  --muted: #a5a29a;
  --line: rgba(255, 255, 255, 0.14);
  --orange: #d96d2b;
  --orange-hot: #ff7a2e;
  --shell: min(100% - 40px, 1440px);
  --font-display: "Space Grotesk", "Arial Narrow", Arial, sans-serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body { margin: 0; overflow-x: hidden; background: var(--ink); color: var(--paper); font-family: var(--font-body); font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
::selection { background: var(--orange); color: #fff; }
:focus-visible { outline: 2px solid var(--orange-hot); outline-offset: 4px; }
.shell { width: var(--shell); margin-inline: auto; }
.section { padding-block: clamp(100px, 14vw, 220px); position: relative; }
.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; z-index: 1000; left: 20px; top: 14px; padding: 12px 18px; transform: translateY(-150%); background: var(--paper); color: var(--ink); transition: transform .2s; }
.skip-link:focus { transform: translateY(0); }
.eyebrow, .section-index { margin: 0; color: var(--muted); font-size: .72rem; font-weight: 700; letter-spacing: .18em; line-height: 1.2; text-transform: uppercase; }
.display { margin: 0; max-width: 12ch; font-family: var(--font-display); font-size: clamp(3rem, 7vw, 7.8rem); font-weight: 600; letter-spacing: -.065em; line-height: .94; text-wrap: balance; }
.display--medium { font-size: clamp(2.6rem, 5.6vw, 6.4rem); max-width: 15ch; }
.display--large { font-size: clamp(3.6rem, 8vw, 9rem); }
.lead { color: #c9c6bf; font-size: clamp(1.05rem, 1.5vw, 1.3rem); line-height: 1.55; }
.section-heading { display: grid; gap: 40px; margin-top: 50px; }
.section-heading > p { max-width: 520px; margin: 0; color: var(--muted); font-size: 1.08rem; }
.button { display: inline-flex; min-height: 58px; align-items: center; justify-content: space-between; gap: 32px; padding: 0 22px; border: 1px solid transparent; font-size: .78rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; transition: color .35s, background .35s, border-color .35s, transform .35s var(--ease); }
.button span:last-child { font-size: 1.1rem; }
.button--primary { background: var(--orange); color: #fff; }
.button--primary:hover { background: var(--orange-hot); transform: translateY(-3px); }
.button--light { background: var(--paper); color: var(--ink); }
.button--light:hover { background: #fff; transform: translateY(-3px); }
.text-link { display: inline-flex; gap: 14px; align-items: center; font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.text-link span { transition: transform .3s var(--ease); }
.text-link:hover span { transform: translateY(5px); }
[data-reveal] { opacity: 1; transform: none; }
.js [data-reveal] { opacity: 0; transform: translateY(30px); }

.page-loader { position: fixed; z-index: 999; inset: 0; display: grid; place-items: center; background: #050505; transition: opacity .7s var(--ease), visibility .7s; }
.page-loader.is-done { opacity: 0; visibility: hidden; }
.page-loader__mark { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; letter-spacing: -.06em; }
.page-loader__line { position: absolute; bottom: 0; left: 0; width: 100%; height: 2px; transform-origin: left; background: var(--orange); animation: loader 1.2s var(--ease) both; }
@keyframes loader { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.site-header { position: fixed; z-index: 100; top: 0; width: 100%; border-bottom: 1px solid transparent; transition: background .35s, border .35s, transform .35s var(--ease); }
.site-header.is-scrolled { border-color: var(--line); background: rgba(8,8,8,.78); backdrop-filter: blur(18px); }
.site-header.is-hidden { transform: translateY(-100%); }
.site-header__inner { display: flex; min-height: 76px; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 11px; white-space: nowrap; }
.brand__mark { display: grid; width: 35px; height: 35px; place-items: center; border: 1px solid rgba(255,255,255,.65); border-radius: 50%; font-family: var(--font-display); font-size: .72rem; font-weight: 700; }
.brand__name { font-size: .73rem; font-weight: 800; letter-spacing: .12em; }
.custom-logo { width: auto; max-height: 42px; }
.site-nav { margin-left: auto; }
.nav-list, .footer-menu { display: flex; gap: 30px; margin: 0; padding: 0; list-style: none; }
.nav-list a { position: relative; color: #c6c3bc; font-size: .72rem; font-weight: 650; letter-spacing: .08em; text-transform: uppercase; }
.nav-list a::after { position: absolute; bottom: -6px; left: 0; width: 100%; height: 1px; transform: scaleX(0); transform-origin: right; background: var(--orange); content: ""; transition: transform .3s var(--ease); }
.nav-list a:hover::after { transform: scaleX(1); transform-origin: left; }
.header-cta { padding: 10px 16px; border: 1px solid rgba(255,255,255,.38); font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; transition: background .25s, color .25s; }
.header-cta:hover { background: var(--paper); color: var(--ink); }
.menu-toggle { display: none; padding: 10px; border: 0; background: transparent; cursor: pointer; }
.menu-toggle span:not(.sr-only) { display: block; width: 24px; height: 1px; margin: 6px 0; background: currentColor; transition: transform .3s; }

.hero { position: relative; display: flex; min-height: 100svh; align-items: flex-end; overflow: hidden; padding: 150px 0 70px; isolation: isolate; }
.hero::after { position: absolute; z-index: -1; inset: 0; background: linear-gradient(90deg, rgba(4,4,4,.98) 0%, rgba(5,5,5,.82) 40%, rgba(5,5,5,.2) 72%), linear-gradient(0deg, rgba(5,5,5,.85), transparent 50%); content: ""; }
.hero__media { position: absolute; z-index: -2; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 63% center; filter: saturate(.82) contrast(1.07); transform: scale(1.03); }
.hero__ambient span { position: absolute; z-index: -1; border-radius: 50%; filter: blur(100px); }
.hero__ambient span:first-child { top: 25%; right: 10%; width: 28vw; height: 28vw; background: rgba(217,109,43,.16); animation: drift 9s ease-in-out infinite alternate; }
.hero__ambient span:last-child { bottom: -20%; left: 30%; width: 45vw; height: 25vw; background: rgba(117,58,25,.12); animation: drift 12s ease-in-out infinite alternate-reverse; }
@keyframes drift { to { transform: translate3d(3vw,-3vw,0) scale(1.12); } }
.hero__content { position: relative; z-index: 2; }
.hero__title { max-width: 9.5ch; margin: 26px 0 30px; font-family: var(--font-display); font-size: clamp(3.85rem, 8.7vw, 10.5rem); font-weight: 620; letter-spacing: -.075em; line-height: .79; }
.hero__title em, .final-cta__title em { color: var(--orange); font-style: normal; }
.hero__copy { max-width: 490px; margin: 0 0 34px; color: #c6c3bc; font-size: clamp(1rem, 1.4vw, 1.2rem); }
.hero__actions { display: flex; align-items: center; gap: 35px; }
.hero__edition { position: absolute; right: 3.5vw; bottom: 9vh; display: flex; align-items: end; gap: 12px; writing-mode: vertical-rl; }
.hero__edition span { font-family: var(--font-display); font-size: 3rem; font-weight: 600; line-height: 1; }
.hero__edition small { color: var(--muted); font-size: .6rem; letter-spacing: .2em; }
.hero__scroll { position: absolute; right: 50%; bottom: 25px; display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: .58rem; letter-spacing: .15em; transform: translateX(50%); }
.hero__scroll span { width: 30px; height: 1px; overflow: hidden; background: rgba(255,255,255,.28); }
.hero__scroll span::after { display: block; width: 100%; height: 100%; background: #fff; content: ""; animation: scroll-line 2s infinite; }
@keyframes scroll-line { from { transform: translateX(-100%); } to { transform: translateX(100%); } }

.manifesto { background: var(--paper); color: var(--ink); overflow: hidden; }
.manifesto .section-index { color: #77736a; }
.manifesto__grid { display: grid; grid-template-columns: 1fr 3fr; gap: 5vw; }
.manifesto__copy { display: grid; grid-template-columns: repeat(2, 1fr); gap: 50px; max-width: 900px; margin: 70px 0 0 auto; color: #4f4c46; font-size: 1.1rem; }
.manifesto__copy p { margin: 0; }
.manifesto__marquee { width: 100%; margin-top: 150px; overflow: hidden; border-block: 1px solid rgba(0,0,0,.18); }
.manifesto__marquee div { width: max-content; padding-block: 22px; font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 3rem); font-weight: 650; letter-spacing: -.03em; white-space: nowrap; animation: marquee 28s linear infinite; }
.manifesto__marquee em { color: var(--orange); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

.process { background: #0b0b0b; }
.process .section-heading { grid-template-columns: 2fr 1fr; align-items: end; }
.process__list { margin: 100px 0 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.process__list li { display: grid; grid-template-columns: 90px 1fr auto; align-items: center; gap: 30px; min-height: 150px; border-bottom: 1px solid var(--line); transition: padding .45s var(--ease), background .45s; }
.process__list li:hover { padding-inline: 22px; background: rgba(255,255,255,.025); }
.process__number { color: var(--orange); font-family: var(--font-display); font-size: .82rem; }
.process__list h3 { margin: 0 0 8px; font-family: var(--font-display); font-size: clamp(1.8rem, 3.2vw, 3.8rem); font-weight: 500; letter-spacing: -.04em; }
.process__list p { margin: 0; color: var(--muted); }
.process__arrow { font-size: 1.7rem; transition: transform .35s var(--ease); }
.process__list li:hover .process__arrow { transform: rotate(-45deg); }

.collection { overflow: hidden; background: #10100f; }
.collection__glow { position: absolute; top: 20%; right: -15%; width: 55vw; height: 55vw; border-radius: 50%; background: rgba(186,81,26,.11); filter: blur(140px); }
.collection__top { display: flex; justify-content: space-between; }
.live-chip { display: flex; align-items: center; gap: 8px; margin: 0; color: #d1cec7; font-size: .65rem; letter-spacing: .15em; }
.live-chip span { width: 7px; height: 7px; border-radius: 50%; background: var(--orange-hot); box-shadow: 0 0 14px var(--orange-hot); animation: pulse 1.8s ease-in-out infinite; }
@keyframes pulse { 50% { opacity: .35; transform: scale(.75); } }
.collection__grid { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(360px,.85fr); gap: clamp(50px, 8vw, 130px); align-items: center; margin-top: 75px; }
.collection__frame { position: relative; overflow: hidden; aspect-ratio: 4/5; background: #111; }
.collection__frame::after { position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.12); content: ""; }
.collection__frame img { width: 100%; height: 100%; object-fit: cover; object-position: 70% center; transition: transform 1.2s var(--ease); }
.collection__frame:hover img { transform: scale(1.04); }
.collection__badge { position: absolute; z-index: 1; top: 20px; left: 20px; display: grid; width: 64px; height: 64px; place-items: center; border: 1px solid rgba(255,255,255,.6); border-radius: 50%; font-size: .62rem; font-weight: 700; letter-spacing: .1em; line-height: 1.2; text-align: center; backdrop-filter: blur(10px); }
.collection__content .eyebrow { color: var(--orange); }
.collection__content .display { margin-top: 24px; font-size: clamp(3.1rem, 5.7vw, 6.5rem); }
.collection__description { max-width: 560px; margin: 38px 0; color: var(--muted); font-size: 1.05rem; }
.countdown { display: grid; grid-template-columns: repeat(4,1fr); padding-block: 22px; border-block: 1px solid var(--line); }
.countdown div { padding-left: 14px; border-left: 1px solid var(--line); }
.countdown div:first-child { padding-left: 0; border: 0; }
.countdown strong { display: block; font-family: var(--font-display); font-size: clamp(1.9rem, 3vw, 3.6rem); font-weight: 500; letter-spacing: -.05em; line-height: 1; font-variant-numeric: tabular-nums; }
.countdown span { color: var(--muted); font-size: .55rem; letter-spacing: .16em; }
.availability { margin-top: 35px; }
.availability > div:first-child { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; font-size: .75rem; }
.availability strong { font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }
.availability__track { height: 3px; overflow: hidden; background: rgba(255,255,255,.14); }
.availability__track span { display: block; width: var(--progress); height: 100%; transform-origin: left; background: var(--orange); }
.js .availability__track span { transform: scaleX(0); }
.availability small { display: block; margin-top: 10px; color: var(--muted); font-size: .7rem; }
.collection__join { display: flex; align-items: center; gap: 28px; margin-top: 35px; }
.collection__join p { display: grid; margin: 0; }
.collection__join strong { font-size: .9rem; }
.collection__join p span { color: var(--muted); font-size: .68rem; }

.experience { background: var(--paper); color: var(--ink); }
.experience .section-index { color: #7c786f; }
.experience__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(50px, 9vw, 150px); align-items: center; }
.experience__media { position: relative; overflow: hidden; aspect-ratio: 4/5; }
.experience__media img { width: 100%; height: 100%; object-fit: cover; object-position: 62% center; }
.experience__media span { position: absolute; right: 20px; bottom: 20px; padding: 10px 13px; background: rgba(8,8,8,.75); color: #fff; font-size: .58rem; letter-spacing: .15em; backdrop-filter: blur(8px); }
.experience__content .display { max-width: 10ch; margin-top: 38px; font-size: clamp(3rem, 5.8vw, 6.5rem); }
.experience__content .lead { max-width: 570px; margin-top: 35px; color: #59564f; }
.experience__list { margin: 55px 0 0; padding: 0; border-top: 1px solid rgba(0,0,0,.16); list-style: none; }
.experience__list li { display: grid; grid-template-columns: 50px 1fr; gap: 20px; padding: 24px 0; border-bottom: 1px solid rgba(0,0,0,.16); }
.experience__list > li > span { color: var(--orange); font-size: .72rem; }
.experience__list h3 { margin: 0 0 5px; font-family: var(--font-display); font-size: 1.35rem; }
.experience__list p { margin: 0; color: #6d6961; font-size: .9rem; }

.benefits { background: #0a0a0a; }
.benefits .section-heading { grid-template-columns: 2fr 1fr; align-items: end; }
.benefits__grid { display: grid; grid-template-columns: repeat(2,1fr); margin: 100px 0 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.benefits__grid li { display: grid; grid-template-columns: 55px 1fr auto; align-items: center; min-height: 110px; padding: 15px 25px 15px 0; border-bottom: 1px solid var(--line); }
.benefits__grid li:nth-child(odd) { margin-right: 30px; }
.benefits__grid li:nth-child(even) { padding-left: 25px; border-left: 1px solid var(--line); }
.benefits__grid span { color: var(--orange); font-size: .65rem; }
.benefits__grid strong { font-family: var(--font-display); font-size: clamp(1.2rem, 2vw, 1.9rem); font-weight: 500; }
.benefits__grid i { font-size: 1.5rem; font-style: normal; transition: transform .35s var(--ease); }
.benefits__grid li:hover i { transform: rotate(90deg); }

.community { overflow: hidden; padding-bottom: 0; background: #111; }
.community__intro .display { max-width: 11ch; margin-top: 50px; }
.community__wall { display: grid; grid-template-columns: 1fr 1.15fr 1fr; margin-top: 100px; }
.community-card { position: relative; display: flex; min-height: 540px; flex-direction: column; justify-content: space-between; padding: 35px; }
.community-card > span, .community-card > p { margin: 0; font-size: .6rem; letter-spacing: .16em; }
.community-card blockquote { margin: auto 0; font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 4.2rem); font-weight: 550; letter-spacing: -.05em; line-height: 1; }
.community-card--orange { background: var(--orange); color: #fff; }
.community-card--dark { background: #20201f; }
.community-card--image { overflow: hidden; padding: 0; }
.community-card--image::after { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.6), transparent 50%); content: ""; }
.community-card--image img { width: 100%; height: 100%; object-fit: cover; }
.community-card--image span { position: absolute; z-index: 1; bottom: 35px; left: 35px; }
.community__note { margin-top: 24px; color: var(--muted); font-size: .72rem; }

.faq { background: var(--paper); color: var(--ink); }
.faq .section-index { color: #7b776f; }
.faq__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 9vw; }
.faq .display { margin-top: 45px; font-size: clamp(3rem, 5.5vw, 6rem); }
.accordion { border-top: 1px solid rgba(0,0,0,.2); }
.accordion__item { border-bottom: 1px solid rgba(0,0,0,.2); }
.accordion__item h3 { margin: 0; }
.accordion__item button { display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 30px; padding: 27px 0; border: 0; background: transparent; font-family: var(--font-display); font-size: clamp(1.1rem, 2vw, 1.55rem); font-weight: 550; text-align: left; cursor: pointer; }
.accordion__item i { position: relative; width: 18px; height: 18px; flex: 0 0 18px; }
.accordion__item i::before, .accordion__item i::after { position: absolute; top: 50%; width: 100%; height: 1px; background: currentColor; content: ""; transition: transform .3s; }
.accordion__item i::after { transform: rotate(90deg); }
.accordion__item button[aria-expanded="true"] i::after { transform: rotate(0); }
.accordion__panel { padding: 0 50px 28px 0; color: #625f58; }
.accordion__panel p { margin: 0; }

.final-cta { min-height: 95svh; display: grid; place-items: center; overflow: hidden; text-align: center; background: #090909; }
.final-cta__orb { position: absolute; top: 50%; left: 50%; width: min(85vw,1000px); aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(190,75,20,.3) 0%, rgba(100,37,12,.11) 35%, transparent 70%); transform: translate(-50%,-50%); animation: breathe 7s ease-in-out infinite alternate; }
@keyframes breathe { to { transform: translate(-50%,-50%) scale(1.12); opacity: .8; } }
.final-cta .shell { position: relative; }
.final-cta__title { margin: 35px auto 50px; font-family: var(--font-display); font-size: clamp(4rem, 10vw, 12rem); font-weight: 600; letter-spacing: -.08em; line-height: .77; }
.final-cta__micro { margin: 24px auto 0; color: var(--muted); font-size: .75rem; }

.site-footer { padding: 70px 0 25px; border-top: 1px solid var(--line); background: #070707; }
.site-footer__grid { display: grid; grid-template-columns: 1.5fr 1fr auto; gap: 50px; }
.brand--footer { margin-bottom: 20px; }
.site-footer p, .site-footer a { color: var(--muted); font-size: .8rem; }
.site-footer a:hover { color: var(--paper); }
.footer-menu { flex-direction: column; gap: 10px; }
.site-footer__meta { display: flex; flex-direction: column; gap: 10px; }
.site-footer__legal { display: flex; justify-content: space-between; margin-top: 60px; padding-top: 20px; border-top: 1px solid var(--line); color: #77746d; font-size: .62rem; letter-spacing: .08em; }

.content-shell, .article-shell { min-height: 70svh; padding-top: 160px; }
.content-header, .article__header { max-width: 1000px; margin-bottom: 75px; }
.content-header .display, .article__header .display { margin-top: 25px; }
.post-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 55px 25px; }
.post-card__media { display: block; overflow: hidden; aspect-ratio: 4/3; margin-bottom: 22px; background: var(--ink-3); }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.post-card:hover img { transform: scale(1.04); }
.post-card h2 { margin: 10px 0; font-family: var(--font-display); font-size: 1.8rem; line-height: 1.1; }
.post-card > p:last-child { color: var(--muted); }
.article { max-width: 1100px; margin-inline: auto; }
.article__media { margin: 0 0 70px; }
.article__media img { width: 100%; }
.prose { max-width: 760px; margin-inline: auto; color: #ccc9c2; font-size: 1.1rem; }
.prose h2, .prose h3 { margin-top: 2em; color: var(--paper); font-family: var(--font-display); line-height: 1.1; }
.prose a { color: var(--orange-hot); text-decoration: underline; }
.prose img { margin-block: 2em; }
.not-found { min-height: 100svh; display: flex; flex-direction: column; justify-content: center; padding-top: 100px; }
.not-found h1 { margin: 30px 0; font-family: var(--font-display); font-size: clamp(4rem, 10vw, 10rem); letter-spacing: -.08em; line-height: .78; }
.not-found h1 em { color: var(--orange); font-style: normal; }
.not-found > p:not(.section-index) { max-width: 500px; color: var(--muted); }
.not-found .button { align-self: flex-start; margin-top: 25px; }
.woocommerce .products { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; }
.woocommerce ul.products::before, .woocommerce ul.products::after { display: none; }

@media (min-width: 960px) {
  .section-heading > p { justify-self: end; }
}

@media (max-width: 959px) {
  :root { --shell: min(100% - 32px, 800px); }
  .site-header__inner { min-height: 68px; }
  .header-cta { display: none; }
  .menu-toggle { display: block; margin-left: auto; }
  .site-nav { position: fixed; inset: 68px 0 0; display: grid; place-items: center; background: rgba(8,8,8,.98); opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s; }
  .menu-open .site-nav { opacity: 1; visibility: visible; }
  .nav-list { flex-direction: column; align-items: center; gap: 28px; }
  .nav-list a { font-family: var(--font-display); font-size: 2rem; letter-spacing: -.03em; text-transform: none; }
  .menu-open .menu-toggle span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-open .menu-toggle span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }
  .hero { min-height: 900px; }
  .hero::after { background: linear-gradient(0deg, rgba(4,4,4,.98) 10%, rgba(5,5,5,.7) 62%, rgba(5,5,5,.2)); }
  .hero__media img { object-position: 61% center; }
  .hero__edition { display: none; }
  .manifesto__grid, .process .section-heading, .benefits .section-heading, .experience__grid, .faq__grid { grid-template-columns: 1fr; }
  .manifesto__grid { gap: 45px; }
  .manifesto__copy { margin-top: 50px; }
  .collection__grid { grid-template-columns: 1fr; }
  .collection__frame { aspect-ratio: 16/11; }
  .experience__media { aspect-ratio: 16/12; }
  .community__wall { grid-template-columns: 1fr 1fr; }
  .community-card:last-child { grid-column: 1/-1; min-height: 430px; }
  .faq__grid { gap: 65px; }
  .post-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 640px) {
  :root { --shell: calc(100% - 28px); }
  body { font-size: 15px; }
  .section { padding-block: 105px; }
  .display { font-size: clamp(2.8rem, 14vw, 4.6rem); }
  .hero { min-height: 100svh; padding: 120px 0 70px; align-items: flex-end; }
  .hero__title { font-size: clamp(3.4rem, 17vw, 5.4rem); line-height: .82; }
  .hero__copy { max-width: 93%; }
  .hero__actions { align-items: flex-start; flex-direction: column; gap: 22px; }
  .hero__scroll { display: none; }
  .manifesto__copy { grid-template-columns: 1fr; gap: 25px; }
  .manifesto__marquee { margin-top: 90px; }
  .process__list { margin-top: 60px; }
  .process__list li { grid-template-columns: 42px 1fr auto; gap: 10px; min-height: 125px; }
  .process__list p { font-size: .82rem; }
  .collection__top { align-items: flex-start; gap: 20px; }
  .collection__grid { margin-top: 50px; }
  .collection__frame { aspect-ratio: 4/5; }
  .collection__content .display { font-size: 3.6rem; }
  .countdown strong { font-size: 1.7rem; }
  .countdown div { padding-left: 8px; }
  .collection__join { align-items: stretch; flex-direction: column; }
  .collection__join .button { width: 100%; }
  .experience__media { aspect-ratio: 4/5; }
  .benefits__grid { grid-template-columns: 1fr; margin-top: 60px; }
  .benefits__grid li:nth-child(odd), .benefits__grid li:nth-child(even) { margin: 0; padding: 15px 0; border-left: 0; }
  .community__wall { grid-template-columns: 1fr; margin-top: 60px; }
  .community-card, .community-card:last-child { grid-column: auto; min-height: 430px; }
  .final-cta__title { font-size: clamp(4rem, 19vw, 6rem); }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .site-footer__grid > div:first-child { grid-column: 1/-1; }
  .site-footer__legal { align-items: flex-start; flex-direction: column; gap: 8px; }
  .post-grid, .woocommerce .products { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js [data-reveal] { opacity: 1; transform: none; }
  .page-loader { display: none; }
}

@media (forced-colors: active) {
  .button, .header-cta, .brand__mark { border: 1px solid ButtonText; }
}

.no-js .page-loader { display: none; }

.hero__media:after{content:"";position:absolute;inset:0;background:#000;opacity:var(--hero-overlay,.35);pointer-events:none}.hero__media video,.experience__media video{width:100%;height:100%;object-fit:cover}.hero__floating{position:absolute;right:4vw;bottom:5vh;max-width:min(34vw,520px);z-index:3}.experience__gallery{display:grid;grid-template-columns:repeat(2,1fr);gap:1rem;margin-top:2rem}.experience__gallery img{width:100%;aspect-ratio:1;object-fit:cover}.social-proof__grid{display:grid;grid-template-columns:repeat(5,1fr);gap:1px;background:var(--cc-border)}.social-proof__grid div{background:var(--ink);color:var(--cream);padding:3rem 1rem;text-align:center}.social-proof__grid strong{display:block;font-size:clamp(2rem,5vw,5rem)}.social-proof__grid span{text-transform:uppercase;font-size:.75rem}@media(max-width:760px){.social-proof__grid{grid-template-columns:1fr 1fr}.hero__floating{max-width:45vw}}
