/* MNZCC - Homepage Section Styles */

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--color-cream);
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
    overflow: hidden;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 8s ease-out;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 77, 74, 0.3) 0%,
        rgba(10, 77, 74, 0.1) 50%,
        transparent 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 620px;
    padding-top: var(--space-xxl);
    padding-bottom: var(--space-lg);
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 0.625rem 1.25rem;
    background: var(--color-gold);
    color: var(--color-charcoal);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: var(--space-md);
    animation: slideIn 0.8s ease-out 0.2s both;
}

.hero-tag::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
}

.hero-title {
    color: var(--color-charcoal);
    margin-bottom: var(--space-md);
    animation: slideIn 0.8s ease-out 0.4s both;
}

.hero-title .highlight {
    color: var(--color-teal);
    position: relative;
    display: inline-block;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 0.1em;
    left: 0;
    width: 100%;
    height: 0.15em;
    background: var(--color-gold);
    opacity: 0.4;
    z-index: -1;
}

.hero-text {
    font-size: 1.125rem;
    color: var(--color-gray);
    line-height: 1.8;
    margin-bottom: var(--space-md);
    max-width: 540px;
    animation: slideIn 0.8s ease-out 0.6s both;
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    animation: slideIn 0.8s ease-out 0.8s both;
}

.hero-scroll {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-gray);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: fadeIn 1s ease-out 1.2s both;
}

.hero-scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--color-teal), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

/* Decorative Elements */
.hero-decor {
    position: absolute;
    z-index: 0;
}

.hero-decor-1 {
    top: 20%;
    left: 5%;
    width: 120px;
    height: 120px;
    border: 1px solid var(--color-gold);
    opacity: 0.3;
    border-radius: 50%;
    animation: float 8s ease-in-out infinite; /* Slower for sophistication */
}

.hero-decor-2 {
    bottom: 25%;
    left: 35%;
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gold), transparent);
    transform: rotate(-45deg);
    opacity: 0.4;
}

/* Staggered hero animations */
.hero-tag {
    animation: revealUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s both;
}

.hero-title {
    animation: revealUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.35s both;
}

.hero-text {
    animation: revealUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s both;
}

.hero-actions {
    animation: revealUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.65s both;
}

@keyframes revealUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Video */
.hero-media {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
    overflow: hidden;
}

.hero-poster,
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video {
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-video.loaded {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        var(--color-cream) 0%,
        rgba(245, 243, 239, 0.92) 25%,
        rgba(245, 243, 239, 0.75) 45%,
        rgba(245, 243, 239, 0.4) 65%,
        transparent 100%
    );
    z-index: 1;
}

.hero-overlay::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, var(--color-cream), transparent);
}

.hero-video-toggle {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-fast);
}

.hero-video-toggle:hover {
    background: var(--color-gold);
}

.hero-video-toggle svg {
    width: 20px;
    height: 20px;
    color: var(--color-charcoal);
}

.hero-video-toggle .icon-pause { display: block; }
.hero-video-toggle .icon-play { display: none; }
.hero-video-toggle.paused .icon-pause { display: none; }
.hero-video-toggle.paused .icon-play { display: block; }

/* Hero pattern accent */
.hero-pattern {
    position: absolute;
    right: 0;
    top: 20%;
    width: 200px;
    height: 400px;
    opacity: 0.08;
    z-index: 1;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    padding: var(--space-lg) 0;
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-gold-dark), var(--color-gold), var(--color-gold-dark));
}

/* Gold radial accent */
.stats::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(184, 149, 107, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    position: relative;
    z-index: 1;
}

/* ============================================
   EVENTS SECTION
   ============================================ */
.events {
    background: var(--color-cream);
    position: relative;
}

.events::before {
    content: '';
    position: absolute;
    top: -100px;
    right: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--color-gold) 0%, transparent 70%);
    opacity: 0.05;
    pointer-events: none;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
    gap: var(--space-md);
}

.section-header-text {
    max-width: 520px;
}

.section-tag {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: var(--space-sm);
    display: block;
}

.section-title {
    color: var(--color-charcoal);
    margin-bottom: 0;
}

.section-title + p {
    margin-top: var(--space-sm);
}

/* Bento grid layout for events */
.events-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: var(--space-card-gap);
}

/* ============================================
   STORY TIMELINE SECTION
   ============================================ */
.story {
    background: var(--color-cream);
    position: relative;
    overflow: hidden;
}

.story-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-xl);
}

.story-intro h2 {
    margin-top: var(--space-sm);
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: var(--space-lg) 0;
}

