/* toravi.online — Dashboard Hybrid Layout 89 */
:root {
    --tr-ink: #1a2332;
    --tr-midnight: #0f1623;
    --tr-slate: #2d3a4f;
    --tr-gold: #c9a962;
    --tr-gold-dim: #a88b4a;
    --tr-sage: #8a9a8c;
    --tr-cream: #f4f1ea;
    --tr-paper: #faf8f4;
    --tr-mist: #e8e4dc;
    --tr-accent: #3d5a6c;
    --tr-teal: #4a6b7c;
    --tr-font-sans: 'Sora', 'Noto Sans JP', sans-serif;
    --tr-font-serif: 'Libre Baskerville', 'Noto Serif JP', serif;
    --tr-radius: 4px;
    --tr-radius-lg: 12px;
    --tr-shadow: 0 8px 32px rgba(15, 22, 35, 0.08);
    --tr-shadow-deep: 0 20px 60px rgba(15, 22, 35, 0.14);
    --tr-ease: cubic-bezier(0.22, 1, 0.36, 1);
    --tr-command-h: 64px;
    --tr-telemetry-h: 28px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--tr-font-sans);
    font-size: 15px;
    line-height: 1.65;
    color: var(--tr-ink);
    background: var(--tr-paper);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
body.drawer-open, body.search-open { overflow: hidden; }
body:not(.page-home) { --tr-telemetry-h: 0px; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--tr-accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--tr-gold-dim); }
address { font-style: normal; }

.tr-micro {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--tr-sage);
    margin-bottom: 0.6rem;
}

/* Buttons */
.tr-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.75rem 1.5rem;
    font-family: var(--tr-font-sans);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    border: none;
    border-radius: var(--tr-radius);
    cursor: pointer;
    transition: all 0.25s var(--tr-ease);
}
.tr-btn--gold {
    background: var(--tr-gold);
    color: var(--tr-midnight);
}
.tr-btn--gold:hover {
    background: var(--tr-gold-dim);
    color: var(--tr-midnight);
    transform: translateY(-1px);
    box-shadow: var(--tr-shadow);
}
.tr-btn--ghost {
    background: transparent;
    color: var(--tr-ink);
    border: 1px solid var(--tr-mist);
}
.tr-btn--ghost:hover { border-color: var(--tr-gold); color: var(--tr-gold-dim); }
.tr-btn--light {
    color: rgba(255, 255, 255, 0.85);
    border-color: rgba(255, 255, 255, 0.25);
}
.tr-btn--light:hover {
    color: var(--tr-gold);
    border-color: var(--tr-gold);
    background: rgba(255, 255, 255, 0.06);
}
.tr-btn--sm { padding: 0.5rem 1rem; font-size: 12px; }
.tr-btn--lg { padding: 1rem 2rem; font-size: 14px; }
.tr-btn--block { width: 100%; }

.tr-chip {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.25rem 0.6rem;
    background: rgba(201, 169, 98, 0.15);
    color: var(--tr-gold-dim);
    border-radius: 2px;
}

.tr-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--tr-accent);
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}
.tr-link:hover { border-bottom-color: var(--tr-gold); }

/* Command header */
.tr-command {
    position: sticky;
    top: 0;
    z-index: 900;
    background: rgba(250, 248, 244, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--tr-mist);
    transition: box-shadow 0.3s;
}
.tr-command.is-scrolled { box-shadow: var(--tr-shadow); }
.tr-command__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: var(--tr-command-h);
    gap: 1rem;
}
.tr-command__brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--tr-ink);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.06em;
    flex-shrink: 0;
}
.tr-command__brand:hover { color: var(--tr-ink); }
.tr-command__sigil {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--tr-midnight);
    color: var(--tr-gold);
    border-radius: 50%;
    font-size: 14px;
}
.tr-command__name em { font-style: normal; color: var(--tr-sage); font-weight: 400; }
.tr-command__nav {
    display: flex;
    gap: 0.25rem;
}
.tr-command__link {
    padding: 0.5rem 0.85rem;
    font-size: 12px;
    font-weight: 500;
    color: var(--tr-slate);
    border-radius: var(--tr-radius);
    transition: all 0.2s;
}
.tr-command__link:hover,
.tr-command__link.is-active {
    color: var(--tr-ink);
    background: var(--tr-cream);
}
.tr-command__tools {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.tr-command__tool {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: none;
    border: 1px solid transparent;
    border-radius: var(--tr-radius);
    color: var(--tr-slate);
    cursor: pointer;
    transition: all 0.2s;
}
.tr-command__tool:hover { border-color: var(--tr-mist); color: var(--tr-ink); }
.tr-command__tool em {
    position: absolute;
    top: 2px;
    right: 2px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    font-size: 9px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    text-align: center;
    background: var(--tr-gold);
    color: var(--tr-midnight);
    border-radius: 8px;
}
.tr-command__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}
.tr-command__burger span {
    display: block;
    height: 2px;
    background: var(--tr-ink);
    transition: transform 0.3s;
}
.tr-command__telemetry {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: var(--tr-telemetry-h);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--tr-sage);
    background: var(--tr-midnight);
    border-top: 1px solid rgba(201, 169, 98, 0.2);
}
.tr-command__status i {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #5cb85c;
    border-radius: 50%;
    margin-right: 4px;
    animation: tr-pulse 2s infinite;
}
.tr-command__layout { margin-left: auto; opacity: 0.6; }
@keyframes tr-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

