/* ═══════════════════════════════════════════
   torenzoq.site — Experimental Section Cuts
   Layout 80 · Dark Premium Editorial
   ═══════════════════════════════════════════ */

:root {
    --tq-ink: #0a0a0c;
    --tq-void: #111114;
    --tq-surface: #18181c;
    --tq-bone: #ece8e0;
    --tq-parch: #d4cfc4;
    --tq-brass: #b8956c;
    --tq-brass-dim: #8a704f;
    --tq-muted: #7a7670;
    --tq-line: rgba(236, 232, 224, 0.1);
    --tq-font-serif: 'Cormorant Garamond', 'Noto Serif JP', serif;
    --tq-font-sans: 'Outfit', 'Hiragino Sans', sans-serif;
    --tq-nav-h: 72px;
    --tq-cut-angle: -4deg;
    --tq-ease: cubic-bezier(0.22, 1, 0.36, 1);
    --tq-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.theme-light {
    --tq-ink: #f5f3ef;
    --tq-void: #ebe8e2;
    --tq-surface: #ffffff;
    --tq-bone: #1a1816;
    --tq-parch: #3d3a36;
    --tq-line: rgba(26, 24, 22, 0.1);
    --tq-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--tq-font-sans);
    font-weight: 300;
    font-size: 15px;
    line-height: 1.7;
    color: var(--tq-bone);
    background: var(--tq-ink);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--tq-brass); text-decoration: none; transition: color 0.25s; }
a:hover { color: var(--tq-parch); }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }
address { font-style: normal; }

.tq-micro {
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--tq-brass);
    margin-bottom: 1rem;
}

.tq-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.8rem;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: all 0.35s var(--tq-ease);
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}
.tq-btn--brass {
    background: var(--tq-brass);
    color: var(--tq-ink);
}
.tq-btn--brass:hover { background: var(--tq-parch); color: var(--tq-ink); }
.tq-btn--ghost {
    border: 1px solid var(--tq-line);
    color: var(--tq-bone);
}
.tq-btn--ghost:hover { border-color: var(--tq-brass); color: var(--tq-brass); }

/* ── NAV ── */
.tq-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 900;
    padding: 1rem 2rem;
    transition: background 0.4s, backdrop-filter 0.4s;
}
.tq-nav.is-scrolled {
    background: rgba(10, 10, 12, 0.88);
    backdrop-filter: blur(16px);
}
.theme-light .tq-nav.is-scrolled { background: rgba(245, 243, 239, 0.92); }

.tq-nav__shell {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.tq-nav__mark {
    display: flex;
    flex-direction: column;
    line-height: 1;
    color: var(--tq-bone);
}
.tq-nav__glyph {
    font-family: var(--tq-font-serif);
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.08em;
}
.tq-nav__domain {
    font-size: 9px;
    letter-spacing: 0.2em;
    color: var(--tq-muted);
    margin-top: 2px;
}
.tq-nav__pill {
    display: flex;
    gap: 0.25rem;
    padding: 0.35rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--tq-line);
    clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}
.tq-nav__link {
    padding: 0.5rem 1rem;
    font-size: 11px;
    letter-spacing: 0.1em;
    color: var(--tq-muted);
    transition: color 0.25s, background 0.25s;
}
.tq-nav__link:hover, .tq-nav__link.is-active {
    color: var(--tq-bone);
    background: rgba(184, 149, 108, 0.12);
}
.tq-nav__tools { display: flex; align-items: center; gap: 0.5rem; }
.tq-tool {
    position: relative;
    width: 38px; height: 38px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid transparent;
    transition: border-color 0.25s;
}
.tq-tool:hover { border-color: var(--tq-line); }
.tq-tool em {
    position: absolute;
    top: 4px; right: 4px;
    font-size: 9px;
    font-style: normal;
    background: var(--tq-brass);
    color: var(--tq-ink);
    width: 14px; height: 14px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.tq-tool--mode .icon-moon { display: none; }
.theme-light .tq-tool--mode .icon-sun { display: none; }
.theme-light .tq-tool--mode .icon-moon { display: block; }
.tq-burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 38px; height: 38px;
    align-items: center; justify-content: center;
}
.tq-burger span {
    display: block;
    width: 18px; height: 1px;
    background: var(--tq-bone);
    transition: transform 0.3s;
}

/* Cut index */
.tq-cut-index {
    position: fixed;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 800;
}
.tq-cut-index__list { display: flex; flex-direction: column; gap: 0.35rem; }
.tq-cut-index__btn {
    font-size: 9px;
    letter-spacing: 0.12em;
    color: var(--tq-muted);
    padding: 0.25rem 0.5rem;
    text-align: right;
    opacity: 0.5;
    transition: opacity 0.3s, color 0.3s;
}
.tq-cut-index__btn.is-active,
.tq-cut-index__btn:hover { opacity: 1; color: var(--tq-brass); }

/* ── MAIN ── */
.tq-main { padding-top: var(--tq-nav-h); }
.tq-main--cuts { padding-top: 0; }

/* ── CUT SECTIONS ── */
.tq-cut {
    position: relative;
    overflow: hidden;
}
.tq-cut::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--tq-brass-dim), transparent);
    opacity: 0.3;
}

