/* ==========================================================================
   Cotzani & Wendy — High-End Editorial Redesign Proposal
   Design Archetype: Dark Cabaret Noir / Theatrical Editorial Luxury
   ========================================================================== */

:root {
    --bg-page: #0a0a0c;
    --bg-surface-outer: rgba(255, 255, 255, 0.04);
    --bg-surface-inner: #121217;
    --bg-surface-elevated: #181820;
    
    --border-hairline: rgba(255, 255, 255, 0.08);
    --border-accent: rgba(212, 175, 55, 0.3);
    
    --text-primary: #f5f3ef;
    --text-secondary: #a3a19b;
    --text-muted: #6e6d67;
    
    --accent-gold: #c8a355;
    --accent-gold-bright: #e2c179;
    --accent-gold-glow: rgba(200, 163, 85, 0.2);
    
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    
    --ease-out-cubic: cubic-bezier(0.215, 0.61, 0.355, 1);
    --ease-elastic: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-page);
    color: var(--text-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.65;
    background-color: var(--bg-page);
    color: var(--text-primary);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.25s ease;
}

/* Containers & Layout */
.container {
    width: 100%;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

.section-padded {
    padding-top: 120px;
    padding-bottom: 120px;
}

/* Typography Helpers */
.eyebrow-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 9999px;
    background: rgba(200, 163, 85, 0.08);
    border: 1px solid rgba(200, 163, 85, 0.25);
    color: var(--accent-gold);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 20px;
}

.eyebrow-tag.center {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    width: fit-content;
}

.section-heading {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 600;
    line-height: 1.1;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.section-heading em {
    font-style: italic;
    color: var(--accent-gold);
    font-weight: 400;
}

.section-heading .amp,
.section-heading em .amp,
h1 .amp, h2 .amp, h3 .amp,
.amp {
    color: #ef4444 !important;
    font-weight: inherit;
}

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

/* Double-Bezel Architecture (Doppelrand) */
.double-bezel-outer {
    background: var(--bg-surface-outer);
    border: 1px solid var(--border-hairline);
    border-radius: 28px;
    padding: 8px;
    transition: transform 0.4s var(--ease-out-cubic), border-color 0.4s ease, box-shadow 0.4s ease;
}

.double-bezel-outer:hover {
    border-color: var(--border-accent);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.6), 0 0 30px -10px var(--accent-gold-glow);
}

.double-bezel-inner {
    background: var(--bg-surface-inner);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

/* Button & Pill System */
.btn-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 22px;
    border-radius: 9999px;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: all 0.3s var(--ease-out-cubic);
}

.btn-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.btn-gold {
    background: linear-gradient(135deg, var(--accent-gold-bright) 0%, var(--accent-gold) 100%);
    color: #121214;
    box-shadow: 0 4px 20px rgba(200, 163, 85, 0.3);
}

.btn-gold .btn-arrow {
    background: rgba(0, 0, 0, 0.15);
    color: #121214;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(200, 163, 85, 0.5);
}

.btn-gold:hover .btn-arrow {
    transform: translateX(2px) translateY(-2px);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid var(--border-hairline);
}

.btn-ghost .btn-arrow {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-ghost:hover .btn-arrow {
    transform: translateX(4px);
}

/* ==========================================================================
   Navigation (Fluid Island)
   ========================================================================== */
.site-header {
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    padding: 0 20px;
    pointer-events: none;
}

.nav-island {
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    background: rgba(18, 18, 23, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-hairline);
    border-radius: 9999px;
    padding: 8px 12px 8px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    height: 32px;
    width: auto;
}

.brand-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--text-primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.02em;
}

.nav-links a:hover {
    color: var(--accent-gold);
}

.btn-nav {
    padding: 8px 16px;
    font-size: 0.82rem;
    background: rgba(200, 163, 85, 0.15);
    color: var(--accent-gold-bright);
    border: 1px solid rgba(200, 163, 85, 0.3);
}

.btn-nav .btn-arrow {
    width: 22px;
    height: 22px;
    font-size: 0.75rem;
    background: rgba(200, 163, 85, 0.2);
}

.btn-nav:hover {
    background: var(--accent-gold);
    color: #121214;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
}