/* Drawer & Search */
.tr-drawer, .tr-search {
    position: fixed;
    inset: 0;
    z-index: 1000;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
}
.tr-drawer[aria-hidden="false"], .tr-search[aria-hidden="false"] {
    pointer-events: auto;
    opacity: 1;
}
.tr-drawer__veil, .tr-search__veil {
    position: absolute;
    inset: 0;
    background: rgba(15, 22, 35, 0.5);
}
.tr-drawer__panel, .tr-search__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100%;
    background: var(--tr-paper);
    padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.35s var(--tr-ease);
}
.tr-drawer[aria-hidden="false"] .tr-drawer__panel,
.tr-search[aria-hidden="false"] .tr-search__panel { transform: translateX(0); }
.tr-drawer__panel ul { list-style: none; margin-top: 1rem; }
.tr-drawer__panel li a {
    display: block;
    padding: 0.85rem 0;
    font-size: 16px;
    color: var(--tr-ink);
    border-bottom: 1px solid var(--tr-mist);
}
.tr-drawer__tel { margin-top: 2rem; font-size: 14px; }
.tr-search__panel { width: min(480px, 90vw); padding: 3rem 2rem; }
.tr-search__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--tr-slate);
}
.tr-search__form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}
.tr-search__form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid var(--tr-mist);
    border-radius: var(--tr-radius);
    font-family: inherit;
    font-size: 14px;
    background: var(--tr-cream);
}

/* Main */
.tr-main { min-height: 60vh; }
.tr-main--hybrid { padding: 0; }

/* Reveal */
.tr-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--tr-ease), transform 0.7s var(--tr-ease);
    transition-delay: var(--delay, 0s);
}
.tr-reveal.is-visible { opacity: 1; transform: none; }

/* §01 Orbital Viewport Hero */
.tr-hero {
    position: relative;
    margin: 0;
    background: var(--tr-midnight);
}
.tr-hero__canvas {
    position: relative;
    min-height: clamp(620px, 92vh, 900px);
    max-width: 1600px;
    margin: 0 auto;
    overflow: hidden;
}
.tr-hero__viewport {
    position: absolute;
    inset: 0;
    clip-path: polygon(0 0, 100% 0, 100% 78%, 0 100%);
}
.tr-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}
.tr-hero__scan {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(201, 169, 98, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 169, 98, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}
.tr-hero__veil {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(15, 22, 35, 0.92) 0%, rgba(15, 22, 35, 0.55) 42%, rgba(15, 22, 35, 0.15) 68%, transparent 100%),
        linear-gradient(0deg, rgba(15, 22, 35, 0.85) 0%, transparent 45%);
    pointer-events: none;
}
.tr-hero__rail {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 3;
    pointer-events: none;
}
.tr-hero__rail span {
    writing-mode: vertical-rl;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(201, 169, 98, 0.45);
}
.tr-hero__hud {
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}
.tr-hero__compass {
    position: relative;
    width: 108px;
    height: 108px;
    background: rgba(15, 22, 35, 0.75);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 169, 98, 0.25);
    border-radius: 50%;
    padding: 0.5rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}
.tr-hero__compass svg { width: 100%; height: 100%; }
.tr-hero__compass-ring {
    fill: none;
    stroke: rgba(201, 169, 98, 0.3);
    stroke-width: 1;
}
.tr-hero__compass-inner {
    fill: none;
    stroke: rgba(255, 255, 255, 0.08);
    stroke-width: 1;
}
.tr-hero__compass-tick {
    stroke: rgba(201, 169, 98, 0.5);
    stroke-width: 1.5;
}
.tr-hero__needle { transform-origin: 50px 50px; transition: transform 1.2s var(--tr-ease); }
.tr-hero__needle polygon { fill: var(--tr-gold); }
.tr-hero__needle-hub { fill: var(--tr-cream); }
.tr-hero__bearing {
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--tr-font-serif);
    font-size: 13px;
    font-weight: 700;
    color: var(--tr-gold);
    background: var(--tr-midnight);
    padding: 0.1rem 0.45rem;
    border-radius: 2px;
    border: 1px solid rgba(201, 169, 98, 0.3);
}
.tr-hero__bearing-label {
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 8px;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.4);
    white-space: nowrap;
}
.tr-hero__hud-status {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}
.tr-hero__hud-status i {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #5cb85c;
    border-radius: 50%;
    animation: tr-pulse 2s infinite;
}
.tr-hero__inset {
    position: absolute;
    top: 18%;
    right: 12%;
    width: min(200px, 28vw);
    z-index: 3;
    transform: rotate(-3deg);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
    border: 3px solid rgba(255, 255, 255, 0.12);
    overflow: hidden;
    margin: 0;
}
.tr-hero__inset-img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.tr-hero__inset figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.4rem 0.6rem;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--tr-gold);
    background: rgba(15, 22, 35, 0.8);
}
.tr-hero__content {
    position: absolute;
    left: clamp(1.5rem, 5vw, 4rem);
    bottom: clamp(7rem, 14vh, 9rem);
    z-index: 4;
    max-width: min(580px, 88vw);
}
.tr-hero__content .tr-micro { color: rgba(201, 169, 98, 0.7); }
.tr-hero__title {
    font-family: var(--tr-font-serif);
    font-weight: 400;
    line-height: 1.08;
    margin-bottom: 1.25rem;
}
.tr-hero__title-line {
    display: block;
    font-size: clamp(2.4rem, 6.5vw, 4.5rem);
    color: var(--tr-cream);
}
.tr-hero__title-line--accent em {
    font-style: italic;
    color: var(--tr-gold);
}
.tr-hero__lead {
    font-size: clamp(14px, 1.6vw, 16px);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.62);
    margin-bottom: 1.75rem;
    max-width: 480px;
}
.tr-hero__actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.tr-hero__telemetry {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: rgba(15, 22, 35, 0.92);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(201, 169, 98, 0.2);
}
.tr-hero__stat {
    padding: 1.1rem 1.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.3s;
}
.tr-hero__stat:last-child { border-right: none; }
.tr-hero__stat:hover { background: rgba(201, 169, 98, 0.06); }
.tr-hero__stat strong {
    display: block;
    font-family: var(--tr-font-serif);
    font-size: clamp(1.4rem, 2.5vw, 1.85rem);
    color: var(--tr-cream);
    line-height: 1;
    margin-bottom: 0.25rem;
}
.tr-hero__stat span {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}
.tr-hero__stat--accent strong { color: var(--tr-gold); }

