/* ===================================
   Pages CSS - Additional Styles
   =================================== */

/* ===== Event Coming Soon Card ===== */
.event-coming-soon {
    background: #080808;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.event-coming-soon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 85% 65% at 50% 50%, rgba(201,168,76,0.07) 0%, transparent 70%);
    pointer-events: none;
}

.event-coming-soon::after {
    content: '';
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(201,168,76,0.14);
    pointer-events: none;
}

.coming-soon-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    padding: 1.2rem 1rem;
    text-align: center;
}

.coming-soon-ornament {
    color: var(--accent-color, #C9A84C);
    font-size: 0.9rem;
    opacity: 0.55;
    letter-spacing: 0.2em;
}

.coming-soon-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.55em;
    text-transform: uppercase;
    color: var(--accent-color, #C9A84C);
    margin: 0;
}

.coming-soon-year {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 200;
    color: #fff;
    letter-spacing: 0.12em;
    line-height: 1;
    margin: 0;
}

.coming-soon-rule {
    width: 56px;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(201,168,76,0.55), transparent);
}

.coming-soon-location {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.58rem;
    font-weight: 400;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin: 0;
}

/* ===== Page Header ===== */
.page-header {
    background: var(--bg-deeper, #0D0D0D);
    padding: 6.5rem 0 2rem;
    text-align: center;
    border-bottom: 1px solid rgba(201,168,76,0.12);
}

.page-header-overlay {
    display: none;
}

.page-header .container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
}