/* §01 Hero — fractured aperture */
.tq-cut--hero {
    min-height: 100vh;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 72px), 0 100%);
    background: var(--tq-ink);
}
.tq-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--tq-nav-h) + 2rem) 8vw 5rem;
    overflow: hidden;
}
.tq-hero__atmosphere {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.tq-hero__glow {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 70vmin;
    height: 70vmin;
    background: radial-gradient(circle, rgba(184, 149, 108, 0.14) 0%, transparent 68%);
    filter: blur(40px);
}
.tq-hero__line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--tq-brass-dim), transparent);
    opacity: 0.35;
    transform-origin: left center;
}
.tq-hero__line--a {
    top: 28%;
    left: 8vw;
    width: 42%;
    transform: rotate(-8deg);
}
.tq-hero__line--b {
    bottom: 22%;
    right: 12vw;
    width: 36%;
    transform: rotate(6deg);
}
.tq-hero__grid {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(300px, 1.05fr);
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}
.tq-hero__chapter {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1.75rem;
}
.tq-hero__chapter-num {
    font-family: var(--tq-font-serif);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1;
    color: var(--tq-brass);
    opacity: 0.35;
}
.tq-hero__chapter-label {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--tq-muted);
}
.tq-hero__title {
    font-family: var(--tq-font-serif);
    font-size: clamp(2.6rem, 5.5vw, 4.6rem);
    font-weight: 400;
    line-height: 1.08;
    margin-bottom: 1.5rem;
}
.tq-hero__title-row { display: block; }
.tq-hero__title-row--cut {
    margin-left: clamp(1rem, 4vw, 3.5rem);
    clip-path: polygon(0 0, 100% 0, 96% 100%, 4% 100%);
}
.tq-hero__title-row--accent em {
    font-style: italic;
    color: var(--tq-brass);
    font-size: 1.12em;
}
.tq-hero__lead {
    font-size: clamp(0.92rem, 1.5vw, 1rem);
    color: var(--tq-muted);
    max-width: 38ch;
    line-height: 1.85;
    margin-bottom: 2rem;
}
.tq-hero__facts {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 2.25rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--tq-line);
}
.tq-hero__fact strong {
    display: block;
    font-family: var(--tq-font-serif);
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--tq-bone);
    margin-bottom: 0.2rem;
}
.tq-hero__fact span {
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--tq-muted);
}
.tq-hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}
.tq-hero__stage {
    position: relative;
    min-height: clamp(360px, 52vh, 560px);
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 900px;
}
.tq-hero__shards {
    position: absolute;
    inset: 0;
}
.tq-hero__shard {
    position: absolute;
    border: 1px solid rgba(184, 149, 108, 0.22);
    background: rgba(24, 24, 28, 0.55);
    backdrop-filter: blur(2px);
}
.tq-hero__shard--1 {
    inset: 8% 12% 18% 5%;
    clip-path: polygon(12% 0, 100% 8%, 88% 100%, 0 92%);
    transform: rotate(-2deg);
}
.tq-hero__shard--2 {
    inset: 0 0 8% 18%;
    clip-path: polygon(0 15%, 100% 0, 85% 100%, 8% 88%);
    border-color: rgba(184, 149, 108, 0.35);
}
.tq-hero__shard--3 {
    width: 38%;
    height: 42%;
    right: 0;
    bottom: 0;
    clip-path: polygon(30% 0, 100% 20%, 70% 100%, 0 75%);
    background: linear-gradient(145deg, rgba(184, 149, 108, 0.12), transparent);
}
.tq-hero__figure {
    position: relative;
    z-index: 2;
    width: min(100%, 420px);
    margin: 0;
    padding: 2rem;
    clip-path: polygon(8% 0, 100% 6%, 92% 100%, 0 94%);
    transition: transform 0.45s var(--tq-ease);
    will-change: transform;
}
.tq-hero__img {
    width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 28px 48px rgba(0, 0, 0, 0.55));
}
.tq-hero__spec {
    position: absolute;
    left: 0;
    bottom: 6%;
    z-index: 3;
    display: grid;
    gap: 0.15rem;
    padding: 0.85rem 1.1rem;
    background: rgba(10, 10, 12, 0.82);
    border: 1px solid var(--tq-line);
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
}
.tq-hero__spec-code {
    font-size: 9px;
    letter-spacing: 0.22em;
    color: var(--tq-brass);
}
.tq-hero__spec-name {
    font-family: var(--tq-font-serif);
    font-size: 1.05rem;
}
.tq-hero__spec-price {
    font-size: 12px;
    color: var(--tq-muted);
}
.tq-hero__scroll {
    position: absolute;
    left: 8vw;
    bottom: 2.5rem;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--tq-muted);
    transition: color 0.25s;
}
.tq-hero__scroll:hover { color: var(--tq-brass); }
.tq-hero__scroll-bar {
    display: block;
    width: 1px;
    height: 48px;
    background: var(--tq-line);
    position: relative;
    overflow: hidden;
}
.tq-hero__scroll-bar::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--tq-brass);
    animation: tq-hero-scroll 2.2s var(--tq-ease) infinite;
}
@keyframes tq-hero-scroll {
    0% { top: -100%; }
    55%, 100% { top: 100%; }
}
.theme-light .tq-hero__shard {
    background: rgba(255, 255, 255, 0.45);
}
.theme-light .tq-hero__spec {
    background: rgba(255, 255, 255, 0.9);
}

