:root {
    --bg: #040403;
    --bg-2: #0c0b0a;
    --ink: #f6f1e8;
    --muted: #9b9386;
    --gold: #d4b07a;
    --gold-2: #efd3a0;
    --line: rgba(212, 176, 122, 0.22);
    --danger: #c45c4a;
    --font-serif: "Cormorant Garamond", "Times New Roman", serif;
    --font-sans: "Outfit", system-ui, sans-serif;
    --font-display: "Syne", "Outfit", sans-serif;
    --ease: cubic-bezier(0.19, 1, 0.22, 1);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: var(--font-sans);
    font-weight: 300;
    letter-spacing: 0.01em;
}

body { overflow-x: hidden; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }

::selection { background: var(--gold); color: #111; }

.vignette {
    pointer-events: none;
    position: fixed;
    inset: 0;
    z-index: 70;
    background: radial-gradient(ellipse at center, transparent 42%, rgba(0,0,0,.55) 100%);
}

.grain {
    pointer-events: none;
    position: fixed;
    inset: 0;
    z-index: 80;
    opacity: 0.16;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.cursor {
    width: 14px;
    height: 14px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 90;
    transform: translate(-50%, -50%);
    transition: width .35s var(--ease), height .35s var(--ease), background .35s;
    mix-blend-mode: difference;
}

.cursor.is-hover {
    width: 64px;
    height: 64px;
    background: rgba(212,176,122,.12);
}

@media (pointer: coarse) { .cursor { display: none; } }

body.is-inner .loader { display: none; }

.loader {
    position: fixed;
    inset: 0;
    background: #050505;
    z-index: 100;
    display: grid;
    place-items: center;
    transition: opacity .9s var(--ease), visibility .9s;
}

.loader.is-done {
    opacity: 0;
    visibility: hidden;
}

.loader-frame {
    width: min(72vw, 640px);
    aspect-ratio: 2.39 / 1;
    border: 1px solid rgba(212,176,122,.35);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    background:
        radial-gradient(circle at 70% 20%, rgba(212,176,122,.18), transparent 45%),
        #070706;
}

.loader-name {
    font-family: var(--font-serif);
    font-size: clamp(42px, 8vw, 88px);
    font-weight: 500;
    letter-spacing: 0.22em;
}

.loader-bar {
    width: 180px;
    height: 1px;
    background: rgba(255,255,255,.12);
    overflow: hidden;
}

.loader-bar span {
    display: block;
    height: 100%;
    width: 0;
    background: var(--gold);
    animation: load 1.4s var(--ease) forwards;
}

@keyframes load { to { width: 100%; } }

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 32px;
    background: linear-gradient(to bottom, rgba(4,4,3,.88), transparent);
    backdrop-filter: blur(8px);
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 13px;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    position: relative;
    color: var(--ink);
}

.nav-logo-word {
    display: inline-block;
    white-space: nowrap;
}

.nav-logo-word span {
    display: inline-block;
}

.nav-logo.is-animated[data-anim="shine"] .nav-logo-word,
.nav-logo.is-animated[data-anim="scramble"] .nav-logo-word {
    background-image: linear-gradient(90deg, var(--ink) 0%, var(--gold) 42%, var(--ink) 78%);
    background-size: 220% 100%;
    background-position: 100% 0;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    animation: logoShine var(--logo-speed, 7s) ease-in-out infinite;
}

.nav-logo.is-animated[data-anim="pulse"] .nav-logo-word {
    animation: logoPulse var(--logo-speed, 7s) ease-in-out infinite;
}

.nav-logo.is-animated[data-anim="fade"] .nav-logo-word span {
    opacity: 0;
    transform: translateY(6px);
    animation: logoLetterIn 0.7s var(--ease) forwards;
    animation-delay: calc(var(--i, 0) * 0.055s);
}

.nav-logo.is-animated[data-hover="1"] .nav-logo-word {
    animation-play-state: paused;
}

.nav-logo.is-animated[data-hover="1"]:hover .nav-logo-word,
.nav-logo.is-animated[data-hover="1"]:focus-visible .nav-logo-word {
    animation-play-state: running;
}

.nav-logo.is-animated[data-loop="0"] .nav-logo-word,
.nav-logo.is-animated[data-loop="0"] .nav-logo-word span {
    animation-iteration-count: 1;
}

.nav-logo.is-animated[data-anim="shine"]::after,
.nav-logo.is-animated[data-anim="pulse"]::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0.35);
    opacity: 0.7;
    pointer-events: none;
}

