/* ============================================================
   Grand Ole Country Show — Rustic Country Skeuomorphic
   Warm barn wood · aged leather · vintage paper · honky-tonk glow
   All the texture and depth, dripping with country soul
   ============================================================ */

:root {
    /* ── Barn & Ranch Palette ─────────────────────────── */
    --barn-red:        #8B2020;
    --barn-red-dark:   #5C1414;
    --barn-red-light:  #A83232;
    --barn-red-glow:   #C24040;
    --barn-red-faded:  #9E4040;

    --cream:           #F0E6CF;
    --cream-dark:      #D9CCAF;
    --cream-light:     #F8F3E6;
    --warm-white:      #FAF5E8;
    --parchment:       #E8DCBF;
    --old-paper:       #E2D5B8;

    --walnut:          #2A1A0C;
    --walnut-mid:      #42291A;
    --walnut-light:    #5E3D28;
    --barnwood:        #6E4E36;
    --barnwood-light:  #8B6B50;
    --charcoal:        #1C1410;

    --amber:           #D4920A;
    --amber-light:     #E8AE30;
    --amber-dark:      #A87008;
    --honey:           #C8A040;
    --dusty-gold:      #BFA050;
    --dusty-gold-light:#D4B870;
    --dusty-gold-dark: #957A38;
    --rust:            #A0522D;
    --rust-light:      #C06838;

    --sage:            #6B7B58;
    --denim:           #4A6880;
    --leather:         #7A5A3C;
    --leather-dark:    #5A3E28;
    --leather-worn:    #9A7A5A;
    --rope:            #C4A878;
    --burlap:          #B8A080;

    /* ── Surfaces ─────────────────────────────────────── */
    --bg-primary:      #F2EADB;
    --bg-section:      #E8DEC8;
    --bg-dark:         var(--walnut);

    /* ── Text ─────────────────────────────────────────── */
    --text-primary:    #2E2218;
    --text-secondary:  #5E4A38;
    --text-light:      var(--cream);
    --text-muted:      #8A7660;

    /* ── Fonts ────────────────────────────────────────── */
    --font-slab:       'Arvo', 'Rockwell', 'Zilla Slab', 'Courier New', serif;
    --font-display:    'Playfair Display', 'Georgia', serif;
    --font-body:       'Source Sans 3', 'Segoe UI', sans-serif;

    /* ── Layout ───────────────────────────────────────── */
    --section-pad:     7rem;
    --container-max:   1200px;
    --radius:          5px;
    --radius-lg:       8px;

    /* ── Shadows ──────────────────────────────────────── */
    --shadow-soft:     0 2px 8px rgba(44,26,12,0.1), 0 1px 2px rgba(44,26,12,0.08);
    --shadow-md:       0 4px 16px rgba(44,26,12,0.14), 0 2px 4px rgba(44,26,12,0.1);
    --shadow-lg:       0 8px 32px rgba(44,26,12,0.2), 0 4px 8px rgba(44,26,12,0.12);
    --shadow-xl:       0 16px 48px rgba(44,26,12,0.28), 0 8px 16px rgba(44,26,12,0.14);
    --shadow-inset:    inset 0 2px 6px rgba(44,26,12,0.18), inset 0 1px 2px rgba(44,26,12,0.12);
    --shadow-emboss:   inset 0 1px 0 rgba(255,245,220,0.18), 0 2px 4px rgba(44,26,12,0.35);

    /* ── Motion ───────────────────────────────────────── */
    --ease:            cubic-bezier(0.4, 0, 0.2, 1);
    --speed:           0.3s;
}

/* ─── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ─── Body — Aged Parchment ──────────────────────────────── */
body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-primary);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    /* Layered paper texture: grain + fibre + warm base */
    background-color: var(--bg-primary);
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.55' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.045'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='6'%3E%3Crect width='6' height='6' fill='%23F2EADB'/%3E%3Crect width='1' height='1' x='2' y='3' fill='%23E0D4BC' opacity='0.4'/%3E%3Crect width='1' height='1' x='5' y='1' fill='%23D8CBB0' opacity='0.2'/%3E%3C/svg%3E");
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--barn-red); text-decoration: none; transition: color var(--speed) var(--ease); }
a:hover { color: var(--rust-light); }

.container { max-width: var(--container-max); margin: 0 auto; padding: 0 2rem; }
.skip-link { position: absolute; top: -100%; left: 1rem; background: var(--barn-red); color: #fff; padding: 0.5rem 1rem; z-index: 10000; border-radius: var(--radius); }
.skip-link:focus { top: 1rem; }

/* ─── Typography — Bold Slab Country ─────────────────────── */
h1, h2, h3, h4, h5 {
    font-family: var(--font-slab);
    font-weight: 700;
    line-height: 1.12;
    color: var(--charcoal);
}
h1 { font-size: clamp(2.6rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.35rem, 2.5vw, 1.85rem); }
h4 { font-size: 1.15rem; }

/* ─── Section Headings — Country Rope & Star ─────────────── */
.section-heading {
    text-align: center;
    margin-bottom: 4rem;
}
.section-heading h2 {
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1rem;
    color: var(--walnut);
    text-shadow: 0 1px 0 rgba(255,245,220,0.5);
}

/* Twisted rope divider */
.rope-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin: 0 auto 1.2rem;
    max-width: 280px;
}
.rope-divider::before,
.rope-divider::after {
    content: '';
    flex: 1;
    height: 4px;
    background:
        repeating-linear-gradient(90deg,
            var(--rope) 0px, var(--rope) 3px,
            var(--burlap) 3px, var(--burlap) 5px,
            var(--dusty-gold-dark) 5px, var(--dusty-gold-dark) 7px,
            var(--rope) 7px, var(--rope) 10px
        );
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(44,26,12,0.2), inset 0 1px 0 rgba(255,255,255,0.15);
}
.rope-divider .rope-star {
    font-size: 1.3rem;
    color: var(--dusty-gold);
    text-shadow: 0 1px 3px rgba(44,26,12,0.3), 0 0 8px rgba(196,163,90,0.2);
    flex-shrink: 0;
}