/* §02 Story */
.tq-cut--story {
    padding: 5rem 8vw;
    background: var(--tq-void);
    clip-path: polygon(0 36px, 100% 0, 100% calc(100% - 36px), 0 100%);
}
.tq-story__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
.tq-story__text h2 {
    font-family: var(--tq-font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}
.tq-story__text h2 em { font-style: italic; color: var(--tq-brass); }
.tq-story__text p {
    color: var(--tq-muted);
    margin-bottom: 1rem;
    max-width: 38ch;
    font-size: 15px;
    line-height: 1.85;
}
.tq-story__visual {
    position: relative;
    margin: 0;
    overflow: hidden;
    clip-path: polygon(0 8%, 100% 0, 100% 92%, 0 100%);
}
.tq-story__img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 4/5;
    display: block;
}
.tq-story__cap {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    font-size: 10px;
    letter-spacing: 0.15em;
    color: var(--tq-brass);
    background: rgba(10, 10, 12, 0.65);
    padding: 0.35rem 0.65rem;
}

/* §03 H-scroll */
.tq-cut--hscroll {
    padding: 6rem 0 5rem;
    background: var(--tq-ink);
    clip-path: polygon(0 40px, 100% 0, 100% 100%, 0 calc(100% - 40px));
}
.tq-section-head {
    padding: 0 8vw 2.5rem;
    max-width: 600px;
}
.tq-section-head h2 {
    font-family: var(--tq-font-serif);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    margin-bottom: 0.75rem;
}
.tq-section-head h2 em { font-style: italic; color: var(--tq-brass); }
.tq-section-head p { color: var(--tq-muted); font-size: 14px; }

.tq-hscroll {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 1rem 8vw 2rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    cursor: grab;
}
.tq-hscroll::-webkit-scrollbar { display: none; }
.tq-hscroll.is-dragging { cursor: grabbing; }
.tq-hscroll__card {
    flex: 0 0 280px;
    scroll-snap-align: start;
    background: var(--tq-surface);
    clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
    overflow: hidden;
    transition: transform 0.4s var(--tq-ease), box-shadow 0.4s;
    border: 1px solid transparent;
}
.tq-hscroll__card.is-active {
    border-color: var(--tq-brass);
    transform: translateY(-8px);
    box-shadow: var(--tq-shadow);
}
.tq-hscroll__img { width: 100%; aspect-ratio: 1; object-fit: cover; padding: 1.5rem; }
.tq-hscroll__body { padding: 0 1.25rem 1.5rem; }
.tq-hscroll__code {
    font-size: 10px;
    letter-spacing: 0.2em;
    color: var(--tq-brass);
}
.tq-hscroll__body h3 {
    font-family: var(--tq-font-serif);
    font-size: 1.3rem;
    margin: 0.25rem 0 0.5rem;
}
.tq-hscroll__body p { font-size: 13px; color: var(--tq-muted); }
.tq-hscroll__detail {
    padding: 0 8vw;
    max-width: 700px;
    font-size: 14px;
    color: var(--tq-muted);
    border-left: 2px solid var(--tq-brass);
    padding-left: 1.5rem;
    margin-left: 8vw;
}

/* §04 Stats */
.tq-cut--stats {
    padding: 5rem 8vw;
    background: var(--tq-void);
    clip-path: polygon(0 0, 100% 30px, 100% 100%, 0 calc(100% - 30px));
}
.tq-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 1px;
    background: var(--tq-line);
    max-width: 1100px;
    margin: 0 auto;
}
.tq-stats__cell {
    background: var(--tq-void);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.tq-stats__cell--wide { grid-column: span 2; }
.tq-stats__cell--tall { grid-row: span 2; justify-content: center; }
.tq-stats__cell--accent {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(184,149,108,0.15), transparent);
    justify-content: center;
}
.tq-stats__num {
    font-family: var(--tq-font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1;
    color: var(--tq-brass);
}
.tq-stats__unit { font-size: 1rem; color: var(--tq-muted); }
.tq-stats__cell p { font-size: 13px; color: var(--tq-muted); }
.tq-stats__quote {
    font-family: var(--tq-font-serif);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--tq-bone);
    margin-bottom: 0.5rem;
}
.tq-stats__cell cite { font-size: 11px; color: var(--tq-brass); font-style: normal; }

/* §05 Craft */
.tq-cut--craft { padding: 6rem 8vw; background: var(--tq-ink); }
.tq-craft-flow { max-width: 1000px; margin: 3rem auto 0; }
.tq-craft-step {
    display: grid;
    grid-template-columns: 60px 1fr 280px;
    gap: 2rem;
    align-items: center;
    padding: 3rem 0;
    border-bottom: 1px solid var(--tq-line);
}
.tq-craft-step--flip { direction: rtl; }
.tq-craft-step--flip > * { direction: ltr; }
.tq-craft-step__num {
    font-family: var(--tq-font-serif);
    font-size: 2rem;
    color: var(--tq-brass);
    opacity: 0.5;
}
.tq-craft-step__content h3 {
    font-family: var(--tq-font-serif);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}
.tq-craft-step__content p { color: var(--tq-muted); font-size: 14px; }
.tq-craft-step__fig {
    clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
    overflow: hidden;
}
.tq-craft-step__fig img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