.page-header-content {
    text-align: center;
    color: var(--text-light, #fff);
}

.page-label {
    display: block;
    color: var(--accent-color);
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 0.8rem;
    font-family: var(--font-primary);
    font-weight: 400;
}

.page-title {
    font-size: clamp(1.4rem, 2.5vw, 2.2rem);
    font-weight: 300;
    letter-spacing: clamp(3px, 1vw, 8px);
    margin-bottom: 0.6rem;
    text-transform: uppercase;
    line-height: 1.1;
    color: #fff;
}

.page-subtitle {
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    opacity: 0.35;
    font-family: var(--font-primary);
    margin: 0;
}

/* ===== Saranda 2025 Stats Section ===== */
.about-stats-section {
    background: var(--bg-dark);
    padding: 5rem 0;
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
}

.about-stats-section .section-title { color: var(--text-light); }

.about-stats-intro {
    max-width: 600px;
    margin: 1.5rem auto 0;
    text-align: center;
    color: rgba(255,255,255,0.60);
    font-size: 0.9rem;
    line-height: 1.8;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
    margin-top: 3.5rem;
    border: 1px solid rgba(201,168,76,0.18);
}

.about-stat {
    padding: 2rem 1rem;
    text-align: center;
    border-right: 1px solid rgba(201,168,76,0.18);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.about-stat:last-child {
    border-right: none;
}

.about-stat-number {
    font-family: var(--font-secondary);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 300;
    color: var(--accent-color);
    line-height: 1;
    letter-spacing: 0.02em;
}

.about-stat-label {
    font-family: var(--font-primary);
    font-size: 0.58rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    line-height: 1.4;
    text-align: center;
}

@media (max-width: 900px) {
    .about-stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .about-stat:nth-child(3) { border-right: none; }
    .about-stat:nth-child(3),
    .about-stat:nth-child(4),
    .about-stat:nth-child(5),
    .about-stat:nth-child(6) {
        border-top: 1px solid rgba(201,168,76,0.18);
    }
}

@media (max-width: 520px) {
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-stat { border-right: 1px solid rgba(201,168,76,0.18); }
    .about-stat:nth-child(even) { border-right: none; }
    .about-stat:nth-child(3) { border-right: 1px solid rgba(201,168,76,0.18); }
    .about-stat:nth-child(n+3) { border-top: 1px solid rgba(201,168,76,0.18); }
}

/* ===== Mission Section ===== */
.mission-section {
    padding: 5rem 0;
    background-color: var(--bg-deeper);
}

.mission-section .section-title { color: var(--text-light); }

.mission-grid {
    display: block;
    max-width: 760px;
    margin: 0 auto;
}

.mission-content .title-underline {
    margin: 1.25rem 0 2rem;
}

.mission-content p {
    font-size: 1rem;
    line-height: 1.85;
    color: rgba(255,255,255,0.72);
    margin-bottom: 1.25rem;
    font-family: var(--font-secondary);
    font-style: italic;
    font-weight: 300;
}

.mission-image {
    display: none;
}

/* ===== History/Timeline Section ===== */
.history-section {
    background-color: var(--bg-dark);
    padding: 5rem 0;
    border-top: 1px solid var(--border-gold);
}

/* Fix hollow ring: inner fill must match section bg */
.history-section .timeline-marker {
    background-color: var(--bg-dark);
}

.history-section .section-title { color: var(--text-light); }

.timeline {
    max-width: 680px;
    margin: 0 auto;
    padding: 1.5rem 0;
}

.timeline-item {
    position: relative;
    padding-left: 3.25rem;
    padding-bottom: 1.75rem;
}

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

/* Spine — gradient fade so the last visible item feels terminated */
.timeline-item::before {
    content: '';
    position: absolute;
    left: 9px;
    top: 34px;
    bottom: -1.75rem;
    width: 1px;
    background: linear-gradient(to bottom, rgba(201,168,76,0.45), rgba(201,168,76,0.04));
}

.timeline-item:last-child::before {
    display: none;
}

/* Hollow ring marker with gold inner dot */
.timeline-marker {
    position: absolute;
    left: 0;
    top: 14px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: var(--bg-deeper);
    border: 1px solid var(--accent-color);
    box-shadow: 0 0 0 4px rgba(201,168,76,0.07);
}

.timeline-marker::after {
    content: '';
    position: absolute;
    inset: 4px;
    border-radius: 50%;
    background-color: var(--accent-color);
}

/* Dark card with gold left rail */
.timeline-content {
    background-color: #121212;
    border: 1px solid rgba(255,255,255,0.05);
    border-left: 2px solid var(--accent-color);
    padding: 1.1rem 1.4rem;
    transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.timeline-content:hover {
    background-color: #1b1b1b;
    box-shadow: 0 8px 28px rgba(0,0,0,0.55);
    transform: translateX(5px);
}

.timeline-year {
    display: block;
    color: var(--accent-color);
    font-family: var(--font-primary);
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
}

.timeline-content h3 {
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--text-light);
    margin-bottom: 0.45rem;
    letter-spacing: 0.2px;
    line-height: 1.3;
}

.timeline-content p {
    color: rgba(255,255,255,0.62);
    line-height: 1.75;
    font-size: 0.92rem;
    margin: 0;
}

/* ===== Quote Section ===== */
.quote-section {
    position: relative;
    padding: 4.5rem 0;
    background: var(--bg-deeper);
    border-top: 1px solid rgba(201,168,76,0.15);
    border-bottom: 1px solid rgba(201,168,76,0.15);
    text-align: center;
}

.quote-overlay {
    display: none;
}

.quote-content {
    position: relative;
    z-index: 10;
    max-width: 680px;
    margin: 0 auto;
    color: var(--text-light);
    padding: 0 1.5rem;
}

/* Typographic open-quote instead of icon */
.quote-content::before {
    content: '\201C';
    display: block;
    font-family: var(--font-secondary);
    font-size: 4rem;
    line-height: 1;
    color: var(--accent-color);
    opacity: 0.45;
    margin-bottom: 0.5rem;
}

.quote-content blockquote {
    font-family: var(--font-secondary);
    margin: 0;
    padding: 0;
}

.quote-content blockquote p {
    font-size: clamp(1.1rem, 2vw, 1.55rem);
    line-height: 1.7;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 1.25rem;
    color: rgba(255,255,255,0.85);
}

.quote-content blockquote footer {
    font-size: 0.65rem;
    font-family: var(--font-primary);
    font-style: normal;
    color: var(--accent-color);
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.75;
}

/* ===== Values Section ===== */
.values-section {
    padding: 4.5rem 0;
    background-color: var(--bg-deeper);
    border-top: 1px solid var(--border-gold);
}

.values-section .section-title { color: var(--text-light); }

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.value-card {
    background-color: #121212;
    border: 1px solid rgba(255,255,255,0.05);
    border-top: 2px solid var(--accent-color);
    padding: 1.75rem 1.5rem;
    text-align: left;
    transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.value-card:hover {
    background-color: #1b1b1b;
    box-shadow: 0 12px 32px rgba(0,0,0,0.55);
    transform: translateY(-5px);
}

.value-number {
    display: block;
    font-family: var(--font-primary);
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 3px;
    color: rgba(201,168,76,0.4);
    text-transform: uppercase;
    margin-bottom: 1.1rem;
}

.value-icon {
    width: auto;
    height: auto;
    margin: 0 0 0.9rem;
    display: block;
    background: transparent;
    border: none;
    border-radius: 0;
    font-size: 1.3rem;
    color: var(--accent-color);
}

.value-card h3 {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-light);
    margin-bottom: 0.55rem;
    letter-spacing: 0.2px;
    line-height: 1.2;
}

.value-card p {
    color: rgba(255,255,255,0.62);
    line-height: 1.75;
    font-size: 0.9rem;
    margin: 0;
}

/* ===== Team Section ===== */
.team-section {
    background-color: var(--bg-dark);
    padding: 5rem 0;
    border-top: 1px solid var(--border-gold);
}

.team-section .section-title { color: var(--text-light); }

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.team-section .section-header p {
    max-width: 700px;
    margin: 2rem auto 0;
    text-align: center;
    color: rgba(255,255,255,0.42);
}

.team-member {
    background-color: #121212;
    border: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.6);
}

.team-photo {
    aspect-ratio: 3/4;
    background-size: cover;
    background-position: center top;
    position: relative;
    overflow: hidden;
}

/* Always-on soft vignette, deepens on hover */
.team-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.15) 55%, transparent 100%);
    opacity: 0.45;
    transition: opacity 0.3s ease;
}