/* §02 Ribbon */
.tr-hybrid--ribbon {
    padding: 4rem 0;
    background: var(--tr-cream);
    border-top: 1px solid var(--tr-mist);
    border-bottom: 1px solid var(--tr-mist);
}
.tr-ribbon__head {
    max-width: 1440px;
    margin: 0 auto 2rem;
    padding: 0 1.5rem;
}
.tr-ribbon__head h2 {
    font-family: var(--tr-font-serif);
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 0.5rem;
}
.tr-ribbon__head h2 em { font-style: italic; color: var(--tr-accent); }
.tr-ribbon {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding: 1.5rem;
    padding: 0.5rem 1.5rem 1.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}
.tr-ribbon::-webkit-scrollbar { height: 4px; }
.tr-ribbon::-webkit-scrollbar-thumb { background: var(--tr-gold); border-radius: 2px; }
.tr-ribbon__card {
    flex: 0 0 min(300px, 75vw);
    scroll-snap-align: start;
    background: var(--tr-paper);
    border-radius: var(--tr-radius-lg);
    overflow: hidden;
    box-shadow: var(--tr-shadow);
    transition: transform 0.3s var(--tr-ease);
}
.tr-ribbon__card:hover { transform: translateY(-4px); }
.tr-ribbon__visual { aspect-ratio: 4/3; overflow: hidden; }
.tr-ribbon__img { width: 100%; height: 100%; object-fit: cover; }
.tr-ribbon__body { padding: 1.25rem; }
.tr-ribbon__body h3 { font-size: 15px; margin: 0.5rem 0 0.25rem; }
.tr-ribbon__body p { font-size: 13px; color: var(--tr-gold-dim); font-weight: 600; }
.tr-ribbon__hint {
    text-align: center;
    font-size: 11px;
    color: var(--tr-sage);
    margin-top: 1rem;
}

/* §03 Story Pin */
.tr-hybrid--story { position: relative; }
.tr-story-pin {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 200vh;
    max-width: 1440px;
    margin: 0 auto;
}
.tr-story-pin__visual {
    position: sticky;
    top: calc(var(--tr-command-h) + var(--tr-telemetry-h));
    height: calc(100vh - var(--tr-command-h) - var(--tr-telemetry-h));
    overflow: hidden;
}
.tr-story-pin__layer {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s;
}
.tr-story-pin__layer.is-active { opacity: 1; }
.tr-story-pin__img { width: 100%; height: 100%; object-fit: cover; }
.tr-story-pin__bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255,255,255,0.2);
}
.tr-story-pin__bar span {
    display: block;
    height: 100%;
    background: var(--tr-gold);
    width: 33%;
    transition: width 0.4s;
}
.tr-story-pin__text {
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.tr-story-seg {
    display: none;
    padding: 2rem 0;
}
.tr-story-seg.is-active { display: block; }
.tr-story-seg h2 {
    font-family: var(--tr-font-serif);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 1rem;
}
.tr-story-seg h2 em { font-style: italic; color: var(--tr-accent); }
.tr-story-seg p { color: var(--tr-slate); margin-bottom: 1rem; }
.tr-story-seg__quote {
    font-family: var(--tr-font-serif);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--tr-accent);
    border-left: 3px solid var(--tr-gold);
    padding-left: 1.25rem;
    margin: 1.5rem 0;
}

/* §04 Season */
.tr-hybrid--interactive {
    padding: 5rem 1.5rem;
    background: var(--tr-midnight);
    color: var(--tr-cream);
}
.tr-interactive__head {
    max-width: 640px;
    margin: 0 auto 2.5rem;
    text-align: center;
}
.tr-interactive__head .tr-micro { color: rgba(201,169,98,0.7); }
.tr-interactive__head h2 {
    font-family: var(--tr-font-serif);
    font-size: clamp(1.5rem, 3vw, 2rem);
}
.tr-interactive__head h2 em { font-style: italic; color: var(--tr-gold); }
.tr-interactive__head p { color: rgba(255,255,255,0.6); margin-top: 0.5rem; }
.tr-season {
    max-width: 960px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: center;
}
.tr-season__dial {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.tr-season__btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.25rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--tr-radius);
    color: rgba(255,255,255,0.7);
    font-family: inherit;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.25s;
    min-width: 140px;
}
.tr-season__btn:hover,
.tr-season__btn.is-active {
    background: rgba(201,169,98,0.15);
    border-color: var(--tr-gold);
    color: var(--tr-gold);
}
.tr-season__icon { font-size: 18px; }
.tr-season__panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    background: rgba(255,255,255,0.04);
    border-radius: var(--tr-radius-lg);
    padding: 1.5rem;
    border: 1px solid rgba(255,255,255,0.08);
}
.tr-season__visual { border-radius: var(--tr-radius); overflow: hidden; }
.tr-season__img { width: 100%; height: 100%; object-fit: cover; min-height: 200px; }
.tr-season__readout h3 { font-family: var(--tr-font-serif); font-size: 1.25rem; margin: 0.75rem 0 0.5rem; }
.tr-season__price { font-size: 18px; font-weight: 700; color: var(--tr-gold); margin-bottom: 0.5rem; }
.tr-season__desc { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 1rem; }

