:root {
    --bg-cream: #faf9f6;
    --bg-white: #ffffff;
    --bg-black: #0a0a0a;
    
    --woow-red: #ed2d2d;
    --woow-orange: #ff5100;
    --woow-yellow: #f5e24e;
    --woow-yellow-bright: #ffec00;
    
    --guf-orange: #fcb912;
    --guf-yellow: #f5e24e;
    
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
    --text-muted: #999999;
    
    --border-light: rgba(0,0,0,0.06);
    --border-medium: rgba(0,0,0,0.12);
    
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 30px 60px rgba(0,0,0,0.12);
    --shadow-xl: 0 50px 100px -20px rgba(0,0,0,0.15);
    
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-main: 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    --transition-slow: 1s cubic-bezier(0.23, 1, 0.32, 1);
    
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 2rem;
    --radius-xl: 3rem;
    --radius-full: 9999px;
    
    --font-display: 'Poppins', sans-serif;
    --font-body: 'Ubuntu', sans-serif;
    
    --z-base: 1;
    --z-dropdown: 50;
    --z-sticky: 80;
    --z-overlay: 90;
    --z-modal: 100;
    --z-toast: 110;
}

[data-brand="woow"] {
    --brand-primary: var(--woow-red);
    --brand-secondary: var(--woow-orange);
    --brand-accent: var(--woow-yellow);
    --brand-accent-bright: var(--woow-yellow-bright);
    --font-display: 'Poppins', sans-serif;
}

[data-brand="guf"] {
    --brand-primary: var(--guf-orange);
    --brand-secondary: var(--guf-yellow);
    --brand-accent: var(--guf-orange);
    --brand-accent-bright: var(--woow-yellow-bright);
    --font-display: 'Ubuntu', sans-serif;
}

*, *::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-color: var(--bg-cream);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

[data-brand="woow"] body,
[data-brand="guf"] body {
    font-family: var(--font-display);
}

img, video {
    max-width: 100%;
    height: auto;
    display: block;
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 3rem;
    }
}

@media (min-width: 1280px) {
    .container {
        padding: 0 4rem;
    }
}

.grid-editorial {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .grid-editorial {
        gap: 1.5rem;
    }
}

.col-span-12 { grid-column: span 12; }
.col-span-11 { grid-column: span 12; }
.col-span-10 { grid-column: span 12; }
.col-span-9 { grid-column: span 12; }
.col-span-8 { grid-column: span 12; }
.col-span-7 { grid-column: span 12; }
.col-span-6 { grid-column: span 12; }
.col-span-5 { grid-column: span 12; }
.col-span-4 { grid-column: span 12; }
.col-span-3 { grid-column: span 12; }
.col-span-2 { grid-column: span 12; }
.col-span-1 { grid-column: span 12; }

@media (min-width: 768px) {
    .col-span-12 { grid-column: span 12; }
    .col-span-11 { grid-column: span 11; }
    .col-span-10 { grid-column: span 10; }
    .col-span-9 { grid-column: span 9; }
    .col-span-8 { grid-column: span 8; }
    .col-span-7 { grid-column: span 7; }
    .col-span-6 { grid-column: span 6; }
    .col-span-5 { grid-column: span 5; }
    .col-span-4 { grid-column: span 4; }
    .col-span-3 { grid-column: span 3; }
    .col-span-2 { grid-column: span 2; }
    .col-span-1 { grid-column: span 1; }
}

.text-balance {
    text-wrap: balance;
}

.overflow-hidden { overflow: hidden; }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }

.inset-0 { inset: 0; }
.top-0 { top: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }
.left-0 { left: 0; }

.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }

.flex { display: flex; }
.grid { display: grid; }
.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }
.inline-flex { display: inline-flex; }

.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-start { justify-content: flex-start; }
.justify-end { justify-content: flex-end; }

.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }
.gap-16 { gap: 4rem; }

.w-full { width: 100%; }
.h-full { height: 100%; }
.h-screen { height: 100vh; }
.min-h-screen { min-height: 100vh; }

.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-12 { padding: 3rem; }
.p-16 { padding: 4rem; }

.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.py-32 { padding-top: 8rem; padding-bottom: 8rem; }
.py-40 { padding-top: 10rem; padding-bottom: 10rem; }

.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.px-12 { padding-left: 3rem; padding-right: 3rem; }

.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mb-24 { margin-bottom: 6rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }
.-mt-20 { margin-top: -5rem; }

.rounded-sm { border-radius: var(--radius-sm); }
.rounded-md { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-full { border-radius: var(--radius-full); }

.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1.1; }
.text-6xl { font-size: 3.75rem; line-height: 1; }
.text-7xl { font-size: 4.5rem; line-height: 1; }
.text-8xl { font-size: 6rem; line-height: 1; }

.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.font-black { font-weight: 900; }

.uppercase { text-transform: uppercase; }
.lowercase { text-transform: lowercase; }
.capitalize { text-transform: capitalize; }