/* §06 Stack */
.tq-cut--stack {
    padding: 6rem 8vw;
    background: var(--tq-void);
    clip-path: polygon(0 50px, 100% 0, 100% calc(100% - 50px), 0 100%);
}
.tq-stack { max-width: 900px; margin: 2rem auto 0; }
.tq-stack__tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
}
.tq-stack__tab {
    padding: 0.6rem 1.4rem;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: 1px solid var(--tq-line);
    color: var(--tq-muted);
    transition: all 0.3s;
    clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
}
.tq-stack__tab.is-active {
    background: var(--tq-brass);
    color: var(--tq-ink);
    border-color: var(--tq-brass);
}
.tq-stack__deck { position: relative; min-height: 380px; }
.tq-stack__layer {
    display: none;
    flex-direction: column;
    gap: 1rem;
}
.tq-stack__layer.is-active { display: flex; }
.tq-stack__card {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 1.5rem;
    align-items: center;
    padding: 1.25rem;
    background: var(--tq-surface);
    border: 1px solid var(--tq-line);
    transform: translateX(calc(var(--i) * 12px));
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
    transition: transform 0.4s var(--tq-ease);
}
.tq-stack__card:hover { transform: translateX(calc(var(--i) * 12px + 8px)); }
.tq-stack__img { width: 100%; object-fit: contain; }
.tq-stack__meta h3 {
    font-family: var(--tq-font-serif);
    font-size: 1.2rem;
    margin-bottom: 0.35rem;
}
.tq-stack__meta p { font-size: 13px; color: var(--tq-muted); margin-bottom: 0.75rem; }
.tq-stack__actions { display: flex; align-items: center; gap: 0.75rem; }
.tq-stack__price { font-size: 14px; color: var(--tq-brass); }
.tq-stack__wish {
    font-size: 1.1rem;
    color: var(--tq-muted);
    transition: color 0.25s;
}
.tq-stack__wish.is-wished { color: #c45; }
.tq-stack__cta { margin-top: 2rem; }

/* §07 Lab */
.tq-cut--lab { padding: 6rem 8vw; background: var(--tq-ink); }
.tq-lab { max-width: 900px; margin: 2rem auto 0; }
.tq-lab__controls {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}
.tq-lab__mode {
    padding: 0.5rem 1.2rem;
    font-size: 11px;
    letter-spacing: 0.1em;
    border: 1px solid var(--tq-line);
    color: var(--tq-muted);
    transition: all 0.3s;
}
.tq-lab__mode.is-active {
    background: var(--tq-brass);
    color: var(--tq-ink);
    border-color: var(--tq-brass);
}
.tq-lab__stage {
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 5%, 100% 95%, 0 100%);
}
.tq-lab__img { width: 100%; aspect-ratio: 3/2; object-fit: cover; transition: filter 0.5s, transform 0.5s; }
.tq-lab__overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    mix-blend-mode: overlay;
    opacity: 0;
    transition: opacity 0.5s;
}
.tq-lab__stage[data-lab-active="slice"] .tq-lab__img {
    clip-path: polygon(15% 0, 100% 10%, 85% 100%, 0 90%);
}
.tq-lab__stage[data-lab-active="ripple"] .tq-lab__img {
    filter: url(#none);
    animation: tq-ripple 3s ease infinite;
}
.tq-lab__stage[data-lab-active="invert"] .tq-lab__img {
    filter: invert(1) hue-rotate(180deg);
}
.tq-lab__stage[data-lab-active="grain"] .tq-lab__img {
    filter: contrast(1.2) grayscale(0.3);
}
.tq-lab__stage[data-lab-active="grain"] .tq-lab__overlay {
    opacity: 0.4;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
@keyframes tq-ripple {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02) skewX(-1deg); }
}
.tq-lab__note {
    margin-top: 1.25rem;
    font-size: 13px;
    color: var(--tq-muted);
    max-width: 55ch;
}

/* §08 Voices */
.tq-cut--voices {
    padding: 6rem 8vw;
    background: var(--tq-void);
    clip-path: polygon(0 0, 100% 40px, 100% 100%, 0 calc(100% - 40px));
}
.tq-voices {
    position: relative;
    max-width: 700px;
    margin: 3rem auto 0;
    min-height: 320px;
}
.tq-voice {
    position: absolute;
    padding: 2rem;
    background: var(--tq-surface);
    border: 1px solid var(--tq-line);
    max-width: 90%;
    transition: transform 0.5s var(--tq-ease), z-index 0s;
}
.tq-voice p {
    font-family: var(--tq-font-serif);
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1rem;
}
.tq-voice footer { font-size: 11px; color: var(--tq-brass); }
.tq-voice--back {
    top: 0; right: 0;
    transform: rotate(2deg) translateY(20px);
    opacity: 0.5;
    z-index: 1;
}
.tq-voice--mid {
    top: 60px; left: 5%;
    transform: rotate(-1.5deg);
    opacity: 0.75;
    z-index: 2;
}
.tq-voice--front {
    top: 120px; right: 10%;
    transform: rotate(0.5deg);
    z-index: 3;
    box-shadow: var(--tq-shadow);
    border-color: var(--tq-brass-dim);
}
.tq-voices:hover .tq-voice--front { transform: rotate(0) translateY(-10px); }