.section-heading p {
    color: var(--text-secondary);
    max-width: 580px;
    margin: 0 auto;
    font-size: 1.06rem;
    font-style: italic;
}

/* ─── Decorative Dividers ────────────────────────────────── */

/* Barn wood plank strip */
.plank-divider {
    height: 24px;
    position: relative;
    background:
        /* Top/bottom edge shadows */
        linear-gradient(180deg, rgba(0,0,0,0.2) 0%, transparent 3px, transparent calc(100% - 3px), rgba(0,0,0,0.2) 100%),
        /* Board variation */
        repeating-linear-gradient(90deg,
            var(--barnwood) 0px,
            var(--barnwood-light) 60px,
            var(--walnut-light) 100px,
            var(--barnwood) 140px,
            var(--leather-dark) 180px,
            var(--barnwood) 220px,
            var(--walnut-light) 280px,
            var(--barnwood-light) 340px,
            var(--barnwood) 400px
        );
    box-shadow: 0 3px 8px rgba(44,26,12,0.3), inset 0 1px 0 rgba(255,245,220,0.08);
}
/* Board seam lines */
.plank-divider::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(90deg,
        transparent 0px, transparent 98px,
        rgba(0,0,0,0.25) 98px, rgba(0,0,0,0.25) 100px
    );
}
/* Subtle wood grain */
.plank-divider::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: repeating-linear-gradient(
        2deg, transparent, transparent 5px,
        rgba(255,255,255,0.15) 5px, rgba(255,255,255,0.05) 6px
    );
}

/* Leather belt strip with stitching */
.leather-strip {
    height: 32px;
    position: relative;
    background:
        /* Leather grain noise */
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='150' height='150'%3E%3Cfilter id='l'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='2' numOctaves='6' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23l)' opacity='0.07'/%3E%3C/svg%3E"),
        linear-gradient(180deg,
            rgba(255,255,255,0.08) 0%,
            transparent 15%,
            transparent 85%,
            rgba(0,0,0,0.12) 100%
        ),
        linear-gradient(180deg, var(--leather) 0%, var(--leather-dark) 100%);
    border-top: 2px solid rgba(0,0,0,0.25);
    border-bottom: 2px solid rgba(0,0,0,0.3);
    box-shadow: 0 4px 10px rgba(44,26,12,0.35), inset 0 1px 0 rgba(255,245,220,0.1);
}
/* Top stitch row */
.leather-strip::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 24px;
    right: 24px;
    border-top: 2px dashed rgba(196,168,120,0.45);
}
/* Bottom stitch row */
.leather-strip::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 24px;
    right: 24px;
    border-top: 2px dashed rgba(196,168,120,0.45);
}

/* Nail-head dots on leather strip */
.leather-strip .nail {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: radial-gradient(circle at 38% 35%, #D8D0B8 0%, #A09880 40%, #706850 80%, #504830 100%);
    box-shadow: inset 0 1px 2px rgba(255,255,255,0.3), 0 1px 3px rgba(0,0,0,0.4);
}

/* ─── Buttons — Embossed / Stamped ───────────────────────── */
.btn {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    font-family: var(--font-slab);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--speed) var(--ease);
    text-decoration: none;
    line-height: 1.2;
    position: relative;
}

/* Barn Red — primary CTA */
.btn-primary {
    background:
        linear-gradient(180deg,
            rgba(255,255,255,0.1) 0%,
            transparent 40%,
            rgba(0,0,0,0.12) 100%
        ),
        linear-gradient(180deg, var(--barn-red-light) 0%, var(--barn-red) 50%, var(--barn-red-dark) 100%);
    color: var(--cream);
    border: 1px solid var(--barn-red-dark);
    box-shadow:
        var(--shadow-emboss),
        0 4px 10px rgba(92,20,20,0.45);
    text-shadow: 0 -1px 0 rgba(0,0,0,0.35);
}
.btn-primary:hover {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.15) 0%, transparent 40%, rgba(0,0,0,0.1) 100%),
        linear-gradient(180deg, var(--barn-red-glow) 0%, var(--barn-red-light) 50%, var(--barn-red) 100%);
    color: var(--cream);
    transform: translateY(-2px);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 8px 20px rgba(92,20,20,0.5);
}

/* Cream outline */
.btn-outline {
    background: rgba(255,245,220,0.08);
    color: var(--cream);
    border: 2px solid rgba(240,230,207,0.6);
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}
.btn-outline:hover {
    background: var(--cream);
    color: var(--barn-red);
    text-shadow: none;
    border-color: var(--cream);
    box-shadow: 0 4px 14px rgba(0,0,0,0.2);
}

/* Dark wood */
.btn-dark {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.06) 0%, transparent 40%, rgba(0,0,0,0.15) 100%),
        linear-gradient(180deg, var(--barnwood) 0%, var(--walnut-mid) 50%, var(--walnut) 100%);
    color: var(--cream);
    border: 1px solid rgba(0,0,0,0.35);
    box-shadow: var(--shadow-emboss);
    text-shadow: 0 -1px 0 rgba(0,0,0,0.4);
}
.btn-dark:hover {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.1) 0%, transparent 40%, rgba(0,0,0,0.1) 100%),
        linear-gradient(180deg, var(--barnwood-light) 0%, var(--barnwood) 50%, var(--walnut-mid) 100%);
    color: var(--cream);
    transform: translateY(-2px);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 8px 18px rgba(44,26,12,0.35);
}