@keyframes logoShine {
    0% { background-position: 100% 0; }
    100% { background-position: -120% 0; }
}

@keyframes logoPulse {
    0%, 100% { color: var(--ink); text-shadow: none; }
    50% { color: var(--gold); text-shadow: 0 0 18px rgba(212, 176, 122, 0.35); }
}

@keyframes logoLetterIn {
    to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
    .nav-logo.is-animated .nav-logo-word,
    .nav-logo.is-animated .nav-logo-word span,
    .nav-logo.is-animated::after {
        animation: none !important;
        color: var(--ink);
        -webkit-text-fill-color: currentColor;
        background: none;
        text-shadow: none;
        opacity: 1;
        transform: none;
    }
}

.nav-links {
    display: flex;
    gap: 28px;
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    font-family: var(--font-display);
}

.nav-links a.is-active { color: var(--gold); }

.nav-cta {
    border: 1px solid var(--gold);
    padding: 8px 16px;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-family: var(--font-display);
}

.menu-toggle {
    display: none;
    background: none;
    border: 0;
    width: 36px;
    height: 16px;
    position: relative;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--ink);
}

.menu-toggle::before { top: 0; }
.menu-toggle span { top: 7px; }
.menu-toggle::after { bottom: 0; }

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background:
        radial-gradient(900px 520px at 78% 18%, rgba(212,176,122,.22), transparent 55%),
        radial-gradient(700px 420px at 12% 80%, rgba(48, 78, 92, .22), transparent 50%),
        linear-gradient(180deg, #070605, #040403 70%);
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 8% 18% 8%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212,176,122,.35), transparent);
    pointer-events: none;
}

.hero-letterbox {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 14px 32px;
    font-family: var(--font-display);
    font-size: 10px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    background: #050504;
    border-block: 1px solid rgba(212,176,122,.12);
    z-index: 2;
}

.hero-letterbox-top { padding-top: 86px; }

.hero-timecode {
    font-variant-numeric: tabular-nums;
    color: var(--ink);
}

.hero-avail { color: var(--muted); }

.hero-avail i {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #7dba7a;
    margin-right: 8px;
    box-shadow: 0 0 0 0 rgba(125,186,122,.7);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    70% { box-shadow: 0 0 0 8px rgba(125,186,122,0); }
}

.hero-stage {
    flex: 1;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 48px;
    align-items: center;
    padding: 28px 48px 36px;
    min-height: 0;
}

.hero-role {
    font-family: var(--font-display);
    font-size: 11px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0 0 18px;
}

.hero-title {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: clamp(72px, 11vw, 168px);
    line-height: 0.8;
    letter-spacing: -0.045em;
    margin: 0;
}

.hero-title span { display: block; }

.hero-line {
    font-family: var(--font-serif);
    font-size: clamp(20px, 2.1vw, 30px);
    font-style: italic;
    max-width: 28ch;
    line-height: 1.25;
    margin: 28px 0 32px;
    color: #e8dfd0;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-screen {
    position: relative;
    height: min(62vh, 560px);
    perspective: 1400px;
}

.hero-screen-glow {
    position: absolute;
    inset: 10% 8%;
    background: radial-gradient(circle, rgba(212,176,122,.28), transparent 68%);
    filter: blur(32px);
    z-index: 0;
}

.hero-stills {
    position: relative;
    height: 100%;
}

