/* ===================================
   KILLING THE VOID - SOFT & ELEGANT
   Matching Magnus's feathered design
   =================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #ffffff;
    --bg-light: #fafafa;
    --bg-lighter: #f5f5f5;
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
    --text-muted: #999999;
    --accent-gold: #d4a574;
    --accent-dark: #2c2c2c;
    --border-light: #eeeeee;
    
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 16px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
}

/* ===================================
   SCROLL ANIMATIONS
   =================================== */

.fade-in-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-element.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Horizontal cards slide from left */
.card-void.fade-in-element,
.card-horizontal-reverse.fade-in-element {
    transform: translateX(-40px);
}

.card-void.animate-in,
.card-horizontal-reverse.animate-in {
    transform: translateX(0);
}

/* Feature cards stagger slightly */
.feature-card.fade-in-element {
    transition-delay: 0.1s;
}

.feature-card:nth-child(2).fade-in-element {
    transition-delay: 0.2s;
}

.feature-card:nth-child(3).fade-in-element {
    transition-delay: 0.3s;
}

/* Budget cards stagger */
.budget-card.fade-in-element {
    transition-delay: 0.1s;
}

.budget-card:nth-child(2).fade-in-element {
    transition-delay: 0.2s;
}

.budget-card:nth-child(3).fade-in-element {
    transition-delay: 0.3s;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .fade-in-element {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

.container {
    max-width: 900px;
    padding: 4rem 2rem;
    margin: 0 auto;
}

.container-wide {
    max-width: 1300px;
    padding: 5rem 3rem;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .container {
        padding: 3rem 1.5rem;
    }
    .container-wide {
        padding: 3rem 1.5rem;
    }
}

/* ===================================
   NAVIGATION - TRANSPARENT & SOFT
   =================================== */

.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: none;
    transition: all 0.4s ease;
    transform: translateY(-100%);
    opacity: 0;
}

.main-nav.scrolled {
    transform: translateY(0);
    opacity: 1;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 1.25rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-logo:hover {
    opacity: 0.8;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 400;
}

.nav-link:hover {
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .nav-link {
        display: none;
    }
}

.btn-nav-cta {
    display: inline-block;
    padding: 0.7rem 1.8rem;
    background-color: var(--accent-gold);
    color: #1a1a1a;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(212, 165, 116, 0.25);
}

.btn-nav-cta:hover {
    background-color: #c49563;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.35);
}

/* ===================================
   HERO - WITH GRADIENT FADE
   =================================== */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.4) 30%,
        rgba(0, 0, 0, 0.2) 60%,
        rgba(255, 255, 255, 0.7) 85%,
        rgba(255, 255, 255, 0.95) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 950px;
    padding: 3rem;
    text-align: center;
}