/* Gold / Brass */
.btn-gold {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.15) 0%, transparent 40%, rgba(0,0,0,0.15) 100%),
        linear-gradient(180deg, var(--dusty-gold-light) 0%, var(--dusty-gold) 50%, var(--dusty-gold-dark) 100%);
    color: var(--walnut);
    border: 1px solid var(--dusty-gold-dark);
    box-shadow: var(--shadow-emboss);
    text-shadow: 0 1px 0 rgba(255,255,255,0.2);
}
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.3), 0 8px 18px rgba(191,160,80,0.4);
}

.btn-disabled { background: linear-gradient(180deg, #c8c0b0, #b0a898); color: #887868; border: 1px solid #a8a090; cursor: not-allowed; box-shadow: none; text-shadow: none; }
.btn-sm { padding: 0.55rem 1.4rem; font-size: 0.8rem; }
.btn-lg { padding: 1.1rem 3rem; font-size: 1rem; }

/* Nail-head rivets on buttons */
.btn-riveted::before,
.btn-riveted::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: radial-gradient(circle at 38% 35%, #D8D0B8 0%, #A09880 40%, #706850 80%, #504830 100%);
    box-shadow: inset 0 1px 1px rgba(255,255,255,0.35), 0 1px 2px rgba(0,0,0,0.4);
}
.btn-riveted::before { left: 10px; }
.btn-riveted::after  { right: 10px; }

/* ─── Badges — Stamped Label Style ───────────────────────── */
.badge {
    display: inline-block;
    padding: 0.3rem 0.85rem;
    font-family: var(--font-slab);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 3px;
    box-shadow: var(--shadow-soft);
}
.badge-available { background: linear-gradient(180deg, #D8ECD0, #C0DEB8); color: #2E5220; border: 1px solid #A8C8A0; }
.badge-low       { background: linear-gradient(180deg, #FFF0D8, #FFE0B0); color: #A05A00; border: 1px solid #F0C870; }
.badge-soldout   { background: linear-gradient(180deg, #F0D8D0, #E8C8C0); color: #7A2020; border: 1px solid #D8B0A8; }
.badge-soon      { background: linear-gradient(180deg, #E8E0D0, #D8D0C0); color: #5A4E40; border: 1px solid #C8BCA8; }

/* ─── Navigation — Dark Stained Wood Bar ─────────────────── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all var(--speed) var(--ease);
}
.site-header.scrolled {
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='150' height='150'%3E%3Cfilter id='w'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.2' numOctaves='5' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23w)' opacity='0.04'/%3E%3C/svg%3E"),
        linear-gradient(180deg, var(--walnut-mid) 0%, var(--walnut) 100%);
    box-shadow:
        0 4px 14px rgba(0,0,0,0.45),
        inset 0 -1px 0 rgba(255,245,220,0.04);
}
/* Leather trim under scrolled nav */
.site-header.scrolled::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(180deg, var(--leather-dark), var(--leather));
    box-shadow: 0 2px 4px rgba(0,0,0,0.25);
    /* Tiny stitch marks */
    border-bottom: 1px dashed rgba(196,168,120,0.25);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 85px;
}
.nav-logo img {
    height: 58px;
    width: auto;
    transition: all var(--speed) var(--ease);
    filter: drop-shadow(0 3px 6px rgba(0,0,0,0.5));
}
.site-header.scrolled .nav-logo img { height: 48px; }

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 0.1rem;
}
.nav-menu a {
    color: var(--cream);
    font-family: var(--font-slab);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.5rem 0.8rem;
    border-radius: var(--radius);
    transition: all var(--speed) var(--ease);
    text-shadow: 0 1px 4px rgba(0,0,0,0.6);
    position: relative;
}
.nav-menu a:hover,
.nav-menu a.active {
    color: var(--dusty-gold-light);
    background: rgba(255,245,220,0.06);
}
.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20%;
    right: 20%;
    height: 2px;
    background: var(--dusty-gold);
    border-radius: 1px;
    box-shadow: 0 0 8px rgba(196,163,90,0.4);
}
.nav-cta .btn { padding: 0.5rem 1.2rem; }

/* Hamburger */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; width: 32px; height: 24px; position: relative; }
.hamburger, .hamburger::before, .hamburger::after {
    display: block; background: var(--cream); width: 28px; height: 2.5px; border-radius: 2px;
    transition: all var(--speed) var(--ease); box-shadow: 0 1px 2px rgba(0,0,0,0.4);
}
.hamburger::before, .hamburger::after { content: ''; position: absolute; left: 2px; }
.hamburger::before { top: 0; }
.hamburger::after  { bottom: 0; }
.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; box-shadow: none; }
.nav-toggle[aria-expanded="true"] .hamburger::before { transform: rotate(45deg); top: 11px; }
.nav-toggle[aria-expanded="true"] .hamburger::after  { transform: rotate(-45deg); bottom: 11px; }

/* ═══════════════════════════════════════════════════════════
   HERO — Warm Barn Stage
   ═══════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: var(--charcoal);
}

/* Background — dark barn wood with warm red wash */
.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 70%, rgba(212,146,10,0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 25% 40%, rgba(139,32,32,0.18) 0%, transparent 35%),
        radial-gradient(ellipse at 75% 35%, rgba(139,32,32,0.15) 0%, transparent 35%),
        radial-gradient(ellipse at 50% 100%, rgba(90,62,40,0.25) 0%, transparent 50%),
        linear-gradient(170deg,
            var(--charcoal) 0%,
            var(--walnut) 20%,
            var(--barn-red-dark) 45%,
            var(--walnut-mid) 70%,
            var(--charcoal) 100%
        );
}

/* Wood grain texture — barn wall planks */
.hero-texture {
    position: absolute;
    inset: 0;
    opacity: 0.14;
    background-image:
        /* Vertical board seams */
        repeating-linear-gradient(90deg,
            transparent 0px, transparent 80px,
            rgba(0,0,0,0.3) 80px, rgba(0,0,0,0.15) 82px,
            transparent 82px
        ),
        /* Wood grain */
        repeating-linear-gradient(88deg,
            transparent, transparent 10px,
            rgba(255,245,220,0.08) 10px, rgba(255,245,220,0.03) 12px,
            transparent 12px, transparent 24px,
            rgba(255,245,220,0.05) 24px, rgba(255,245,220,0.02) 25px
        ),
        repeating-linear-gradient(92deg,
            transparent, transparent 18px,
            rgba(0,0,0,0.06) 18px, rgba(0,0,0,0.03) 19px
        );
}

/* Stage spotlights — warm amber cones */
.hero-spotlight {
    position: absolute;
    inset: 0;
    background:
        conic-gradient(from 195deg at 30% -8%, transparent 0deg, rgba(255,200,100,0.07) 8deg, transparent 16deg),
        conic-gradient(from 255deg at 50% -5%, transparent 0deg, rgba(255,220,150,0.06) 10deg, transparent 20deg),
        conic-gradient(from 325deg at 70% -8%, transparent 0deg, rgba(255,190,90,0.06) 8deg, transparent 16deg);
    pointer-events: none;
}

/* Warm vignette */
.hero-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 35%, rgba(28,20,16,0.55) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 5;
    padding: 2rem;
    max-width: 860px;
}

.hero-logo {
    width: min(480px, 90vw);
    margin: 0 auto 2.5rem;
    filter: drop-shadow(0 8px 28px rgba(0,0,0,0.6)) drop-shadow(0 0 40px rgba(139,32,32,0.15));
    animation: heroLogoIn 1.2s var(--ease) both;
}

.hero-headline {
    font-family: var(--font-slab);
    font-size: clamp(1.15rem, 2.8vw, 1.6rem);
    font-weight: 700;
    color: var(--dusty-gold-light);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
    text-shadow: 0 0 24px rgba(196,163,90,0.3), 0 2px 6px rgba(0,0,0,0.6);
    animation: fadeInUp 1s var(--ease) 0.4s both;
}

.hero-subheadline {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(240,230,207,0.65);
    font-weight: 400;
    letter-spacing: 0.1em;
    margin-bottom: 2.5rem;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
    animation: fadeInUp 1s var(--ease) 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s var(--ease) 0.8s both;
}

/* Barn door X-brace side panels */
.hero-x-left, .hero-x-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 130px;
    height: 220px;
    z-index: 2;
    border: 3px solid rgba(196,168,120,0.06);
    border-radius: 4px;
    /* Faint wood fill */
    background: rgba(110,78,54,0.04);
}
.hero-x-left  { left: 3%; }
.hero-x-right { right: 3%; }

.hero-x-left::before, .hero-x-left::after,
.hero-x-right::before, .hero-x-right::after {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    width: 4px;
    height: 100%;
    background: rgba(196,168,120,0.08);
    transform-origin: center;
    border-radius: 2px;
}
.hero-x-left::before  { transform: translateX(-50%) rotate(28deg); }
.hero-x-left::after   { transform: translateX(-50%) rotate(-28deg); }
.hero-x-right::before { transform: translateX(-50%) rotate(28deg); }
.hero-x-right::after  { transform: translateX(-50%) rotate(-28deg); }

/* Scroll cue */
.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(240,230,207,0.35);
    font-family: var(--font-slab);
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    z-index: 5;
    animation: fadeInUp 1s var(--ease) 1.2s both;
}
.hero-scroll::after {
    content: '';
    display: block;
    width: 1px;
    height: 44px;
    background: linear-gradient(to bottom, rgba(191,160,80,0.4), transparent);
    margin: 0.8rem auto 0;
    animation: scrollPulse 2.5s ease-in-out infinite;
}

/* ═══════════════════════════════════════════════════════════
   TOUR DATES — Vintage Ticket Stubs on Old Paper
   ═══════════════════════════════════════════════════════════ */
.section-tour {
    padding: var(--section-pad) 0;
    position: relative;
    /* Warm old paper */
    background-color: var(--bg-section);
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='p'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23p)' opacity='0.04'/%3E%3C/svg%3E");
}

