/** ───────────────────────────────────────────
    LONEWOLF COLLECTIVE — Stylesheet
    Modern, dark premium vintage aesthetic
   ─────────────────────────────────────────── */

:root {
    /* Palette */
    --bg-primary: #0a0a0b;
    --bg-secondary: #111113;
    --bg-card: #161618;
    --bg-elevated: #1a1a1d;
    --text-primary: #f5f0eb;
    --text-secondary: #a39b93;
    --text-muted: #6b6560;
    --accent-warm: #c4785a;
    --accent-gold: #d4a574;
    --accent-copper: #b87333;
    --border-subtle: rgba(255,255,255,0.06);
    --border-medium: rgba(255,255,255,0.1);
    --glow-warm: rgba(196,120,90,0.15);
    --glow-gold: rgba(212,165,116,0.1);

    /* Typography */
    --font-display: 'Bebas Neue', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --section-pad: clamp(80px, 12vh, 160px);
    --container: min(1280px, 92vw);

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ── Reset & Base ────────────────────────────── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

/* ── Noise Texture (CSS-only) ──────────────── */
.noise-overlay,
.story-noise,
.contact-noise {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 200px 200px;
}

/* ── Typography ────────────────────────────── */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-warm);
    margin-bottom: 1.5rem;
}

.section-label::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--accent-warm);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.05;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.section-desc {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 560px;
    line-height: 1.7;
}

.text-gradient {
    background: linear-gradient(135deg, var(--accent-warm) 0%, var(--accent-gold) 50%, var(--accent-copper) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Buttons ───────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    border-radius: 8px;
    transition: all 0.3s var(--ease-out);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-warm), var(--accent-copper));
    color: #fff;
    box-shadow: 0 4px 24px rgba(196,120,90,0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(196,120,90,0.4);
}

.btn-ghost {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-medium);
}

.btn-ghost:hover {
    background: var(--bg-elevated);
    border-color: var(--accent-warm);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1.5px solid var(--border-medium);
    font-size: 0.9rem;
}

.btn-outline:hover {
    border-color: var(--accent-warm);
    color: var(--accent-warm);
}

/* ── Navigation ────────────────────────────── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s var(--ease-out);
}

.navbar.scrolled {
    background: rgba(10,10,11,0.85);
    backdrop-filter: blur(20px) saturate(1.2);
    -webkit-backdrop-filter: blur(20px) saturate(1.2);
    padding: 14px 0;
    border-bottom: 1px solid var(--border-subtle);
}

.nav-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.wolf-icon {
    width: 36px;
    height: 36px;
    color: var(--accent-warm);
    transition: transform 0.4s var(--ease-out);
}

.logo:hover .wolf-icon {
    transform: rotate(5deg) scale(1.1);
}

.wolf-head {
    stroke-dasharray: 200;
    stroke-dashoffset: 0;
    transition: stroke-dashoffset 1s var(--ease-out);
}

.logo:hover .wolf-head {
    stroke-dashoffset: -20;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.08em;
    color: var(--text-primary);
}

.logo-accent {
    color: var(--accent-warm);
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--accent-warm);
    transition: width 0.3s var(--ease-out);
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s var(--ease-out);
}

/* ── Mobile Menu ───────────────────────────── */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-out);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu a {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.mobile-menu a:hover {
    color: var(--accent-warm);
}

/* ── Hero ──────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: orbFloat 12s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(196,120,90,0.4), transparent 70%);
    top: -10%;
    left: -5%;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(184,115,51,0.3), transparent 70%);
    bottom: -5%;
    right: -10%;
    animation-delay: -4s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212,165,116,0.2), transparent 70%);
    top: 40%;
    right: 20%;
    animation-delay: -8s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 2rem;
}

.badge-line {
    width: 40px;
    height: 1px;
    background: var(--accent-warm);
}

.badge-text {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent-gold);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 12vw, 10rem);
    line-height: 0.9;
    letter-spacing: 0.02em;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
}

.title-line-accent {
    background: linear-gradient(135deg, var(--accent-warm), var(--accent-gold), var(--accent-copper));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.35rem);
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.scroll-indicator span {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--accent-warm), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.7); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ── Collection Section ────────────────────── */
.collection {
    padding: var(--section-pad) 0;
    position: relative;
}

.section-header {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    margin-bottom: 64px;
}

.section-header.center {
    text-align: center;
}

.section-header.center .section-label {
    justify-content: center;
}

.section-header.center .section-label::before {
    display: none;
}

.section-header.center .section-desc {
    margin: 0 auto;
}

.collection-grid {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 28px;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.5s var(--ease-out);
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-medium);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px var(--glow-warm);
}