.mobile-toggle .bar {
    width: 22px;
    height: 2px;
    background-color: var(--text-primary);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 12, 0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav-links {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-nav-links a {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--text-primary);
    font-weight: 600;
}

.mobile-nav-links a:hover {
    color: var(--accent-gold);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    position: relative;
    height: 100vh;
    height: 100dvh;
    max-height: 920px;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 130px;
    padding-bottom: 70px;
    overflow: hidden;
}

.hero-bg-media {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.65) contrast(1.1);
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    filter: brightness(0.4) contrast(1.1);
    transform: scale(1.02);
    transition: transform 12s ease-out;
}

.hero-section:hover .hero-bg-img {
    transform: scale(1.06);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(10, 10, 12, 0.4) 0%, rgba(10, 10, 12, 0.88) 85%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3.2rem, 8vw, 6.5rem);
    font-weight: 700;
    line-height: 1.0;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: 24px;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

.amp {
    color: #ef4444 !important;
    font-weight: inherit;
}

.hero-title .amp {
    font-family: var(--font-heading);
    font-style: italic;
    color: #ef4444;
    font-weight: 400;
    text-shadow: 0 0 30px rgba(239, 68, 68, 0.45);
}

.hero-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.35rem);
    font-weight: 300;
    color: var(--text-secondary);
    max-width: 960px;
    width: 100%;
    margin-bottom: 40px;
    line-height: 1.5;
    white-space: nowrap;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 64px;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 16px 32px;
    background: rgba(18, 18, 23, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-hairline);
    border-radius: 9999px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-gold-bright);
    line-height: 1.1;
}

.stat-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.stat-divider {
    width: 1px;
    height: 32px;
    background: var(--border-hairline);
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 64px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-visual .double-bezel-inner {
    position: relative;
}

.about-img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    object-position: center 15%;
}

.visual-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(10, 10, 12, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-hairline);
    padding: 8px 16px;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-gold-bright);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.about-narrative .section-heading {
    margin-bottom: 28px;
}

.lead-text {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.body-text {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 18px;
}

.inaem-official-banner {
    width: 100%;
    margin-top: 48px;
}

.inaem-banner-inner {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 24px 32px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(200, 163, 85, 0.04) 100%);
}

.inaem-graphic-card {
    background: #ffffff;
    padding: 10px 18px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.inaem-official-img {
    height: 48px;
    width: auto;
    max-width: 260px;
    display: block;
    object-fit: contain;
}

.inaem-banner-text {
    flex-grow: 1;
}

.inaem-badge {
    display: inline-block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    color: var(--accent-gold-bright);
    margin-bottom: 6px;
}

.inaem-p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* ==========================================================================
   Press Ribbon & Quotes
   ========================================================================== */
.press-ribbon-section {
    padding-top: 60px;
    padding-bottom: 100px;
}

.quotes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.highlight-quote {
    grid-column: span 2;
}

.quote-inner {
    padding: 32px 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.quote-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.quote-flag-img {
    width: 28px;
    height: 18px;
    object-fit: cover;
    border-radius: 3px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.quote-country {
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent-gold);
}

.quote-text {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.45;
    margin-bottom: 24px;
}

.quote-author {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent-gold);
    font-weight: 600;
}

/* ==========================================================================
   Acts Section (Bento Grid)
   ========================================================================== */
.section-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 56px;
    gap: 40px;
}

.section-header-desc {
    max-width: 520px;
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
}

.video-notice-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
    padding: 8px 16px;
    background: rgba(220, 38, 38, 0.12);
    border: 1px solid rgba(220, 38, 38, 0.35);
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #fca5a5;
}

.video-pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ef4444;
    box-shadow: 0 0 10px #ef4444;
    animation: pulseRed 2s infinite;
}