.team-member:hover .team-photo::after {
    opacity: 1;
}

.team-info {
    padding: 1.25rem 1.4rem 1.4rem;
    text-align: left;
}

.team-info h3 {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-light);
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.team-role {
    display: block;
    color: var(--accent-color);
    font-size: 0.72rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.85rem;
}

.team-info p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.42);
    line-height: 1.7;
    margin-bottom: 1.1rem;
}

.team-social {
    display: flex;
    justify-content: flex-start;
    gap: 0.6rem;
}

.team-social a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 0;
    color: rgba(255,255,255,0.45);
    font-size: 0.8rem;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.team-social a:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: #000;
}

/* ===== CTA Section ===== */
.cta-section {
    background: var(--bg-deeper);
    padding: 4.5rem 0;
    text-align: center;
    color: var(--text-light);
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
}

/* Diamond accent — mirrors the editorial strip language */
.cta-content::before {
    content: '◆';
    display: block;
    color: var(--accent-color);
    font-size: 0.65rem;
    opacity: 0.55;
    margin-bottom: 1.75rem;
    letter-spacing: 6px;
}

.cta-content h2 {
    font-size: clamp(1.6rem, 3vw, 2.8rem);
    font-weight: 200;
    letter-spacing: 0.04em;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.15;
}

.cta-content p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.60);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

/* Scoped button overrides — global .btn uses dark colors, wrong on dark bg */
.cta-section .btn-primary {
    background-color: var(--accent-color);
    color: #000;
    border-color: var(--accent-color);
}

.cta-section .btn-primary:hover {
    background-color: #b89230;
    border-color: #b89230;
    color: #000;
}

.cta-section .btn-outline {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid rgba(255,255,255,0.2);
}

.cta-section .btn-outline:hover {
    background-color: transparent;
    color: var(--text-light);
    border-color: rgba(255,255,255,0.5);
}

/* ===== Upcoming Events Section ===== */
.upcoming-events-section {
    padding: 6rem 0;
    background-color: var(--bg-deeper);
}

.upcoming-events-section .section-title { color: var(--text-light); }

.section-desc {
    max-width: 700px;
    margin: 2rem auto 0;
    text-align: center;
    color: rgba(255,255,255,0.48);
    line-height: 1.8;
    font-size: 0.97rem;
    font-family: var(--font-primary);
}

/* ===== Event Cards Grid (dark-panel style — scoped to .events-grid only) ===== */
.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.events-grid .event-card {
    background-color: #121212;
    border: 1px solid rgba(255,255,255,0.05);
    border-top: 2px solid var(--accent-color);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.events-grid .event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.6);
    border-color: rgba(201,168,76,0.55);
}