.card-visual {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.card-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        hsl(var(--hue), 40%, 20%) 0%,
        hsl(var(--hue), 30%, 12%) 50%,
        hsl(var(--hue), 25%, 8%) 100%
    );
    transition: transform 0.6s var(--ease-out);
}

.product-card:hover .card-gradient {
    transform: scale(1.1);
}

.card-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.06;
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255,255,255,0.03) 10px,
        rgba(255,255,255,0.03) 20px
    );
}

.card-content-float {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.card-era {
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: rgba(255,255,255,0.08);
    letter-spacing: 0.05em;
    line-height: 1;
}

.card-icon {
    font-size: 2.5rem;
    filter: grayscale(0.3);
    transition: transform 0.4s var(--ease-out);
}

.product-card:hover .card-icon {
    transform: scale(1.2) rotate(-5deg);
}

.card-info {
    padding: 24px;
}

.card-category {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-warm);
    margin-bottom: 10px;
    padding: 4px 12px;
    background: rgba(196,120,90,0.1);
    border-radius: 20px;
}

.card-title {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
    line-height: 1.3;
}

.card-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border-subtle);
}

.card-price {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--accent-gold);
    letter-spacing: 0.03em;
}

.card-condition {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 4px 10px;
    border: 1px solid var(--border-subtle);
    border-radius: 4px;
}

.collection-cta {
    max-width: var(--container);
    margin: 48px auto 0;
    padding: 0 24px;
    text-align: center;
}

/* ── Story Section ─────────────────────────── */
.story {
    position: relative;
    padding: var(--section-pad) 0;
    overflow: hidden;
}

.story-bg {
    position: absolute;
    inset: 0;
    background: var(--bg-secondary);
}

.story-orb {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196,120,90,0.12), transparent 70%);
    filter: blur(60px);
    top: 50%;
    left: 30%;
    transform: translate(-50%, -50%);
    animation: orbDrift 20s ease-in-out infinite;
}

@keyframes orbDrift {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-45%, -55%) scale(1.1); }
}

.story-container {
    position: relative;
    z-index: 2;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.story-visual {
    display: flex;
    justify-content: center;
}

.story-frame {
    position: relative;
    width: 380px;
    height: 480px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
}

.story-art {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #141416 0%, #0d0d0f 100%);
}

.wolf-silhouette {
    width: 200px;
    height: 240px;
    --wolf-fill: rgba(196,120,90,0.15);
    --wolf-stroke: var(--accent-warm);
    animation: wolfBreathe 6s ease-in-out infinite;
}

@keyframes wolfBreathe {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.03); opacity: 0.9; }
}

.moon-glow {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,165,116,0.15), transparent 70%);
    top: 20%;
    right: 15%;
    animation: moonPulse 8s ease-in-out infinite;
}

@keyframes moonPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.2); }
}

.frame-corner {
    position: absolute;
    width: 30px;
    height: 30px;
    border-color: var(--accent-warm);
    opacity: 0.4;
}

.frame-corner.top-left {
    top: 16px;
    left: 16px;
    border-top: 2px solid;
    border-left: 2px solid;
}

.frame-corner.top-right {
    top: 16px;
    right: 16px;
    border-top: 2px solid;
    border-right: 2px solid;
}

.frame-corner.bottom-left {
    bottom: 16px;
    left: 16px;
    border-bottom: 2px solid;
    border-left: 2px solid;
}