.hero-still {
    position: absolute;
    margin: 0;
    overflow: hidden;
    background: #111;
    border: 1px solid rgba(246,241,232,.12);
    box-shadow: 0 30px 80px rgba(0,0,0,.45);
    transition: transform .45s var(--ease);
}

.hero-still img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.9) contrast(1.08);
    animation: ken 18s var(--ease) infinite alternate;
}

@keyframes ken {
    from { transform: scale(1.04) translateY(0); }
    to { transform: scale(1.14) translateY(-3%); }
}

.hero-still figcaption {
    position: absolute;
    left: 12px;
    bottom: 12px;
    display: flex;
    gap: 10px;
    align-items: baseline;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 8px 24px #000;
}

.hero-still figcaption b {
    font-family: var(--font-serif);
    font-size: 22px;
    letter-spacing: 0;
    font-weight: 500;
    color: var(--gold);
}

.hero-still-1 {
    width: 72%;
    height: 78%;
    right: 0;
    top: 0;
    z-index: 1;
}

.hero-still-2 {
    width: 48%;
    height: 52%;
    left: 0;
    bottom: 8%;
    z-index: 3;
}

.hero-still-3 {
    width: 38%;
    height: 40%;
    right: 6%;
    bottom: 0;
    z-index: 2;
}

.hero-screen-meta {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    display: flex;
    justify-content: space-between;
    font-family: var(--font-display);
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--muted);
}

.hero-scroll {
    color: var(--gold);
}

.kicker {
    font-size: 11px;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    color: var(--gold);
    font-family: var(--font-display);
}

.hero-meta { color: var(--muted); font-size: 14px; max-width: 36ch; }

.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gold);
    color: #111;
    padding: 14px 22px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-size: 12px;
    font-family: var(--font-display);
    border: 0;
    cursor: pointer;
    transition: transform .4s var(--ease), background .3s;
}

.btn-gold:hover { transform: translateY(-2px); background: var(--gold-2); }

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--line);
    padding: 13px 20px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-size: 12px;
    font-family: var(--font-display);
}

.section {
    padding: 120px 36px;
    position: relative;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 56px;
    gap: 16px;
}

.section-index {
    font-size: 11px;
    letter-spacing: 0.3em;
    color: var(--gold);
    text-transform: uppercase;
    font-family: var(--font-display);
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 500;
    line-height: 0.95;
    margin: 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 64px;
    align-items: start;
}

.about-copy {
    font-size: 20px;
    line-height: 1.6;
    color: #d8d1c6;
    white-space: pre-line;
}

.stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 40px;
}

.stat {
    border-top: 1px solid var(--line);
    padding-top: 16px;
}

.stat b {
    display: block;
    font-family: var(--font-serif);
    font-size: 42px;
    font-weight: 500;
}

.stat span { color: var(--muted); font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; }

.services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

.service {
    background: var(--bg);
    padding: 36px 28px 40px;
    min-height: 220px;
    transition: background .4s var(--ease);
}

.service:hover {
    background: linear-gradient(180deg, rgba(212,176,122,.08), var(--bg));
}

.service h3 {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 500;
    margin: 18px 0 10px;
}

.service p { color: var(--muted); margin: 0; line-height: 1.55; }

.service .num { color: var(--gold); letter-spacing: 0.2em; font-size: 11px; font-family: var(--font-display); }

.reel-wrap {
    padding: 40px 0 80px;
    background: linear-gradient(180deg, transparent, rgba(212,176,122,.04), transparent);
}

.reel-head {
    padding: 0 36px 28px;
}

.reel {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    padding: 10px 36px 40px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    cursor: grab;
}

.reel::-webkit-scrollbar { display: none; }
.reel.is-dragging { cursor: grabbing; }

.reel-card {
    flex: 0 0 min(78vw, 460px);
    scroll-snap-align: start;
    position: relative;
    color: #fff;
}

.reel-card figure {
    margin: 0;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #111;
    position: relative;
}

