:root {
    --bg-main: #0A0A0A;
    --bg-card: #1A1A1A;
    --accent-red: #8B1A1A;
    --accent-gold: #C9A84C;
    --text-main: #E8E0D8;
    --text-secondary: #8A8278;
    
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Inter', sans-serif;
    
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
    touch-action: manipulation; /* Prioritize scrolling and tapping */
}

body {
    background-color: transparent;
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.7;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.7)), url('ropebg.JPG');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    z-index: -1;
}

/* ── Layout Utilities ── */
.section { 
    padding: 2rem 0;
}

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


/* ── Glass Panel Token ── */
.glass-panel {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    backdrop-filter: blur(20px) saturate(170%) contrast(110%);
    -webkit-backdrop-filter: blur(30px) saturate(160%) contrast(110%);
    border-radius: 32px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
}

.glass-panel:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* ── Global Typography Fixes ── */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-main);
    line-height: 1.2;
}

h2 { font-size: 2.2rem; margin-bottom: 1.5rem; }
h3 { font-size: 1rem; margin-bottom: 1rem;  }

p { margin-bottom: 1rem; }
li { margin-bottom: 0.5rem; }

/* ── Animation Classes ── */
.reveal-hidden { opacity: 0; transform: translateY(20px); }
.reveal-visible { opacity: 1; transform: translateY(0); transition: all 0.6s ease-out; }