@keyframes pulseRed {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
    70% { transform: scale(1.15); box-shadow: 0 0 0 8px rgba(239, 68, 68, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

.acts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.act-card .double-bezel-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.act-video-container {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
    cursor: pointer;
    background: #000;
}

.act-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    transition: transform 0.6s var(--ease-out-cubic), filter 0.4s ease;
}

/* Ensure Darts act (vertical poster) frames Wendy & Juan Pablo's faces and eyes perfectly without cutting */
.act-poster-darts {
    object-position: center 2% !important;
}

.act-card:hover .act-poster {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.video-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: radial-gradient(circle at center, rgba(10, 10, 12, 0.25) 0%, rgba(10, 10, 12, 0.75) 100%);
    transition: all 0.3s ease;
    z-index: 2;
}

.act-card:hover .video-play-overlay {
    background: radial-gradient(circle at center, rgba(10, 10, 12, 0.1) 0%, rgba(10, 10, 12, 0.6) 100%);
}

/* YouTube Style Play Button */
.yt-play-btn {
    transition: transform 0.25s var(--ease-out-cubic), filter 0.25s ease;
    filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.6));
    cursor: pointer;
}

.act-card:hover .yt-play-btn {
    transform: scale(1.18);
    filter: drop-shadow(0 8px 24px rgba(255, 0, 0, 0.65));
}

.yt-play-icon {
    display: block;
}

.play-label {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #ffffff;
    background: rgba(10, 10, 12, 0.75);
    padding: 4px 12px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
}

.video-iframe-slot {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    display: none;
}

.act-video-container.video-active .video-iframe-slot {
    display: block;
}

.act-video-container.video-active .video-play-overlay,
.act-video-container.video-active .act-poster {
    display: none;
}

.video-iframe-slot iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.act-content {
    padding: 28px 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.act-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.video-duration-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 9999px;
    padding: 3px 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.act-cat {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 4px;
}

.act-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.act-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.65;
}

/* ==========================================================================
   Photos Section (Normalized Carousel Slideshow)
   ========================================================================== */
.photos-section {
    padding-top: 50px;
    padding-bottom: 80px;
}

.carousel-nav-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-hairline);
    color: var(--text-primary);
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.carousel-btn:hover {
    background: var(--accent-gold);
    color: #0d0d10;
    border-color: var(--accent-gold);
    transform: scale(1.08);
}

.photos-carousel-viewport {
    width: 100%;
    overflow: hidden;
    padding: 35px 10px 45px;
    margin: -15px 0;
    position: relative;
    cursor: grab;
}

.photos-carousel-viewport:active {
    cursor: grabbing;
}

.photos-carousel-track {
    display: flex;
    gap: 24px;
    align-items: center;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.photo-card {
    flex: 0 0 340px;
    width: 340px;
    height: 250px;
    position: relative;
    z-index: 1;
    transform-origin: center center;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease, z-index 0s;
    cursor: pointer;
}

.photo-card:hover {
    transform: scale(1.18) translateY(-10px);
    z-index: 25;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.9), 0 0 30px rgba(200, 163, 85, 0.35);
}

.photo-card .double-bezel-inner {
    width: 100%;
    height: 100%;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.photo-card:hover .double-bezel-inner {
    border-color: rgba(200, 163, 85, 0.85);
}

.photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--ease-out-cubic), filter 0.4s ease;
}

.photo-card:hover img {
    transform: scale(1.08);
    filter: brightness(1.08) contrast(1.04);
}

/* ==========================================================================
   Tour & Press Reviews Section
   ========================================================================== */
.tour-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}