.hero-subtitle {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: #d4a574;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 5.5rem;
    line-height: 1.1;
    font-weight: 600;
    color: white;
    margin-bottom: 2rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero-title-accent {
    color: #deebff;
}

.hero-description {
    font-family: var(--font-sans);
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    font-style: normal;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-group {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-block;
    padding: 0.9rem 2.5rem;
    background-color: #d4a574;
    color: #1a1a1a;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(212, 165, 116, 0.3);
}

.btn-hero-primary:hover {
    background-color: #c49563;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.4);
}

.btn-hero-secondary {
    display: inline-block;
    padding: 0.9rem 2.5rem;
    background-color: transparent;
    backdrop-filter: blur(10px);
    color: white;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
}

/* ===================================
   THE VOID SECTION - LIGHT & ELEGANT
   =================================== */

.void-section {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.95) 0%, #fafafa 100%);
    padding: 3rem 0;
}

.card-void {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    background-color: var(--bg-primary);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

@media (min-width: 900px) {
    .card-void {
        grid-template-columns: 47% 53%;
    }
}

.void-image-container {
    position: relative;
    height: 500px;
    overflow: hidden;
}

@media (min-width: 900px) {
    .void-image-container {
        height: auto;
    }
}

.void-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.void-quote {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 5.5rem;
    color: white;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    line-height: 1.6;
    font-style: italic;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    z-index: 5;
}

.void-logo {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.void-content {
    padding: 3.5rem;
}

@media (max-width: 768px) {
    .void-content {
        padding: 2.5rem;
    }
}

.void-label {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.void-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.75rem;
}

.void-text {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}

.void-text strong {
    color: var(--text-primary);
    font-weight: 600;
}

.void-text em {
    font-style: italic;
}

.void-boxes {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

@media (min-width: 600px) {
    .void-boxes {
        grid-template-columns: repeat(2, 1fr);
    }
}

.void-box {
    padding: 1.5rem;
    background-color: var(--bg-lighter);
    border-radius: 8px;
    border-left: 3px solid var(--accent-gold);
}

.void-box h4 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.void-box p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

@media (max-width: 768px) {
    .void-title {
        font-size: 2.25rem;
    }
}

/* ===================================
   REAL LIFE SECTION - 3 CARDS IN ROW
   =================================== */

.real-life-section {
    background-color: var(--bg-primary);
    padding: 3rem 0;
}

.section-label-center {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--accent-gold);
    text-align: center;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.section-title-center {
    font-family: var(--font-serif);
    font-size: 3rem;
    line-height: 1.25;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 1.25rem;
}

.section-subtitle-center {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 4rem;
}

.three-event-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 600px) {
    .three-event-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1000px) {
    .three-event-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background-color: var(--bg-primary);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.feature-image {
    height: 240px;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.feature-content {
    padding: 2rem;
}

.feature-title {
    font-family: var(--font-serif);
    font-size: 1.65rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.feature-date {
    font-size: 0.8rem;
    color: var(--accent-gold);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.feature-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1.75rem;
}

.btn-feature {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    background-color: var(--accent-gold);
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(212, 165, 116, 0.25);
}

.btn-feature:hover {
    background-color: #c49563;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.35);
}

/* Event Info Section - Magnus Style */
.event-info-section {
    margin-top: 4rem;
    text-align: center;
}

.event-quote {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    line-height: 1.6;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 2.5rem;
}

.event-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.event-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-gold);
    border-radius: 50%;
    flex-shrink: 0;
}

.event-feature-item .feature-text {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 400;
}

/* Parallax Dividers */
.parallax-divider {
    height: 500px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    overflow: visible;
    display: block;
    width: 100%;
}

.parallax-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0.7) 30%,
        rgba(255, 255, 255, 0) 100%
    );
    z-index: 2;
    pointer-events: none;
}

.parallax-divider::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(
        to top,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0.7) 30%,
        rgba(255, 255, 255, 0) 100%
    );
    z-index: 2;
    pointer-events: none;
}

@media (max-width: 768px) {
    .parallax-divider {
        height: 250px;
        background-attachment: scroll;
    }
}

.info-box {
    background-color: var(--bg-light);
    padding: 2rem 2.5rem;
    border-radius: 10px;
    border-left: 3px solid var(--accent-gold);
    margin-top: 3rem;
}

.info-box p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

@media (max-width: 768px) {
    .section-title-center {
        font-size: 2.25rem;
    }
}

/* ===================================
   BUDGET SECTION
   =================================== */

.budget-section {
    background-color: var(--bg-light);
    padding: 5rem 0;
}