.tour-list { max-width: 920px; margin: 0 auto; }

/* Each tour card: ticket-stub on parchment */
.tour-card {
    display: grid;
    grid-template-columns: 110px 1fr auto;
    gap: 1.5rem;
    align-items: center;
    padding: 1.5rem 2rem;
    margin-bottom: 1.25rem;
    border-radius: var(--radius-lg);
    position: relative;
    transition: all var(--speed) var(--ease);
    /* Aged paper card */
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='t'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23t)' opacity='0.025'/%3E%3C/svg%3E"),
        linear-gradient(160deg, var(--warm-white) 0%, var(--cream-light) 50%, var(--parchment) 100%);
    border: 1px solid var(--cream-dark);
    box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255,255,255,0.7);
}
/* Red strip (barn red) */
.tour-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 7px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.1) 0%, transparent 30%, rgba(0,0,0,0.1) 100%),
        linear-gradient(180deg, var(--barn-red-light), var(--barn-red), var(--barn-red-dark));
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    box-shadow: inset -1px 0 2px rgba(0,0,0,0.15);
}
/* Ticket perforation */
.tour-card::after {
    content: '';
    position: absolute;
    left: 110px;
    top: 10px; bottom: 10px;
    border-left: 2px dotted rgba(184,160,128,0.5);
}