/* §05 Slant experimental */
.tr-hybrid--slant {
    padding: 6rem 1.5rem;
    position: relative;
    overflow: hidden;
}
.tr-hybrid--slant::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--tr-cream);
    clip-path: polygon(0 8%, 100% 0, 100% 92%, 0 100%);
    z-index: 0;
}
.tr-slant {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
    align-items: center;
}
.tr-slant__title {
    font-family: var(--tr-font-serif);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 1.25;
    margin-bottom: 1.25rem;
}
.tr-slant__title em { font-style: italic; color: var(--tr-accent); }
.tr-slant__list {
    list-style: none;
    margin-top: 1.5rem;
}
.tr-slant__list li {
    padding: 0.6rem 0;
    padding-left: 1.25rem;
    position: relative;
    font-size: 14px;
    color: var(--tr-slate);
    border-bottom: 1px solid var(--tr-mist);
}
.tr-slant__list li::before {
    content: '⊕';
    position: absolute;
    left: 0;
    color: var(--tr-gold);
    font-size: 10px;
}
.tr-slant__visual {
    position: relative;
    transform: rotate(2deg);
    box-shadow: var(--tr-shadow-deep);
}
.tr-slant__img { width: 100%; border-radius: var(--tr-radius-lg); }
.tr-slant__badge {
    position: absolute;
    top: -12px;
    right: -12px;
    background: var(--tr-midnight);
    color: var(--tr-gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 0.4rem 0.8rem;
    border-radius: 2px;
}

/* §06 Metrics */
.tr-hybrid--metrics {
    padding: 5rem 1.5rem;
    max-width: 1440px;
    margin: 0 auto;
}
.tr-metrics__head h2 {
    font-family: var(--tr-font-serif);
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 2rem;
}
.tr-metrics__head h2 em { font-style: italic; color: var(--tr-accent); }
.tr-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
.tr-metric {
    background: var(--tr-midnight);
    color: var(--tr-cream);
    padding: 2rem 1.5rem;
    border-radius: var(--tr-radius-lg);
    border-top: 3px solid var(--tr-gold);
}
.tr-metric__num {
    display: block;
    font-family: var(--tr-font-serif);
    font-size: 2.5rem;
    color: var(--tr-gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.tr-metric h3 { font-size: 14px; margin-bottom: 0.35rem; }
.tr-metric p { font-size: 12px; color: rgba(255,255,255,0.5); }

/* §07 Kanban */
.tr-hybrid--kanban {
    padding: 5rem 1.5rem;
    background: var(--tr-cream);
}
.tr-kanban__head {
    max-width: 1440px;
    margin: 0 auto 2.5rem;
    text-align: center;
}
.tr-kanban__head h2 {
    font-family: var(--tr-font-serif);
    font-size: clamp(1.5rem, 3vw, 2rem);
}
.tr-kanban__head h2 em { font-style: italic; color: var(--tr-accent); }
.tr-kanban {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.tr-kanban__lane {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--tr-sage);
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--tr-gold);
}
.tr-kanban__card {
    background: var(--tr-paper);
    padding: 1.25rem;
    border-radius: var(--tr-radius);
    box-shadow: var(--tr-shadow);
    border-left: 3px solid var(--tr-mist);
    transition: border-color 0.3s, transform 0.3s;
}
.tr-kanban__card:hover { border-left-color: var(--tr-gold); transform: translateY(-2px); }
.tr-kanban__card--done { border-left-color: var(--tr-gold); background: rgba(201,169,98,0.08); }
.tr-kanban__id {
    font-size: 10px;
    font-weight: 700;
    color: var(--tr-gold-dim);
}
.tr-kanban__card h4 { font-size: 14px; margin: 0.35rem 0; }
.tr-kanban__card p { font-size: 12px; color: var(--tr-slate); }

/* §08 Overlap */
.tr-hybrid--overlap {
    padding: 5rem 1.5rem;
    max-width: 1440px;
    margin: 0 auto;
}
.tr-overlap__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}
.tr-overlap__head h2 {
    font-family: var(--tr-font-serif);
    font-size: clamp(1.5rem, 3vw, 2rem);
}
.tr-overlap__head h2 em { font-style: italic; color: var(--tr-accent); }
.tr-overlap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
}
.tr-overlap__item {
    position: relative;
    transition: transform 0.35s var(--tr-ease);
}
.tr-overlap__item--shift { transform: translateY(24px); }
.tr-overlap__item--deep { transform: translateY(48px); z-index: 2; }
.tr-overlap__item--float { transform: translateY(12px); z-index: 1; }
.tr-overlap__item:hover { transform: translateY(-4px) !important; z-index: 10; }
.tr-overlap__link {
    display: block;
    background: var(--tr-paper);
    border-radius: var(--tr-radius-lg);
    overflow: hidden;
    box-shadow: var(--tr-shadow);
    color: inherit;
}
.tr-overlap__link:hover { color: inherit; }
.tr-overlap__visual { aspect-ratio: 4/3; overflow: hidden; }
.tr-overlap__img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.tr-overlap__link:hover .tr-overlap__img { transform: scale(1.04); }
.tr-overlap__body { padding: 1.25rem; }
.tr-overlap__body h3 { font-size: 14px; margin: 0.5rem 0 0.25rem; }
.tr-overlap__body p { font-size: 13px; font-weight: 600; color: var(--tr-gold-dim); }
.tr-overlap__cart {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 32px;
    height: 32px;
    background: var(--tr-gold);
    color: var(--tr-midnight);
    border: none;
    border-radius: 50%;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.2s;
    z-index: 5;
}
.tr-overlap__item:hover .tr-overlap__cart { opacity: 1; }

/* §09 Notify */
.tr-hybrid--notify {
    padding: 5rem 1.5rem;
    background: var(--tr-midnight);
    color: var(--tr-cream);
}
.tr-notify__head {
    max-width: 640px;
    margin: 0 auto 2rem;
    text-align: center;
}
.tr-notify__head .tr-micro { color: rgba(201,169,98,0.7); }
.tr-notify__head h2 {
    font-family: var(--tr-font-serif);
    font-size: clamp(1.5rem, 3vw, 2rem);
}
.tr-notify__head h2 em { font-style: italic; color: var(--tr-gold); }
.tr-notify {
    max-width: 560px;
    margin: 0 auto;
    position: relative;
    min-height: 180px;
}
.tr-notify__item {
    display: none;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-left: 3px solid var(--tr-gold);
    border-radius: var(--tr-radius);
    padding: 1.5rem 1.75rem;
}
.tr-notify__item.is-active { display: block; animation: tr-fadeIn 0.5s; }
@keyframes tr-fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.tr-notify__meta {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0.75rem;
}
.tr-notify__from { color: var(--tr-gold); font-weight: 600; }
.tr-notify__item p { font-size: 14px; line-height: 1.7; margin-bottom: 0.75rem; }
.tr-notify__item cite { font-size: 12px; color: rgba(255,255,255,0.5); font-style: normal; }
.tr-notify__dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}
.tr-notify__dots button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.2);
    cursor: pointer;
    transition: background 0.2s;
}
.tr-notify__dots button.is-active { background: var(--tr-gold); }