.timeline-track {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--color-cream-dark);
    transform: translateX(-50%);
}

.timeline-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(to bottom, var(--color-gold), var(--color-gold-dark));
    transition: height 0.1s ease-out;
}

.timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 100px 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
    align-items: center;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item:nth-child(odd) .timeline-content {
    grid-column: 1;
    text-align: right;
}

.timeline-item:nth-child(odd) .timeline-marker {
    grid-column: 2;
}

.timeline-item:nth-child(odd)::after {
    content: '';
    grid-column: 3;
}

.timeline-item:nth-child(even) .timeline-content {
    grid-column: 3;
    text-align: left;
}

.timeline-item:nth-child(even) .timeline-marker {
    grid-column: 2;
}

.timeline-item:nth-child(even)::before {
    content: '';
    grid-column: 1;
}

.timeline-marker {
    width: 90px;
    height: 90px;
    background: var(--color-cream);
    border: 3px solid var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: var(--transition-medium);
    margin: 0 auto;
}

.timeline-item.in-view .timeline-marker {
    background: var(--color-gold);
    transform: scale(1.1);
}

.timeline-year {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-charcoal);
}

.timeline-item.in-view .timeline-year {
    color: var(--color-white);
}

.timeline-content {
    background: var(--color-white);
    padding: var(--space-md);
    border: 1px solid var(--color-cream-dark);
    transition: var(--transition-medium);
}

.timeline-item.in-view .timeline-content {
    box-shadow: var(--shadow-md);
    border-color: var(--color-gold);
}

.timeline-image {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    margin-bottom: var(--space-sm);
}

.timeline-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.timeline-item:hover .timeline-image img {
    transform: scale(1.05);
}

.timeline-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-charcoal);
    margin-bottom: var(--space-xs);
}

.timeline-text {
    color: var(--color-gray);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.timeline-stat {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-sm);
    flex-wrap: wrap;
}

.timeline-stat-item {
    text-align: center;
}

.timeline-stat-number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-gold);
}

.timeline-stat-label {
    font-size: 0.75rem;
    color: var(--color-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================
   CONNECTION MAP
   ============================================ */
.connection-map {
    background: var(--color-charcoal);
    position: relative;
    overflow: hidden;
}

.connection-map .section-tag,
.connection-map h2 {
    color: var(--color-white);
    text-align: center;
}

.connection-map .section-tag {
    color: var(--color-gold);
}

.map-container {
    position: relative;
    max-width: 1000px;
    margin: var(--space-lg) auto;
}

.map-svg {
    width: 100%;
    height: auto;
    display: block;
}

.map-svg .country {
    fill: rgba(184, 149, 107, 0.15);
    stroke: var(--color-gold);
    stroke-width: 1;
    transition: var(--transition-fast);
}

.map-svg .country:hover {
    fill: rgba(184, 149, 107, 0.3);
}

.map-svg .flight-path {
    fill: none;
    stroke: var(--color-gold);
    stroke-width: 2;
    stroke-dasharray: 8 4;
    animation: dashMove 20s linear infinite;
}

@keyframes dashMove {
    to { stroke-dashoffset: -240; }
}

.map-svg .city-marker {
    cursor: pointer;
    transition: var(--transition-fast);
}

.map-svg .city-marker:hover,
.map-svg .city-marker:focus {
    transform: scale(1.2);
}

.map-svg .city-marker circle {
    fill: var(--color-gold);
    stroke: var(--color-white);
    stroke-width: 2;
}

.map-svg .city-label {
    fill: var(--color-white);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
}

.map-svg .flight-dot {
    fill: var(--color-white);
}

.map-svg .trade-value {
    fill: var(--color-gold);
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
}

.map-info-panel {
    position: absolute;
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    padding: var(--space-md);
    max-width: 280px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
    z-index: 10;
}

.map-info-panel.active {
    opacity: 1;
    visibility: visible;
}

.map-info-panel h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--color-charcoal);
    margin-bottom: var(--space-xs);
}

.map-info-panel p {
    font-size: 0.875rem;
    color: var(--color-gray);
}

.map-stats {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
    margin-top: var(--space-lg);
}

.map-stat {
    text-align: center;
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 180px;
}

.map-stat-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: var(--space-xs);
}

.map-stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   MEMBERSHIP SECTION
   ============================================ */
.membership {
    background: var(--color-charcoal);
    position: relative;
    overflow: hidden;
}