.reel-card figure::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.78));
}

.reel-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
    transition: transform 1.1s var(--ease);
    filter: saturate(0.9) contrast(1.08);
}

.reel-card:hover img { transform: scale(1.12); }

.reel-card .icon {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.16);
    background: rgba(0,0,0,.35);
    backdrop-filter: blur(8px);
    z-index: 2;
}

.reel-card .icon img { transform: none; filter: none; }

.reel-index {
    position: absolute;
    top: 14px;
    right: 18px;
    z-index: 2;
    font-family: var(--font-serif);
    font-size: 42px;
    line-height: 1;
    color: var(--gold);
    font-weight: 500;
    text-shadow: 0 10px 30px rgba(0,0,0,.6);
}

.reel-caption {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 16px;
    z-index: 2;
}

.reel-caption span {
    display: block;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(246,241,232,.72);
}

.reel-caption strong {
    display: block;
    color: #fff;
    font-weight: 400;
    font-family: var(--font-serif);
    font-size: 30px;
    line-height: 1;
    margin-bottom: 6px;
}

.reel-nav {
    display: flex;
    gap: 10px;
    padding: 0 36px;
}

.reel-nav button {
    width: 48px;
    height: 48px;
    border: 1px solid var(--line);
    background: transparent;
    color: var(--ink);
    cursor: pointer;
}

.marquee {
    overflow: hidden;
    border-block: 1px solid var(--line);
    padding: 16px 0;
    white-space: nowrap;
    background: #070605;
}

.marquee-track {
    display: inline-flex;
    gap: 48px;
    animation: marquee 32s linear infinite;
    font-size: 12px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold);
    font-family: var(--font-display);
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 64px;
    align-items: start;
}

.contact-form {
    display: grid;
    gap: 14px;
    position: relative;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.field {
    background: rgba(246, 241, 232, 0.03);
    border: 1px solid var(--line);
    padding: 12px 16px 10px;
    transition: border-color .25s var(--ease), background .25s var(--ease);
}

.field:focus-within {
    border-color: var(--gold);
    background: rgba(212, 176, 122, 0.06);
}

.field label {
    display: block;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0;
    font-family: var(--font-display);
}

.field input,
.field select,
.field textarea {
    width: 100%;
    background: transparent;
    border: 0;
    padding: 8px 0 4px;
    outline: none;
    color: var(--ink);
}

.field input::placeholder,
.field textarea::placeholder {
    color: rgba(155, 147, 134, 0.7);
}

.field select {
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%23d4b07a' d='M1 1l5 5 5-5'/></svg>");
    background-repeat: no-repeat;
    background-position: right 0 center;
    padding-right: 22px;
    cursor: pointer;
}

.field-brief textarea {
    min-height: 140px;
    resize: none;
    line-height: 1.5;
}

.form-note {
    margin: 2px 0 0;
    color: var(--muted);
    font-size: 13px;
}

.contact-submit {
    justify-content: center;
    width: 100%;
    padding: 16px 22px;
}

.form-alert {
    display: none;
    padding: 12px 14px;
    border: 1px solid var(--line);
}

.form-alert.is-ok { display: block; border-color: #3d6b45; color: #b7d7bc; }
.form-alert.is-err { display: block; border-color: var(--danger); color: #f0c4bc; }

.site-footer {
    padding: 48px 36px 36px;
    border-top: 1px solid var(--line);
    background: #050504;
}

.footer-word {
    font-family: var(--font-serif);
    font-size: clamp(48px, 12vw, 160px);
    line-height: 0.8;
    letter-spacing: -0.04em;
    margin: 0 0 28px;
}

.footer-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    color: var(--muted);
    font-size: 13px;
    flex-wrap: wrap;
}

.project-overlay {
    position: fixed;
    inset: 0;
    z-index: 70;
    background: rgba(5,5,5,.96);
    display: none;
    overflow: auto;
}

.project-overlay.is-open { display: block; }

.project-overlay-inner {
    max-width: 1100px;
    margin: 8vh auto 10vh;
    padding: 0 24px 80px;
}

.project-overlay-close {
    position: sticky;
    top: 20px;
    float: right;
    background: transparent;
    border: 1px solid var(--line);
    color: var(--ink);
    width: 44px;
    height: 44px;
    cursor: pointer;
}

.modal-cover {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    margin: 24px 0 32px;
}

.modal h2,
.project-overlay h2 {
    font-family: var(--font-serif);
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 500;
    margin: 0;
}

.project-page { padding: 140px 36px 80px; max-width: 1100px; }

.store-page,
.store-detail {
    padding: 140px 36px 100px;
    max-width: 1100px;
    margin: 0 auto;
}

.store-head { max-width: 36rem; margin-bottom: 56px; }

.store-title {
    font-family: var(--font-display);
    font-size: clamp(56px, 10vw, 96px);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 0.9;
    margin: 8px 0 18px;
}

.store-lead {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.55;
    max-width: 34ch;
}

.store-section { margin-top: 48px; }

.store-label {
    font-size: 13px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--muted);
    margin: 0 0 18px;
    font-family: var(--font-display);
}

.store-featured {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

.store-feature {
    display: block;
    border-radius: 22px;
    overflow: hidden;
    background: #12110f;
    border: 1px solid var(--line);
    transition: transform .45s var(--ease), border-color .45s;
}

.store-feature:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 176, 122, 0.45);
}