/* §09 Chronicle */
.tq-cut--chrono { padding: 6rem 8vw; background: var(--tq-ink); }
.tq-chrono {
    max-width: 700px;
    margin: 3rem auto 0;
    border-left: 1px solid var(--tq-brass-dim);
    padding-left: 2rem;
}
.tq-chrono__item {
    position: relative;
    padding: 0 0 2.5rem 1.5rem;
}
.tq-chrono__item::before {
    content: '';
    position: absolute;
    left: -2rem; top: 0.4rem;
    width: 8px; height: 8px;
    background: var(--tq-brass);
    clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
    transform: translateX(-3.5px);
}
.tq-chrono__item time {
    font-size: 11px;
    letter-spacing: 0.15em;
    color: var(--tq-brass);
    display: block;
    margin-bottom: 0.35rem;
}
.tq-chrono__item h3 {
    font-family: var(--tq-font-serif);
    font-size: 1.2rem;
    margin-bottom: 0.35rem;
}
.tq-chrono__item p { font-size: 14px; color: var(--tq-muted); }

/* §10 CTA */
.tq-cut--cta {
    padding: 6rem 8vw 8rem;
    background: linear-gradient(180deg, var(--tq-void), var(--tq-ink));
    clip-path: polygon(0 60px, 100% 0, 100% 100%, 0 100%);
}
.tq-atelier {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}
.tq-atelier__copy h2 {
    font-family: var(--tq-font-serif);
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 1rem;
}
.tq-atelier__copy h2 em { font-style: italic; color: var(--tq-brass); }
.tq-atelier__copy > p { color: var(--tq-muted); margin-bottom: 1.5rem; }
.tq-atelier__perks {
    margin-bottom: 2rem;
}
.tq-atelier__perks li {
    font-size: 14px;
    padding: 0.4rem 0;
    padding-left: 1.2rem;
    position: relative;
}
.tq-atelier__perks li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--tq-brass);
}
.tq-atelier__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.tq-atelier__visual {
    position: relative;
    clip-path: polygon(8% 0, 100% 5%, 92% 100%, 0 95%);
    overflow: hidden;
}
.tq-atelier__img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.tq-atelier__visual figcaption {
    position: absolute;
    bottom: 1rem; right: 1rem;
    font-size: 10px;
    letter-spacing: 0.12em;
    color: var(--tq-bone);
    background: rgba(0,0,0,0.6);
    padding: 0.4rem 0.8rem;
}

/* ── REVEAL ── */
.tq-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s var(--tq-ease), transform 0.7s var(--tq-ease);
}
.tq-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── INNER PAGES ── */
.tq-page-hero {
    padding: calc(var(--tq-nav-h) + 4rem) 8vw 3rem;
    max-width: 800px;
}
.tq-page-hero--cut {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), 0 100%);
    background: var(--tq-void);
    max-width: none;
}
.tq-page-hero h1 {
    font-family: var(--tq-font-serif);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    line-height: 1.15;
    margin-bottom: 1rem;
}
.tq-page-hero h1 em { font-style: italic; color: var(--tq-brass); }
.tq-page-hero__lead { color: var(--tq-muted); max-width: 50ch; }
.tq-page-hero--compact { padding-bottom: 2rem; }
.tq-section-title {
    font-family: var(--tq-font-serif);
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

/* About */
.tq-about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 4rem 8vw;
    align-items: start;
}
.tq-about-story__text h2 {
    font-family: var(--tq-font-serif);
    font-size: 1.6rem;
    margin-bottom: 1.25rem;
}
.tq-about-story__text p { color: var(--tq-muted); margin-bottom: 1rem; font-size: 14px; }
.tq-about-story__fig {
    clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
    overflow: hidden;
}
.tq-about-story__fig figcaption { font-size: 11px; color: var(--tq-brass); margin-top: 0.5rem; }
.tq-about-mission {
    padding: 5rem 8vw;
    background: var(--tq-void);
    clip-path: polygon(0 30px, 100% 0, 100% 100%, 0 calc(100% - 30px));
}
.tq-about-mission__inner { max-width: 700px; margin: 0 auto; text-align: center; }
.tq-about-mission__statement {
    font-family: var(--tq-font-serif);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-style: italic;
    color: var(--tq-brass);
    margin-bottom: 1.5rem;
}
.tq-about-mission p { color: var(--tq-muted); font-size: 14px; margin-bottom: 1rem; }
.tq-about-values { padding: 5rem 8vw; }
.tq-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.tq-value-card {
    padding: 2rem;
    border: 1px solid var(--tq-line);
    clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%);
}
.tq-value-card__glyph {
    font-family: var(--tq-font-serif);
    font-size: 2.5rem;
    color: var(--tq-brass);
    opacity: 0.4;
    display: block;
    margin-bottom: 0.75rem;
}
.tq-value-card h3 { font-family: var(--tq-font-serif); font-size: 1.2rem; margin-bottom: 0.5rem; }
.tq-value-card p { font-size: 13px; color: var(--tq-muted); }
.tq-about-timeline { padding: 4rem 8vw; background: var(--tq-void); }
.tq-about-team {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 4rem 8vw;
    align-items: center;
}
.tq-about-team__fig { clip-path: polygon(5% 0, 100% 8%, 95% 100%, 0 92%); overflow: hidden; }
.tq-about-access { padding: 4rem 8vw 6rem; }
.tq-access-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2rem;
}
.tq-access-grid address { font-size: 14px; color: var(--tq-muted); line-height: 1.9; }
.tq-map-frame { clip-path: polygon(0 0, 100% 8px, 100% 100%, 8px 100%); overflow: hidden; }