.tour-card:hover {
    transform: translateY(-3px) scale(1.005);
    box-shadow: var(--shadow-lg);
}
.tour-card.featured::before {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.15) 0%, transparent 30%, rgba(0,0,0,0.1) 100%),
        linear-gradient(180deg, var(--dusty-gold-light), var(--dusty-gold), var(--dusty-gold-dark));
}

.tour-date-block { text-align: center; padding-right: 0.5rem; }
.tour-date-month { font-family: var(--font-slab); font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--barn-red); }
.tour-date-day   { font-family: var(--font-slab); font-size: 2.6rem; font-weight: 700; line-height: 1; color: var(--walnut); text-shadow: 0 1px 0 rgba(255,245,220,0.5); }
.tour-date-year  { font-size: 0.72rem; color: var(--text-muted); letter-spacing: 0.1em; }

.tour-info h4 { font-family: var(--font-slab); font-size: 1.08rem; margin-bottom: 0.2rem; }
.tour-info .venue { color: var(--text-secondary); font-size: 0.94rem; }
.tour-info .time-badge { display: inline-flex; align-items: center; gap: 0.3rem; margin-top: 0.35rem; font-size: 0.8rem; color: var(--text-muted); }
.tour-action { display: flex; flex-direction: column; align-items: flex-end; gap: 0.6rem; }

/* ═══════════════════════════════════════════════════════════
   ABOUT — Framed Photo on Parchment
   ═══════════════════════════════════════════════════════════ */
.section-about {
    padding: var(--section-pad) 0;
    background: var(--bg-primary);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
    align-items: center;
}

/* Rustic wooden photo frame */
.about-image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: visible;
    padding: 14px;
    /* Wood frame */
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cfilter id='f'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23f)' opacity='0.08'/%3E%3C/svg%3E"),
        linear-gradient(145deg, var(--barnwood-light) 0%, var(--barnwood) 30%, var(--walnut-light) 60%, var(--walnut-mid) 100%);
    box-shadow:
        var(--shadow-xl),
        inset 0 1px 0 rgba(255,245,220,0.1),
        inset 0 -1px 0 rgba(0,0,0,0.3);
    border: 1px solid rgba(0,0,0,0.3);
}
/* Wood grain on frame */
.about-image-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    opacity: 0.1;
    background-image: repeating-linear-gradient(
        0deg, transparent, transparent 5px,
        rgba(255,245,220,0.12) 5px, rgba(255,245,220,0.04) 6px
    );
    pointer-events: none;
}
/* Gold mat border */
.about-image-frame::after {
    content: '';
    position: absolute;
    inset: 9px;
    border: 2px solid var(--dusty-gold-dark);
    border-radius: 5px;
    pointer-events: none;
    opacity: 0.45;
    box-shadow: inset 0 0 4px rgba(0,0,0,0.15);
}
.about-image-frame img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 3px;
    position: relative;
    z-index: 1;
}

.about-text h2 { text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.5rem; color: var(--walnut); text-shadow: 0 1px 0 rgba(255,245,220,0.5); }
.about-text .accent-line { display: block; width: 60px; height: 3px; background: var(--barn-red); margin-bottom: 1.5rem; }
.about-text .accent-bar { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1.75rem; }
.about-text .accent-bar span { display: block; height: 4px; border-radius: 2px; box-shadow: 0 1px 2px rgba(0,0,0,0.12); }
.about-text .accent-bar .bar-red { width: 40px; background: linear-gradient(90deg, var(--barn-red-light), var(--barn-red)); }
.about-text .accent-bar .bar-gold { width: 20px; background: linear-gradient(90deg, var(--dusty-gold), var(--dusty-gold-dark)); }
.about-text p { color: var(--text-secondary); margin-bottom: 1.3rem; font-size: 1.05rem; }

/* ═══════════════════════════════════════════════════════════
   ARTISTS — Rustic Poster Cards
   ═══════════════════════════════════════════════════════════ */
.section-artists {
    padding: var(--section-pad) 0;
    background-color: var(--bg-section);
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='a'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23a)' opacity='0.035'/%3E%3C/svg%3E");
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.25rem;
}

.artist-card {
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='c'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23c)' opacity='0.02'/%3E%3C/svg%3E"),
        linear-gradient(180deg, var(--warm-white) 0%, var(--cream-light) 60%, var(--parchment) 100%);
    border: 1px solid var(--cream-dark);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--speed) var(--ease);
    position: relative;
}
/* Corner nail-heads */
.artist-card::before {
    content: '';
    position: absolute; top: 10px; right: 10px;
    width: 10px; height: 10px; border-radius: 50%; z-index: 3;
    background: radial-gradient(circle at 38% 35%, #D0C8B0 0%, #A09878 45%, #706848 85%, #504830 100%);
    box-shadow: inset 0 1px 1px rgba(255,255,255,0.4), 0 1px 3px rgba(0,0,0,0.4);
}
.artist-card::after {
    content: '';
    position: absolute; bottom: 10px; right: 10px;
    width: 10px; height: 10px; border-radius: 50%; z-index: 3;
    background: radial-gradient(circle at 38% 35%, #D0C8B0 0%, #A09878 45%, #706848 85%, #504830 100%);
    box-shadow: inset 0 1px 1px rgba(255,255,255,0.4), 0 1px 3px rgba(0,0,0,0.4);
}
.artist-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.artist-photo {
    aspect-ratio: 3/3.2;
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
    /* Warm dark stage backdrop */
    background:
        radial-gradient(ellipse at center, rgba(212,146,10,0.08) 0%, transparent 60%),
        linear-gradient(160deg, var(--walnut) 0%, var(--barn-red-dark) 50%, var(--walnut-mid) 100%);
    /* Leather-strip bottom border */
    border-bottom: 5px solid var(--leather-dark);
    box-shadow: inset 0 -4px 8px rgba(0,0,0,0.25);
}
.artist-photo img { width: 100%; height: 100%; object-fit: cover; }
.artist-initials {
    font-family: var(--font-slab);
    font-size: 3.5rem;
    font-weight: 700;
    color: rgba(240,230,207,0.1);
    letter-spacing: 0.15em;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.artist-info { padding: 1.75rem; }
.artist-info h3 { font-family: var(--font-slab); font-size: 1.25rem; margin-bottom: 0.25rem; color: var(--walnut); text-shadow: 0 1px 0 rgba(255,245,220,0.4); }
.artist-role { font-family: var(--font-slab); font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--barn-red); margin-bottom: 0.85rem; }
.artist-bio { font-size: 0.96rem; color: var(--text-secondary); line-height: 1.65; }

/* ═══════════════════════════════════════════════════════════
   MEDIA GALLERY
   ═══════════════════════════════════════════════════════════ */
.section-media { padding: var(--section-pad) 0; background: var(--bg-primary); }
.media-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.25rem; }

.media-item {
    position: relative; border-radius: var(--radius); overflow: hidden;
    cursor: pointer; aspect-ratio: 4/3; background: var(--walnut);
    box-shadow: var(--shadow-md);
    /* Wood frame border */
    border: 4px solid var(--barnwood);
}
.media-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.media-item:hover img { transform: scale(1.06); }
.media-item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(28,20,16,0.7) 0%, transparent 50%); opacity: 0; transition: opacity var(--speed); }
.media-item:hover::after { opacity: 1; }
.media-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 1rem; color: var(--cream); font-family: var(--font-slab); font-size: 0.85rem; font-weight: 700; z-index: 1; transform: translateY(100%); transition: transform var(--speed); }
.media-item:hover .media-caption { transform: translateY(0); }