.store-feature-cover {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    background:
        radial-gradient(circle at 30% 20%, rgba(212,176,122,.28), transparent 46%),
        linear-gradient(160deg, #1a1612, #0a0908);
}

.store-feature-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px 16px;
}

.store-feature-meta strong,
.store-card-body strong {
    display: block;
    font-weight: 500;
    font-size: 16px;
}

.store-feature-meta em,
.store-card-body em {
    display: block;
    font-style: normal;
    color: var(--muted);
    font-size: 13px;
}

.store-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 28px;
}

.store-card {
    display: grid;
    grid-template-columns: 64px 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 14px 4px;
    border-bottom: 1px solid rgba(246, 241, 232, 0.06);
}

.store-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
    background: #1a1612;
}

.store-icon-md { width: 44px; height: 44px; border-radius: 12px; }
.store-icon-lg { width: 118px; height: 118px; border-radius: 26px; }
.store-icon.is-fallback {
    display: grid;
    place-items: center;
    font-family: var(--font-display);
    color: var(--gold);
}

.store-card-line {
    display: block;
    color: var(--muted);
    font-size: 13px;
    margin-top: 2px;
}

.store-open,
.store-get {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 68px;
    height: 28px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(246, 241, 232, 0.1);
    color: #5ea3ff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
}

.store-get {
    margin-top: 0;
    height: 36px;
    min-width: 86px;
    background: #5ea3ff;
    color: #fff;
}

.store-get.is-static {
    background: rgba(246, 241, 232, 0.1);
    color: var(--muted);
}

.store-empty { color: var(--muted); }
.store-empty a { color: var(--gold); }

.store-detail-head {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 28px;
    align-items: center;
    margin: 28px 0 36px;
}

.store-detail-title {
    font-family: var(--font-display);
    font-size: clamp(34px, 5vw, 56px);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 0.95;
    margin: 0 0 8px;
}

.store-detail-sub {
    font-size: 20px;
    color: var(--muted);
    margin: 0 0 6px;
}

.store-detail-seller {
    margin: 0 0 6px;
    color: #5ea3ff;
    font-size: 14px;
    font-weight: 500;
}

.store-detail-meta {
    color: var(--muted);
    font-size: 13px;
    margin: 0;
}

.store-detail-action { align-self: start; padding-top: 6px; }

.store-shots-wrap {
    position: relative;
    margin: 0 -36px 48px;
}