.tracking-tighter { letter-spacing: -0.04em; }
.tracking-tight { letter-spacing: -0.02em; }
.tracking-normal { letter-spacing: 0; }
.tracking-wide { letter-spacing: 0.05em; }
.tracking-wider { letter-spacing: 0.1em; }
.tracking-widest { letter-spacing: 0.2em; }

.leading-none { line-height: 1; }
.leading-tight { line-height: 1.2; }
.leading-snug { line-height: 1.375; }
.leading-normal { line-height: 1.5; }
.leading-relaxed { line-height: 1.75; }

.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }

.opacity-0 { opacity: 0; }
.opacity-20 { opacity: 0.2; }
.opacity-30 { opacity: 0.3; }
.opacity-40 { opacity: 0.4; }
.opacity-50 { opacity: 0.5; }
.opacity-60 { opacity: 0.6; }
.opacity-70 { opacity: 0.7; }
.opacity-80 { opacity: 0.8; }
.opacity-90 { opacity: 0.9; }
.opacity-100 { opacity: 1; }

.bg-cream { background-color: var(--bg-cream); }
.bg-white { background-color: var(--bg-white); }
.bg-black { background-color: var(--bg-black); }
.bg-brand { background-color: var(--brand-primary); }
.bg-brand-accent { background-color: var(--brand-accent); }

.text-white { color: #ffffff; }
.text-black { color: #000000; }
.text-brand { color: var(--brand-primary); }
.text-brand-accent { color: var(--brand-accent); }

.border { border: 1px solid var(--border-medium); }
.border-light { border: 1px solid var(--border-light); }
.border-white { border-color: #ffffff; }

.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }

.cursor-pointer { cursor: pointer; }
.select-none { user-select: none; }
.pointer-events-none { pointer-events: none; }

.transition-all { transition: var(--transition-main); }
.transition-colors { transition: color var(--transition-fast), background-color var(--transition-fast), border-color var(--transition-fast); }
.transition-transform { transition: transform var(--transition-fast); }

.transform { transform: translateZ(0); }
.translate-y-0 { transform: translateY(0); }
.-translate-y-4 { transform: translateY(-1rem); }
.-translate-y-20 { transform: translateY(-5rem); }
.translate-x-4 { transform: translateX(1rem); }

.scale-100 { transform: scale(1); }
.scale-105 { transform: scale(1.05); }
.scale-110 { transform: scale(1.1); }

.rotate-12 { transform: rotate(12deg); }
.-rotate-6 { transform: rotate(-6deg); }

.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:scale-110:hover { transform: scale(1.1); }

.clip-path-circle { clip-path: circle(150% at 100% 0%); }

@media (min-width: 1024px) {
    .lg\:col-span-6 { grid-column: span 6; }
    .lg\:col-span-5 { grid-column: span 5; }
    .lg\:col-span-7 { grid-column: span 7; }
    .lg\:col-span-4 { grid-column: span 4; }
    .lg\:col-span-8 { grid-column: span 8; }
    .lg\:flex { display: flex; }
    .lg\:grid { display: grid; }
    .lg\:hidden { display: none; }
    .lg\:block { display: block; }
    .lg\:text-7xl { font-size: 4.5rem; }
    .lg\:text-8xl { font-size: 6rem; }
    .lg\:text-9xl { font-size: 8rem; }
}

@media (min-width: 1280px) {
    .xl\:flex { display: flex; }
    .xl\:hidden { display: none; }
}

.backdrop-blur-xl {
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

.object-cover { object-fit: cover; }
.object-contain { object-fit: contain; }

.h-\[500px\] { height: 500px; }
.h-\[600px\] { height: 600px; }
.h-\[700px\] { height: 700px; }
.max-w-xs { max-width: 20rem; }
.max-w-sm { max-width: 24rem; }
.max-w-md { max-width: 28rem; }
.max-w-lg { max-width: 32rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-none { max-width: none; }

.w-64 { width: 16rem; }
.w-80 { width: 20rem; }
.h-64 { height: 16rem; }
.h-80 { height: 20rem; }
.-right-20 { right: -5rem; }
.-right-40 { right: -10rem; }
.-top-10 { top: -2.5rem; }
.-right-10 { right: -2.5rem; }
.-bottom-10 { bottom: -2.5rem; }
.-left-10 { left: -2.5rem; }

.border-black\/5 { border-color: rgba(0,0,0,0.05); }
.border-black\/10 { border-color: rgba(0,0,0,0.1); }
.border-black\/20 { border-color: rgba(0,0,0,0.2); }
.bg-white\/80 { background-color: rgba(255,255,255,0.8); }
.bg-white\/95 { background-color: rgba(255,255,255,0.95); }
.text-white\/80 { color: rgba(255,255,255,0.8); }
.text-black\/60 { color: rgba(0,0,0,0.6); }
.bg-black\/5 { background-color: rgba(0,0,0,0.05); }
.bg-black\/10 { background-color: rgba(0,0,0,0.1); }

.group { isolation: isolate; }

.grid-cols-1 { grid-template-columns: repeat(1, 1fr); }
@media (min-width: 768px) {
    .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
    .lg\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