.tour-narrative {
    padding: 48px;
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.tour-narrative p {
    margin-bottom: 24px;
}

.tour-narrative p:last-child {
    margin-bottom: 0;
}

.tour-highlight {
    color: var(--text-primary);
    font-size: 1.15rem;
    font-weight: 500;
    border-left: 2px solid var(--accent-gold);
    padding-left: 24px;
    margin-top: 32px;
}

.press-features-divider {
    margin-top: 64px;
    margin-bottom: 32px;
    border-top: 1px solid var(--border-hairline);
    padding-top: 48px;
    text-align: center;
}

.press-subheading {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 8px;
}

.press-deep-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.press-review-card .double-bezel-inner {
    padding: 32px 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.review-country {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.country-pill {
    padding: 4px 12px;
    border-radius: 9999px;
    background: rgba(200, 163, 85, 0.1);
    color: var(--accent-gold-bright);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.publication-name {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Archival Newspaper Clipping Scan — High Visual Prominence */
.press-clipping-media {
    width: 100%;
    height: 380px;
    margin-bottom: 24px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(200, 163, 85, 0.25);
    background: #060608;
    box-shadow: inset 0 0 25px rgba(0, 0, 0, 0.8), 0 10px 30px rgba(0, 0, 0, 0.5);
}

.clipping-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
    background: #050508;
    transition: transform 0.6s var(--ease-out-cubic);
}

.press-review-card:hover .clipping-img {
    transform: scale(1.04);
}

.clipping-tag {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(12, 12, 16, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(200, 163, 85, 0.35);
    color: var(--accent-gold-bright);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 4px 12px;
    border-radius: 9999px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}

.review-title {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 18px;
    line-height: 1.3;
}

.review-body {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 14px;
}

/* ==========================================================================
   Currently At (Live Location)
   ========================================================================== */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 48px;
    align-items: center;
}

.location-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin: 20px 0 32px;
    line-height: 1.6;
}

.status-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.25);
    border-radius: 9999px;
    color: #4ade80;
    font-size: 0.8rem;
    font-weight: 600;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #22c55e;
    box-shadow: 0 0 10px #22c55e;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
    70% { transform: scale(1.1); box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.map-inner-frame {
    height: 460px;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    padding: 56px;
}

.contact-intro {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin: 16px 0 40px;
    line-height: 1.6;
}

.contact-channels {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.channel-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-hairline);
    transition: all 0.3s ease;
}

.channel-link:hover {
    background: rgba(200, 163, 85, 0.08);
    border-color: rgba(200, 163, 85, 0.3);
    transform: translateX(6px);
}

.channel-icon {
    font-size: 1.4rem;
}

.channel-label {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
}

.channel-value {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.contact-photo-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
}

.contact-artist-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(10, 10, 12, 0.9) 0%, transparent 100%);
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-style: italic;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    padding: 48px 0;
    border-top: 1px solid var(--border-hairline);
    background: #08080a;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-logo {
    height: 28px;
    width: auto;
    opacity: 0.8;
}

.credit-link {
    color: var(--accent-gold);
    font-size: 0.85rem;
    transition: opacity 0.2s ease;
}

.credit-link:hover {
    opacity: 0.75;
}

/* ==========================================================================
   Responsive Adaptations
   ========================================================================== */
@media (max-width: 1024px) {
    .nav-links { display: none; }
    .btn-nav { display: none; }
    .mobile-toggle { display: flex; }
    
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-img { height: 420px; }
    
    .quotes-grid { grid-template-columns: 1fr; }
    .highlight-quote { grid-column: span 1; }
    
    .acts-grid { grid-template-columns: 1fr; gap: 24px; }
    .act-video-container { height: 260px; }
    
    .photo-card { flex: 0 0 300px; width: 300px; height: 220px; }
    
    .press-deep-grid { grid-template-columns: 1fr; }
    
    .location-grid { grid-template-columns: 1fr; }
    .contact-inner { grid-template-columns: 1fr; padding: 32px 24px; }
}

@media (max-width: 640px) {
    .section-padded { padding-top: 80px; padding-bottom: 80px; }
    
    .hero-stats {
        flex-direction: column;
        gap: 16px;
        padding: 20px;
        width: 100%;
    }
    .stat-divider { display: none; }
    
    .section-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .photo-card { flex: 0 0 260px; width: 260px; height: 200px; }
    
    .inaem-banner-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 20px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* Hero Location Widget */
.hero-location-widget {
    margin-top: 3rem;
    max-width: 400px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    background: rgba(10, 10, 10, 0.4);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.4s ease;
}

.hero-location-widget:hover {
    transform: translateY(-4px);
    background: rgba(20, 20, 20, 0.6);
}

.hero-location-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-location-header .status-live-badge.mini {
    padding: 4px 8px;
    font-size: 0.7rem;
    gap: 0.4rem;
}

.location-label {
    color: #e5e5e5;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 500;
}

.hero-location-map-wrap {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    padding: 2px;
}

.hero-location-map-wrap .double-bezel-inner {
    border-radius: 6px;
    background: #000;
}

/* Hero Location Text Box */
.hero-location-text-box {
    margin-top: 2rem;
    font-size: 0.85rem;
    color: #a0a0a0;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.hero-location-text-box .location-value {
    color: #eab308;
    font-weight: 500;
    margin-left: 0.5rem;
}