.media-placeholder {
    background: radial-gradient(ellipse, rgba(212,146,10,0.06) 0%, transparent 60%), linear-gradient(160deg, var(--walnut), var(--barn-red-dark), var(--walnut-mid));
    display: flex; align-items: center; justify-content: center;
    border-radius: var(--radius); aspect-ratio: 4/3;
    box-shadow: var(--shadow-md); border: 4px solid var(--barnwood);
}
.media-placeholder-icon { color: rgba(240,230,207,0.1); }

/* ═══════════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════════ */
.section-contact { padding: var(--section-pad) 0; background: var(--bg-section); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.contact-info h3 { margin-bottom: 1.5rem; }
.contact-detail { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.contact-detail-icon {
    width: 48px; height: 48px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(180deg, var(--cream-light), var(--cream));
    border: 1px solid var(--cream-dark);
    border-radius: var(--radius);
    color: var(--barn-red);
    box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255,255,255,0.7);
}
.contact-detail-icon svg { width: 20px; height: 20px; }
.contact-detail h4 { font-size: 0.95rem; margin-bottom: 0.15rem; }
.contact-detail p { color: var(--text-secondary); font-size: 0.95rem; }

/* Embossed form fields */
.contact-form .form-group { margin-bottom: 1.35rem; }
.contact-form label { display: block; font-family: var(--font-slab); font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-secondary); margin-bottom: 0.45rem; }
.contact-form input, .contact-form textarea, .contact-form select {
    width: 100%; padding: 0.9rem 1.1rem;
    font-family: var(--font-body); font-size: 1rem; color: var(--text-primary);
    background: linear-gradient(180deg, var(--parchment) 0%, var(--cream-light) 100%);
    border: 1px solid var(--cream-dark);
    border-radius: var(--radius);
    box-shadow: var(--shadow-inset);
    transition: all var(--speed);
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--barn-red); box-shadow: var(--shadow-inset), 0 0 0 3px rgba(139,32,32,0.12); }
.contact-form textarea { min-height: 140px; resize: vertical; }

.form-message { padding: 1rem 1.25rem; border-radius: var(--radius); margin-bottom: 1.5rem; font-weight: 600; font-family: var(--font-slab); font-size: 0.9rem; box-shadow: var(--shadow-soft); }
.form-message.success { background: linear-gradient(180deg, #D8ECD0, #C8DEC0); color: #2E5220; border: 1px solid #A8C8A0; }
.form-message.error   { background: linear-gradient(180deg, #FFF0D8, #FFE0C0); color: #A04800; border: 1px solid #F0C070; }

/* ═══════════════════════════════════════════════════════════
   NEWSLETTER — Worn Leather Belt Band
   ═══════════════════════════════════════════════════════════ */
.newsletter-strip {
    padding: 3.5rem 0;
    position: relative;
    overflow: hidden;
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='150' height='150'%3E%3Cfilter id='nl'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.8' numOctaves='6' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23nl)' opacity='0.07'/%3E%3C/svg%3E"),
        linear-gradient(180deg,
            rgba(255,245,220,0.06) 0%,
            transparent 10%,
            transparent 90%,
            rgba(0,0,0,0.08) 100%
        ),
        linear-gradient(180deg, var(--barn-red-light) 0%, var(--barn-red) 35%, var(--barn-red-dark) 100%);
    border-top: 3px solid rgba(0,0,0,0.25);
    border-bottom: 3px solid rgba(0,0,0,0.3);
    box-shadow: inset 0 4px 14px rgba(0,0,0,0.25), inset 0 -4px 14px rgba(0,0,0,0.2), 0 4px 14px rgba(0,0,0,0.15);
}
/* Stitch rows */
.newsletter-strip::before { content: ''; position: absolute; top: 10px; left: 30px; right: 30px; border-top: 2px dashed rgba(196,168,120,0.3); }
.newsletter-strip::after  { content: ''; position: absolute; bottom: 10px; left: 30px; right: 30px; border-top: 2px dashed rgba(196,168,120,0.3); }

.newsletter-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; position: relative; }
.newsletter-text h3 { font-family: var(--font-slab); font-size: 1.6rem; color: var(--cream); margin-bottom: 0.3rem; text-shadow: 0 -1px 0 rgba(0,0,0,0.3), 0 1px 0 rgba(255,245,220,0.06); }
.newsletter-text p { color: rgba(240,230,207,0.6); font-size: 0.95rem; }

.newsletter-form { display: flex; gap: 0.6rem; flex-shrink: 0; }
.newsletter-form input {
    padding: 0.85rem 1.2rem; font-family: var(--font-body); font-size: 0.95rem;
    border: 2px solid rgba(240,230,207,0.25); border-radius: var(--radius);
    background: rgba(0,0,0,0.22); color: var(--cream); width: 280px;
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.25);
}
.newsletter-form input::placeholder { color: rgba(240,230,207,0.35); }
.newsletter-form input:focus { outline: none; border-color: var(--dusty-gold); background: rgba(0,0,0,0.28); }
.newsletter-form .btn { white-space: nowrap; }

/* ═══════════════════════════════════════════════════════════
   FOOTER — Dark Barn Wood
   ═══════════════════════════════════════════════════════════ */
.site-footer {
    color: var(--cream);
    padding: 4.5rem 0 2rem;
    position: relative;
    background:
        /* Wood grain noise */
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='fw'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23fw)' opacity='0.04'/%3E%3C/svg%3E"),
        linear-gradient(180deg, var(--walnut-mid) 0%, var(--walnut) 25%, var(--charcoal) 100%);
}
/* Wood grain lines */
.site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.07;
    background-image:
        repeating-linear-gradient(88deg, transparent, transparent 14px, rgba(255,245,220,0.1) 14px, rgba(255,245,220,0.04) 15px, transparent 15px, transparent 30px),
        repeating-linear-gradient(90deg, transparent 0px, transparent 118px, rgba(0,0,0,0.15) 118px, rgba(0,0,0,0.15) 120px);
    pointer-events: none;
}