.store-shots {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 8px 56px 8px;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    mask-image: linear-gradient(to right, transparent, #000 48px, #000 calc(100% - 48px), transparent);
}

.store-shots::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
    background: transparent;
}

.store-shots.is-dragging { cursor: grabbing; scroll-behavior: auto; }

.store-shot {
    flex: 0 0 auto;
    margin: 0;
    scroll-snap-align: start;
}

.store-shot img,
.store-cover {
    display: block;
    width: min(280px, 68vw);
    height: auto;
    max-height: min(560px, 68vh);
    object-fit: contain;
    border-radius: 22px;
    background: #11100e;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.38);
}

.store-shots-nav {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 40px;
    height: 40px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(12, 11, 10, 0.78);
    color: var(--ink);
    cursor: pointer;
    transform: translateY(-50%);
}

.store-shots-nav.is-prev { left: 10px; }
.store-shots-nav.is-next { right: 10px; }
.store-shots-nav:disabled { opacity: 0; pointer-events: none; }

.store-cover {
    width: 100%;
    max-height: none;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    margin-bottom: 40px;
}

.store-detail-body { max-width: 720px; }

.store-copy {
    margin-bottom: 40px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(246, 241, 232, 0.06);
}

.store-copy:last-of-type { border-bottom: 0; }

.store-copy h2 {
    font-family: var(--font-display);
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0 0 16px;
}

.store-prose p,
.store-copy p {
    font-size: 17px;
    line-height: 1.7;
    color: #e8e1d5;
    margin: 0 0 16px;
}

.store-prose p:last-child { margin-bottom: 0; }

.store-prose ul {
    margin: 0 0 16px;
    padding: 0 0 0 1.15em;
    color: #e8e1d5;
}

.store-prose li {
    font-size: 17px;
    line-height: 1.65;
    margin: 0 0 8px;
}

.store-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 8px 0 32px;
}

.store-chips span {
    border: 1px solid var(--line);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    color: var(--muted);
}

.store-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 18px 24px;
    margin: 0 0 40px;
    padding: 24px 0;
    border-top: 1px solid rgba(246, 241, 232, 0.08);
    border-bottom: 1px solid rgba(246, 241, 232, 0.08);
}

.store-info dt {
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 4px;
}

.store-info dd { margin: 0; }

.store-back { margin: 8px 0 48px; }

.store-home .section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    animation: rise 1.05s var(--ease) forwards;
}

.delay-1 { animation-delay: .12s; }
.delay-2 { animation-delay: .24s; }
.delay-3 { animation-delay: .36s; }

@keyframes rise { to { opacity: 1; transform: none; } }

@media (max-width: 980px) {
    .nav-links { display: none; }
    .menu-toggle { display: block; }
    .nav.is-open .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 72px;
        right: 20px;
        background: #0d0c0b;
        padding: 20px;
        border: 1px solid var(--line);
    }
    .hero-stage, .about-grid, .contact-grid, .services { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .hero-screen { height: 42vh; margin-top: 8px; }
    .hero-timecode,
    .hero-screen-meta,
    .hero-letterbox-bottom span { display: none; }
    .hero-letterbox-top { padding-top: 78px; }
    .hero-stage { padding: 16px 20px 24px; }
    .hero-title { font-size: clamp(64px, 18vw, 96px); }
    .stat-row { grid-template-columns: 1fr; }
    .section, .reel-head, .reel-nav, .site-footer { padding-left: 20px; padding-right: 20px; }
    .reel { padding-left: 20px; padding-right: 20px; }
    .store-page, .store-detail { padding-left: 20px; padding-right: 20px; }
    .store-grid { grid-template-columns: 1fr; }
    .store-detail-head { grid-template-columns: auto 1fr; }
    .store-detail-action { grid-column: 2; padding-top: 0; }
    .store-shots-wrap { margin-left: -20px; margin-right: -20px; }
    .store-shots { padding-left: 20px; padding-right: 20px; mask-image: none; }
    .store-shots-nav { display: none; }
}

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