/* §10 Convert */
.tr-hybrid--convert {
    padding: 5rem 1.5rem 6rem;
    background: linear-gradient(135deg, var(--tr-cream) 0%, var(--tr-paper) 100%);
}
.tr-convert {
    max-width: 960px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: var(--tr-paper);
    border-radius: var(--tr-radius-lg);
    padding: 3rem;
    box-shadow: var(--tr-shadow-deep);
    border: 1px solid var(--tr-mist);
}
.tr-convert__copy h2 {
    font-family: var(--tr-font-serif);
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1rem;
}
.tr-convert__copy h2 em { font-style: italic; color: var(--tr-accent); }
.tr-convert__perks {
    list-style: none;
    margin-top: 1.25rem;
}
.tr-convert__perks li {
    padding: 0.4rem 0;
    font-size: 13px;
    color: var(--tr-slate);
    padding-left: 1.25rem;
    position: relative;
}
.tr-convert__perks li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--tr-gold);
    font-weight: 700;
}
.tr-convert__form label {
    display: block;
    margin-bottom: 1rem;
}
.tr-convert__form label span {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--tr-sage);
    margin-bottom: 0.35rem;
}
.tr-convert__form input,
.tr-convert__form select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--tr-mist);
    border-radius: var(--tr-radius);
    font-family: inherit;
    font-size: 14px;
    background: var(--tr-cream);
}
.tr-convert__note { font-size: 11px; color: var(--tr-sage); margin-top: 0.75rem; text-align: center; }

/* Inner pages */
.tr-page-head {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 1.5rem 2rem;
    text-align: center;
}
.tr-page-head h1 {
    font-family: var(--tr-font-serif);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    line-height: 1.25;
    margin-bottom: 0.75rem;
}
.tr-page-head h1 em { font-style: italic; color: var(--tr-accent); }
.tr-page-head__lead { color: var(--tr-slate); max-width: 560px; margin: 0 auto; }