.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2.5rem; position: relative; }
.footer-brand img { height: 65px; width: auto; margin-bottom: 1rem; filter: drop-shadow(0 3px 6px rgba(0,0,0,0.5)); }
.footer-tagline { color: rgba(240,230,207,0.45); font-size: 0.95rem; line-height: 1.5; font-style: italic; }

.site-footer h4 { font-family: var(--font-slab); font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--dusty-gold); margin-bottom: 1.25rem; text-shadow: 0 1px 3px rgba(0,0,0,0.4); }

.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.55rem; }
.footer-links a { color: rgba(240,230,207,0.55); font-size: 0.95rem; transition: all var(--speed); }
.footer-links a:hover { color: var(--cream); padding-left: 4px; }

.footer-contact p { color: rgba(240,230,207,0.55); font-size: 0.95rem; margin-bottom: 0.5rem; }
.footer-contact a { color: rgba(240,230,207,0.55); }
.footer-contact a:hover { color: var(--cream); }

.social-icons { display: flex; gap: 0.75rem; }
.social-icons a {
    display: flex; align-items: center; justify-content: center;
    width: 42px; height: 42px; border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(255,245,220,0.07), rgba(255,245,220,0.02));
    border: 1px solid rgba(255,245,220,0.06);
    color: rgba(240,230,207,0.55);
    transition: all var(--speed);
}
.social-icons a:hover {
    background: linear-gradient(180deg, var(--barn-red-light), var(--barn-red));
    border-color: var(--barn-red-dark);
    color: var(--cream);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139,32,32,0.4);
}

.footer-bottom { margin-top: 3.5rem; text-align: center; position: relative; }
.footer-divider { height: 2px; background: linear-gradient(to right, transparent, rgba(191,160,80,0.2) 20%, rgba(191,160,80,0.35) 50%, rgba(191,160,80,0.2) 80%, transparent); margin-bottom: 1.75rem; }
.footer-bottom p { font-size: 0.8rem; color: rgba(240,230,207,0.25); font-family: var(--font-slab); letter-spacing: 0.05em; }

/* ═══════════════════════════════════════════════════════════
   INNER PAGES
   ═══════════════════════════════════════════════════════════ */
.page-hero {
    position: relative; padding: 11rem 0 4.5rem; text-align: center; overflow: hidden;
    background:
        radial-gradient(ellipse at 50% 80%, rgba(212,146,10,0.06) 0%, transparent 50%),
        linear-gradient(160deg, var(--charcoal) 0%, var(--walnut) 30%, var(--barn-red-dark) 65%, var(--walnut-mid) 100%);
}
.page-hero::before { content: ''; position: absolute; inset: 0; opacity: 0.1; background-image: repeating-linear-gradient(88deg, transparent, transparent 14px, rgba(255,245,220,0.08) 14px, rgba(255,245,220,0.03) 15px), repeating-linear-gradient(90deg, transparent 0px, transparent 78px, rgba(0,0,0,0.15) 78px, rgba(0,0,0,0.15) 80px); }
.page-hero::after  { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, transparent 45%, rgba(0,0,0,0.4) 100%); pointer-events: none; }

.page-hero h1 { font-family: var(--font-slab); color: var(--cream); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.75rem; position: relative; z-index: 1; text-shadow: 0 3px 10px rgba(0,0,0,0.5), 0 0 30px rgba(196,163,90,0.12); }
.page-hero p { color: rgba(240,230,207,0.6); font-size: 1.1rem; max-width: 600px; margin: 0 auto; position: relative; z-index: 1; font-style: italic; }
.breadcrumb { position: relative; z-index: 1; margin-top: 1.5rem; font-family: var(--font-slab); font-size: 0.78rem; }
.breadcrumb a { color: rgba(240,230,207,0.35); }
.breadcrumb a:hover { color: var(--cream); }
.breadcrumb span { color: rgba(240,230,207,0.2); margin: 0 0.5rem; }
.breadcrumb .current { color: var(--dusty-gold-light); }