.budget-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .budget-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.budget-card {
    background-color: var(--bg-primary);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.budget-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.budget-number {
    width: 50px;
    height: 50px;
    background-color: var(--accent-gold);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 auto 1.5rem;
}

.budget-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.budget-price {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.budget-text {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin: 0;
}

@media (max-width: 768px) {
    .budget-title {
        font-size: 1.35rem;
    }
    
    .budget-price {
        font-size: 1.75rem;
    }
}

/* ===================================
   THE ROOM SECTION
   =================================== */

.room-section {
    background-color: var(--bg-light);
    padding: 3rem 0;
}

.card-horizontal-reverse {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    background-color: var(--bg-primary);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    padding: 3rem;
}

@media (min-width: 900px) {
    .card-horizontal-reverse {
        grid-template-columns: 55% 45%;
        align-items: center;
        padding: 4rem;
    }
}

.card-content {
    order: 1;
}

.card-image-circle {
    order: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-image-circle img {
    width: 100%;
    max-width: 380px;
    height: auto;
    border-radius: 50%;
    object-fit: cover;
    aspect-ratio: 1;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.section-title {
    font-family: var(--font-serif);
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.75rem;
}

.section-text {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}

.section-text strong {
    color: var(--text-primary);
    font-weight: 600;
}

.check-list {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.check-list li {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 0.85rem;
    padding-left: 1.75rem;
    position: relative;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.25rem;
    }
}

/* ===================================
   HIGH SIGNAL SECTION
   =================================== */

.signal-section {
    background-color: var(--bg-primary);
    padding: 3rem 0;
}

.three-column-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .three-column-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.info-card {
    background-color: var(--bg-light);
    padding: 2.25rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.info-title {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.85rem;
}

.info-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* ===================================
   CIRCLE SECTION
   =================================== */

.circle-section {
    background-color: var(--bg-light);
    padding: 3rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 4.5rem;
    font-weight: 600;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 0.85rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.cta-center {
    text-align: center;
    margin-top: 3rem;
}

.btn-primary {
    display: inline-block;
    padding: 0.95rem 2.25rem;
    background-color: var(--accent-gold);
    color: white;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(212, 165, 116, 0.3);
}

.btn-primary:hover {
    background-color: #c49563;
    transform: translateY(-2px);
    box-shadow: 0 5px 18px rgba(212, 165, 116, 0.4);
}

.btn-primary-large {
    display: inline-block;
    padding: 1.1rem 2.75rem;
    background-color: var(--accent-gold);
    color: white;
    font-size: 1.05rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.btn-primary-large:hover {
    background-color: #c49563;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
}

/* ===================================
   TICKER SECTION
   =================================== */

.ticker-section {
    background-color: var(--bg-primary);
    padding: 3rem 0;
    overflow: hidden;
}

.section-heading {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 0.85rem;
}

.section-subtitle {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 3rem;
}

.section-subtitle-center {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 1.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-description-center {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.ticker-container {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin: 3rem 0;
}

.ticker-line {
    display: flex;
    overflow: hidden;
    white-space: nowrap;
}

.ticker-content {
    display: inline-flex;
    gap: 1rem;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.ticker-left .ticker-content {
    animation-name: scroll-left;
    animation-duration: 60s;
}

.ticker-right .ticker-content {
    animation-name: scroll-right;
    animation-duration: 60s;
}

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

@keyframes scroll-right {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(0); }
}

.ticker-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.75rem 1.5rem;
    background-color: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: 50px;
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.ticker-pill:hover {
    background-color: var(--accent-gold);
    color: white;
    border-color: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.3);
}

.pill-emoji {
    font-size: 1.2rem;
    line-height: 1;
}

.ticker-tooltip {
    position: fixed;
    background-color: var(--accent-dark);
    color: white;
    padding: 1.15rem 1.35rem;
    border-radius: 8px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 300px;
    z-index: 1000;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.ticker-tooltip.show {
    opacity: 1;
}

/* ===================================
   FAQ SECTION
   =================================== */

.faq-section {
    background-color: var(--bg-light);
    padding: 3rem 0;
}

.faq-item {
    margin-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-light);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    text-align: left;
    padding: 1.5rem 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: var(--accent-gold);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--accent-gold);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1.25rem;
    font-weight: 300;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0;
}

.faq-item.active .faq-answer {
    max-height: 1200px;
    padding-bottom: 1.75rem;
}

.faq-answer p {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 0.85rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0.85rem;
}

.faq-answer ul li {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 0.65rem;
    padding-left: 1.5rem;
    position: relative;
}

.faq-answer ul li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
}

.faq-answer em {
    color: var(--accent-gold);
    font-style: italic;
}

/* ===================================
   FINAL CTA
   =================================== */

.final-cta-section {
    background-color: var(--bg-primary);
    padding: 3rem 0;
    text-align: center;
}

.cta-heading {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
}

.cta-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 2.25rem;
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    background-color: var(--accent-dark);
    color: white;
}

.footer-main {
    max-width: 1300px;
    margin: 0 auto;
    padding: 3.5rem 3rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr 2fr;
    }
}

.footer-brand {
    text-align: center;
}

@media (min-width: 768px) {
    .footer-brand {
        text-align: left;
    }
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.65rem;
}

.footer-tagline {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--accent-gold);
    font-style: italic;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2.25rem;
}

.footer-column h4 {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer-column a {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 0.65rem;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.25);
    padding: 1.35rem;
    text-align: center;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ===================================
   INQUIRY FORM SECTION
   =================================== */

.inquiry-form-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 5rem 2rem;
}

.inquiry-form-card {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 20px;
    padding: 3.5rem 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.inquiry-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.inquiry-subtitle {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 400;
}

.inquiry-description {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.inquiry-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.inquiry-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.inquiry-form-group label {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
}

.inquiry-form-group input,
.inquiry-form-group textarea,
.inquiry-form-group select {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    padding: 0.85rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #fafafa;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.inquiry-form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666666' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.inquiry-form-group input:focus,
.inquiry-form-group textarea:focus,
.inquiry-form-group select:focus {
    outline: none;
    border-color: var(--accent-gold);
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

.inquiry-form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.inquiry-submit-btn {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    padding: 1rem 2rem;
    background: var(--accent-gold);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.inquiry-submit-btn:hover {
    background: #c89560;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.3);
}

.inquiry-submit-btn:active {
    transform: translateY(0);
}

.inquiry-submit-btn:disabled {
    background: #cccccc;
    cursor: not-allowed;
    transform: none;
}

.inquiry-privacy {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 0.5rem;
}

/* Confirmation Message */
.inquiry-confirmation {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.inquiry-confirmation.is-hidden {
    display: none;
}

.inquiry-confirmation-content {
    text-align: center;
    max-width: 500px;
}

.inquiry-confirmation-logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.inquiry-confirmation-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.inquiry-confirmation-text {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.inquiry-confirmation-button {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    padding: 0.85rem 2rem;
    background: var(--accent-gold);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.inquiry-confirmation-button:hover {
    background: #c89560;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .inquiry-form-section {
        padding: 3rem 1.5rem;
    }
    
    .inquiry-form-card {
        padding: 2.5rem 1.5rem;
    }
    
    .inquiry-title {
        font-size: 2rem;
    }
    
    .inquiry-form-row {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   HERO GALLERY SECTION
   =================================== */

.hero-gallery-section {
    background-color: #fafafa;
    padding: 3rem 0;
    overflow: hidden;
}

.hero-gallery-grid {
    width: 100%;
}

.hero-gallery-rows {
    padding: 0 1rem;
}

.hero-gallery-row {
    display: flex;
    gap: 0.5rem;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.hero-gallery-row:last-child {
    margin-bottom: 0;
}

.hero-gallery-item {
    flex: 0 0 180px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.hero-gallery-item::before {
    content: '';
    display: block;
    padding-bottom: 133%;
}

.hero-gallery-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.18) saturate(1.25);
    transform: scale(1.03);
    transition: all 0.3s ease;
}

.hero-gallery-item:hover img {
    transform: scale(1.06);
    filter: brightness(1.22) saturate(1.35);
}