/* About */
.tr-about-story {
    max-width: 1100px;
    margin: 0 auto 4rem;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.tr-about-story h2 { font-family: var(--tr-font-serif); font-size: 1.75rem; margin-bottom: 1rem; }
.tr-about-story p { color: var(--tr-slate); margin-bottom: 1rem; }
.tr-about-story__img { border-radius: var(--tr-radius-lg); box-shadow: var(--tr-shadow); }
.tr-about-mission {
    background: var(--tr-midnight);
    color: var(--tr-cream);
    padding: 4rem 1.5rem;
    margin-bottom: 4rem;
}
.tr-about-mission__inner { max-width: 1000px; margin: 0 auto; }
.tr-about-mission h2 {
    font-family: var(--tr-font-serif);
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 2rem;
    text-align: center;
}
.tr-about-mission h2 em { font-style: italic; color: var(--tr-gold); }
.tr-about-mission__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.tr-about-mission__grid article {
    padding: 1.5rem;
    background: rgba(255,255,255,0.04);
    border-radius: var(--tr-radius);
    border-top: 2px solid var(--tr-gold);
}
.tr-about-mission__grid h3 { font-size: 15px; margin-bottom: 0.5rem; color: var(--tr-gold); }
.tr-about-mission__grid p { font-size: 13px; color: rgba(255,255,255,0.6); }
.tr-timeline {
    max-width: 800px;
    margin: 0 auto 4rem;
    padding: 0 1.5rem;
}
.tr-timeline h2 {
    font-family: var(--tr-font-serif);
    font-size: 1.75rem;
    margin-bottom: 2rem;
    text-align: center;
}
.tr-timeline h2 em { font-style: italic; color: var(--tr-accent); }
.tr-timeline__track {
    list-style: none;
    position: relative;
    padding-left: 2rem;
    border-left: 2px solid var(--tr-gold);
}
.tr-timeline__node { position: relative; padding-bottom: 2.5rem; }
.tr-timeline__year {
    position: absolute;
    left: -2rem;
    transform: translateX(-50%);
    background: var(--tr-gold);
    color: var(--tr-midnight);
    font-size: 11px;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 2px;
}
.tr-timeline__card {
    background: var(--tr-cream);
    padding: 1.25rem 1.5rem;
    border-radius: var(--tr-radius);
    margin-left: 1rem;
}
.tr-timeline__card h3 { font-size: 15px; margin-bottom: 0.35rem; }
.tr-timeline__card p { font-size: 13px; color: var(--tr-slate); }
.tr-about-values {
    max-width: 1000px;
    margin: 0 auto 4rem;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.tr-about-values__img { border-radius: var(--tr-radius-lg); }
.tr-about-values h2 { font-family: var(--tr-font-serif); font-size: 1.75rem; margin-bottom: 1rem; }
.tr-about-values h2 em { font-style: italic; color: var(--tr-accent); }
.tr-about-values__list { list-style: none; margin: 1.5rem 0; }
.tr-about-values__list li {
    padding: 0.6rem 0;
    font-size: 14px;
    color: var(--tr-slate);
    border-bottom: 1px solid var(--tr-mist);
}
.tr-about-location {
    max-width: 640px;
    margin: 0 auto 4rem;
    padding: 2rem 1.5rem;
    text-align: center;
    background: var(--tr-cream);
    border-radius: var(--tr-radius-lg);
}
.tr-about-location h2 { font-family: var(--tr-font-serif); font-size: 1.5rem; margin-bottom: 1rem; }
.tr-about-location h2 em { font-style: italic; color: var(--tr-accent); }

/* Shop */
.tr-shop {
    max-width: 1280px;
    margin: 0 auto 3rem;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 2rem;
}
.tr-shop__filter {
    background: var(--tr-cream);
    padding: 1.5rem;
    border-radius: var(--tr-radius-lg);
    height: fit-content;
    position: sticky;
    top: calc(var(--tr-command-h) + 1.5rem);
}
.tr-shop__filter h2 { font-size: 14px; margin-bottom: 1.25rem; }
.tr-filter-group { margin-bottom: 1.25rem; }
.tr-filter-group h3 { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--tr-sage); margin-bottom: 0.5rem; }
.tr-filter-chips { display: flex; flex-wrap: wrap; gap: 0.35rem; }
.tr-filter-chip {
    padding: 0.35rem 0.65rem;
    font-size: 11px;
    font-family: inherit;
    background: var(--tr-paper);
    border: 1px solid var(--tr-mist);
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.2s;
}
.tr-filter-chip:hover,
.tr-filter-chip.is-active {
    background: var(--tr-midnight);
    color: var(--tr-gold);
    border-color: var(--tr-midnight);
}
.tr-shop__toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}
.tr-shop__count { font-size: 14px; color: var(--tr-slate); }
.tr-shop__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}
.tr-shop-card {
    background: var(--tr-paper);
    border-radius: var(--tr-radius-lg);
    overflow: hidden;
    box-shadow: var(--tr-shadow);
    transition: transform 0.3s;
}
.tr-shop-card:hover { transform: translateY(-3px); }
.tr-shop-card__fig { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.tr-shop-card__img { width: 100%; height: 100%; object-fit: cover; }
.tr-shop-card__wish {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tr-slate);
    transition: color 0.2s;
}
.tr-shop-card__wish.is-wished { color: #e74c3c; }
.tr-shop-card__body { padding: 1.25rem; }
.tr-shop-card__meta { display: flex; gap: 0.35rem; margin-bottom: 0.5rem; flex-wrap: wrap; }
.tr-shop-card__body h3 { font-size: 15px; margin-bottom: 0.35rem; }
.tr-shop-card__body p { font-size: 13px; color: var(--tr-slate); margin-bottom: 1rem; line-height: 1.5; }
.tr-shop-card__foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.tr-shop-card__price { font-weight: 700; color: var(--tr-gold-dim); }
.tr-shop__empty { grid-column: 1 / -1; text-align: center; padding: 3rem; color: var(--tr-sage); }
.tr-shop-cta {
    text-align: center;
    padding: 3rem 1.5rem 4rem;
    background: var(--tr-cream);
}
.tr-shop-cta h2 { font-family: var(--tr-font-serif); font-size: 1.5rem; margin-bottom: 0.5rem; }
.tr-shop-cta p { color: var(--tr-slate); margin-bottom: 1.25rem; }

/* FAQ */
.tr-faq {
    max-width: 900px;
    margin: 0 auto 3rem;
    padding: 0 1.5rem;
}
.tr-faq__tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--tr-mist);
    padding-bottom: 1rem;
}
.tr-faq__tab {
    padding: 0.6rem 1.25rem;
    font-family: inherit;
    font-size: 13px;
    font-weight: 500;
    background: none;
    border: 1px solid var(--tr-mist);
    border-radius: var(--tr-radius);
    cursor: pointer;
    transition: all 0.2s;
    color: var(--tr-slate);
}
.tr-faq__tab:hover,
.tr-faq__tab.is-active {
    background: var(--tr-midnight);
    color: var(--tr-gold);
    border-color: var(--tr-midnight);
}
.tr-faq__panel { display: none; }
.tr-faq__panel.is-active { display: block; }
.tr-faq__panel-title { font-size: 1.1rem; margin-bottom: 1rem; color: var(--tr-accent); }
.tr-accordion__item { border-bottom: 1px solid var(--tr-mist); }
.tr-accordion__trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.1rem 0;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    list-style: none;
}
.tr-accordion__trigger::-webkit-details-marker { display: none; }
.tr-accordion__icon { transition: transform 0.3s; flex-shrink: 0; margin-left: 1rem; }
.tr-accordion__item[open] .tr-accordion__icon { transform: rotate(180deg); }
.tr-accordion__body { padding: 0 0 1.25rem; }
.tr-accordion__body p { font-size: 14px; color: var(--tr-slate); line-height: 1.7; }
.tr-faq-cta {
    text-align: center;
    padding: 3rem 1.5rem 4rem;
    background: var(--tr-cream);
    border-radius: var(--tr-radius-lg);
    max-width: 640px;
    margin: 0 auto 4rem;
}
.tr-faq-cta h2 { font-family: var(--tr-font-serif); font-size: 1.5rem; margin-bottom: 0.5rem; }