.membership::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(10, 77, 74, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(201, 169, 98, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.membership .section-tag {
    color: var(--color-gold);
}

.membership .section-title {
    color: var(--color-white);
}

.membership-intro {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.125rem;
    max-width: 600px;
    margin-top: var(--space-sm);
}

.tiers-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

.membership-cta {
    text-align: center;
    margin-top: var(--space-xl);
}

/* Membership Comparison Tool */
.membership-comparison {
    margin-top: var(--space-lg);
}

.tier-selector {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: var(--space-lg);
    background: rgba(255, 255, 255, 0.05);
    padding: 0.25rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.tier-selector button {
    flex: 1;
    padding: 1rem 1.5rem;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    position: relative;
}

.tier-selector button:hover {
    color: var(--color-white);
}

.tier-selector button[aria-selected="true"] {
    background: var(--color-gold);
    color: var(--color-charcoal);
}

.tier-comparison-panel {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--space-lg);
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.tier-details {
    animation: fadeSlideIn 0.4s ease-out;
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tier-price {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: var(--space-md);
}

.tier-benefits {
    list-style: none;
    text-align: left;
    max-width: 400px;
    margin: 0 auto var(--space-md);
}

.tier-benefit {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tier-benefit svg {
    width: 18px;
    height: 18px;
    color: var(--color-gold);
    flex-shrink: 0;
}

.tier-value-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    color: var(--color-charcoal);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    animation: pulseBadge 2s ease-in-out infinite;
}

@keyframes pulseBadge {
    0%, 100% { box-shadow: 0 0 0 0 rgba(184, 149, 107, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(184, 149, 107, 0); }
}

.compare-toggle {
    margin-top: var(--space-md);
    padding: 1rem 2rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.compare-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-gold);
}

/* ============================================
   NEWS SECTION
   ============================================ */
.news {
    background: var(--color-cream);
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

/* ============================================
   MEMBER SPOTLIGHT CAROUSEL
   ============================================ */
.member-spotlight {
    background: var(--color-cream);
    position: relative;
}

.spotlight-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.spotlight-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.spotlight-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.spotlight-carousel::-webkit-scrollbar {
    display: none;
}

.spotlight-slide {
    flex: 0 0 100%;
    scroll-snap-align: start;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: var(--space-lg);
    padding: var(--space-md);
}

.spotlight-portrait {
    position: relative;
}

.spotlight-portrait img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border: 4px solid var(--color-gold);
}

.spotlight-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.spotlight-quote {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-charcoal);
    line-height: 1.4;
    margin-bottom: var(--space-md);
    position: relative;
    padding-left: var(--space-md);
    border-left: 4px solid var(--color-gold);
}

.spotlight-author {
    margin-bottom: var(--space-sm);
}

.spotlight-author-name {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-charcoal);
}

.spotlight-author-role {
    font-size: 0.875rem;
    color: var(--color-gold-dark);
}

.spotlight-story {
    font-size: 0.9375rem;
    color: var(--color-gray);
    line-height: 1.6;
}

.spotlight-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-md);
    margin-top: var(--space-md);
}

.spotlight-prev,
.spotlight-next {
    width: 48px;
    height: 48px;
    border: 2px solid var(--color-charcoal);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.spotlight-prev:hover,
.spotlight-next:hover {
    background: var(--color-charcoal);
    color: var(--color-white);
}

.spotlight-prev svg,
.spotlight-next svg {
    width: 20px;
    height: 20px;
}

.spotlight-indicators {
    display: flex;
    gap: var(--space-xs);
}

.spotlight-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-cream-dark);
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

.spotlight-indicator.active {
    background: var(--color-gold);
    transform: scale(1.2);
}

/* ============================================
   PARTNERS SECTION
   ============================================ */
.partners {
    background: var(--color-white);
    border-top: 1px solid var(--color-cream-dark);
    border-bottom: 1px solid var(--color-cream-dark);
}

.partners-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

/* ============================================
   TESTIMONIAL SECTION
   ============================================ */
.testimonial {
    background: var(--color-teal);
    position: relative;
    overflow: hidden;
}

.testimonial::before {
    content: '\201C';
    position: absolute;
    top: -40px;
    left: 10%;
    font-family: var(--font-display);
    font-size: 400px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    pointer-events: none;
}

.testimonial-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.testimonial-quote {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 500;
    color: var(--color-white);
    line-height: 1.4;
    margin-bottom: var(--space-lg);
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
}

.testimonial-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--color-gold);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.testimonial-name {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-white);
}

.testimonial-role {
    font-size: 0.875rem;
    color: var(--color-gold);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
    background: var(--color-cream);
    position: relative;
    overflow: hidden;
}

