/* ========================================
   FONT FACE DECLARATIONS
======================================== */

@font-face {
    font-family: 'Caviar Dreams';
    src: url('../fonts/CaviarDreams.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Caviar Dreams';
    src: url('../fonts/CaviarDreams-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ========================================
   CSS RESET
======================================== */

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

html {
    scroll-behavior: smooth;
}

/* ========================================
   CSS VARIABLES
======================================== */

:root {
    --black: #000000;
    --near-black: #0a0a0a;
    --dark-gray: #1a1a1a;
    --text-light: #e0e0e0;
    --text-white: #ffffff;
    --gold: #E3AC91;
    --gold-bright: #E3AC91;
    
    --section-padding: 120px 0;
    --container-max: 1200px;
    
    /* Typography Scale */
    --font-size-base: 20px;
    --font-size-body: 1.2rem; /* 24px */
    --font-size-small: 0.9rem; /* ~18px */
    --font-size-large: 1.2rem; /* 24px - same as body for consistency */
    
    --font-size-h1: 3.5rem;
    --font-size-h2: 2.5rem;
    --font-size-h3: 1.8rem;
    --font-size-h4: 1.3rem;
}

/* ========================================
   BASE STYLES
======================================== */

body {
    font-family: 'Caviar Dreams', sans-serif;
    font-weight: 400;
    background: var(--black);
    color: var(--text-light);
    line-height: 1.7;
    font-size: var(--font-size-base);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   TYPOGRAPHY
======================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    line-height: 1.3;
}

h1 {
    font-size: var(--font-size-h1);
}

h2 {
    font-size: var(--font-size-h2);
}

h3 {
    font-size: var(--font-size-h3);
}

h4 {
    font-size: var(--font-size-h4);
}

p {
    margin-bottom: 1.5rem;
    font-size: var(--font-size-body);
}

.serif {
    font-family: 'Cinzel', serif;
}

/* ========================================
   UTILITY CLASSES
======================================== */

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

.text-gold {
    color: var(--gold);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--gold);
    letter-spacing: 0.15em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.section-title::before,
.section-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background-image: url('../images/div-line.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    max-width: 200px;
}

/* ========================================
   BACKGROUND IMAGE SECTIONS
======================================== */

.bg-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.bg-section .container {
    position: relative;
    z-index: 2;
}

/* ========================================
   HERO + LION COMBINED SECTION
======================================== */

.hero-lion-combined {
    background: var(--black);
    padding: 60px 0 40px;
    position: relative;
    min-height: 800px;
}

.lion-image-container {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    z-index: 0;
    display: flex;
    align-items: flex-end;
    padding-top: 0;
    padding-bottom: 40px;
    overflow: visible;
}

.lion-image {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    object-position: center bottom;
    display: block;
    vertical-align: bottom;
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
}

.container-wide {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

/* Top Row: Logo Left, Title Right */
.hero-top-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.logo-left {
    flex: 0 0 auto;
    position: relative;
    z-index: 2;
}

.elite-logo {
    max-width: 280px;
    height: auto;
    display: block;
    margin-left: 40px;
}

.hero-title-right {
    flex: 1;
    text-align: left;
    padding-left: 40px;
    position: relative;
    z-index: 2;
    padding-top: 20px;
    max-width: 50%;
}

.hero-headline {
    font-size: 2.8rem;
    color: var(--gold);
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 1.3;
    text-transform: uppercase;
    font-family: 'Caviar Dreams', sans-serif;
}

/* Main Section: Text */
.hero-main-section {
    position: relative;
    z-index: 2;
    margin-bottom: 60px;
    max-width: 50%;
    display: flex;
}

.manifesto-left {
    max-width: 600px;
    width: 100%;
}

.hero-intro {
    font-size: var(--font-size-body);
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.elite-inner-sanctum-text {
    color: var(--gold);
    font-weight: 700;
}

.manifesto-title {
    font-size: 2rem;
    color: var(--text-white);
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.5;
    margin-bottom: 2rem;
    text-transform: uppercase;
    font-family: 'Caviar Dreams', sans-serif;
}

/* Full-width Text Below Splash */
.hero-fullwidth-text {
    width: 100%;
    padding: 40px 40px 0;
    position: relative;
    z-index: 2;
    background: var(--black);
}

.manifesto-text-fullwidth {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    text-align: left;
}

.manifesto-text {
    font-size: var(--font-size-body);
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Full-width Quote Below Splash */
.hero-quote-section {
    background: var(--black);
    padding: 20px 0 60px;
    width: 100%;
}

.hero-quote-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.hero-quote {
    padding-left: 2rem;
    border-left: 2px solid var(--gold);
    font-style: italic;
    font-size: var(--font-size-large);
    line-height: 1.7;
    color: var(--text-light);
    text-align: left;
}

/* ========================================
   NEUROSCIENCE SECTION
======================================== */

.neuroscience {
    background: var(--black);
    padding: 100px 0;
}

.brain-visual-container {
    max-width: 1400px;
    margin: 0 auto 4rem;
    text-align: center;
    padding: 0 40px;
}

.brain-image {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(0.9) contrast(1.1);
}

.brain-quote {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: var(--font-size-h4);
    font-style: italic;
    line-height: 1.6;
    color: var(--text-light);
    padding: 0 20px;
}

/* ========================================
   GUIDES SECTION
======================================== */

.guides {
    background: var(--black);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.dragon-graphic {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: url('../images/dragon.png');
    background-size: contain;
    background-position: top right;
    background-repeat: no-repeat;
    opacity: 0.8;
    z-index: 0;
    pointer-events: none;
}

.guides .container {
    position: relative;
    z-index: 1;
}

.guides .section-title {
    margin-bottom: 5rem;
    color: var(--gold);
}

.guide-row {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    margin-bottom: 5rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.guide-photo-col {
    position: relative;
}

.guide-photo {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: grayscale(100%);
    border: 1px solid var(--dark-gray);
}

.guide-info-col {
    padding-top: 0;
}

.guide-name {
    font-size: 1.8rem;
    color: var(--gold);
    font-weight: 400;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.guide-title-role {
    font-size: 0.95rem;
    letter-spacing: 0.15em;
    color: var(--text-light);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.warriorsage-logo {
    margin-bottom: 2rem;
}

.ws-logo {
    height: 24px;
    width: auto;
    display: block;
    max-width: none;
    opacity: 0.5;
}

.sally-logo {
    margin-bottom: 2rem;
}

.sally-logo-img {
    height: 64px;
    width: auto;
    display: block;
    max-width: none;
}

.guide-bio {
    font-size: var(--font-size-body);
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.guides-collaboration {
    text-align: center;
    font-size: var(--font-size-large);
    color: var(--text-white);
    max-width: 900px;
    margin: 5rem auto 0;
    line-height: 1.7;
}

.collaboration-intro {
    color: var(--gold);
}

/* ========================================
   THRESHOLD SECTION
======================================== */

.threshold {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.threshold-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/eclipse.jpg');
    background-size: cover;
    background-position: left center;
    background-repeat: no-repeat;
    z-index: 0;
}

.threshold .container-wide {
    position: relative;
    z-index: 1;
}

.threshold-content {
    max-width: 700px;
    margin-left: auto;
    padding: 40px 60px;
    text-align: left;
}

.threshold-title {
    font-size: 2.5rem;
    color: var(--gold);
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    font-family: 'Caviar Dreams', sans-serif;
}

.threshold-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background-image: url('../images/div-line.png');
    background-repeat: no-repeat;
    background-position: left center;
    background-size: contain;
    max-width: 200px;
}

.threshold-subtitle {
    font-size: var(--font-size-h4);
    color: var(--gold);
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    font-family: 'Caviar Dreams', sans-serif;
}

.threshold-content p {
    font-size: var(--font-size-body);
    line-height: 1.8;
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

.threshold-continuation-section {
    width: 100%;
    padding: 40px 40px 20px;
    background: var(--black);
}

.threshold-continuation {
    max-width: 1200px;
    margin: 0 auto 1rem;
    font-size: var(--font-size-body);
    line-height: 1.8;
    color: var(--text-white);
    text-align: left;
}

.threshold-continuation:last-child {
    margin-bottom: 0;
}

/* ========================================
   TEN-MONTH PARTNERSHIP SECTION
======================================== */

.partnership {
    background: var(--black);
    padding: 40px 0 120px;
    position: relative;
    overflow: hidden;
}

.partnership-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/10-month-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: 0;
}

.partnership .container {
    position: relative;
    z-index: 1;
}

.partnership-intro {
    max-width: 900px;
    margin: 0 auto 4rem;
    font-size: var(--font-size-h4);
    line-height: 1.8;
    text-align: center;
    color: var(--text-light);
}

.partnership-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.partnership-column {
    text-align: left;
    display: flex;
    flex-direction: column;
}

.partnership-column p {
    font-size: var(--font-size-body);
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.partnership-column strong {
    color: var(--gold);
    font-weight: 700;
}

.partnership-alchemy {
    font-size: var(--font-size-large) !important;
    color: var(--gold) !important;
    margin: 0 0 1.5rem !important;
}

.partnership-becoming {
    font-size: var(--font-size-h4) !important;
    color: var(--gold) !important;
    text-align: center !important;
    margin-top: 2rem !important;
    line-height: 1.5 !important;
}

/* ========================================
   ACHIEVEMENT SECTION
======================================== */

.achievement {
    position: relative;
    background: var(--black);
}

/* Mountain Image Section */
.achievement-image-section {
    position: relative;
    width: 100%;
    min-height: 600px;
    overflow: hidden;
}

.mountain-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/Mountain BW.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.mountain-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 30%, rgba(0, 0, 0, 0.7) 70%, rgba(0, 0, 0, 1) 100%);
    z-index: 1;
}

.achievement-title-overlay {
    position: absolute;
    bottom: 80px;
    left: 0;
    right: 0;
    font-size: 2.5rem;
    color: var(--gold);
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-align: center;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    font-family: 'Caviar Dreams', sans-serif;
}

.achievement-title-overlay::before,
.achievement-title-overlay::after {
    content: '';
    flex: 1;
    height: 1px;
    background-image: url('../images/div-line.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    max-width: 200px;
}

/* Content Section Below Image */
.achievement-content-section {
    background: var(--black);
    padding: 40px 0 120px;
}

.achievement-intro {
    max-width: 1200px;
    margin: 0 auto 2rem;
    font-size: var(--font-size-body);
    line-height: 1.8;
    color: var(--text-white);
    text-align: left;
}

.achievement-highlight {
    color: var(--gold);
    font-weight: 700;
}

.achievement-subtitle {
    max-width: 1200px;
    margin: 0 auto 2rem;
    font-size: var(--font-size-h4);
    color: var(--gold);
    font-weight: 400;
    text-align: left;
}

.achievement-content {
    max-width: 1200px;
    margin: 0 auto 3rem;
    text-align: left;
}

.achievement-content p {
    font-size: var(--font-size-body);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.achievement-closing {
    max-width: 1200px;
    margin: 3rem auto 0;
    font-size: var(--font-size-large);
    line-height: 1.8;
    text-align: left;
    color: var(--text-white);
}

/* ========================================
   UNIQUE SECTION
======================================== */

.unique {
    background: var(--black);
    position: relative;
}

/* Lightbulb Image Section */
.unique-image-section {
    position: relative;
    width: 100%;
    background: var(--black);
    padding: 60px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bulb-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Content Section Below Image */
.unique-content-section {
    background: var(--black);
    padding: 60px 0 120px;
}

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

.unique-content p {
    font-size: var(--font-size-body);
    line-height: 1.8;
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

.unique-subtitle {
    font-size: var(--font-size-large);
    margin: 2.5rem 0 2rem;
    color: var(--text-white);
}

.unique-point {
    margin-bottom: 2rem;
}

.unique-point p {
    font-size: var(--font-size-body);
    line-height: 1.8;
    color: var(--text-white);
}

/* ========================================
   INVESTMENT SECTION
======================================== */

.investment {
    background: var(--black);
}

/* Top Section - Full-width Background Image */
.investment-top-section {
    position: relative;
    min-height: 500px;
    padding: 80px 0;
}

.investment-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/AdobeStock_441320165.jpg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.7) contrast(1.1);
    z-index: 0;
}

.investment-content-overlay {
    position: relative;
    z-index: 1;
    max-width: 33.333%;
    margin: 0;
    padding: 0 40px;
    padding-top: 40px;
}

.investment-title {
    text-align: left;
    margin-bottom: 2rem;
    display: block;
}

.investment-title::before {
    display: none;
}

.investment-title::after {
    content: '';
    display: block;
    width: 200px;
    height: 1px;
    background: var(--text-light);
    margin-top: 1rem;
    position: static;
    background-image: none;
    background-size: auto;
    background-repeat: repeat;
    background-position: 0 0;
}

.investment-main-text {
    font-size: var(--font-size-body);
    color: var(--text-white);
    line-height: 1.8;
    margin-bottom: 0;
}

/* Bottom Section - Full-width Text */
.investment-bottom-section {
    background: var(--black);
    padding: 40px 40px 120px;
}

.investment-bottom-section .container-wide {
    max-width: 1200px;
    margin: 0 auto;
}

.investment-bottom-section p {
    font-size: var(--font-size-body);
    line-height: 1.8;
    color: var(--text-white);
    margin-bottom: 2rem;
    text-align: left;
}

.investment-consecration {
    margin-top: 3rem;
}

.investment-consecration .achievement-highlight {
    font-style: normal;
}

/* ========================================
   TARGET AUDIENCE SECTION
======================================== */

.target-audience {
    background: var(--black);
    padding: var(--section-padding);
}

.audience-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.audience-list {
    list-style: none;
    margin-bottom: 3rem;
}

.audience-list li {
    font-size: var(--font-size-body);
    line-height: 1.8;
    color: var(--text-white);
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
}

.audience-list li:before {
    content: "◆";
    color: var(--gold);
    position: absolute;
    left: 0;
    font-size: 1rem;
}

.audience-note {
    text-align: left;
    font-size: var(--font-size-body);
    color: var(--text-white);
    margin: 2rem 0;
    line-height: 1.8;
}

.audience-note .achievement-highlight {
    font-style: italic;
    font-size: var(--font-size-h4);
}

.audience-closing {
    text-align: left;
    font-size: var(--font-size-body);
    font-style: normal;
    color: var(--text-white);
    margin-top: 2rem;
    line-height: 1.8;
}

/* ========================================
   APPLICATION PROCESS SECTION
======================================== */

.application {
    background: var(--black);
}

/* Road Image Section */
.application-image-section {
    position: relative;
    width: 100%;
    min-height: 700px;
    overflow: hidden;
}

.road-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/road-trip-BW.jpg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    z-index: 0;
}

@media (min-width: 1400px) {
    .application-image-section {
        min-height: 850px;
    }

    .application-image-section .container-wide {
        min-height: 850px;
        padding-bottom: 70px;
    }
}

.road-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, transparent 0%, transparent 30%, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0.7) 85%, var(--black) 100%);
    z-index: 1;
}

.application-image-section .container-wide {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 60px;
    min-height: 700px;
}

.application-title-overlay {
    font-size: var(--font-size-h2);
    text-align: center;
    margin-bottom: 1rem;
    color: var(--gold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.application-title-overlay::before,
.application-title-overlay::after {
    content: '';
    flex: 1;
    height: 1px;
    background-image: url('../images/div-line.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    max-width: 200px;
}

.application-header-note-overlay {
    text-align: center;
    font-size: var(--font-size-body);
    color: var(--text-white);
    margin-bottom: 0;
}

/* Content Section Below Image */
.application-content-section {
    background: var(--black);
    padding: 60px 0 120px;
}

.application-header-note {
    text-align: center;
    font-size: var(--font-size-h4);
    color: var(--gold);
    margin-bottom: 3rem;
    font-style: italic;
}

.process-steps {
    max-width: 900px;
    margin: 0 auto 4rem;
}

.step {
    margin-bottom: 3rem;
    padding: 2rem;
    border: 1px solid var(--dark-gray);
    transition: border-color 0.3s ease;
}

.step:hover {
    border-color: var(--gold);
}

.step-number {
    display: inline-block;
    background: var(--gold);
    color: var(--black);
    padding: 0.5rem 1.5rem;
    font-size: var(--font-size-small);
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.step h3 {
    color: var(--gold);
    font-size: var(--font-size-h3);
    margin-bottom: 1rem;
}

.step p {
    font-size: var(--font-size-body);
    line-height: 1.8;
    color: var(--text-light);
}

.application-criteria {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
    border-top: 1px solid var(--dark-gray);
}

.criteria-title {
    color: var(--gold);
    font-size: var(--font-size-h3);
    margin-bottom: 1.5rem;
}

.application-criteria p {
    font-size: var(--font-size-large);
    line-height: 1.8;
    color: var(--text-light);
}

/* ========================================
   CONTACT & FORM SECTION
======================================== */

.contact {
    background: var(--black);
    padding: 100px 20px 60px;
}

.contact-logo {
    text-align: center;
    margin: 3rem 0 4rem;
}

.elite-logo-contact {
    max-width: 200px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.footer-logo-text {
    font-size: 2rem;
    color: var(--gold);
    letter-spacing: 0.2em;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-size: var(--font-size-large);
    color: var(--text-light);
    font-style: italic;
    letter-spacing: 0.1em;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 900px;
    margin: 0 auto 5rem;
    text-align: left;
}

.contact-info {
    text-align: left;
}

.contact-info h4 {
    color: var(--gold);
    font-size: var(--font-size-h4);
    margin-bottom: 0.5rem;
}

.contact-title {
    font-size: var(--font-size-small);
    letter-spacing: 0.15em;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.contact-logo-item {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: flex-start;
}

.contact-logo-img {
    width: auto;
    display: block;
    max-width: none;
}

.contact-logo-img--ws {
    height: 24px;
    opacity: 0.5;
    margin-top: 10px;
    margin-bottom: 16px;
}

.contact-logo-img--sally {
    height: 64px;
}

.contact-info p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--gold-bright);
}

.contact-linkedin {
    margin-top: 0.25rem;
}

.contact-linkedin a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: inherit;
    text-decoration: none;
}

.contact-linkedin a:hover {
    color: var(--gold);
}

.linkedin-icon {
    height: 16px;
    width: auto;
    display: block;
    opacity: 0.5;
}

/* ========================================
   APPLICATION FORM
======================================== */

.application-form {
    max-width: 700px;
    margin: 0 auto 4rem;
}

.form-title {
    text-align: center;
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.form-intro {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: var(--font-size-body);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.application-form input,
.application-form textarea {
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--dark-gray);
    color: var(--text-white);
    font-family: 'Caviar Dreams', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.application-form input:focus,
.application-form textarea:focus {
    outline: none;
    border-bottom-color: var(--gold);
}

.application-form textarea {
    resize: vertical;
    margin-top: 1rem;
}

.submit-btn {
    display: block;
    width: 100%;
    padding: 1.2rem;
    background: var(--gold);
    color: var(--black);
    border: none;
    font-family: 'Caviar Dreams', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 2rem;
}

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

.footer-legal {
    text-align: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--dark-gray);
}

.footer-legal p {
    font-size: var(--font-size-small);
    color: var(--text-light);
    opacity: 0.7;
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */

@media (max-width: 1024px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    /* Hero-Lion Combined */
    .hero-lion-combined {
        padding: 40px 0 60px;
        min-height: auto;
    }
    
    /* Hide lion image initially, will show after text */
    .lion-image-container {
        position: relative;
        width: 100%;
        height: auto;
        top: auto;
        right: auto;
        order: 3;
        margin-top: 40px;
    }
    
    .lion-image {
        width: 100%;
        height: auto;
        max-height: none;
        object-fit: contain;
    }
    
    .hero-top-row {
        flex-direction: column;
        gap: 30px;
        order: 1;
    }
    
    /* Center logo on tablet */
    .logo-left {
        display: flex;
        justify-content: center;
        width: 100%;
    }
    
    .elite-logo {
        margin-left: 0;
    }
    
    .hero-title-right {
        text-align: center;
        padding-left: 0;
        max-width: 100%;
        order: 2;
    }
    
    .hero-main-section {
        position: relative;
        z-index: 2;
        margin-bottom: 0;
        max-width: 100%;
        order: 2;
    }
    
    .manifesto-left {
        max-width: 100%;
        width: 100%;
    }
    
    /* Match font sizes */
    .hero-intro {
        font-size: var(--font-size-body);
        width: 100%;
    }
    
    .hero-headline {
        font-size: 2.2rem;
    }
    
    .manifesto-title {
        font-size: 1.6rem;
    }
    
    .hero-fullwidth-text {
        padding: 30px 20px 0;
    }
    
    .hero-quote-container {
        padding: 40px 20px;
    }

    /* Guides */
    .guide-row {
        grid-template-columns: 250px 1fr;
        gap: 40px;
    }

    .partnership-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Brain Quote */
    .brain-quote {
        font-size: 1.2rem;
    }
    
    /* Threshold */
    .threshold-content {
        max-width: 100%;
        margin-left: 0;
        padding: 40px 20px;
    }
    
    .threshold-title {
        font-size: 2rem;
    }
    
    .threshold-subtitle {
        font-size: 1.1rem;
    }
    
    /* Achievement */
    .achievement-image-section {
        min-height: 500px;
    }
    
    .achievement-title-overlay {
        font-size: 2rem;
        bottom: 60px;
    }
    
    .achievement-content-section {
        padding: 60px 0 80px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px 0;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    /* Hero-Lion Combined */
    .hero-lion-combined {
        padding: 30px 0 40px;
        min-height: auto;
        display: flex;
        flex-direction: column;
    }
    
    .container-wide {
        padding: 0 20px;
        order: 1;
    }
    
    /* Hide lion image initially, will show after text */
    .lion-image-container {
        position: relative;
        width: 100%;
        height: auto;
        top: auto;
        right: auto;
        order: 3;
        margin-top: 40px;
    }
    
    .lion-image {
        width: 100%;
        height: auto;
        max-height: none;
        object-fit: contain;
    }
    
    .hero-top-row {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 30px;
        order: 1;
    }
    
    /* Center logo on mobile */
    .logo-left {
        display: flex;
        justify-content: center;
        width: 100%;
    }
    
    .elite-logo {
        max-width: 150px;
        margin-left: 0;
    }
    
    .hero-title-right {
        text-align: center;
        padding-left: 0;
        max-width: 100%;
        order: 2;
    }
    
    .hero-main-section {
        position: relative;
        z-index: 2;
        margin-bottom: 0;
        max-width: 100%;
        order: 2;
    }
    
    .manifesto-left {
        max-width: 100%;
        width: 100%;
    }
    
    /* Match font sizes */
    .hero-intro {
        font-size: var(--font-size-body);
        width: 100%;
    }
    
    .manifesto-title {
        width: 100%;
    }
    
    .manifesto-text {
        width: 100%;
    }
    
    .hero-headline {
        font-size: 1.8rem;
    }
    
    .manifesto-title {
        font-size: 1.3rem;
    }
    
    .hero-fullwidth-text {
        padding: 30px 20px 0;
    }
    
    .hero-quote-container {
        padding: 40px 20px;
    }
    
    .hero-quote {
        font-size: 1rem;
    }
    
    /* Achievement */
    .achievement-image-section {
        min-height: 400px;
    }
    
    .achievement-title-overlay {
        font-size: 1.8rem;
        bottom: 40px;
        padding: 0 20px;
    }
    
    .achievement-content-section {
        padding: 40px 20px 60px;
    }
    
    .achievement-intro,
    .achievement-subtitle,
    .achievement-content,
    .achievement-closing {
        max-width: 100%;
    }

    /* Guides */
    .guide-row {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 4rem;
    }
    
    .guide-photo {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .guide-info-col {
        text-align: center;
    }
    
    .guide-name {
        font-size: 1.5rem;
    }
    
    .guides-collaboration {
        font-size: 1.1rem;
    }
    
    /* Application */
    .application-image-section {
        min-height: 400px;
    }
    
    .application-image-section .container-wide {
        min-height: 400px;
        padding-bottom: 40px;
    }
    
    .application-title-overlay {
        font-size: 1.8rem;
    }
    
    .application-content-section {
        padding: 40px 20px 80px;
    }
    
    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .elite-logo-contact {
        max-width: 150px;
    }
    
    /* Value prop quote */
    .featured-quote {
        font-size: 1.1rem;
        padding: 1.5rem;
    }
    
    /* Investment */
    .investment-top-section {
        min-height: 400px;
        padding: 80px 0;
    }
    
    .investment-content-overlay {
        padding: 0 20px;
    }
    
    .investment-title {
        text-align: center;
    }
    
    .investment-title::after {
        margin: 1rem auto 0;
    }
    
    .investment-bottom-section {
        padding: 30px 20px 80px;
    }
    
    /* Audience list */
    .audience-list li {
        font-size: 1rem;
    }

    /* Partnership */
    .partnership-grid {
        grid-template-columns: 1fr;
    }

    /* Background attachment fix for mobile */
    .bg-section {
        background-attachment: scroll;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }

    .brain-quote {
        font-size: 1.1rem;
    }

    .investment-amount {
        font-size: 1.8rem;
    }
}

/* ========================================
   ANIMATIONS & INTERACTIONS
======================================== */

/* Smooth fade-in for sections */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Apply to sections as they come into view */
.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

/* Link hover effects */
a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--gold-bright);
}

/* Image hover effects */
.guide-photo {
    transition: filter 0.3s ease;
}

.guide-photo:hover {
    filter: grayscale(0%);
}

/* Smooth scrolling behavior already set in html */