/* Shop */
.tq-shop-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 3rem;
    padding: 2rem 8vw 6rem;
}
.tq-shop-filter__title {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--tq-brass);
    margin-bottom: 1rem;
}
.tq-filter-nav { display: flex; flex-direction: column; gap: 0.25rem; }
.tq-filter-btn {
    padding: 0.5rem 0.75rem;
    font-size: 13px;
    color: var(--tq-muted);
    text-align: left;
    border-left: 2px solid transparent;
    transition: all 0.25s;
}
.tq-filter-btn:hover, .tq-filter-btn.is-active {
    color: var(--tq-bone);
    border-left-color: var(--tq-brass);
}
.tq-filter-meta { margin-top: 2rem; font-size: 12px; color: var(--tq-muted); }
.tq-filter-meta p { margin-bottom: 0.25rem; }
.tq-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}
.tq-product {
    background: var(--tq-surface);
    border: 1px solid var(--tq-line);
    clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%);
    overflow: hidden;
    transition: transform 0.4s var(--tq-ease);
}
.tq-product:hover { transform: translateY(-6px); }
.tq-product__fig { position: relative; padding: 1.5rem; background: var(--tq-void); }
.tq-product__img { width: 100%; object-fit: contain; aspect-ratio: 1; }
.tq-product__tag {
    position: absolute;
    top: 1rem; right: 1rem;
    font-size: 9px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--tq-brass);
}
.tq-product__body { padding: 1.25rem; }
.tq-product__body h2 {
    font-family: var(--tq-font-serif);
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}
.tq-product__spec { font-size: 12px; color: var(--tq-brass); margin-bottom: 0.5rem; }
.tq-product__desc { font-size: 13px; color: var(--tq-muted); margin-bottom: 1rem; }
.tq-product__foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.tq-product__price { font-size: 14px; color: var(--tq-bone); }
.tq-product__actions { display: flex; gap: 0.5rem; align-items: center; }
.tq-product__wish { font-size: 1.1rem; color: var(--tq-muted); }
.tq-product__wish.is-wished { color: #c45; }
.tq-shop-process {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--tq-line);
}
.tq-shop-process h2 {
    font-family: var(--tq-font-serif);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}
.tq-process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.tq-process-steps li span {
    font-family: var(--tq-font-serif);
    font-size: 1.5rem;
    color: var(--tq-brass);
    display: block;
    margin-bottom: 0.5rem;
}
.tq-process-steps p { font-size: 13px; color: var(--tq-muted); }
.tq-shop-empty { text-align: center; padding: 4rem; color: var(--tq-muted); }
.tq-search-result { font-size: 14px; color: var(--tq-muted); margin-bottom: 1.5rem; }

/* FAQ */
.tq-faq-layout {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 3rem;
    padding: 2rem 8vw 4rem;
    max-width: 1000px;
}
.tq-faq-tabs { display: flex; flex-direction: column; gap: 0.25rem; }
.tq-faq-tab {
    padding: 0.6rem 0.75rem;
    font-size: 13px;
    text-align: left;
    color: var(--tq-muted);
    border-left: 2px solid transparent;
    transition: all 0.25s;
}
.tq-faq-tab.is-active {
    color: var(--tq-bone);
    border-left-color: var(--tq-brass);
}
.tq-faq-panel { display: none; }
.tq-faq-panel.is-active { display: block; }
.tq-faq-panel__title {
    font-family: var(--tq-font-serif);
    font-size: 1.3rem;
    margin-bottom: 1.25rem;
}
.tq-accordion__item { border-bottom: 1px solid var(--tq-line); }
.tq-accordion__trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.1rem 0;
    font-size: 14px;
    cursor: pointer;
    list-style: none;
}
.tq-accordion__trigger::-webkit-details-marker { display: none; }
.tq-accordion__trigger svg { transition: transform 0.3s; flex-shrink: 0; }
.tq-accordion__item[open] .tq-accordion__trigger svg { transform: rotate(180deg); }
.tq-accordion__body { padding: 0 0 1.25rem; }
.tq-accordion__body p { font-size: 14px; color: var(--tq-muted); line-height: 1.8; }
.tq-faq-cta {
    text-align: center;
    padding: 4rem 8vw 6rem;
    background: var(--tq-void);
    clip-path: polygon(0 30px, 100% 0, 100% 100%, 0 100%);
}
.tq-faq-cta h2 { font-family: var(--tq-font-serif); font-size: 1.6rem; margin-bottom: 0.5rem; }
.tq-faq-cta p { color: var(--tq-muted); margin-bottom: 1.5rem; }

/* Contact */
.tq-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    padding: 2rem 8vw 4rem;
}
.tq-contact-info h2, .tq-contact-form h2 {
    font-family: var(--tq-font-serif);
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
}
.tq-contact-card p { margin-bottom: 0.75rem; font-size: 14px; color: var(--tq-muted); }
.tq-contact-card__label {
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--tq-brass);
    display: block;
    margin-bottom: 0.15rem;
}
.tq-contact-note { margin-top: 2rem; }
.tq-contact-note h3 { font-size: 14px; margin-bottom: 0.5rem; }
.tq-contact-note p { font-size: 13px; color: var(--tq-muted); }
.tq-field { margin-bottom: 1.25rem; }
.tq-field label { display: block; font-size: 12px; margin-bottom: 0.35rem; color: var(--tq-muted); }
.tq-field label span { color: var(--tq-brass); }
.tq-field input, .tq-field select, .tq-field textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--tq-surface);
    border: 1px solid var(--tq-line);
    color: var(--tq-bone);
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.25s;
}
.tq-field input:focus, .tq-field select:focus, .tq-field textarea:focus {
    outline: none;
    border-color: var(--tq-brass);
}
.tq-contact-map { padding: 2rem 8vw 6rem; }
.tq-contact-map h2 { font-family: var(--tq-font-serif); font-size: 1.4rem; margin-bottom: 1rem; }