.events-grid .event-image {
    aspect-ratio: 16/10;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.events-grid .event-date {
    position: absolute;
    top: 1.1rem;
    right: 1.1rem;
    background-color: var(--accent-color);
    color: #000;
    padding: 0.6rem 0.7rem;
    text-align: center;
    min-width: 52px;
}

.events-grid .event-date .day {
    display: block;
    font-size: 1.65rem;
    font-weight: 300;
    line-height: 1;
    font-family: var(--font-secondary);
}

.events-grid .event-date .month {
    display: block;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    margin-top: 0.2rem;
    font-family: var(--font-primary);
}

.events-grid .event-content {
    padding: 1.5rem;
}

.events-grid .event-category {
    display: inline-block;
    color: var(--accent-color);
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 0.6rem;
    font-family: var(--font-primary);
    font-weight: 400;
}

.events-grid .event-content h3 {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-light);
    margin-bottom: 0.65rem;
    line-height: 1.25;
    letter-spacing: 0.2px;
}

.events-grid .event-content p {
    color: rgba(255,255,255,0.42);
    line-height: 1.75;
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
}

.events-grid .event-meta {
    display: flex;
    gap: 1.25rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.38);
    margin-bottom: 1.4rem;
    flex-wrap: wrap;
}

.events-grid .event-meta i {
    color: var(--accent-color);
    margin-right: 0.4rem;
}

.events-grid .event-card .btn-primary {
    background-color: var(--accent-color);
    color: #000;
    border-color: var(--accent-color);
    padding: 0.7rem 1.4rem;
    font-size: 0.68rem;
}

.events-grid .event-card .btn-primary:hover {
    background-color: #b89230;
    border-color: #b89230;
    color: #000;
}

/* ===== Designers Section ===== */
.designers-section {
    padding: 6rem 0;
    background-color: var(--bg-deeper);
}

/* ===== Designer Cards ===== */
.designers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 3rem;
}

.designer-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 2/3;
    cursor: pointer;
}

.designer-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center top;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Base overlay: always-visible name + country at bottom */
.designer-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem 1.75rem;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.92) 0%,
        rgba(0,0,0,0.55) 45%,
        transparent 100%
    );
    color: var(--text-light);
    transition: background 0.5s ease;
}

/* Hover: darken whole card for bio readability */
.designer-card:hover .designer-overlay {
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.97) 0%,
        rgba(0,0,0,0.80) 60%,
        rgba(0,0,0,0.35) 100%
    );
}

.designer-card:hover .designer-image {
    transform: scale(1.06);
}

.designer-name {
    font-family: var(--font-serif);
    font-size: 1.45rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    margin-bottom: 0.4rem;
    line-height: 1.2;
}

.designer-country {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--secondary-color);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    margin-bottom: 0;
    transition: margin-bottom 0.4s ease;
}

/* Bio + link — hidden by default, revealed on hover */
.designer-bio {
    font-size: 0.88rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.72);
    margin-top: 1rem;
    margin-bottom: 1.25rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.45s ease, opacity 0.35s ease 0.05s, margin 0.4s ease;
}

.designer-card:hover .designer-country {
    margin-bottom: 0;
}

.designer-card:hover .designer-bio {
    max-height: 140px;
    opacity: 1;
}

/* Gold link arrow — hidden until hover */
.designer-overlay .link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    color: var(--accent-color);
    text-decoration: none;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.35s ease 0.1s, transform 0.35s ease 0.1s, color 0.2s;
    font-family: var(--font-sans);
}

.designer-card:hover .link-arrow {
    opacity: 1;
    transform: translateY(0);
}

.designer-overlay .link-arrow:hover {
    color: #fff;
}

/* Thin gold top accent line */
.designer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-color);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.designer-card:hover::before {
    opacity: 1;
}