/* Contact */
.tr-contact {
    max-width: 1100px;
    margin: 0 auto 3rem;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2.5rem;
}
.tr-contact-card {
    background: var(--tr-cream);
    padding: 1.5rem;
    border-radius: var(--tr-radius-lg);
    margin-bottom: 1rem;
}
.tr-contact-card h2 { font-size: 14px; margin-bottom: 1rem; color: var(--tr-accent); }
.tr-contact-card p { font-size: 14px; margin-bottom: 0.75rem; }
.tr-contact-access { list-style: none; font-size: 13px; color: var(--tr-slate); }
.tr-contact-access li { padding: 0.3rem 0; }
.tr-contact__form {
    background: var(--tr-paper);
    padding: 2rem;
    border-radius: var(--tr-radius-lg);
    box-shadow: var(--tr-shadow);
    border: 1px solid var(--tr-mist);
}
.tr-contact__form h2 { font-size: 16px; margin-bottom: 1.5rem; }
.tr-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.tr-contact__form label,
.tr-convert__form label {
    display: block;
    margin-bottom: 1rem;
}
.tr-contact__form label span,
.tr-convert__form label span {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--tr-sage);
    margin-bottom: 0.35rem;
}
.tr-contact__form label span em { color: var(--tr-gold); font-style: normal; }
.tr-contact__form input,
.tr-contact__form select,
.tr-contact__form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--tr-mist);
    border-radius: var(--tr-radius);
    font-family: inherit;
    font-size: 14px;
    background: var(--tr-cream);
}
.tr-form-check {
    display: flex !important;
    align-items: center;
    gap: 0.5rem;
    font-size: 13px;
}
.tr-form-check input { width: auto !important; }
.tr-form-note { font-size: 11px; color: var(--tr-sage); margin-top: 0.75rem; }
.tr-contact-map {
    max-width: 1100px;
    margin: 0 auto 4rem;
    padding: 0 1.5rem;
}
.tr-contact-map h2 { font-size: 16px; margin-bottom: 1rem; }
.tr-map-embed {
    border-radius: var(--tr-radius-lg);
    overflow: hidden;
    border: 1px solid var(--tr-mist);
}
.tr-map-embed iframe { width: 100%; height: 320px; border: 0; display: block; }
.tr-map-caption { font-size: 12px; color: var(--tr-sage); margin-top: 0.5rem; }

/* Cart */
.tr-cart {
    max-width: 1100px;
    margin: 0 auto 4rem;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 2rem;
    align-items: start;
}
.tr-cart-loading, .tr-cart-empty { text-align: center; padding: 3rem; color: var(--tr-sage); }
.tr-cart-empty p { margin-bottom: 1rem; }
.tr-cart-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 1.25rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--tr-mist);
}
.tr-cart-item__img img { border-radius: var(--tr-radius); width: 100%; object-fit: cover; }
.tr-cart-item__body h3 { font-size: 15px; margin-bottom: 0.25rem; }
.tr-cart-item__body > p { font-size: 12px; color: var(--tr-sage); margin-bottom: 0.75rem; }
.tr-cart-item__controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.tr-qty {
    display: flex;
    align-items: center;
    border: 1px solid var(--tr-mist);
    border-radius: var(--tr-radius);
}
.tr-qty button {
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: var(--tr-slate);
}
.tr-qty .qty-val {
    min-width: 28px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
}
.tr-cart-item__price { font-weight: 700; color: var(--tr-gold-dim); margin-left: auto; }
.tr-cart-item__remove {
    background: none;
    border: none;
    font-size: 12px;
    color: var(--tr-sage);
    cursor: pointer;
    text-decoration: underline;
}
.tr-cart__summary {
    background: var(--tr-cream);
    padding: 1.5rem;
    border-radius: var(--tr-radius-lg);
    position: sticky;
    top: calc(var(--tr-command-h) + 1.5rem);
}
.tr-cart__summary h2 { font-size: 15px; margin-bottom: 1.25rem; }
.tr-cart-summary__row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    padding: 0.4rem 0;
    color: var(--tr-slate);
}
.tr-cart-summary__row--discount { color: #27ae60; }
.tr-cart-summary__total {
    border-top: 1px solid var(--tr-mist);
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    font-size: 16px;
}
.tr-cart-coupon { margin: 1.25rem 0; }
.tr-cart-coupon label { font-size: 11px; font-weight: 600; color: var(--tr-sage); }
.tr-cart-coupon__row { display: flex; gap: 0.5rem; margin-top: 0.35rem; }
.tr-cart-coupon__row input {
    flex: 1;
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--tr-mist);
    border-radius: var(--tr-radius);
    font-size: 13px;
}
.tr-cart-coupon__hint { font-size: 10px; color: var(--tr-sage); margin-top: 0.35rem; }
.tr-cart-checkout { width: 100%; margin-top: 1rem; }
.tr-cart-note { font-size: 11px; color: var(--tr-sage); margin-top: 0.75rem; text-align: center; }

/* Legal */
.tr-legal {
    max-width: 760px;
    margin: 0 auto;
    padding: 3rem 1.5rem 5rem;
}
.tr-legal__head { margin-bottom: 2.5rem; border-bottom: 1px solid var(--tr-mist); padding-bottom: 1.5rem; }
.tr-legal__head h1 { font-family: var(--tr-font-serif); font-size: 2rem; margin-bottom: 0.5rem; }
.tr-legal__updated { font-size: 13px; color: var(--tr-sage); }
.tr-legal__body section { margin-bottom: 2.5rem; }
.tr-legal__body h2 { font-size: 1.15rem; margin-bottom: 0.75rem; color: var(--tr-accent); }
.tr-legal__body h3 { font-size: 0.95rem; margin: 1rem 0 0.5rem; }
.tr-legal__body p { margin-bottom: 0.75rem; color: var(--tr-slate); font-size: 14px; line-height: 1.75; }
.tr-legal__body ul { margin: 0.5rem 0 1rem 1.25rem; }
.tr-legal__body li { font-size: 14px; color: var(--tr-slate); margin-bottom: 0.35rem; line-height: 1.6; }