/* Cart */
.tq-cart-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 3rem;
    padding: 2rem 8vw 6rem;
    align-items: start;
}
.tq-cart-empty {
    display: none;
    text-align: center;
    padding: 4rem 2rem;
    color: var(--tq-muted);
}
.tq-cart-empty.is-visible { display: block; }
.tq-cart-empty p { margin-bottom: 1.5rem; }
.tq-cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 1.25rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--tq-line);
    align-items: start;
}
.tq-cart-item__img img { width: 100%; object-fit: contain; }
.tq-cart-item__body h3 { font-family: var(--tq-font-serif); font-size: 1.1rem; margin-bottom: 0.25rem; }
.tq-cart-item__meta { font-size: 12px; color: var(--tq-muted); }
.tq-cart-item__price { font-size: 14px; color: var(--tq-brass); margin: 0.5rem 0; }
.tq-cart-item__qty { display: flex; align-items: center; gap: 0.75rem; }
.qty-btn {
    width: 28px; height: 28px;
    border: 1px solid var(--tq-line);
    font-size: 14px;
    transition: border-color 0.25s;
}
.qty-btn:hover { border-color: var(--tq-brass); }
.tq-cart-item__remove {
    font-size: 1.4rem;
    color: var(--tq-muted);
    padding: 0.25rem;
}
.tq-cart-summary {
    padding: 2rem;
    background: var(--tq-surface);
    border: 1px solid var(--tq-line);
    clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%);
    position: sticky;
    top: calc(var(--tq-nav-h) + 1rem);
}
.tq-cart-summary h2 { font-family: var(--tq-font-serif); font-size: 1.2rem; margin-bottom: 1.25rem; }
.tq-summary-rows div {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-size: 14px;
    color: var(--tq-muted);
}
.tq-summary-total {
    border-top: 1px solid var(--tq-line);
    margin-top: 0.5rem;
    padding-top: 1rem !important;
    font-size: 16px !important;
    color: var(--tq-bone) !important;
}
.tq-coupon { margin: 1.5rem 0; }
.tq-coupon label { font-size: 12px; color: var(--tq-muted); display: block; margin-bottom: 0.35rem; }
.tq-coupon__row { display: flex; gap: 0.5rem; }
.tq-coupon__row input {
    flex: 1;
    padding: 0.6rem;
    background: var(--tq-void);
    border: 1px solid var(--tq-line);
    color: var(--tq-bone);
    font-size: 13px;
}
.tq-coupon__hint { font-size: 11px; color: var(--tq-muted); margin-top: 0.5rem; }
.tq-checkout-btn { width: 100%; margin-bottom: 1rem; }
.tq-cart-note { font-size: 11px; color: var(--tq-muted); line-height: 1.6; }

/* Legal */
.tq-legal {
    max-width: 760px;
    margin: 0 auto;
    padding: calc(var(--tq-nav-h) + 3rem) 8vw 6rem;
}
.tq-legal__head { margin-bottom: 3rem; }
.tq-legal__head h1 { font-family: var(--tq-font-serif); font-size: 2.2rem; margin-bottom: 0.5rem; }
.tq-legal__updated { font-size: 13px; color: var(--tq-muted); }
.tq-legal section { margin-bottom: 2.5rem; }
.tq-legal h2 {
    font-family: var(--tq-font-serif);
    font-size: 1.35rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--tq-line);
}
.tq-legal h3 { font-size: 1rem; margin: 1.25rem 0 0.75rem; color: var(--tq-brass); }
.tq-legal p { font-size: 14px; color: var(--tq-muted); margin-bottom: 1rem; line-height: 1.85; }
.tq-legal ul { margin: 0.75rem 0 1rem 1.25rem; }
.tq-legal li { font-size: 14px; color: var(--tq-muted); margin-bottom: 0.4rem; list-style: disc; }
.tq-legal address { font-size: 14px; color: var(--tq-muted); line-height: 1.9; margin-top: 0.75rem; }

/* Footer */
.tq-foot { position: relative; margin-top: 2rem; }
.tq-foot__cut {
    height: 60px;
    background: var(--tq-brass);
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
    opacity: 0.15;
}
.tq-foot__band {
    padding: 3rem 8vw 2rem;
    background: var(--tq-void);
    display: grid;
    gap: 1.5rem;
}
.tq-foot__name {
    font-family: var(--tq-font-serif);
    font-size: 1.4rem;
    color: var(--tq-bone);
}
.tq-foot__name span { color: var(--tq-muted); font-size: 0.9rem; }
.tq-foot__brand p { font-size: 13px; color: var(--tq-muted); margin-top: 0.35rem; }
.tq-foot__links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    font-size: 12px;
}
.tq-foot__links a { color: var(--tq-muted); }
.tq-foot__links a:hover { color: var(--tq-brass); }
.tq-foot__sep { color: var(--tq-line); }
.tq-foot__addr { font-size: 12px; color: var(--tq-muted); line-height: 1.8; }
.tq-foot__base {
    padding: 1.25rem 8vw;
    border-top: 1px solid var(--tq-line);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 11px;
    color: var(--tq-muted);
}