.about-story-section { padding: var(--section-pad) 0; }
.about-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3.5rem; }
.value-card { text-align: center; padding: 2.75rem 2rem; background: linear-gradient(180deg, var(--cream-light), var(--parchment)); border: 1px solid var(--cream-dark); border-radius: var(--radius-lg); box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255,255,255,0.7); position: relative; }
.value-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: linear-gradient(90deg, var(--barn-red-light), var(--barn-red), var(--barn-red-dark)); border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.value-icon { font-size: 2.8rem; margin-bottom: 1.15rem; }
.value-card h3 { font-family: var(--font-slab); font-size: 1.15rem; margin-bottom: 0.6rem; }
.value-card p { color: var(--text-secondary); font-size: 0.95rem; }

.tour-page-content, .artists-page-content, .media-page-content, .contact-page-content { padding: var(--section-pad) 0; }

.artist-card-full { display: grid; grid-template-columns: 300px 1fr; gap: 0; align-items: stretch; background: linear-gradient(180deg, var(--warm-white), var(--cream-light)); border: 1px solid var(--cream-dark); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); margin-bottom: 2.25rem; }
.artist-card-full .artist-photo { aspect-ratio: auto; min-height: 300px; border-bottom: none; border-right: 5px solid var(--leather-dark); }
.artist-card-full .artist-detail { padding: 2.5rem; }
.artist-card-full .artist-detail h2 { font-family: var(--font-slab); font-size: 1.6rem; margin-bottom: 0.3rem; }

.media-tabs { display: flex; justify-content: center; gap: 0.5rem; margin-bottom: 3rem; }
.media-tab { padding: 0.65rem 1.6rem; font-family: var(--font-slab); font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; background: linear-gradient(180deg, var(--cream-light), var(--parchment)); border: 1px solid var(--cream-dark); border-radius: var(--radius); cursor: pointer; transition: all var(--speed); color: var(--text-secondary); box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255,255,255,0.7); }
.media-tab.active, .media-tab:hover { background: linear-gradient(180deg, var(--barn-red-light), var(--barn-red)); border-color: var(--barn-red-dark); color: var(--cream); box-shadow: var(--shadow-emboss); text-shadow: 0 -1px 0 rgba(0,0,0,0.2); }

.video-card { border-radius: var(--radius-lg); overflow: hidden; background: var(--walnut); margin-bottom: 1.5rem; border: 4px solid var(--barnwood); box-shadow: var(--shadow-md); }
.video-wrapper { position: relative; padding-bottom: 56.25%; height: 0; }
.video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }
.video-info { padding: 1.25rem 1.5rem; color: var(--cream); }
.video-info h4 { font-family: var(--font-slab); font-size: 1rem; color: var(--cream); }

/* ═══════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════ */
@keyframes heroLogoIn { from { opacity:0; transform: scale(0.9) translateY(-20px); } to { opacity:1; transform: scale(1) translateY(0); } }
@keyframes fadeInUp   { from { opacity:0; transform: translateY(28px); } to { opacity:1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity:0; transform: translateY(-24px); } to { opacity:1; transform: translateY(0); } }
@keyframes scrollPulse { 0%,100% { opacity:0.3; transform:scaleY(1); } 50% { opacity:0.8; transform:scaleY(1.15); } }

.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.75s var(--ease), transform 0.75s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .artist-card-full { grid-template-columns: 1fr; }
    .artist-card-full .artist-photo { min-height: 260px; border-right: none; border-bottom: 5px solid var(--leather-dark); }
    .artist-card-full .artist-detail { padding: 2rem; }
}

@media (max-width: 768px) {
    :root { --section-pad: 4.5rem; }
    .nav-toggle { display: block; }
    .nav-menu {
        position: fixed; top: 0; right: -100%; width: 300px; height: 100vh;
        flex-direction: column; align-items: stretch; padding: 5rem 2rem 2rem; gap: 0;
        transition: right var(--speed) var(--ease);
        background:
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='150' height='150'%3E%3Cfilter id='m'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.2' numOctaves='5' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23m)' opacity='0.05'/%3E%3C/svg%3E"),
            linear-gradient(180deg, var(--walnut-mid), var(--walnut));
        box-shadow: -6px 0 24px rgba(0,0,0,0.5);
    }
    .nav-menu.open { right: 0; }
    .nav-menu a { display: block; padding: 0.85rem 0; font-size: 1rem; border-bottom: 1px solid rgba(240,230,207,0.06); }
    .nav-menu a.active::after { display: none; }
    .nav-cta { margin-top: 1rem; }
    .nav-cta .btn { display: block; text-align: center; }
    .hero { min-height: 92vh; }
    .hero-logo { width: min(340px, 82vw); }
    .hero-x-left, .hero-x-right { display: none; }
    .tour-card { grid-template-columns: 85px 1fr; gap: 1rem; padding: 1.25rem; }
    .tour-card::after { left: 83px; }
    .tour-action { grid-column: 1 / -1; flex-direction: row; align-items: center; justify-content: space-between; }
    .about-values { grid-template-columns: 1fr; }
    .artists-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .newsletter-inner { flex-direction: column; text-align: center; }
    .newsletter-form { flex-direction: column; width: 100%; }
    .newsletter-form input { width: 100%; }
}

@media (max-width: 480px) {
    body { font-size: 16px; }
    .container { padding: 0 1.25rem; }
    .tour-card { grid-template-columns: 1fr; text-align: center; }
    .tour-card::after { display: none; }
    .tour-date-block { margin-bottom: 0.5rem; }
    .page-hero { padding: 9rem 0 3.5rem; }
}