/* Footer */
.tr-footer {
    position: relative;
    background: var(--tr-midnight);
    color: var(--tr-cream);
    margin-top: 4rem;
}
.tr-footer__slant {
    position: absolute;
    top: -40px;
    left: 0;
    right: 0;
    height: 40px;
    background: var(--tr-midnight);
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
}
.tr-footer__body { padding: 3rem 1.5rem 1.5rem; max-width: 1440px; margin: 0 auto; }
.tr-footer__primary {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}
.tr-footer__logo {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--tr-cream);
}
.tr-footer__logo span { color: var(--tr-gold); font-weight: 400; }
.tr-footer__tag { font-size: 13px; color: rgba(255,255,255,0.5); margin: 0.5rem 0 1rem; }
.tr-footer__identity address,
.tr-footer__identity p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.7; }
.tr-footer__identity a { color: var(--tr-gold); }
.tr-footer__hours { margin-top: 0.5rem; }
.tr-footer__col h4,
.tr-footer__signal h4 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--tr-gold);
    margin-bottom: 1rem;
}
.tr-footer__col ul { list-style: none; }
.tr-footer__col li a {
    display: block;
    padding: 0.35rem 0;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    transition: color 0.2s;
}
.tr-footer__col li a:hover { color: var(--tr-gold); }
.tr-footer__signal p { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 0.75rem; }
.tr-newsletter { display: flex; gap: 0.5rem; }
.tr-newsletter input {
    flex: 1;
    padding: 0.6rem 0.85rem;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--tr-radius);
    background: rgba(255,255,255,0.05);
    color: #fff;
    font-size: 13px;
}
.tr-footer__baseline {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 11px;
    color: rgba(255,255,255,0.35);
}

/* Back to top */
.tr-rise {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background: var(--tr-midnight);
    color: var(--tr-gold);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.3s var(--tr-ease);
    z-index: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--tr-shadow);
}
.tr-rise.is-visible { opacity: 1; visibility: visible; transform: none; }
.tr-rise:hover { background: var(--tr-gold); color: var(--tr-midnight); }

/* Toast */
.tr-toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--tr-midnight);
    color: var(--tr-cream);
    padding: 0.75rem 1.5rem;
    border-radius: var(--tr-radius);
    font-size: 13px;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s var(--tr-ease);
    border-left: 3px solid var(--tr-gold);
    max-width: 90vw;
    text-align: center;
}
.tr-toast.is-visible { opacity: 1; visibility: visible; transform: translateX(-50%); }

/* Dark mode */
body.mode-dark {
    --tr-ink: #e8e4dc;
    --tr-paper: #0f1623;
    --tr-cream: #1a2332;
    --tr-mist: #2d3a4f;
    --tr-slate: #a0aab8;
}
body.mode-dark .tr-command { background: rgba(15, 22, 35, 0.95); }
body.mode-dark .icon-sun { display: none; }
body.mode-dark .icon-moon { display: block; }
.icon-moon { display: none; }

/* Responsive */
@media (max-width: 1100px) {
    .tr-hero__inset { right: 8%; width: 160px; top: 14%; }
    .tr-metrics { grid-template-columns: repeat(2, 1fr); }
    .tr-kanban { grid-template-columns: repeat(2, 1fr); }
    .tr-overlap { grid-template-columns: repeat(2, 1fr); }
    .tr-overlap__item--shift,
    .tr-overlap__item--deep,
    .tr-overlap__item--float { transform: none; }
    .tr-footer__primary { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
    .tr-command__nav { display: none; }
    .tr-command__burger { display: flex; }
    .tr-hero__canvas { min-height: clamp(560px, 100svh, 780px); }
    .tr-hero__viewport { clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%); }
    .tr-hero__inset { display: none; }
    .tr-hero__hud { top: 1.25rem; right: 1.25rem; }
    .tr-hero__compass { width: 84px; height: 84px; }
    .tr-hero__content { bottom: clamp(6.5rem, 12vh, 8rem); left: 1.25rem; }
    .tr-hero__telemetry { grid-template-columns: repeat(2, 1fr); }
    .tr-hero__stat:nth-child(2) { border-right: none; }
    .tr-hero__stat:nth-child(1),
    .tr-hero__stat:nth-child(2) { border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
    .tr-hero__rail { display: none; }
    .tr-story-pin { grid-template-columns: 1fr; min-height: auto; }
    .tr-story-pin__visual { position: relative; height: 50vh; top: 0; }
    .tr-story-pin__text { padding: 2rem 1.5rem; }
    .tr-story-seg { display: block !important; padding: 1.5rem 0; border-bottom: 1px solid var(--tr-mist); }
    .tr-season { grid-template-columns: 1fr; }
    .tr-season__dial { flex-direction: row; flex-wrap: wrap; }
    .tr-season__panel { grid-template-columns: 1fr; }
    .tr-slant { grid-template-columns: 1fr; }
    .tr-slant__visual { order: -1; max-width: 400px; margin: 0 auto; }
    .tr-convert { grid-template-columns: 1fr; padding: 2rem; }
    .tr-shop { grid-template-columns: 1fr; }
    .tr-shop__filter {
        position: fixed;
        inset: 0;
        z-index: 950;
        transform: translateX(-100%);
        transition: transform 0.35s;
        border-radius: 0;
        overflow-y: auto;
    }
    .tr-shop__filter.is-open { transform: translateX(0); }
    .tr-contact { grid-template-columns: 1fr; }
    .tr-cart { grid-template-columns: 1fr; }
    .tr-cart__summary { position: static; }
    .tr-about-story,
    .tr-about-values { grid-template-columns: 1fr; }
    .tr-about-mission__grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .tr-hero__title-line { font-size: clamp(2rem, 9vw, 2.6rem); }
    .tr-hero__telemetry { grid-template-columns: 1fr 1fr; }
    .tr-hero__stat { padding: 0.85rem 1rem; }
    .tr-metrics { grid-template-columns: 1fr; }
    .tr-kanban { grid-template-columns: 1fr; }
    .tr-overlap { grid-template-columns: 1fr; }
    .tr-form-row { grid-template-columns: 1fr; }
    .tr-footer__primary { grid-template-columns: 1fr; }
    .tr-command__telemetry { font-size: 9px; gap: 0.5rem; }
    .tr-command__layout { display: none; }
    .page-home .tr-command { --tr-telemetry-h: 28px; }
    body:not(.page-home) { --tr-telemetry-h: 0px; }
}

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