/* Search overlay */
.tq-search {
    position: fixed;
    inset: 0;
    z-index: 950;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 15vh;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s, visibility 0.35s;
}
.tq-search[aria-hidden="false"] { opacity: 1; visibility: visible; }
.tq-search__frame {
    background: var(--tq-surface);
    padding: 2.5rem;
    width: 90%;
    max-width: 520px;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%);
    position: relative;
}
.tq-search__close {
    position: absolute;
    top: 1rem; right: 1rem;
    font-size: 1.5rem;
    color: var(--tq-muted);
}
.tq-search__form { display: flex; gap: 0.75rem; margin-top: 1rem; }
.tq-search__form input {
    flex: 1;
    padding: 0.75rem 1rem;
    background: var(--tq-void);
    border: 1px solid var(--tq-line);
    color: var(--tq-bone);
    font-size: 14px;
}

/* Drawer */
.tq-drawer {
    position: fixed;
    inset: 0;
    z-index: 940;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s, visibility 0.35s;
}
.tq-drawer[aria-hidden="false"] { opacity: 1; visibility: visible; }
.tq-drawer__sheet {
    position: absolute;
    top: 0; right: 0;
    width: min(320px, 85vw);
    height: 100%;
    background: var(--tq-surface);
    padding: calc(var(--tq-nav-h) + 1rem) 2rem 2rem;
    transform: translateX(100%);
    transition: transform 0.4s var(--tq-ease);
    clip-path: polygon(20px 0, 100% 0, 100% 100%, 0 100%);
}
.tq-drawer[aria-hidden="false"] .tq-drawer__sheet { transform: translateX(0); }
.tq-drawer__nav li { border-bottom: 1px solid var(--tq-line); }
.tq-drawer__nav a {
    display: block;
    padding: 1rem 0;
    font-size: 15px;
    color: var(--tq-bone);
}
.tq-drawer__tel { margin-top: 2rem; font-size: 14px; }

/* Back to top */
.tq-top {
    position: fixed;
    bottom: 2rem; right: 2rem;
    z-index: 850;
    width: 42px; height: 42px;
    background: var(--tq-brass);
    color: var(--tq-ink);
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.35s var(--tq-ease);
}
.tq-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }

/* Toast */
.tq-toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--tq-surface);
    border: 1px solid var(--tq-brass);
    color: var(--tq-bone);
    padding: 0.75rem 1.5rem;
    font-size: 13px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s var(--tq-ease);
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%);
}
.tq-toast.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

body.drawer-open { overflow: hidden; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
    .tq-cut-index { display: none; }
    .tq-stats { grid-template-columns: repeat(2, 1fr); }
    .tq-stats__cell--wide, .tq-stats__cell--accent { grid-column: span 2; }
    .tq-stats__cell--tall { grid-row: span 1; }
    .tq-atelier { grid-template-columns: 1fr; }
    .tq-story__grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
    .tq-nav__pill { display: none; }
    .tq-burger { display: flex; }
    .tq-hero__grid { grid-template-columns: 1fr; }
    .tq-hero__stage { min-height: 320px; order: -1; }
    .tq-hero__spec { left: auto; right: 0; bottom: 0; }
    .tq-hero__scroll { left: 5vw; }
    .tq-craft-step { grid-template-columns: 1fr; direction: ltr !important; }
    .tq-craft-step--flip { direction: ltr !important; }
    .tq-craft-step__fig { order: -1; }
    .tq-values-grid { grid-template-columns: 1fr; }
    .tq-about-story, .tq-about-team, .tq-access-grid,
    .tq-shop-layout, .tq-faq-layout, .tq-contact-grid,
    .tq-cart-layout { grid-template-columns: 1fr; }
    .tq-process-steps { grid-template-columns: repeat(2, 1fr); }
    .tq-foot__base { flex-direction: column; }
}

@media (max-width: 600px) {
    .tq-nav { padding: 0.75rem 1rem; }
    .tq-hero { padding-left: 5vw; padding-right: 5vw; }
    .tq-hero__title-row--cut { margin-left: 0; }
    .tq-hero__facts { gap: 1.5rem; }
    .tq-cut--story { padding-left: 5vw; padding-right: 5vw; }
    .tq-section-head, .tq-cut--stats,
    .tq-cut--craft, .tq-cut--stack, .tq-cut--lab,
    .tq-cut--voices, .tq-cut--chrono, .tq-cut--cta,
    .tq-page-hero, .tq-about-story, .tq-about-values,
    .tq-shop-layout, .tq-faq-layout, .tq-contact-grid,
    .tq-cart-layout, .tq-legal { padding-left: 5vw; padding-right: 5vw; }
    .tq-hscroll { padding-left: 5vw; padding-right: 5vw; }
    .tq-stack__card { grid-template-columns: 1fr; }
    .tq-voice { position: relative; max-width: 100%; margin-bottom: 1rem; }
    .tq-voices { min-height: auto; }
    .tq-voice--back, .tq-voice--mid, .tq-voice--front {
        position: relative; top: auto; left: auto; right: auto;
        transform: none; opacity: 1;
    }
    .tq-process-steps { grid-template-columns: 1fr; }
    .tq-product-grid { grid-template-columns: 1fr; }
}

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