@media (max-width: 1024px) {
    .designers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .designers-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .designer-card {
        aspect-ratio: 3/4;
    }

    /* On touch devices reveal bio statically */
    .designer-bio {
        max-height: 140px;
        opacity: 1;
    }

    .designer-overlay .link-arrow {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Gallery Section ===== */
.gallery-section {
    padding: 6rem 0;
    background-color: var(--bg-deeper);
}

.gallery-section .section-title { color: var(--text-light); }
.gallery-section .section-label { color: var(--accent-color); }

/* ----- Filter bar ----- */
.gallery-filter-bar {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.gallery-tabs {
    display: flex;
    gap: 0;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.gallery-tabs::-webkit-scrollbar { display: none; }

.gallery-tab {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.85rem 1.1rem;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    color: rgba(255,255,255,0.38);
    font-family: var(--font-sans);
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.22s ease, border-color 0.22s ease;
    white-space: nowrap;
}

.gallery-tab:hover { color: rgba(255,255,255,0.7); }

.gallery-tab.active {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
}

.tab-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 16px;
    padding: 0 4px;
    background: rgba(255,255,255,0.06);
    border-radius: 8px;
    font-size: 0.6rem;
    letter-spacing: 0;
    font-weight: 600;
    color: rgba(255,255,255,0.35);
    transition: background 0.22s ease, color 0.22s ease;
}

.gallery-tab.active .tab-count {
    background: rgba(201,168,76,0.15);
    color: var(--accent-color);
}

.gallery-result-count {
    padding-bottom: 0.9rem;
    font-family: var(--font-sans);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.25);
    white-space: nowrap;
    flex-shrink: 0;
    transition: color 0.2s ease;
}

/* ----- Photo grid — CSS columns masonry ----- */
.gallery-grid {
    columns: 4;
    column-gap: 0.5rem;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 0.5rem;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: block;
    transition: opacity 0.3s ease;
}

/* Alternate aspect ratios for editorial variety */
.gallery-item:nth-child(5n+1) .gallery-image { aspect-ratio: 2/3; }
.gallery-item:nth-child(5n+2) .gallery-image { aspect-ratio: 4/5; }
.gallery-item:nth-child(5n+3) .gallery-image { aspect-ratio: 1/1; }
.gallery-item:nth-child(5n+4) .gallery-image { aspect-ratio: 3/4; }
.gallery-item:nth-child(5n+5) .gallery-image { aspect-ratio: 4/5; }

.gallery-image {
    width: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover .gallery-image { transform: scale(1.06); }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.50);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay i {
    color: var(--accent-color);
    font-size: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(201,168,76,0.55));
}

/* Category pill — bottom-left, appears on hover */
.gallery-category {
    position: absolute;
    bottom: 0.7rem;
    left: 0.7rem;
    padding: 0.2rem 0.55rem;
    background: rgba(0,0,0,0.72);
    border: 1px solid rgba(255,255,255,0.08);
    font-family: var(--font-sans);
    font-size: 0.58rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.65);
    opacity: 0;
    transform: translateY(5px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-item:hover .gallery-category { opacity: 1; transform: translateY(0); }

/* ----- Video panel (inside gallery section, toggled by Videos tab) ----- */
.gallery-video-panel {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-video-panel.active { display: grid; }

/* ----- Video cards (shared by gallery-video-panel) ----- */
.video-card {
    background-color: #121212;
    border: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.video-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-4px);
}

.video-thumbnail {
    position: relative;
    aspect-ratio: 16/9;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.video-thumbnail::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.38);
    transition: background 0.3s ease;
}

.video-card:hover .video-thumbnail::after { background: rgba(0,0,0,0.2); }

.play-button {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.play-button i {
    width: 54px;
    height: 54px;
    background: rgba(201,168,76,0.88);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #000;
    padding-left: 3px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.video-card:hover .play-button i {
    transform: scale(1.12);
    background: var(--accent-color);
}

.video-info {
    padding: 1.5rem 1.75rem 1.75rem;
    border-top: 2px solid var(--accent-color);
}

.video-info h3 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.video-info p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.48);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.video-duration {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-color);
    font-weight: 500;
    font-family: var(--font-sans);
}

/* ----- Lightbox ----- */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.96);
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.gallery-lightbox.open {
    opacity: 1;
    pointer-events: all;
}

.lightbox-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    display: block;
}

.lightbox-caption {
    margin-top: 0.85rem;
    font-family: var(--font-sans);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: rgba(255,255,255,0.38);
}

.lightbox-close {
    position: fixed;
    top: 1.5rem;
    right: 1.75rem;
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.65);
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    z-index: 9001;
}

.lightbox-close:hover {
    background: var(--accent-color);
    color: #000;
    border-color: var(--accent-color);
}

.lightbox-prev,
.lightbox-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    z-index: 9001;
}

.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--accent-color);
    color: #000;
    border-color: var(--accent-color);
}

/* ----- Responsive ----- */
@media (max-width: 1024px) {
    .gallery-grid { columns: 3; }
    .gallery-video-panel { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .gallery-grid { columns: 2; column-gap: 0.35rem; }
    .gallery-grid .gallery-item { margin-bottom: 0.35rem; }
    .gallery-video-panel { grid-template-columns: 1fr; }
    .lightbox-prev { left: 0.5rem; }
    .lightbox-next { right: 0.5rem; }
}

/* ===== News Section ===== */
.news-section {
    padding: 6rem 0;
    background-color: var(--bg-dark);
    border-top: 1px solid var(--border-gold);
}

.news-section .section-title { color: var(--text-light); }
.news-section .section-label { color: var(--accent-color); }

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.news-card {
    background-color: #121212;
    border: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
    transition: border-color 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-4px);
    border-color: rgba(201,168,76,0.35);
}