.cta-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.cta-content {
    max-width: 500px;
}

.cta-title {
    margin-bottom: var(--space-md);
}

.cta-text {
    font-size: 1.125rem;
    color: var(--color-gray);
    margin-bottom: var(--space-lg);
    line-height: 1.7;
}

.cta-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.9375rem;
    color: var(--color-charcoal);
}

.cta-feature svg {
    width: 20px;
    height: 20px;
    color: var(--color-teal);
    flex-shrink: 0;
}

.cta-image {
    position: relative;
}

.cta-image-main {
    aspect-ratio: 4/5;
    overflow: hidden;
}

.cta-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-image-accent {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 200px;
    height: 200px;
    background: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md);
}

.cta-image-accent-text {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-charcoal);
    text-align: center;
    line-height: 1.3;
}

/* ============================================
   CULTURAL PATTERNS
   ============================================ */
.pattern-koru {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cpath d='M30 10 C45 10 50 25 50 35 C50 45 40 50 30 50 C25 50 20 48 18 45 C20 42 25 40 30 40 C35 40 38 35 38 30 C38 25 35 22 30 22 C27 22 25 24 25 27 C25 29 27 30 28 30' fill='none' stroke='%23B8956B' stroke-width='1' opacity='0.15'/%3E%3C/svg%3E");
    background-size: 60px 60px;
}

.pattern-kowhaiwhai {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='40' viewBox='0 0 120 40'%3E%3Cpath d='M0 20 Q15 5 30 20 T60 20 T90 20 T120 20' fill='none' stroke='%23B8956B' stroke-width='2' opacity='0.12'/%3E%3Cpath d='M0 25 Q15 40 30 25 T60 25 T90 25 T120 25' fill='none' stroke='%23B8956B' stroke-width='1.5' opacity='0.08'/%3E%3C/svg%3E");
    background-size: 120px 40px;
    background-repeat: repeat-x;
}

.pattern-batik {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cpath d='M40 0 L80 40 L40 80 L0 40 Z' fill='none' stroke='%23B8956B' stroke-width='1' opacity='0.08'/%3E%3Ccircle cx='40' cy='40' r='12' fill='none' stroke='%23B8956B' stroke-width='1' opacity='0.06'/%3E%3Ccircle cx='40' cy='40' r='6' fill='%23B8956B' opacity='0.04'/%3E%3C/svg%3E");
    background-size: 80px 80px;
}

.pattern-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: var(--pattern-opacity-subtle);
    mix-blend-mode: multiply;
}

.pattern-divider {
    width: 100%;
    height: 40px;
    background-repeat: repeat-x;
    opacity: 0.5;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes scrollLine {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }
    50% {
        transform: scaleY(1);
        transform-origin: top;
    }
    51% {
        transform-origin: bottom;
    }
    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

/* ============================================
   AMBIENT AUDIO
   ============================================ */
.audio-toggle {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 0.75rem 1rem;
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    cursor: pointer;
    z-index: 1000;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--color-charcoal);
    transition: var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.audio-toggle:hover {
    background: var(--color-gold);
}

.audio-toggle svg {
    width: 18px;
    height: 18px;
}

.audio-toggle .icon-muted { display: block; }
.audio-toggle .icon-playing { display: none; }
.audio-toggle[aria-pressed="true"] .icon-muted { display: none; }
.audio-toggle[aria-pressed="true"] .icon-playing { display: block; }

.audio-panel {
    position: fixed;
    bottom: 5rem;
    left: 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    padding: var(--space-md);
    border-radius: 8px;
    z-index: 1000;
    min-width: 220px;
    box-shadow: var(--shadow-md);
}

.audio-panel[hidden] {
    display: none;
}

.audio-panel h4 {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--color-charcoal);
}

.audio-tracks {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    margin-bottom: var(--space-sm);
}

.audio-track {
    padding: 0.625rem 0.875rem;
    background: transparent;
    border: 1px solid var(--color-cream-dark);
    text-align: left;
    font-size: 0.8125rem;
    color: var(--color-charcoal);
    cursor: pointer;
    transition: var(--transition-fast);
    border-radius: 4px;
}

.audio-track:hover {
    background: var(--color-cream-dark);
}

.audio-track.active {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-charcoal);
}

.audio-volume {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.audio-volume input[type="range"] {
    flex: 1;
    height: 4px;
    -webkit-appearance: none;
    background: var(--color-cream-dark);
    border-radius: 2px;
}

.audio-volume input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    background: var(--color-gold);
    border-radius: 50%;
    cursor: pointer;
}