.frame-corner.bottom-right {
    bottom: 16px;
    right: 16px;
    border-bottom: 2px solid;
    border-right: 2px solid;
}

.story-text {
    margin-bottom: 40px;
}

.story-text p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.stat {
    text-align: center;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    transition: all 0.4s var(--ease-out);
}

.stat:hover {
    border-color: var(--border-medium);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ── Values Section ────────────────────────── */
.values {
    padding: var(--section-pad) 0;
    position: relative;
}

.values-grid {
    max-width: var(--container);
    margin: 64px auto 0;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.value-card {
    padding: 40px 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    transition: all 0.5s var(--ease-out);
}

.value-card:hover {
    border-color: var(--border-medium);
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.3), 0 0 30px var(--glow-warm);
}

.value-icon {
    width: 48px;
    height: 48px;
    color: var(--accent-warm);
    margin-bottom: 24px;
    transition: transform 0.4s var(--ease-out);
}

.value-card:hover .value-icon {
    transform: scale(1.15) rotate(5deg);
}

.value-card h3 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ── Contact / Newsletter ───────────────────── */
.contact {
    position: relative;
    padding: var(--section-pad) 0;
    overflow: hidden;
}

.contact-bg {
    position: absolute;
    inset: 0;
    background: var(--bg-secondary);
}

.contact-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.orb-a {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(196,120,90,0.3), transparent 70%);
    top: -20%;
    right: -10%;
    animation: orbFloat 15s ease-in-out infinite;
}

.orb-b {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(184,115,51,0.2), transparent 70%);
    bottom: -15%;
    left: -5%;
    animation: orbFloat 18s ease-in-out infinite;
    animation-delay: -6s;
}

.contact-container {
    position: relative;
    z-index: 2;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.contact-content {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.contact-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.newsletter-form {
    margin-bottom: 48px;
}

.form-group {
    display: flex;
    gap: 12px;
    max-width: 480px;
    margin: 0 auto 12px;
}

.form-group input {
    flex: 1;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s ease;
}

.form-group input::placeholder {
    color: var(--text-muted);
}

.form-group input:focus {
    border-color: var(--accent-warm);
    box-shadow: 0 0 0 3px rgba(196,120,90,0.1);
}

.form-note {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.contact-links {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--accent-warm);
}

/* ── Footer ────────────────────────────────── */
.footer {
    padding: 60px 0 32px;
    border-top: 1px solid var(--border-subtle);
}

.footer-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-brand .wolf-icon {
    width: 28px;
    height: 28px;
    color: var(--accent-warm);
}

.footer-logo-text {
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 0.08em;
    color: var(--text-primary);
}

.footer-tagline {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid var(--border-subtle);
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 0.8rem;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--text-primary);
}

/* ── Scroll Reveal Animations ────────────────── */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-up.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger delays */
[data-delay="0"] { transition-delay: 0s; }
[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }
[data-delay="5"] { transition-delay: 0.5s; }

/* ── Responsive ──────────────────────────────── */
@media (max-width: 1024px) {
    .story-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .story-visual {
        order: -1;
    }

    .story-frame {
        width: 300px;
        height: 380px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-pad: 64px;
    }

    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .collection-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .story-stats {
        grid-template-columns: 1fr;
    }

    .form-group {
        flex-direction: column;
    }

    .form-group button {
        width: 100%;
        justify-content: center;
    }

    .contact-links {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        justify-content: center;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .story-frame {
        width: 260px;
        height: 320px;
    }

    .wolf-silhouette {
        width: 160px;
        height: 190px;
    }

    .card-era {
        font-size: 2.5rem;
    }
}

/* ── Reduced Motion ────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal-up, .reveal-left {
        opacity: 1;
        transform: none;
    }
}

/* ── Selection ───────────────────────────────── */
::selection {
    background: rgba(196,120,90,0.3);
    color: var(--text-primary);
}

/* ── Scrollbar ───────────────────────────────── */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--border-medium);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-warm);
}