.news-image {
    aspect-ratio: 16/9;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    transition: transform 0.55s ease;
}

.news-card:hover .news-image { transform: scale(1.04); }

.news-content {
    padding: 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    border-top: 2px solid var(--accent-color);
}

.news-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.65rem;
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.32);
    margin-bottom: 0.9rem;
    flex-wrap: wrap;
}

.news-meta i {
    color: var(--accent-color);
    margin-right: 0.3rem;
}

.news-content h3 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-light);
    line-height: 1.35;
    margin-bottom: 0.85rem;
}

.news-content p {
    color: rgba(255,255,255,0.5);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
}

.news-content .link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    color: var(--accent-color);
    text-decoration: none;
    font-family: var(--font-sans);
    transition: gap 0.25s ease, color 0.25s ease;
    margin-top: auto;
}

.news-content .link-arrow:hover {
    gap: 0.8rem;
    color: #fff;
}

.news-load-more {
    text-align: center;
    margin-top: 3.5rem;
}

/* Newsletter form (in CTA section on news page) */
.newsletter-form-large {
    display: flex;
    gap: 0;
    max-width: 560px;
    margin: 2rem auto 0;
}

.newsletter-form-large input {
    flex: 1;
    padding: 0.9rem 1.25rem;
    background-color: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.15);
    border-right: none;
    color: var(--text-light);
    font-family: var(--font-sans);
    font-size: 0.85rem;
    outline: none;
    transition: border-color 0.25s ease;
}

.newsletter-form-large input::placeholder { color: rgba(255,255,255,0.28); }
.newsletter-form-large input:focus { border-color: rgba(201,168,76,0.5); }
.newsletter-form-large .btn { border-radius: 0; white-space: nowrap; }

@media (max-width: 1024px) {
    .news-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .news-grid { grid-template-columns: 1fr; }
    .newsletter-form-large { flex-direction: column; }
    .newsletter-form-large input {
        border-right: 1px solid rgba(255,255,255,0.15);
        border-bottom: none;
    }
}

/* ===== Contact Section ===== */
.contact-section {
    padding: 6rem 0;
    background-color: var(--bg-deeper);
}

.contact-section .section-title { color: var(--text-light); }
.contact-section .section-label { color: var(--accent-color); }

.contact-content {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 0;
}

/* ----- Form panel ----- */
.contact-form-wrapper {
    background-color: #121212;
    padding: 3.5rem;
    border-top: 2px solid var(--accent-color);
}

.contact-form-wrapper h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

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

.form-group {
    margin-bottom: 1.75rem;
}

.form-group label {
    display: block;
    font-size: 0.62rem;
    font-weight: 600;
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.65rem;
    color: rgba(255,255,255,0.42);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem 0;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    border-radius: 0;
    background-color: transparent;
    color: var(--text-light);
    font-size: 0.9rem;
    font-family: var(--font-sans);
    transition: border-color 0.25s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.2);
}

.form-group select option {
    background-color: #1a1a1a;
    color: var(--text-light);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-bottom-color: var(--accent-color);
}

.form-group textarea {
    min-height: 130px;
    resize: vertical;
}

.contact-submit { width: 100%; }

/* ----- Info panel ----- */
.contact-info-card {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 3.5rem;
    border-top: 2px solid transparent;
}

.contact-info-card h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.contact-details { margin-bottom: 0; }

.contact-item {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.contact-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201,168,76,0.42);
    color: var(--accent-color);
    font-size: 0.9rem;
}

.contact-text h4 {
    font-family: var(--font-sans);
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.contact-text p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.58);
    line-height: 1.65;
}

.contact-text p a {
    color: rgba(255,255,255,0.58);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-text p a:hover { color: var(--accent-color); }

.contact-social-block {
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255,255,255,0.07);
}

.contact-social-block h4 {
    font-family: var(--font-sans);
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    color: rgba(255,255,255,0.35);
    margin-bottom: 1.25rem;
}

/* ----- Partnership section ----- */
.partnership-section {
    padding: 4.5rem 0;
    background-color: var(--bg-dark);
    border-top: 1px solid var(--border-gold);
}

.partnership-section .section-title { color: var(--text-light); }
.partnership-section .section-label { color: var(--accent-color); }

.partnership-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.partnership-card {
    background-color: #121212;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(255,255,255,0.05);
    border-top: 2px solid var(--accent-color);
    transition: border-color 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.partnership-card:hover {
    transform: translateY(-4px);
    border-color: rgba(201,168,76,0.4);
    border-top-color: var(--accent-color);
}

.partnership-card h3 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 0.85rem;
}

.partnership-card p {
    font-size: 0.87rem;
    color: rgba(255,255,255,0.62);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
}

.partnership-card .link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    color: var(--accent-color);
    text-decoration: none;
    font-family: var(--font-sans);
    transition: gap 0.25s ease, color 0.25s ease;
    margin-top: auto;
}

.partnership-card .link-arrow:hover { gap: 0.8rem; color: #fff; }

/* ----- Map / location block ----- */
.map-section {
    padding: 0;
    background-color: var(--bg-deeper);
    border-top: 1px solid var(--border-gold);
}

.map-placeholder {
    width: 100%;
    height: 380px;
    background-color: #080808;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.map-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(0deg,  transparent, transparent 39px, rgba(255,255,255,0.022) 39px, rgba(255,255,255,0.022) 40px),
        repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(255,255,255,0.022) 39px, rgba(255,255,255,0.022) 40px);
}

.map-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
}

.map-pin {
    width: 54px;
    height: 54px;
    border: 1px solid rgba(201,168,76,0.42);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.map-inner h4 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-light);
}

.map-inner p {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.35);
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-content { grid-template-columns: 1fr; }
    .partnership-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .contact-form-wrapper,
    .contact-info-card { padding: 2rem; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .partnership-grid { grid-template-columns: 1fr; }
}

/* ===== Lightbox ===== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 3rem;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--secondary-color);
}

/* ===== Contact Form Padded ===== */
.contact-form-padded { padding: 2.5rem; }

/* ===== Back to Top Button (pages) ===== */
/* Inherits from styles.css */

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .mission-grid,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .values-grid,
    .team-grid,
    .events-grid,
    .designers-grid,
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===== Ticket Section (Dark Theme) ===== */
.ticket-section {
    background-color: var(--bg-dark);
    padding: 6rem 0;
    border-top: 1px solid var(--border-gold);
}

.ticket-section .section-title { color: var(--text-light); }

.ticket-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.ticket-card {
    background-color: #121212;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(255,255,255,0.05);
    border-top: 2px solid rgba(201,168,76,0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
}

.ticket-card.featured {
    border: 1px solid rgba(201,168,76,0.55);
    border-top: 2px solid var(--accent-color);
    transform: scale(1.02);
}

.ticket-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.55);
}

.ticket-card.featured:hover {
    transform: scale(1.02) translateY(-4px);
}

.ticket-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-color);
    color: #000;
    padding: 0.35rem 1.25rem;
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    font-family: var(--font-primary);
    white-space: nowrap;
}

.ticket-header {
    text-align: center;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    margin-bottom: 1.75rem;
}

.ticket-header h3 {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-light);
    margin-bottom: 1.25rem;
    letter-spacing: 0.02em;
}

.ticket-price {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ticket-price .price {
    font-size: 2.75rem;
    font-weight: 300;
    color: var(--accent-color);
    font-family: var(--font-secondary);
    line-height: 1;
}

.ticket-price .period {
    font-size: 0.62rem;
    color: rgba(255,255,255,0.38);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.35rem;
    font-family: var(--font-primary);
}

.ticket-features {
    margin-bottom: 2rem;
}

.ticket-features li {
    padding: 0.6rem 0;
    color: rgba(255,255,255,0.52);
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-size: 0.88rem;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.ticket-features li:last-child {
    border-bottom: none;
}

.ticket-features li i {
    color: var(--accent-color);
    font-size: 0.78rem;
    flex-shrink: 0;
}

.ticket-card .btn {
    width: 100%;
    justify-content: center;
}

/* Scoped button overrides for dark ticket card */
.ticket-card .btn-primary {
    background-color: var(--accent-color);
    color: #000;
    border-color: var(--accent-color);
}

.ticket-card .btn-primary:hover {
    background-color: #b89230;
    border-color: #b89230;
    color: #000;
}

.ticket-card .btn-outline {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid rgba(255,255,255,0.2);
}

.ticket-card .btn-outline:hover {
    background-color: transparent;
    color: var(--text-light);
    border-color: rgba(255,255,255,0.5);
}

/* ===== Past Events Section (Dark Theme) ===== */
.past-events-section {
    padding: 6rem 0;
    background-color: var(--bg-deeper);
    border-top: 1px solid var(--border-gold);
}

.past-events-section .section-title { color: var(--text-light); }

/* Fix btn-outline visibility inside photo overlay */
.past-event-overlay .btn-outline {
    background-color: transparent;
    color: var(--text-light);
    border-color: rgba(255,255,255,0.4);
}

.past-event-overlay .btn-outline:hover {
    background-color: transparent;
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.past-events-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.past-event-card {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.past-event-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: var(--transition-slow);
}

.past-event-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 100%);
    display: flex;
    align-items: flex-end;
    padding: 3rem;
    transition: var(--transition);
}

.past-event-card:hover .past-event-image {
    transform: scale(1.04);
}

.past-event-content {
    color: var(--text-light);
}

.past-event-season {
    display: inline-block;
    color: var(--secondary-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
}

.past-event-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.past-event-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

/* ===== Newsletter Form Large ===== */
.newsletter-form-large {
    display: flex;
    max-width: 600px;
    margin: 2rem auto 0;
    gap: 1rem;
}

.newsletter-form-large input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    font-size: 1rem;
}

.newsletter-form-large input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form-large button {
    white-space: nowrap;
}

@media (max-width: 768px) {
    .page-title {
        font-size: 1.4rem;
        letter-spacing: 3px;
    }

    .page-subtitle {
        font-size: 0.62rem;
    }

    .timeline-item {
        padding-left: 3rem;
    }

    .values-grid,
    .team-grid,
    .events-grid,
    .designers-grid,
    .news-grid,
    .ticket-grid {
        grid-template-columns: 1fr;
    }

    .past-events-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .mission-image {
        height: 400px;
    }

    .newsletter-form-large {
        flex-direction: column;
    }

    .ticket-card.featured {
        transform: scale(1);
    }

    .quote-content blockquote p {
        font-size: 1.4rem;
    }

    .quote-icon {
        font-size: 2rem;
    }

    .quote-section {
        padding: 5rem 0;
    }

    /* Disable fixed parallax on mobile — iOS renders it incorrectly */
    .quote-section {
        background-attachment: scroll;
    }

    /* Contact form: stack columns */
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ===== Featured Article ===== */
/* ===== Featured Article ===== */
.featured-article-section {
    padding: 6rem 0;
    background-color: var(--bg-deeper);
}

.featured-article-section .section-title { color: var(--text-light); }
.featured-article-section .section-label { color: var(--accent-color); }

.featured-article {
    display: grid;
    grid-template-columns: 58% 42%;
    gap: 0;
    min-height: 520px;
}

.featured-article-image {
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    min-height: 520px;
}

.featured-article-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 55%, rgba(18,18,18,0.55) 100%);
    pointer-events: none;
}

.featured-article-content {
    background-color: #121212;
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-top: 2px solid var(--accent-color);
}

.article-category {
    display: inline-block;
    background-color: transparent;
    color: var(--accent-color);
    border: 1px solid rgba(201,168,76,0.45);
    padding: 0.35rem 1rem;
    font-size: 0.65rem;
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    width: fit-content;
}

.featured-article-content h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.55rem, 2.2vw, 2.1rem);
    font-weight: 400;
    color: var(--text-light);
    line-height: 1.3;
    margin-bottom: 1.25rem;
}

.article-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.75rem;
    font-size: 0.68rem;
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.38);
    flex-wrap: wrap;
}

.article-meta i {
    color: var(--accent-color);
    margin-right: 0.35rem;
}

.featured-article-content p {
    font-size: 0.95rem;
    line-height: 1.85;
    color: rgba(255,255,255,0.55);
    margin-bottom: 2.25rem;
}

/* ===== Partnership Section ===== */


/* ===== Map Section ===== */
.map-section {
    padding: 0;
}

.map-container {
    width: 100%;
    height: 450px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
}

/* ===== Additional Responsive Styles ===== */
@media (max-width: 1024px) {
    .featured-article {
        grid-template-columns: 1fr;
    }

    .featured-article-image {
        min-height: 380px;
    }

    .featured-article-image::after {
        background: linear-gradient(to bottom, transparent 50%, rgba(18,18,18,0.7) 100%);
    }

    .partnership-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .featured-article-content {
        padding: 2rem;
    }

    .article-meta {
        gap: 1rem;
    }

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