@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');
@import url('https://fonts.cdnfonts.com/css/poppins');

/* ==========================================================================
   DUALSPACE ART — MONOCHROMATIC DESIGN SYSTEM
   Palette: Pure Black (#000) + Pure White (#fff) + Grays only
   WCAG 2.1 AA Compliant
   ========================================================================== */

/* ── Color Tokens ────────────────────────────────────────────────────────── */
:root {
    /* Gold accent — titles only #c9a227 */
    --color-gold: #aaaaaa;
    --color-gold-light: #dddddd;
    /* Backgrounds — DARK MODE */
    --bg-page: #000000;
    --bg-alt: #111111;
    --bg-dark: #000000;
    --bg-card: #151515;
    --bg-card-dark: #0d0d0d;
    --bg-overlay: rgba(0, 0, 0, 0.92);
    --bg-header: #000000;
    --bg-scrolled: rgba(0, 0, 0, 0.97);

    /* Text */
    --text-primary: #f0f0f0;
    --text-secondary: #bbbbbb;
    --text-muted: #888888;
    --text-inverse: #000000;
    --text-dark-sec: #aaaaaa;

    /* Borders */
    --border: #2a2a2a;
    --border-strong: #444444;
    --border-dark: rgba(255, 255, 255, 0.12);
    --border-focus: #ffffff;

    /* Accent — monochromatic: white */
    --accent: #ffffff;
    --accent-hover: #dddddd;

    /* Interactive states */
    --btn-primary-bg: #ffffff;
    --btn-primary-text: #000000;
    --btn-primary-hover: #dddddd;
    --btn-outline-border: #ffffff;
    --btn-outline-text: #ffffff;
    --btn-outline-hover-bg: #ffffff;
    --btn-outline-hover-text: #000000;

    /* Typography */
    --font-sans: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --font-serif: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

    /* Layout */
    --header-height-default: 63px;
    --header-height-scrolled: 64px;
    --section-pad: 5rem;
    --container-width: 90%;
    --container-max: 1400px;

    /* Transitions */
    --ease: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    --ease-fast: all 0.18s ease-in-out;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    background-color: var(--bg-page);
    color: var(--text-primary);
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-weight: 300;
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    color-scheme: dark;
}

/* ── Global Typography — Poppins System ──────────────────────────────────── */
/* Headings: bold & strong */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

/* Paragraphs: always light */
p {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}

/* Labels, small text: medium */
label,
small,
caption {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

/* Inputs & textareas inherit font */
input,
textarea,
select {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--ease-fast);
}

ul {
    list-style: none;
}

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

button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    color: inherit;
    transition: var(--ease-fast);
}

/* ── Focus ring (accessibility) ─────────────────────────────────────────── */
:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
}

/* ══════════════════════════════════════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: capitalize;
    border-radius: 30px;
    transition: var(--ease);
    position: relative;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background-color: var(--btn-primary-bg);
    color: var(--btn-primary-text);
    border: 2px solid #ffffff;
}

.btn-primary:hover {
    background-color: var(--btn-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.15);
}

.btn-outline {
    background-color: transparent;
    color: var(--btn-outline-text);
    border: 1px solid var(--btn-outline-border);
}

.btn-outline:hover {
    background-color: var(--btn-outline-hover-bg);
    color: var(--btn-outline-hover-text);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.12);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 0.9rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

/* ══════════════════════════════════════════════════════════════════════════
   STICKY HEADER
   ══════════════════════════════════════════════════════════════════════════ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height-default);
    background-color: var(--bg-header);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    z-index: 100;
    transition: height 0.35s ease, box-shadow 0.35s ease;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.site-header.scrolled {
    height: var(--header-height-scrolled);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.10);
    border-bottom-color: var(--border-strong);
}

.header-container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 4.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ── Logo ───────────────────────────────────────────────────────────────── */
.logo {
    font-family: var(--font-sans);
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: 0.12em;
    color: #000;
    display: flex;
    align-items: baseline;
    gap: 0;
    text-decoration: none;
}

.logo .accent {
    color: #000;
    font-weight: 300;
}

.logo .logo-dot {
    color: #000;
}

.logo .tagline {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: #fff;
    background: #000;
    padding: 2px 5px;
    border-radius: 1px;
    margin-left: 4px;
    align-self: center;
}

/* ── Desktop Navigation ─────────────────────────────────────────────────── */
.nav-desktop {
    margin-left: 2.5rem;
}

.nav-list {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-secondary);
    padding: 0.5rem 0;
    position: relative;
    font-family: 'Poppins', sans-serif;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #ffffff;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.28s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-link:hover {
    color: #ffffff;
}

.nav-link.active {
    color: #ffffff;
    font-weight: 600;
}

/* ── Header Actions ─────────────────────────────────────────────────────── */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Social Icons */
.social-links-container {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.social-icon {
    font-size: 0.95rem;
    color: var(--text-muted);
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid transparent;
}

.social-icon:hover {
    color: #ffffff;
    border-color: var(--border-strong);
    background-color: var(--bg-alt);
    transform: translateY(-2px);
}

/* Contact Button in Header */
.contact-btn-header {
    padding: 5px 18px;
    font-size: 13px;
}

/* ── Hamburger ──────────────────────────────────────────────────────────── */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 17px;
    z-index: 102;
}

.hamburger-bar {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    transition: var(--ease);
}

.mobile-menu-toggle:hover .hamburger-bar:nth-child(1) {
    transform: translateY(-2px);
}

.mobile-menu-toggle:hover .hamburger-bar:nth-child(3) {
    transform: translateY(2px);
}

/* ══════════════════════════════════════════════════════════════════════════
   MOBILE DRAWER
   ══════════════════════════════════════════════════════════════════════════ */
.mobile-menu-drawer {
    position: fixed;
    top: 0;
    right: -360px;
    width: 100%;
    max-width: 360px;
    height: 100vh;
    background-color: #0a0a0a;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    transition: right 0.38s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: -8px 0 32px rgba(255, 255, 255, 0.05);
    border-left: 1px solid var(--border);
}

.mobile-menu-drawer.open {
    right: 0;
}

.drawer-header {
    height: var(--header-height-scrolled);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    border-bottom: 1px solid var(--border);
}

.mobile-menu-close {
    font-size: 1.4rem;
    color: var(--text-muted);
}

.mobile-menu-close:hover {
    color: #ffffff;
}

.drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
}

.nav-mobile-list {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.drawer-nav-link {
    font-size: 1.15rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-secondary);
}

.drawer-nav-link:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.drawer-nav-link.active {
    color: #ffffff;
    transform: translateX(4px);
}

.drawer-divider {
    height: 1px;
    background: var(--border);
    margin: 2rem 0;
}

.drawer-footer {
    margin-top: auto;
}

.drawer-section-title {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.drawer-socials {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
}

.drawer-social-icon {
    font-size: 1.05rem;
    color: var(--text-muted);
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.drawer-social-icon:hover {
    color: #ffffff;
    border-color: #ffffff;
    background-color: var(--bg-alt);
}

.drawer-contact-btn {
    width: 100%;
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

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

/* ══════════════════════════════════════════════════════════════════════════
   HERO CAROUSEL
   ══════════════════════════════════════════════════════════════════════════ */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #111;
}

.carousel-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1),
        visibility 1s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    padding: 0 5%;
    z-index: 1;
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* Monochromatic overlay: strong dark gradient, no color tint */
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(to right, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.50) 55%, rgba(0, 0, 0, 0.72) 100%),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.25) 0%, transparent 30%, rgba(0, 0, 0, 0.50) 100%);
    z-index: 2;
}

.slide-content-container {
    position: relative;
    max-width: 780px;
    z-index: 3;
    color: #fff;
}

.slide-category {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 600;
    display: block;
    margin-bottom: 1.25rem;
    border-left: 3px solid #fff;
    padding-left: 0.9rem;
}

.slide-title {
    font-family: var(--font-sans);
    font-size: 4.25rem;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin-bottom: 1.6rem;
    /* White-to-gray gradient text for dark theme */
    background: linear-gradient(135deg, #ffffff 0%, #cccccc 55%, #999999 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* Fallback for browsers that don't support gradient text */
    color: #fff;
}

.slide-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.80);
    margin-bottom: 2.75rem;
    font-weight: 300;
    max-width: 580px;
    line-height: 1.7;
}

/* Slide entry animations */
.carousel-slide .animate-item {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s cubic-bezier(0.25, 1, 0.5, 1),
        transform 0.75s cubic-bezier(0.25, 1, 0.5, 1);
}

.carousel-slide.active .animate-item:nth-child(1) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.15s;
}

.carousel-slide.active .animate-item:nth-child(2) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.30s;
}

.carousel-slide.active .animate-item:nth-child(3) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.45s;
}

.carousel-slide.active .animate-item:nth-child(4) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.60s;
}

/* Carousel slide buttons override for dark slides */
.carousel-slide .btn-primary {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.carousel-slide .btn-primary:hover {
    background: #e0e0e0;
    border-color: #e0e0e0;
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.25);
}

/* Navigation arrows */
.carousel-control {
    position: absolute;
    top: 57%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.30);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: var(--ease);
}

.carousel-control:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
    transform: translateY(-50%) scale(1.06);
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.30);
}

.carousel-control.prev {
    left: 2.5rem;
}

.carousel-control.next {
    right: 2.5rem;
}

/* Dots */
.carousel-dots {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: var(--ease);
}

.carousel-dot.active {
    width: 32px;
    border-radius: 5px;
    background: #fff;
}

.carousel-dot:hover:not(.active) {
    background: rgba(255, 255, 255, 0.65);
}

/* ══════════════════════════════════════════════════════════════════════════
   CONTENT SECTIONS
   ══════════════════════════════════════════════════════════════════════════ */
.content-section {
    padding: 0rem 0px 1rem;
    /* border-bottom: 1px solid var(--border); */
    background: var(--bg-page);
    position: relative;
    top: 10px;
}

.section-dark {
    background-color: var(--bg-dark);
    color: var(--text-inverse);
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.section-container {
    width: var(--container-width);
    max-width: var(--container-max);
    margin: 0 auto;
}

/* Section Badge */
.section-badge {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.85rem;
    display: inline-block;
    border-left: 3px solid #ffffff;
    padding-left: 0.7rem;
    font-family: 'Poppins', sans-serif;
}

.section-dark .section-badge {
    /* color: rgba(255, 255, 255, 0.55); */
    border-left-color: #fff;
}

/* Section Heading */
.section-heading {
    font-family: 'Poppins';
    font-size: clamp(2rem, 2vw, 4rem);
    font-weight: 200;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    position: relative;
    display: block;
    padding-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

/* .section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
    border-radius: 2px;
} */

.section-dark .section-heading {
    color: var(--text-inverse);
}

.section-dark .section-heading::after {
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
}

/* Grid */
.grid-two-cols {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

/* Typography */
.paragraph-lead {
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 1.25rem;
    letter-spacing: 0px;
    color: var(--text-secondary);
    font-family: 'Poppins', sans-serif;
}

.section-dark .paragraph-lead {
    color: rgba(255, 255, 255, 0.90);
}

.paragraph-text {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    font-weight: 300;
    letter-spacing: 0px;
    line-height: 1.75;
    font-family: 'Poppins', sans-serif;
}

.section-dark .paragraph-text {
    color: var(--text-dark-sec);
}

/* ── Aesthetic Card ─────────────────────────────────────────────────────── */
.aesthetic-card {
    position: relative;
    border-radius: 6px;
    border: 1px solid var(--border);
    overflow: hidden;
    background: var(--bg-card);
    transition: box-shadow 0.3s ease;
}

.aesthetic-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.card-glow {
    display: none;
}

/* removed gold glow — not needed */

.card-inner {
    padding: 2.5rem;
    position: relative;
    z-index: 2;
}

.card-inner h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 1.75rem;
    font-weight: 600;
    color: var(--text-primary);
}

.styled-list {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.styled-list li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.styled-list li i {
    color: #dbb042;
    font-size: 1rem;
    flex-shrink: 0;
    width: 20px;
}

/* ── Concept Note ───────────────────────────────────────────────────────── */
.concept-content {
    max-width: auto;
}

.manifesto-quote {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.45;
    color: var(--text-inverse);
    border-left: 3px solid #fff;
    padding-left: 2.25rem;
    margin-bottom: 2.5rem;
}

/* ── Gallery Slider ─────────────────────────────────────────────────── */
.gallery-section {
    background-color: var(--bg);
    overflow: hidden;
    padding: 50px 0px;
}

.gallery-section-container {
    max-width: 1280px;
}

.gallery-section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.gallery-section-desc {
    max-width: 640px;
    margin: 0 auto;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-top: 1rem;
}

/* Slider Wrapper — gives arrows their positioning context */
.gallery-slider-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    user-select: none;
}

/* Track — flex row of all slides */
.gallery-slider-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

/* Individual Slide */
.gallery-slide {
    flex: 0 0 calc((100% - 3rem) / 3);
    min-width: 0;
}

/* Image Container */
.gallery-slide-img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    aspect-ratio: 4 / 3;
    background-color: var(--bg-alt);
    border: 1px solid var(--border);
}

.gallery-slide-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        filter 0.45s ease;
    filter: grayscale(20%);
}

/* Hover overlay */
.gallery-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.65) 0%,
            rgba(0, 0, 0, 0.10) 50%,
            transparent 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.gallery-zoom-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.30);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #fff;
    transform: scale(0.75);
    transition: transform 0.3s ease, background 0.3s ease;
}

.gallery-slide-img-wrap:hover img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.gallery-slide-img-wrap:hover .gallery-slide-overlay {
    opacity: 1;
}

.gallery-slide-img-wrap:hover .gallery-zoom-icon {
    transform: scale(1);
    background: rgba(255, 255, 255, 0.20);
}

/* Slide Meta */
.gallery-slide-meta {
    padding: 1rem 0.25rem 0;
}

.gallery-slide-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    letter-spacing: 0.01em;
}

.gallery-slide-medium {
    font-size: 0.78rem;
    color: var(--text-muted);
    letter-spacing: 0.03em;
}

/* ── Prev / Next Arrow Buttons ──────────────────────────────────────── */
.gallery-slider-arrow {
    position: absolute;
    top: calc(60% - 1.5rem);
    /* center of image area (before meta) */
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(30, 30, 30, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.20);
    color: #f0f0f0;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-slider-arrow:hover {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 6px 28px rgba(255, 255, 255, 0.12);
    transform: translateY(-50%) scale(1.08);
}

.gallery-slider-arrow:active {
    transform: translateY(-50%) scale(0.96);
}

.gallery-arrow-prev {
    left: 0rem;
}

.gallery-arrow-next {
    right: 0rem;
}

/* Dark mode arrows */
[data-theme="dark"] .gallery-slider-arrow {
    background: rgba(30, 30, 30, 0.90);
    border-color: rgba(255, 255, 255, 0.10);
    color: #f0f0f0;
}

/* ── Slide Counter ───────────────────────────────────────────────────── */
.gallery-slide-counter {
    position: absolute;
    bottom: 3.4rem;
    /* sits above the meta area */
    right: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    padding: 0.3rem 0.75rem;
    border-radius: 3px 0 0 3px;
    font-variant-numeric: tabular-nums;
    pointer-events: none;
}

/* ── Dot Indicators ──────────────────────────────────────────────────── */
.gallery-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.55rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.gallery-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--border-strong);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s ease, transform 0.3s ease, width 0.35s ease;
    flex-shrink: 0;
}

.gallery-dot.active {
    background: var(--text-primary);
    width: 22px;
    border-radius: 4px;
    transform: none;
}

.gallery-dot:hover:not(.active) {
    background: var(--text-secondary);
    transform: scale(1.3);
}

/* ── Autoplay Progress Bar ───────────────────────────────────────────── */
.gallery-progress-bar {
    height: 2px;
    background: var(--border);
    border-radius: 2px;
    margin-top: 1.2rem;
    overflow: hidden;
}

.gallery-progress-fill {
    height: 100%;
    background: var(--text-primary);
    border-radius: 2px;
    width: 0%;
    transition: width linear;
}

/* ── Lightbox ────────────────────────────────────────────────────────── */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-lightbox[hidden] {
    display: none;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 5, 5, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    cursor: pointer;
}

.lightbox-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    max-width: 92vw;
    max-height: 92vh;
    flex-direction: row;
    animation: lightboxFadeIn 0.3s ease forwards;
}

@keyframes lightboxFadeIn {
    from {
        opacity: 0;
        transform: scale(0.97);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Image wrap */
.lightbox-img-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 78vw;
    max-height: 82vh;
    flex-direction: column;
}

.lightbox-img {
    max-width: 78vw;
    max-height: 78vh;
    border-radius: 4px;
    object-fit: contain;
    display: block;
    transition: opacity 0.3s ease;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.7);
}

.lightbox-spinner {
    position: absolute;
    color: rgba(255, 255, 255, 0.55);
    font-size: 1.6rem;
    display: none;
}

.lightbox-spinner.visible {
    display: block;
}

.lightbox-img.loading {
    opacity: 0;
}

/* Caption (below image) */
.lightbox-caption {
    position: absolute;
    bottom: -3rem;
    left: 0;
    right: 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.82);
}

.lightbox-caption-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.15rem;
    letter-spacing: 0.02em;
    color: #fff;
}

.lightbox-caption-medium {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.05em;
}

.lightbox-caption-count {
    display: block;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.38);
    letter-spacing: 0.12em;
    margin-top: 0.25rem;
    font-variant-numeric: tabular-nums;
}

/* Close Button */
.lightbox-close {
    position: fixed;
    top: 7px;
    right: 70px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
    z-index: 10;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: rotate(90deg) scale(1.1);
}

/* Lightbox Nav Buttons */
.lightbox-nav {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: scale(1.1);
}

.lightbox-nav:active {
    transform: scale(0.95);
}


/* ── Contact Section ────────────────────────────────────────────────────── */
.contact-section-full {
    background-color: var(--bg-page);
    padding-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    margin-top: 2.5rem;
}

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

.contact-detail-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border-strong);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.contact-detail-item h5 {
    font-size: 0.85rem;
    margin-bottom: 0.2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-detail-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 300;
}

.contact-form-container {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid #464646;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

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

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

.contact-form label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 0.45rem;
    font-weight: 600;
}

.form-input {
    width: 100%;
    background: var(--bg-alt);
    border: 1px solid #464646;
    padding: 0.8rem 1rem;
    border-radius: 3px;
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    outline: none;
    transition: var(--ease-fast);
}

.form-input:focus {
    border-color: #ffffff;
    background: #1a1a1a;
}

select.form-input option {
    background: #111111;
    color: #f0f0f0;
}

/* ══════════════════════════════════════════════════════════════════════════
   FOOTER — White Color Scheme
   Background: #ffffff (white)
   Text contrast ratios (WCAG 2.1 AA verified):
     Primary text   #1a1a1a on #fff → 18.4:1 ✅
     Secondary text #555555 on #fff →  7.0:1 ✅
     Muted text     #767676 on #fff →  4.5:1 ✅ (AA min)
     Gold headings  #b8860b on #fff →  4.6:1 ✅
   ══════════════════════════════════════════════════════════════════════════ */
.site-footer {
    background: #050505;
    background-image:
        linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 0%, transparent 100px);
    border-top: 1px solid var(--border);
    color: var(--text-secondary);
    padding: 3rem 0 2rem;
    position: relative;
    top: 0px;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    pointer-events: none;
}

.footer-container {
    width: var(--container-width);
    max-width: var(--container-max);
    margin: 0 auto 4rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 4rem;
}

/* ── Brand column ───────────────────────────────────────────────────────── */
.footer-brand .logo {
    margin-bottom: 0rem;
    color: #ffffff;
}

.footer-brand .logo .accent {
    color: #aaaaaa;
}

.footer-brand .logo .logo-dot {
    color: var(--color-gold);
}

.footer-brand .logo .tagline {
    background: #ffffff;
    color: #000000;
    font-weight: 800;
}

.footer-brand p {
    font-size: 15px;
    color: var(--text-secondary);
    font-weight: 300;
    max-width: 300px;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

/* ── Footer contact info list ───────────────────────────────────────────── */
.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.55;
    font-weight: 300;
}

.footer-contact-list li i {
    color: var(--color-gold);
    font-size: 0.9rem;
    width: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact-list li a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact-list li a:hover {
    color: #ffffff;
}

/* ── Nav links column ───────────────────────────────────────────────────── */
.footer-links h5,
.footer-newsletter h5 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-weight: 700;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid var(--border);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    font-size: 14px;
    color: var(--text-secondary);
    transition: color 0.2s ease, padding-left 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 300;
}

.footer-links a::before {
    content: '—';
    font-size: 0.65rem;
    color: var(--border-strong);
    transition: color 0.2s ease;
    flex-shrink: 0;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 4px;
    font-weight: 500;
}

.footer-links a:hover::before {
    color: #ffffff;
}

/* ── Newsletter column ──────────────────────────────────────────────────── */
.footer-newsletter p {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-weight: 300;
    line-height: 1.65;
}

.newsletter-form {
    display: flex;
    border-bottom: 1px solid var(--border-strong);
    transition: border-color 0.25s ease;
}

.newsletter-form:focus-within {
    border-color: #ffffff;
}

.newsletter-input {
    width: 100%;
    background: none;
    border: none;
    padding: 0.7rem 0;
    color: var(--text-primary);
    outline: none;
    font-size: 0.875rem;
    font-family: var(--font-sans);
    font-weight: 600;
}

.newsletter-input::placeholder {
    color: var(--text-muted);
}

.newsletter-btn {
    color: var(--text-muted);
    padding: 0 0.75rem;
    transition: color 0.2s ease;
}

.newsletter-btn:hover {
    color: #ffffff;
}

/* ── Footer bottom bar ──────────────────────────────────────────────────── */
.footer-bottom {
    width: var(--container-width);
    max-width: var(--container-max);
    margin: 0 auto;
    border-top: 1px solid var(--border);
    padding-top: 1.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--text-secondary);
    letter-spacing: 0.02em;
    font-weight: 300;
}

.footer-socials-bottom {
    display: flex;
    gap: 1.25rem;
}

.footer-socials-bottom a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--border-strong);
    transition: var(--ease-fast);
}

.footer-socials-bottom a:hover {
    color: #ffffff;
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

/* ══════════════════════════════════════════════════════════════════════════
   CAROUSEL RESPONSIVE OVERRIDES (already inside this file, kept inline)
   ══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 991px) {
    .carousel-slide {
        padding: 0 6%;
    }

    .slide-title {
        font-size: 3.25rem;
    }

    .carousel-control {
        width: 48px;
        height: 48px;
        font-size: 1rem;
    }

    .carousel-control.prev {
        left: 1.5rem;
    }

    .carousel-control.next {
        right: 1.5rem;
    }
}

@media (max-width: 768px) {
    .carousel-slide {
        padding: 0 1.5rem;
        align-items: flex-end;
        padding-bottom: 7rem;
    }

    .slide-title {
        font-size: 2.25rem;
        margin-bottom: 1rem;
    }

    .slide-desc {
        font-size: 0.95rem;
        margin-bottom: 1.75rem;
    }

    .carousel-control {
        display: none;
    }

    .carousel-dots {
        bottom: 1.75rem;
    }
}

/* ══════════════════════════════════════════════════════════════════════════
   GLOBAL RESPONSIVE BREAKPOINTS
   ══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 1200px) {
    .header-container {
        padding: 0 2rem;
    }

    .nav-list {
        gap: 1.75rem;
    }

    .header-actions {
        gap: 1.1rem;
    }
}

@media (max-width: 991px) {
    .nav-desktop {
        display: none;
    }

    .social-links-container {
        display: none;
    }

    .contact-btn-header {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .site-header {
        height: var(--header-height-scrolled);
    }

    .grid-two-cols {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    /* Gallery slider — show 2 slides on tablet */
    .gallery-slide {
        flex: 0 0 calc((100% - 1.5rem) / 2);
    }

    .gallery-arrow-prev {
        left: 0rem;
    }

    .gallery-arrow-next {
        right: 0rem;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .footer-newsletter {
        grid-column: span 2;
    }

    .section-heading {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 1.25rem;
    }

    .section-heading {
        font-size: 1.9rem;
        margin-bottom: 2rem;
    }

    .content-section {
        padding: 3.5rem 0;
    }

    /* Gallery slider — single slide on mobile */
    .gallery-slide {
        flex: 0 0 100%;
    }

    .gallery-slider-arrow {
        width: 36px;
        height: 36px;
        font-size: 0.75rem;
    }

    .gallery-arrow-prev {
        left: 0.25rem;
    }

    .gallery-arrow-next {
        right: 0.25rem;
    }

    /* Lightbox mobile */
    .lightbox-inner {
        flex-direction: column;
        gap: 0.75rem;
        max-width: 100vw;
        padding: 0 0.5rem;
    }

    .lightbox-img {
        max-width: 96vw;
        max-height: 65vh;
    }

    .lightbox-nav {
        width: 38px;
        height: 38px;
        font-size: 0.8rem;
    }

    .lightbox-img-wrap {
        max-width: 96vw;
    }

    .contact-form-container {
        padding: 1.75rem 1.25rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

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

    .footer-newsletter {
        grid-column: span 1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.25rem;
        text-align: center;
    }

    .manifesto-quote {
        font-size: 1.6rem;
        padding-left: 1.5rem;
    }

    .card-inner {
        padding: 1.75rem;
    }
}

@media (max-width: 480px) {
    .slide-title {
        font-size: 1.9rem;
    }

    .section-heading {
        font-size: 1.65rem;
    }
}

/* ══════════════════════════════════════════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════════════════════════════════════════ */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ══════════════════════════════════════════════════════════════════════════
   ABOUT US SUBPAGE STYLING
   ══════════════════════════════════════════════════════════════════════════ */

/* ── About Hero Banner ────────────────────────────────────────────────── */
.about-hero {
    position: relative;
    width: 100%;
    height: 50vh;
    min-height: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 0 5%;
    margin-top: 80px;
    /* Offset for sticky header */
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.85) 100%);
    z-index: 1;
}

.about-hero-container {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 800px;
}

.sub-hero-tag {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--color-gold-light);
    font-weight: 700;
    display: block;
    margin-bottom: 1rem;
    border-left: 3px solid var(--color-gold);
    padding-left: 0.8rem;
}

.sub-hero-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 1rem;
    letter-spacing: 0px;
    background: linear-gradient(135deg, #fff 0%, var(--color-gold-light) 50%, var(--color-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
}

.grid-two-cols h4 {
    color: var(--text-primary);
    font-weight: 500;
}

.sub-hero-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
    line-height: 1.6;
}

/* ── Vision feature cards ───────────────────────────────────────────────── */
.about-vision-graphics {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.vision-feature-card {
    display: flex;
    gap: 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 1.75rem;
    border-radius: 4px;
    transition: var(--ease);
}

.vision-feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    border-color: rgba(201, 162, 39, 0.3);
}

.vision-card-icon {
    font-size: 1.75rem;
    color: var(--color-gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.vision-card-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.vision-card-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 300;
}

/* ── Founder section portrait & quotes ──────────────────────────────────── */
/* ── Alternate profile section and quote styling ────────────────────────── */
.section-profile {
    background-color: #0a0a0a;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border);
}

.section-profile:nth-child(even) {
    background-color: #111111;
}

.section-profile .about-founder-quote {
    color: var(--text-primary);
}

.profile-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: center;
}

.profile-grid.reverse .about-portrait-container {
    grid-column: 2;
}

.profile-grid.reverse .about-founder-bio {
    grid-column: 1;
    grid-row: 1;
}

.about-portrait-container {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.about-portrait-img {
    width: 100%;
    height: auto;
    filter: grayscale(100%);
    transition: var(--ease);
}

.about-portrait-container:hover .about-portrait-img {
    filter: grayscale(0%);
    transform: scale(1.03);
}

.about-founder-bio {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-founder-quote {
    font-family: var(--font-serif);
    font-size: 16px;
    font-style: normal;
    line-height: 1.5;
    /* border-left: 3px solid var(--color-gold); */
    padding-left: 0rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-weight: 300;
}

/* ── Curatorial Format Cards ────────────────────────────────────────────── */
.about-formats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 1rem;
}

.format-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 2.5rem 2rem;
    border-radius: 4px;
    text-align: center;
    transition: var(--ease);
}

.format-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
    border-color: rgba(201, 162, 39, 0.35);
}

.format-card-icon {
    width: 60px;
    height: 60px;
    background: rgba(201, 162, 39, 0.08);
    color: var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
    border: 1px solid rgba(201, 162, 39, 0.2);
}

.format-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.85rem;
    color: var(--text-primary);
}

.format-card p {
    font-size: 0.925rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 300;
}

/* ── Gallery Team Grid ──────────────────────────────────────────────────── */
.about-team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.team-member-card {
    text-align: center;
}

.team-member-img {
    width: 100%;
    max-width: 320px;
    height: 380px;
    object-fit: cover;
    border-radius: 4px;
    filter: grayscale(100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin: 0 auto 1.25rem;
    transition: var(--ease);
}

.team-member-card:hover .team-member-img {
    filter: grayscale(0%);
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
}

.team-member-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.25rem;
}

.team-member-info p {
    font-size: 0.9rem;
    color: var(--color-gold-light);
    font-weight: 300;
    letter-spacing: 0.05em;
}

/* ── About Responsive Media Queries ──────────────────────────────────────── */
@media (max-width: 991px) {
    .about-hero {
        height: 50vh;
        margin-top: 64px;
    }

    .sub-hero-title {
        font-size: 2.75rem;
    }

    .profile-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .profile-grid.reverse .about-portrait-container {
        grid-column: 1;
    }

    .profile-grid.reverse .about-founder-bio {
        grid-column: 1;
        grid-row: auto;
    }

    .about-portrait-container {
        max-width: 480px;
        margin: 0 auto;
    }

    .about-formats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-team-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .team-member-img {
        height: 320px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 0 1.25rem;
        height: 45vh;
    }

    .sub-hero-title {
        font-size: 2.25rem;
    }

    .about-founder-quote {
        font-size: 1.45rem;
        padding-left: 1.25rem;
    }

    .vision-feature-card {
        padding: 1.25rem;
    }
}

/* ── Concept Note Thematic Cards (Interactive Reveal) ───────────────────── */
.themes-section {
    padding-bottom: 5rem;
}

.themes-intro-text {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.06em;
    margin-bottom: 2.5rem;
    font-style: italic;
}

/* 5-column grid on desktop */
.themes-card-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-top: 0.5rem;
}

/* ── Each Card Article ──────────────────────────────────────────────── */
.theme-card {
    position: relative;
}

.theme-card-inner {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    outline: none;
    /* subtle border so cards distinguish on dark bg */
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.theme-card-inner:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 3px;
}

/* Always-visible dark gradient at bottom */
.theme-card-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(10, 10, 10, 0.85) 0%,
            rgba(10, 10, 10, 0.35) 45%,
            transparent 100%);
    z-index: 1;
    transition: opacity 0.4s ease;
}

/* On open, darken the persistent gradient slightly */
.theme-card-inner.is-open::before {
    opacity: 0.5;
}

.theme-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
    transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.theme-card-inner:hover .theme-card-bg,
.theme-card-inner.is-open .theme-card-bg {
    transform: scale(1.08);
}

.theme-card-inner {
    transition: box-shadow 0.35s ease, border-color 0.35s ease;
}

.theme-card-inner:hover,
.theme-card-inner.is-open {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.55);
    border-color: rgba(255, 255, 255, 0.22);
}

/* ── Base (visible title area) ──────────────────────────────────────── */
.theme-card-base {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 1.1rem 1.1rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

/* Hide base when overlay is open */
.theme-card-inner.is-open .theme-card-base {
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
}

.theme-card-num {
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--color-gold);
    letter-spacing: 0.18em;
    line-height: 1;
    margin-bottom: 0.1rem;
}

.theme-card-title {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
    margin: 0;
}

/* +/- icon */
.theme-card-hint {
    display: flex;
    align-items: center;
    margin-top: 0.4rem;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.55);
}

.theme-icon-minus {
    display: none;
}

.theme-card-inner.is-open .theme-icon-minus {
    display: inline;
}

.theme-card-inner.is-open .theme-icon-plus {
    display: none;
}

/* ── Overlay (text reveal) ──────────────────────────────────────────── */
.theme-card-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    background: linear-gradient(to bottom,
            rgba(8, 6, 4, 0.90) 0%,
            rgba(8, 6, 4, 0.98) 100%);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    align-items: flex-end;
    padding: 1.4rem 1.2rem 1.3rem;
    /* Hidden state: slide below card */
    transform: translateY(100%);
    opacity: 0;
    transition:
        transform 0.48s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        opacity 0.35s ease;
    border-radius: inherit;
    /* Prevent interaction when hidden */
    visibility: hidden;
}

.theme-card-inner.is-open .theme-card-overlay {
    transform: translateY(0%);
    opacity: 1;
    visibility: visible;
}

.theme-card-overlay-inner {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.theme-overlay-num {
    font-family: var(--font-sans);
    font-size: 0.62rem;
    font-weight: 700;
    color: var(--color-gold);
    letter-spacing: 0.20em;
    line-height: 1;
}

.theme-overlay-title {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 0.35rem;
    line-height: 1.2;
}

.theme-overlay-text {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.65;
    font-weight: 300;
    letter-spacing: 0.02em;
    margin: 0;
}

/* ── Responsive — 3 columns on tablet ──────────────────────────────── */
@media (max-width: 1100px) {
    .themes-card-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ── Responsive — 2 columns on small tablet ─────────────────────────── */
@media (max-width: 768px) {
    .themes-card-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

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

    .theme-card-title {
        font-size: 1rem;
    }

    .theme-overlay-title {
        font-size: 1rem;
    }

    .theme-overlay-text {
        font-size: 0.75rem;
    }
}

/* ── Responsive — 1 column on mobile ───────────────────────────────── */
@media (max-width: 480px) {
    .themes-card-grid {
        grid-template-columns: 1fr;
    }

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

/* Keep old concept-theme-row styles for any other usage */
.concept-themes-list {
    display: flex;
    flex-direction: column;
    margin-top: 1rem;
}

.concept-theme-row {
    display: flex;
    gap: 3rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.concept-theme-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.concept-theme-row:first-child {
    padding-top: 0;
}

.theme-num {
    font-family: var(--font-sans);
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-gold);
    line-height: 1;
    min-width: 80px;
    letter-spacing: -0.02em;
}

.theme-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.75rem;
    font-family: 'Poppins', sans-serif;
}

.theme-content p {
    font-size: 15px;
    color: #fff;
    line-height: 1.65;
    font-weight: 300;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .concept-theme-row {
        flex-direction: column;
        gap: 1rem;
        padding: 2rem 0;
    }

    .theme-num {
        font-size: 2.25rem;
        min-width: auto;
    }

    .theme-content h3 {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }
}

/* ── Coming Soon Section ────────────────────────────────────────────────── */
.coming-soon-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 70vh;
    padding: 7rem 1.5rem;
    margin-top: 63px;
    /* Header offset */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
}

.coming-soon-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.90) 0%, rgba(0, 0, 0, 0.65) 50%, rgba(0, 0, 0, 0.90) 100%);
    z-index: 1;
}

.coming-soon-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.coming-soon-badge {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: var(--color-gold-light);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--color-gold);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.coming-soon-title {
    font-family: var(--font-sans);
    font-size: 4.5rem;
    font-weight: 600;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
    background: linear-gradient(135deg, #ffffff 0%, var(--color-gold-light) 50%, var(--color-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.coming-soon-text {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .coming-soon-container {
        padding: 6rem 1.25rem;
        margin-top: 64px;
        min-height: 65vh;
    }

    .coming-soon-title {
        font-size: 3rem;
    }

    .coming-soon-text {
        font-size: 1rem;
    }
}

.artists-showcase {
    background: #000000;
    margin-top: 63px;
    min-height: calc(70vh - 63px);
    display: flex;
    align-items: center;
    padding: 4.5rem 0 3rem;
}

.artists-showcase-container {
    width: 100%;
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 0.3rem;
    display: grid;
    grid-template-columns: minmax(0, 260px) minmax(0, 1fr);
    gap: 2.5rem;
    align-items: center;
}

.artists-showcase-heading {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.artists-showcase-text {
    margin: 0rem 0 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 300;
    max-width: 220px;
}

.artists-showcase-link {
    margin-top: 2.25rem;
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
}

.artists-showcase-link i {
    font-size: 0.9rem;
}

.artists-showcase-link:hover {
    color: #ffffff;
}

.artists-showcase-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.artists-strip-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 300px;
    overflow: hidden;
    text-decoration: none;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    background: #0b0b0b;
}

.artists-strip-card:last-child {
    border-right: 0;
}

.artists-strip-image {
    position: absolute;
    inset: 0;
}

.artists-strip-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) contrast(1.05) brightness(0.9);
    transform: scale(1.02);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), filter 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, filter;
    display: block;
}

.artists-strip-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.75) 70%, rgba(0, 0, 0, 0.92) 100%);
    z-index: 1;
}

.artists-strip-meta {
    position: relative;
    z-index: 2;
    padding: 1.25rem 1.35rem 1.15rem;
}

.artists-strip-name {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.artists-strip-sub {
    margin: 0.35rem 0 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.78rem;
    font-weight: 300;
}

.artists-grid-section {
    background: #000000;
    padding: 4.25rem 0 5.5rem;
}

.artists-grid-container {
    max-width: 1220px;
}

.artists-grid-heading {
    margin: 0 0 2.25rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

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

.artists-grid-card {
    background: #070707;
    border: 1px solid rgb(255 255 255 / 23%);
    overflow: hidden;
}

.artists-grid-media {
    aspect-ratio: 3 / 4;
    background: #111111;
}

.artists-grid-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) contrast(1.05) brightness(0.9);
    transform: scale(1.02);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), filter 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, filter;
    display: block;
}

.artists-strip-card.is-hover-preview .artists-strip-image img,
.artists-grid-card.is-hover-preview .artists-grid-media img {
    filter: none;
    transform: scale(1);
}

.artists-strip-card.is-hover-preview::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.45) 70%, rgba(0, 0, 0, 0.72) 100%);
}

@media (hover: hover) and (pointer: fine) {

    .artists-strip-card:hover .artists-strip-image img,
    .artists-strip-card:focus-visible .artists-strip-image img,
    .artists-grid-card:hover .artists-grid-media img,
    .artists-grid-card:focus-within .artists-grid-media img {
        filter: none;
        transform: scale(1);
    }

    .artists-strip-card:hover::before,
    .artists-strip-card:focus-visible::before {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.45) 70%, rgba(0, 0, 0, 0.72) 100%);
    }
}

.artists-grid-meta {
    padding: 1.1rem 1.15rem 1.25rem;
}

.artists-grid-name {
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.95rem;
    font-weight: 600;
}

.artists-grid-sub {
    margin: 0.5rem 0 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.85rem;
    font-weight: 300;
}

.artists-grid-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1.15rem;
    height: 38px;
    padding: 0 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.55);
    background: transparent;
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.artists-grid-link:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: #111111;
}

.artist-details-page {
    background: #000000;
    margin-top: 63px;
    min-height: calc(100vh - 63px);
}

.artist-profile {
    display: none;
}

.artist-profile:target {
    display: block;
}

.artist-profile:target~.artist-profile--default {
    display: none;
}

.artist-profile--default {
    display: block;
}

.artist-details-hero {
    padding: 3rem 0 4rem;
}

.artist-details-hero-container {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 0.2rem;
}

.artist-details-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.artist-details-back-link:hover {
    color: #ffffff;
}

.artist-details-hero-grid {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
    gap: 2.5rem;
    align-items: start;
}

.artist-details-kicker {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.artist-details-title {
    margin: 1rem 0 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(2.5rem, 2vw, 4rem);
    font-weight: 200;
    line-height: 1.05;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.artist-details-subtitle {
    margin: 1rem 0 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 1rem;
    font-weight: 300;
}

.artist-details-actions {
    margin-top: 1.75rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.artist-details-bio {
    margin-top: 1.85rem;
    max-width: 620px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.98rem;
    line-height: 1.85;
    font-weight: 300;
}

.artist-details-bio p {
    margin: 0 0 1.1rem;
}

.artist-details-portrait {
    background: #070707;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.artist-details-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(1) contrast(1.05) brightness(0.92);
}

.artist-details-section {
    padding: 0 0 5.5rem;
}

.artist-details-section-container {
    max-width: 1220px;
}

.artist-details-section-heading {
    margin: 0 0 2rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.artist-details-works-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1.25rem;
}

.artist-details-work-card {
    position: relative;
    grid-column: span 2;
    min-height: 320px;
    background: #050505;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    overflow: hidden;
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.artist-details-work-card:first-child {
    grid-column: span 4;
    grid-row: span 2;
    min-height: 420px;
}

.artist-details-work-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}

.artist-details-work-media {
    position: absolute;
    inset: 0;
    background: #111111;
}

.artist-details-work-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(1) contrast(1.05) brightness(0.92);
    transform: scale(1);
    transition: transform 0.45s ease, filter 0.45s ease;
}

.artist-details-work-card:hover .artist-details-work-media img {
    transform: scale(1.05);
    filter: grayscale(0.25) contrast(1.06) brightness(0.96);
}

.artist-details-work-meta {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1.5rem 1.5rem 1.6rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.55) 45%, rgba(0, 0, 0, 0) 100%);
}

.artist-details-work-title {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.artist-details-work-details {
    margin: 0.45rem 0 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.6;
}

.artist-details-work-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1.1rem;
    height: 36px;
    padding: 0 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.65);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.94);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.artist-details-work-link:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: #111111;
    transform: translateY(-2px);
}

@media (max-width: 1100px) {
    .artist-details-hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .artist-details-title {
        font-size: 2.6rem;
    }

    .artist-details-works-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .artist-details-work-card {
        min-height: 320px;
    }

    .artist-details-work-card:first-child {
        grid-column: span 4;
        grid-row: span 1;
        min-height: 360px;
    }
}

@media (max-width: 768px) {
    .artist-details-page {
        margin-top: 64px;
        min-height: calc(100vh - 64px);
    }

    .artist-details-hero {
        padding: 3.25rem 0 3rem;
    }

    .artist-details-hero-container {
        padding: 0 1.25rem;
    }

    .artist-details-title {
        font-size: 2.2rem;
    }

    .artist-details-works-grid {
        grid-template-columns: 1fr;
    }

    .artist-details-work-card {
        grid-column: auto;
        min-height: 360px;
    }

    .artist-details-work-card:first-child {
        grid-column: auto;
        grid-row: auto;
        min-height: 360px;
    }
}

@media (max-width: 1100px) {
    .artists-showcase {
        padding: 4rem 0 3.25rem;
    }

    .artists-showcase-container {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 2rem;
    }

    .artists-showcase-text {
        max-width: 420px;
    }

    .artists-showcase-strip {
        grid-template-columns: repeat(4, minmax(220px, 1fr));
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        border-left: 0;
        border-right: 0;
    }

    .artists-strip-card {
        scroll-snap-align: start;
        border-right: 0;
        border: 1px solid rgba(255, 255, 255, 0.08);
    }

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

@media (max-width: 768px) {
    .artists-showcase {
        margin-top: 64px;
        min-height: calc(70vh - 64px);
        padding: 3.25rem 0 2.75rem;
    }

    .artists-showcase-container {
        padding: 0 1.25rem;
    }

    .artists-strip-card {
        min-height: 360px;
    }

    .artists-grid-section {
        padding: 3.25rem 0 4.25rem;
    }

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

.duallogo img {
    width: 220px;
    margin-left: -20px;
}

.footerlogo img {
    width: 300px;
    margin-left: -30px;
    margin-top: -30px;
}

.concept-content h2 {
    margin-bottom: 15px;
}

/* ── Scroll-Triggered Reveal Animations ─────────────────────────────────── */
.reveal-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1),
        transform 1s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform, opacity;
}

.reveal-fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-masked-title {
    transition: clip-path 1.2s cubic-bezier(0.25, 1, 0.5, 1),
        transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform, clip-path;
}

.reveal-masked-title.is-visible {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    transform: translateY(0);
}

.reveal-fade-in {
    opacity: 0;
    transition: opacity 1.2s ease;
    will-change: opacity;
}

.reveal-fade-in.is-visible {
    opacity: 1;
}

/* Stagger delays utilities if needed */
.delay-100 {
    transition-delay: 100ms !important;
}

.delay-200 {
    transition-delay: 200ms !important;
}

.delay-300 {
    transition-delay: 300ms !important;
}

.delay-400 {
    transition-delay: 400ms !important;
}

.delay-500 {
    transition-delay: 500ms !important;
}

.delay-600 {
    transition-delay: 600ms !important;
}

/* ==========================================================================
   CONTACT PAGE STYLING
   ========================================================================== */

/* ── Main Layout & Grid ──────────────────────────────────────────────────── */
.contact-page-section {
    background-color: var(--bg-page);
    padding: calc(var(--header-height-default) + 3rem) 0 var(--section-pad);
}

.contact-page-shell {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-page-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 2rem;
    align-items: end;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border);
}

.contact-page-heading {
    font-size: clamp(2rem, 2vw, 4rem);
    line-height: 0.98;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    max-width: 15ch;
    margin-top: 0.9rem;
    font-weight: 200;
}

.contact-page-lead {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 44ch;
    justify-self: end;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 2rem;
    align-items: flex-start;
}

/* ── Contact Info Panel (Left Column) ────────────────────────────────────── */
.contact-info-panel {
    display: flex;
    flex-direction: column;
}

.contact-info-shell {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.09), transparent 30%),
        linear-gradient(180deg, #111111 0%, #050505 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    padding: 2.2rem;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.contact-info-heading-group {
    margin-bottom: 2rem;
}

.contact-info-kicker {
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.contact-title {
    font-size: clamp(2rem, 2vw, 4rem);
    font-weight: 200;
    margin-top: 0.8rem;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.02;
    color: #ffffff;
}

.contact-subtitle {
    font-size: 0.98rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 0;
    font-weight: 300;
}

.contact-cards-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.contact-card {
    display: flex;
    gap: 1.25rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem;
    border-radius: 22px;
    transition: var(--ease);
    backdrop-filter: blur(10px);
}

.contact-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
    border-color: rgba(255, 255, 255, 0.18);
}

.contact-card-featured {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.contact-card-label {
    display: inline-flex;
    margin-bottom: 0.65rem;
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.54);
    font-weight: 600;
}

.contact-card .card-icon {
    width: 48px;
    min-width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.09);
    margin-top: 3px;
}

.contact-card .card-text h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.55rem;
    color: #ffffff;
}

.contact-card .card-text p {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 0.5rem;
}

.contact-card .card-text p:last-child {
    margin-bottom: 0;
}

.contact-card .card-text a {
    color: #ffffff;
}

.contact-card .card-text a:hover {
    color: #ab2b2b;
    text-decoration: underline;
}

.contact-card-actions {
    margin-top: 1rem;
}

.contact-card-actions a {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.72rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ffffff;
    transition: var(--ease);
}

.contact-card-actions a:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.28);
    text-decoration: none;
}

.card-badge {
    display: inline-block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: var(--bg-alt);
    color: var(--text-secondary);
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 500;
    margin-top: 0.25rem;
}

/* ── Direct Contacts Styling ─────────────────────────────────────────────── */
.contact-link-item {
    font-size: 0.95rem;
    margin-bottom: 0.35rem;
}

.contact-link-item strong {
    font-weight: 500;
    color: #ffffff;
}

/* ── Social Connect Panel ────────────────────────────────────────────────── */
.contact-quick-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.contact-quick-card {
    padding: 1.2rem 1.25rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-quick-label {
    display: block;
    margin-bottom: 0.45rem;
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.48);
}

.contact-quick-card p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.62);
    margin-bottom: 0.35rem;
}

.contact-quick-card strong {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
}

.contact-social-section {
    margin-top: 2rem;
    padding-top: 1.4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-social-section h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.54);
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-social-links {
    display: flex;
    gap: 1rem;
}

.c-social-btn {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--ease);
}

.c-social-btn:hover {
    color: #000000;
    background-color: #ffffff;
    border-color: #ffffff;
    transform: translateY(-3px);
}

/* ── Contact Form Panel (Right Column) ───────────────────────────────────── */
.contact-form-panel {
    position: sticky;
    top: calc(var(--header-height-default) + 1.5rem);
    z-index: 10;
}

.site-header.scrolled+main .contact-form-panel {
    top: calc(var(--header-height-scrolled) + 2rem);
}

.form-container-box {
    background: linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
    border: 1px solid #e6e6e6;
    border-radius: 28px;
    padding: 3rem;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.08);
}

.form-header-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.form-eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #767676;
    margin-bottom: 0.7rem;
}

.form-response-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    background: #f5f5f5;
    border: 1px solid #e4e4e4;
    color: #111111;
    font-size: 0.76rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.form-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0;
    letter-spacing: -0.03em;
    line-height: 1.02;
    color: #000;
}

.form-desc {
    font-size: 0.96rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-weight: 300;
}

/* ── Modern Floating Labels Form ────────────────────────────────────────── */
.contact-interactive-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

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

.floating-group {
    position: relative;
    display: flex;
    flex-direction: column;
}

.floating-input {
    width: 100%;
    padding: 0.75rem 0;
    font-size: 0.95rem;
    font-family: var(--font-sans);
    color: var(--text-primary);
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border);
    outline: none;
    transition: border-color 0.3s ease;
}

/* Float logic with placeholder-shown hack */
.floating-input:focus,
.floating-input:not(:placeholder-shown) {
    border-bottom-color: transparent;
}

.floating-label {
    position: absolute;
    left: 0;
    top: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 300;
    pointer-events: none;
    transition: transform 0.25s cubic-bezier(0.25, 0.8, 0.25, 1),
        font-size 0.25s cubic-bezier(0.25, 0.8, 0.25, 1),
        color 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform-origin: top left;
}

/* Float states */
.floating-input:focus~.floating-label,
.floating-input:not(:placeholder-shown)~.floating-label {
    transform: translateY(-1.2rem) scale(0.8);
    color: var(--accent);
    font-weight: 500;
}

/* Expanding Border Line on Focus */
.focus-border-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent);
    transform: scaleX(0);
    transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.floating-input:focus~.focus-border-line {
    transform: scaleX(1);
}

/* Select Group Adjustments */
.select-group {
    cursor: pointer;
}

.floating-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 20px;
    cursor: pointer;
}

.select-chevron {
    position: absolute;
    right: 5px;
    bottom: 12px;
    font-size: 0.75rem;
    color: var(--text-muted);
    pointer-events: none;
    transition: var(--ease-fast);
}

.floating-select:focus~.select-chevron {
    transform: rotate(180deg);
    color: var(--accent);
}

/* Floating labels for dropdown */
.select-label {
    top: 0.75rem;
}

.floating-select:focus~.select-label,
.floating-select:valid~.select-label,
.floating-select:not([value=""])~.select-label {
    transform: translateY(-1.2rem) scale(0.8);
    color: var(--accent);
    font-weight: 500;
}

/* Textarea adjust */
.textarea-group {
    margin-top: 0.5rem;
}

.floating-textarea {
    resize: none;
    line-height: 1.5;
}

/* Submit Button Loading state */
.submit-btn-loading {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    height: 48px;
    font-weight: 500;
    letter-spacing: 0.08em;
    cursor: pointer;
}

.submit-btn-loading .spinner-icon {
    display: none;
    font-size: 0.95rem;
}

.submit-btn-loading.loading {
    background-color: var(--accent-hover);
    pointer-events: none;
}

.submit-btn-loading.loading .btn-text {
    opacity: 0.8;
}

.submit-btn-loading.loading .spinner-icon {
    display: inline-block;
}

/* Form status feedback message */
.form-status-msg {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 4px;
    font-size: 0.88rem;
    font-weight: 400;
    line-height: 1.5;
    animation: fadeInDown 0.3s ease forwards;
}

.form-status-msg.info {
    background-color: var(--bg-alt);
    color: var(--text-primary);
    border-left: 3px solid var(--border-strong);
}

.form-status-msg.success {
    background-color: #f0fdf4;
    color: #166534;
    border-left: 3px solid #22c55e;
}

.form-status-msg.error {
    background-color: #fef2f2;
    color: #991b1b;
    border-left: 3px solid #ef4444;
}

/* ── Interactive Map Section ────────────────────────────────────────────── */
.contact-map-section {
    background-color: var(--bg-alt);
    border-top: 1px solid var(--border);
    padding: var(--section-pad) 0;
}

.map-tabs-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid var(--border);
    padding-bottom: 1rem;
}

.map-tab-btn {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 0.5rem 1rem;
    position: relative;
    transition: var(--ease-fast);
}

.map-tab-btn::after {
    content: '';
    position: absolute;
    bottom: -17px;
    /* Align with bottom border line */
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.map-tab-btn:hover {
    color: var(--text-primary);
}

.map-tab-btn.active {
    color: var(--text-primary);
    font-weight: 600;
}

.map-tab-btn.active::after {
    transform: scaleX(1);
}

.map-views-wrapper {
    background: #ffffff;
    border: 1px solid var(--border);
    padding: 10px;
    border-radius: 6px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

.map-view-item {
    display: none;
    animation: fadeIn 0.4s ease forwards;
}

.map-view-item.active {
    display: block;
}

/* Grayscale filters to match monochrome branding */
.grayscale-map {
    filter: grayscale(1) invert(0.08) contrast(1.1) brightness(0.95);
    transition: filter 0.5s ease;
    display: block;
}

.grayscale-map:hover {
    filter: grayscale(0.2) invert(0) contrast(1) brightness(1);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Contact Responsive Media Queries ────────────────────────────────────── */
@media (max-width: 991px) {
    .contact-page-section {
        padding-top: calc(var(--header-height-scrolled) + 2.5rem);
    }

    .contact-page-intro {
        grid-template-columns: 1fr;
    }

    .contact-page-lead {
        justify-self: start;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .contact-form-panel {
        position: static;
    }

    .form-container-box {
        padding: 2.5rem 2rem;
    }
}

@media (max-width: 768px) {
    .contact-page-shell {
        gap: 2.2rem;
    }

    .contact-page-heading {
        max-width: none;
        font-size: clamp(2rem, 9vw, 3rem);
    }

    .contact-info-shell {
        padding: 1.5rem;
        border-radius: 24px;
    }

    .contact-quick-grid {
        grid-template-columns: 1fr;
    }

    .form-header-row {
        flex-direction: column;
    }

    .contact-title {
        font-size: 1.8rem;
    }

    .map-tabs-container {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
        border-bottom: none;
        padding-bottom: 0;
    }

    .map-tab-btn::after {
        display: none;
    }

    .map-tab-btn {
        width: 100%;
        text-align: center;
        border: 1px solid var(--border);
        border-radius: 4px;
        padding: 0.65rem 1rem;
        background: #ffffff;
    }

    .map-tab-btn.active {
        background: var(--accent);
        color: var(--text-inverse);
        border-color: var(--accent);
    }
}

@media (max-width: 576px) {
    .contact-page-section {
        padding-top: calc(var(--header-height-scrolled) + 2rem);
    }

    .form-row-two {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .form-container-box {
        padding: 2rem 1.25rem;
    }
}

/* ── Custom Styled Dropdown ──────────────────────────────────────────────── */
.custom-select-wrapper {
    position: relative;
}

.custom-select-trigger {
    width: 100%;
    padding: 0.75rem 0;
    font-size: 0.95rem;
    font-family: var(--font-sans);
    color: var(--text-primary);
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border);
    outline: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.custom-select-placeholder {
    color: var(--text-secondary);
    font-weight: 300;
}

.custom-select-wrapper.has-value .custom-select-placeholder {
    color: var(--text-primary);
    font-weight: 400;
}

/* Floating Label behavior */
.custom-select-wrapper .select-label {
    top: 0.75rem;
    pointer-events: none;
}

.custom-select-wrapper.has-value .select-label,
.custom-select-wrapper.open .select-label {
    transform: translateY(-1.2rem) scale(0.8);
    color: var(--accent);
    font-weight: 500;
}

.custom-select-wrapper.open .focus-border-line {
    transform: scaleX(1);
}

.custom-select-wrapper.open .select-chevron {
    transform: rotate(180deg);
    color: var(--accent);
}

/* Options Container styling */
.custom-select-options {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    border: 1px solid var(--border-strong);
    border-top: none;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    margin: 0;
    padding: 0.5rem 0;
    list-style: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    max-height: 220px;
    overflow-y: auto;
}

.custom-select-wrapper.open .custom-select-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Option Items */
.custom-select-option {
    padding: 0.7rem 1.25rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
    text-align: left;
}

.custom-select-option:hover {
    background: var(--bg-alt);
    color: var(--text-primary);
}

.custom-select-option.selected {
    background: var(--accent);
    color: var(--text-inverse);
    font-weight: 500;
}

/* ── Breadcrumb Section ──────────────────────────────────────────────────── */
.breadcrumb-section {
    background-color: var(--bg-alt);
    border-bottom: 1px solid var(--border);
    padding: 3rem 0;
    margin-top: var(--header-height-default);
    animation: fadeInDown 0.4s ease;
}

@media (max-width: 991px) {
    .breadcrumb-section {
        margin-top: var(--header-height-scrolled);
        padding: 2.5rem 0;
    }
}

.breadcrumb-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 300;
    padding-left: 0;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "/";
    color: var(--border-strong);
    font-weight: 300;
}

.breadcrumb-link {
    transition: var(--ease-fast);
}

.breadcrumb-link:hover {
    color: var(--accent);
}

.breadcrumb-item.active {
    color: var(--text-muted);
}

.breadcrumb-title {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    line-height: 1.1;
    margin: 0;
    text-transform: capitalize;
}

@media (max-width: 768px) {
    .breadcrumb-title {
        font-size: 2rem;
    }
}

/* ── Box Styled Form Elements (Screenshot Design) ────────────────────────── */
.form-group-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.box-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #555555;
    margin-bottom: 0.7rem;
    display: block;
    text-align: left;
}

.box-input {
    width: 100%;
    background-color: #f7f7f7;
    border: 1px solid #707070;
    border-radius: 8px;
    padding: 0.7rem 1.1rem;
    font-size: 0.95rem;
    font-family: var(--font-sans);
    color: #000;
    outline: none;
    transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
    box-shadow: none;
}

.box-input::placeholder {
    color: #888888;
    font-weight: 300;
}

.box-input:focus {
    background-color: #ffffff;
    border-color: #000000;
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.05);
    transform: translateY(-1px);
}

.select-box-wrapper {
    position: relative;
    width: 100%;
}

.box-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 2.5rem;
    cursor: pointer;
    background-image: none;
}

.select-box-wrapper .select-chevron {
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.85rem;
    color: #000000;
    pointer-events: none;
    transition: transform 0.3s ease;
}

.box-select:focus~.select-chevron {
    transform: translateY(-50%) rotate(180deg);
}

.box-textarea {
    resize: vertical;
    min-height: 170px;
    line-height: 1.6;
}

.form-note-row {
    margin-top: 0.2rem;
}

.form-note {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.88rem;
    color: #666666;
    line-height: 1.6;
}

.submit-btn-pill {
    width: 100%;
    border-radius: 30px;
    padding: 0.95rem 2rem;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: capitalize;
    background-color: #000000;
    color: #ffffff;
    border: none;
    cursor: pointer;
    transition: var(--ease);
}

.submit-btn-pill:hover {
    background-color: #222222;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Keep contact form card styling consistent with the upgraded contact layout */
.form-container-box {
    border-radius: 28px;
    border: 1px solid #e6e6e6;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.08);
    padding: 3rem;
}

.enquiry-modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: none;
}

.enquiry-modal.open {
    display: block;
}

.enquiry-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.enquiry-modal-dialog {
    position: relative;
    width: min(600px, calc(100% - 2.5rem));
    max-height: calc(100vh - 3.5rem);
    margin: 1.75rem auto;
    overflow: auto;
    background: linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.42);
    padding: 1.5rem 1.5rem 1.2rem;
}

.enquiry-modal-close {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #e5e5e5;
    background: #ffffff;
    color: #000000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--ease);
}

.enquiry-modal-close:hover {
    transform: rotate(90deg);
    border-color: #000000;
}

.enquiry-modal-title {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.02;
    margin-bottom: 1.6rem;
    color: #000;
}

.enquiry-modal-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.enquiry-modal-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

@media (max-width: 576px) {
    .enquiry-modal-dialog {
        width: calc(100% - 1.5rem);
        margin: 0.75rem auto;
        padding: 2.1rem 1.25rem 1.75rem;
        border-radius: 24px;
    }

    .enquiry-modal-row {
        grid-template-columns: 1fr;
    }
}

/* --------------------------------------------------------------------------
   FOUNDER SECTION � Cinematic Full-Bleed Layout
   -------------------------------------------------------------------------- */
.founder-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 90vh;
    margin-top: var(--header-height-default);
    margin-bottom: 0px;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}

@media (max-width: 991px) {
    .founder-section {
        margin-top: var(--header-height-scrolled);
    }
}

/* Left: Text Content */
.founder-content {
    background-color: #000000;
    /* display: flex; */
    flex-direction: column;
    justify-content: center;
    padding: 3rem 1rem 3rem 4rem;
    position: relative;
}

.founder-content::after {
    display: none;
}

.founder-tag {
    font-size: 0.90rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.founder-tag::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 2px;
    background: #ffffff;
}

.founder-name {
    font-family: var(--font-sans);
    font-size: clamp(2rem, 2vw, 4rem);
    font-weight: 200;
    letter-spacing: -0.02em;
    line-height: 1.05;
    color: #ffffff;
    margin-bottom: 0.7rem;
    text-transform: uppercase;
}

.founder-divider {
    width: 48px;
    height: 2px;
    background: rgba(255, 255, 255, 0.4);
    margin-bottom: 1rem;
}

.founder-quote {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
    color: #fff;
    letter-spacing: 0.5px;
}

.founder-bio {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 1.1rem;
    text-align: justify;
    word-spacing: -2px;
    letter-spacing: 0.1px;
}

.founder-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    margin-top: 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    padding-bottom: 0.3rem;
    transition: all 0.3s ease;
    width: fit-content;
}

.founder-cta i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.founder-cta:hover {
    color: #cccccc;
    border-bottom-color: rgba(255, 255, 255, 0.7);
    gap: 1rem;
}

.founder-cta:hover i {
    transform: translateX(4px);
}

/* Right: Portrait Photo */
.founder-portrait {
    position: relative;
    overflow: hidden;
    background: #000000;
}

.founder-portrait-inner {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 600px;
}

.founder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    filter: grayscale(20%) contrast(1.0) brightness(0.85);
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.6s ease;
}

.founder-portrait:hover .founder-img {
    transform: scale(1.02);
    filter: grayscale(10%) contrast(1.0) brightness(0.9);
}

.founder-portrait-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #000000 0%, rgb(0 0 0 / 27%) 15%, rgba(0, 0, 0, 0) 50%);
    pointer-events: none;
    z-index: 1;
}

.founder-portrait-caption {
    position: absolute;
    bottom: 2.5rem;
    left: 2rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.founder-portrait-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.04em;
}

.founder-portrait-role {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 400;
}

@media (max-width: 991px) {
    .founder-section {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .founder-portrait {
        order: -1;
    }

    .founder-portrait-inner {
        min-height: 60vw;
    }

    .founder-content {
        padding: 3.5rem 2.5rem;
    }

    .founder-content::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .founder-content {
        padding: 3rem 1.5rem;
    }

    .founder-portrait-inner {
        min-height: 75vw;
    }

    .founder-name {
        font-size: 2.5rem;
    }

    .founder-quote {
        font-size: 1rem;
    }
}

/* --------------------------------------------------------------------------
   EXHIBITIONS PAGE STYLING
   -------------------------------------------------------------------------- */
.exhibitions-subnav {
    position: sticky;
    top: var(--header-height-default);
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid #1f1f1f;
    z-index: 90;
    transition: top 0.35s ease;
}

.site-header.scrolled+.exhibitions-subnav {
    top: var(--header-height-scrolled);
}

.subnav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 5px 10px 12px;
}

.subnav-link {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.subnav-link:hover {
    color: #ffffff;
}

.subnav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ffffff;
    transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.subnav-link.active {
    color: #ffffff;
}

.subnav-link.active::after {
    width: 100%;
}

.exhibitions-section {
    padding: 4rem 0 3rem;
    /* border-bottom: 1px solid #1f1f1f; */
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.exhibition-content-layout {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 2rem;
    position: relative;
}

/* Exhibit Slider */
.exhibit-slider-wrapper {
    position: relative;
    width: 100%;
    max-width: 1100px;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    background-color: #0b0b0b;
    border: 1px solid #1f1f1f;
}

.exhibit-slider-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.exhibit-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
}

.exhibit-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Arrow controls */
.ex-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 15;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ex-slider-arrow:hover {
    background-color: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

.ex-arrow-prev {
    left: 1.5rem;
}

.ex-arrow-next {
    right: 1.5rem;
}

/* Details Panel Overlay at the bottom of the slider */
.exhibit-details {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 60%, transparent 100%);
    padding: 4rem 3rem 2rem 3rem;
    z-index: 10;
    pointer-events: none;
}

.exhibit-details-inner {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 3rem;
    pointer-events: auto;
}

.exhibit-text-col {
    max-width: 700px;
    text-align: left;
}

.exhibit-title {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 0.6rem;
    text-transform: uppercase;
}

.exhibit-date-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    font-weight: 500;
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.15);
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 0.8rem;
    letter-spacing: 0.05em;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.exhibit-date-badge i {
    font-size: 0.8rem;
}

.exhibit-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 0;
}

.exhibit-btn-col {
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .exhibitions-subnav {
        top: var(--header-height-scrolled);
    }
}

@media (max-width: 768px) {
    .exhibit-details {
        padding: 3rem 1.5rem 1.5rem 1.5rem;
    }

    .exhibit-details-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .exhibit-title {
        font-size: 1.5rem;
    }

    .exhibit-description {
        font-size: 0.85rem;
    }
}

/* -- Upcoming Custom Section -- */
.upcoming-custom-section {
    background-color: #050505;
    padding: 3rem 0;
}

.upcoming-section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.upcoming-subtitle {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 300;
    max-width: 600px;
    margin: 0.5rem auto 0 auto;
}

.upcoming-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.upcoming-card {
    background-color: #000000;
    border: 1px solid #1a1a1a;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.4s ease, box-shadow 0.4s ease;
}

.upcoming-card:hover {
    transform: translateY(-8px);
    border-color: #333333;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.upcoming-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.upcoming-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.upcoming-card:hover .upcoming-img-wrapper img {
    transform: scale(1.05);
}

.upcoming-date-tag {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.4rem 0.85rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.upcoming-info {
    padding: 1rem 1rem;
    text-align: center;
}

.upcoming-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.4rem;
    letter-spacing: -0.01em;
    text-transform: uppercase;
}

.upcoming-card-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.65;
    font-weight: 300;
    margin-bottom: 2rem;
    min-height: 3.3rem;
}

.upcoming-btn {
    width: 100%;
    text-align: center;
    border-radius: 30px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    letter-spacing: 0.08em;
}

@media (max-width: 991px) {
    .upcoming-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        max-width: 600px;
    }
}

/* -- Past Custom Section -- */
.past-custom-section {
    background-color: #000000;
    padding: 3rem 0;
}

.past-section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.past-carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.past-carousel-viewport {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 10px 0;
}

.past-carousel-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.past-canvas-card {
    position: relative;
    /* On desktop we show 3 slides: calc((100% - gap*2) / 3) */
    width: calc((100% - 4rem) / 3);
    flex-shrink: 0;
    aspect-ratio: 3 / 4;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #1a1a1a;
    background-color: #080808;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.4s ease, box-shadow 0.4s ease;
}

.past-canvas-card:hover {
    transform: translateY(-6px);
    border-color: #333333;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
}

.past-canvas-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.past-canvas-card:hover img {
    transform: scale(1.03);
}

/* Card Bottom Overlay for Date & Name only */
.past-canvas-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
    padding: 3rem 1.5rem 1.5rem 1.5rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.past-canvas-date {
    font-size: 0.75rem;
    color: #b3b3b3;
    font-weight: 500;
    margin-bottom: 0.4rem;
    letter-spacing: 0.05em;
    display: block;
}

.past-canvas-title {
    font-size: clamp(1.2rem, 1vw, 4rem);
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

/* Thumbnails Strip at bottom */
.past-thumbnail-strip {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 3rem;
    padding: 0 10px;
}

.past-thumb-btn {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #222222;
    background: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.4;
}

.past-thumb-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.past-thumb-btn:hover,
.past-thumb-btn.active {
    opacity: 1;
    border-color: #ffffff;
    transform: scale(1.05);
}

@media (max-width: 991px) {
    .past-canvas-card {
        width: calc((100% - 2rem) / 2);
    }
}

@media (max-width: 768px) {
    .past-canvas-card {
        width: 100%;
    }

    .past-carousel-track {
        gap: 0;
    }

    .past-thumbnail-strip {
        gap: 0.4rem;
    }

    .past-thumb-btn {
        width: 50px;
        height: 50px;
    }
}

/* -- Exhibition Details Page Styles -- */
.exhib-details-hero {
    height: 55vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 4rem 2rem;
    position: relative;
    margin-top: 80px;
    /* Default sticky header height */
}

.exhib-details-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.exhib-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    text-align: left;
    position: relative;
    z-index: 2;
}

.exhib-hero-badge {
    background-color: #ffffff;
    color: #000000;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.exhib-hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.exhib-hero-meta {
    display: flex;
    gap: 2rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.exhib-hero-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.exhib-concept-sec {
    padding: 6rem 0;
    background-color: #050505;
}

.details-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.exhib-concept-layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 5rem;
}

.exhib-desc-col {
    text-align: left;
}

.exhib-section-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.exhib-concept-lead {
    font-size: 1.35rem;
    line-height: 1.6;
    color: #ffffff;
    font-weight: 300;
    margin-bottom: 2rem;
}

.exhib-concept-body p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--text-secondary);
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.exhib-sidebar-col {
    position: relative;
}

.exhib-facts-card {
    background-color: #000000;
    border: 1px solid #1a1a1a;
    padding: 2.5rem;
    border-radius: 16px;
    position: sticky;
    top: 120px;
}

.facts-title {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    text-align: left;
}

.facts-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.facts-list li {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #111111;
    padding: 1rem 0;
    font-size: 0.88rem;
}

.fact-label {
    color: var(--text-muted);
    font-weight: 400;
}

.fact-value {
    color: #ffffff;
    font-weight: 500;
    text-align: right;
}

.fact-link {
    color: #ffffff;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.fact-link:hover {
    color: var(--text-muted);
}

.rsvp-sidebar-btn {
    width: 100%;
    border-radius: 30px;
    padding: 0.85rem;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-align: center;
}

.exhib-artworks-sec {
    padding: 6rem 0;
    background-color: #000000;
    border-top: 1px solid #111111;
}

.exhib-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.exhib-section-heading {
    font-size: 2.25rem;
    font-weight: 800;
    color: #ffffff;
    margin-top: 0.5rem;
    text-transform: uppercase;
}

.exhib-section-subtitle {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 300;
    margin-top: 0.5rem;
}

.artwork-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 2.5rem;
}

.artwork-card {
    background-color: #070707;
    border: 1px solid #111111;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.artwork-card:hover {
    transform: translateY(-5px);
    border-color: #222222;
}

.artwork-img-box {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
}

.artwork-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.artwork-card:hover .artwork-img-box img {
    transform: scale(1.03);
}

.artwork-details {
    padding: 1.5rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.artwork-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.4rem;
}

.artwork-meta {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.artwork-enquire-btn {
    margin-top: auto;
    width: 100%;
    text-align: center;
    border-radius: 20px;
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
}

.exhib-artist-spotlight {
    padding: 6rem 0;
    background-color: #050505;
    border-top: 1px solid #111111;
}

.artist-spotlight-box {
    display: flex;
    gap: 4rem;
    background-color: #000000;
    border: 1px solid #1a1a1a;
    padding: 4rem;
    border-radius: 24px;
    align-items: center;
    text-align: left;
}

.artist-spotlight-portrait {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid #222222;
}

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

.artist-spotlight-content {
    flex-grow: 1;
}

.spotlight-badge {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.artist-spotlight-name {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
}

.artist-spotlight-bio {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
    font-weight: 300;
    margin-bottom: 2rem;
}

.spotlight-link-btn {
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 0.65rem 1.75rem;
    font-size: 0.8rem;
}

@media (max-width: 991px) {
    .exhib-concept-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .exhib-facts-card {
        position: relative;
        top: 0;
    }

    .artist-spotlight-box {
        flex-direction: column;
        padding: 3rem;
        gap: 2.5rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .exhib-hero-title {
        font-size: 2rem;
    }

    .exhib-hero-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* ══════════════════════════════════════════════════════════════════════════
   EXHIBITION DETAILS PAGE
   ══════════════════════════════════════════════════════════════════════════ */
.exhibition-detail-main {
    padding-top: 0;
}

.exhibition-detail-showcase {
    min-height: 82vh;
}

.exhibition-detail-showcase-overlay {
    background: linear-gradient(rgb(0 0 0 / 35%) 0%, rgb(0 0 0 / 35%) 45%, rgb(0 0 0 / 35%) 100%);
}

.exhibition-detail-showcase-content {
    max-width: 860px;
}

.exhibition-detail-showcase-title {
    font-size: clamp(3.4rem, 8vw, 4.5rem);
    line-height: 90px;
    margin-bottom: 1.1rem;
    letter-spacing: -0.04em;
    text-transform: none;
}

.exhibition-detail-showcase-text {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.08rem;
    line-height: 1.75;
    margin-bottom: 2rem;
}

.exhibition-detail-showcase-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.85rem;
    margin-bottom: 2.1rem;
}

.exhibition-detail-showcase-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.82rem 1.15rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 0.86rem;
    font-weight: 500;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.exhibition-detail-showcase-actions {
    justify-content: center;
}

.exhibition-detail-info-section {
    padding: 2rem 0 2rem;
    top: 0;
}

.exhibition-detail-editorial-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
    gap: 2rem;
    align-items: start;
}

.exhibition-detail-editorial-card,
.detail-action-card,
.detail-facts-card {
    border: 1px solid rgb(171 168 168 / 29%);
    background: #070707;
    border-radius: 28px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.exhibition-detail-editorial-card {
    padding: 2.4rem 2.5rem;
}

.detail-program-stack {
    margin-bottom: 2rem;
}

.detail-program-row {
    margin-bottom: 0.7rem;
}

.detail-program-label {
    display: inline-block;
    margin-right: 0.45rem;
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.6;
}

.detail-program-value {
    display: inline;
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.8;
}

.detail-inline-link {
    color: #d7d2ff;
    text-decoration: underline;
    text-underline-offset: 0.18em;
    transition: color 0.25s ease;
    margin-left: 0.35rem;
}

.detail-inline-link:hover {
    color: #ffffff;
}

.detail-program-note {
    margin: 0.4rem 0 0;
    max-width: 760px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 1rem;
    line-height: 1.8;
    font-weight: 300;
}

.detail-editorial-copy {
    max-width: 860px;
}

.detail-editorial-copy .paragraph-text {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.05rem;
    line-height: 1.72;
    font-weight: 400;
}

.exhibition-detail-side-stack {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.detail-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.exhibition-detail-content {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
    gap: 2rem;
    align-items: start;
}

.detail-story-card,
.detail-facts-card,
.detail-panel,
.detail-highlight-card,
.detail-gallery-card {
    border: 1px solid rgb(171 168 168 / 29%);
    background: #070707;
    border-radius: 24px;
}

.detail-story-card,
.detail-facts-card,
.detail-panel {
    padding: 1.6rem 2rem;
}

.detail-action-card {
    padding: 2rem;
}

.detail-rich-text .paragraph-text:last-child {
    margin-bottom: 0;
}

.detail-facts-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 0;
}

.detail-fact-row {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.detail-fact-row:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.detail-fact-row dt {
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.detail-fact-row dd {
    margin: 0;
    color: var(--text-primary);
    line-height: 1.7;
    font-weight: 400;
}

.detail-action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.4rem;
}

.exhibition-installation-section {
    background: #000000;
    padding: 3rem 0 3rem;
}

.exhibition-installation-container {
    max-width: 1280px;
}

.exhibition-installation-header {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.exhibition-installation-kicker,
.exhibition-installation-counter {
    margin: 0;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
}

.exhibition-installation-counter {
    justify-self: end;
}

.exhibition-installation-heading {
    margin: 0;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-align: center;
}

.exhibition-installation-stage {
    position: relative;
    background: #070707;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgb(54 53 53);
}

.exhibition-installation-figure {
    margin: 0;
    aspect-ratio: 16 / 10.8;
    overflow: hidden;
    position: relative;
}

.exhibition-installation-track {
    display: flex;
    height: 100%;
    will-change: transform;
    transform: translate3d(-100%, 0, 0);
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.exhibition-installation-slide {
    flex: 0 0 100%;
    height: 100%;
}

.exhibition-installation-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.exhibition-installation-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(0, 0, 0, 0.55);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
    z-index: 2;
}

.exhibition-installation-nav:hover {
    transform: translateY(-50%) scale(1.04);
    background: rgba(0, 0, 0, 0.72);
    border-color: rgba(255, 255, 255, 0.28);
}

.exhibition-installation-prev {
    left: 2.8rem;
}

.exhibition-installation-next {
    right: 2.8rem;
}

.exhibition-installation-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-top: 1.2rem;
}

.exhibition-installation-rails {
    flex: 1;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    gap: 0.35rem;
    align-items: center;
}

.exhibition-installation-rail {
    height: 2px;
    border: 0;
    background: rgba(255, 255, 255, 0.18);
    cursor: pointer;
    padding: 0;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.exhibition-installation-rail:hover,
.exhibition-installation-rail.is-active {
    background: #ffffff;
}

.exhibition-installation-caption {
    margin: 0;
    min-width: 220px;
    text-align: right;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.9rem;
    line-height: 1.5;
}

.selected-works-section {
    background: #000000;
    padding: 4.25rem 0 4.75rem;
}

.selected-works-carousel-section {
    background: #000000;
    padding: 4.25rem 0 0;
}

.selected-works-carousel-container {
    max-width: 1050px;
    text-align: center;
}

.selected-works-carousel-heading {
    margin: 0 0 1.8rem;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.selected-works-carousel-card {
    background: #070707;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 0.5rem 1.5rem;
}

.selected-works-carousel-stage {
    position: relative;
    padding: 0.75rem 0.75rem 1.15rem;
}

.selected-works-carousel-frame {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.selected-works-carousel-track {
    display: flex;
    height: 100%;
    will-change: transform;
    transform: translate3d(-100%, 0, 0);
    transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.selected-works-carousel-slide {
    flex: 0 0 100%;
    height: 100%;
}

.selected-works-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.selected-works-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(0, 0, 0, 0.55);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.selected-works-carousel-nav:hover {
    transform: translateY(-50%) scale(1.04);
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(0, 0, 0, 0.75);
}

.selected-works-carousel-prev {
    left: 1.6rem;
}

.selected-works-carousel-next {
    right: 1.6rem;
}

.selected-works-carousel-meta {
    padding-top: 0.75rem;
}

.selected-works-carousel-artist {
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.92rem;
    font-weight: 600;
}

.selected-works-carousel-title {
    margin: 0.25rem 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.88rem;
    font-weight: 400;
}

.selected-works-carousel-details {
    margin: 0.5rem 0 0;
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.82rem;
    line-height: 1.6;
    font-weight: 400;
}

.selected-works-carousel-btn {
    margin-top: 1.15rem;
    border-color: rgba(255, 255, 255, 0.55);
    color: #ffffff;
    background: transparent;
}

.selected-works-carousel-btn:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: #111111;
}

.selected-works-carousel-rails {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    gap: 0.55rem;
    align-items: center;
    margin-top: 1.6rem;
}

.selected-works-carousel-rail {
    height: 2px;
    border: 0;
    background: rgba(255, 255, 255, 0.18);
    cursor: pointer;
    padding: 0;
    transition: background-color 0.25s ease;
}

.selected-works-carousel-rail:hover,
.selected-works-carousel-rail.is-active {
    background: #ffffff;
}

.selected-works-heading {
    margin: 0 0 1.8rem;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-align: center;
}

.selected-works-feature {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    background: #070707;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.selected-works-feature-copy {
    background: #070707;
    padding: 2.2rem 2.2rem 2.4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.selected-works-feature-text {
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.95rem;
    line-height: 1.75;
    font-weight: 400;
}

.selected-works-feature-btn {
    margin-top: 1.5rem;
    align-self: flex-start;
    border-color: rgba(255, 255, 255, 0.55);
    color: #ffffff;
    background: transparent;
}

.selected-works-feature-btn:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: #111111;
}

.selected-works-feature-media {
    background: #070707;
}

.selected-works-feature-media img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    display: block;
}

.selected-works-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem;
    margin-top: 2.6rem;
}

.selected-works-item {
    background: #070707;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 1rem 1.6rem;
}

.selected-works-item-image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #111111;
}

.selected-works-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.selected-works-item-meta {
    text-align: center;
    padding-top: 1rem;
}

.selected-works-item-artist {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.86rem;
    font-weight: 600;
}

.selected-works-item-title {
    margin: 0.35rem 0 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.82rem;
    font-weight: 400;
}

.selected-works-item-details {
    margin: 0.45rem 0 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.78rem;
    line-height: 1.55;
}

.selected-works-item-enquire {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
    height: 36px;
    padding: 0 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.55);
    background: transparent;
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.selected-works-item-enquire:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: #111111;
}

.works-spotlight-section {
    background: #000000;
    padding: 2rem 0 3rem;
}

.works-spotlight-container {
    max-width: 1180px;
}

.works-spotlight-heading {
    margin: 0 0 2rem;
    text-align: center;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.works-spotlight-feature {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #070707;
    overflow: hidden;
}

.works-spotlight-feature-media img {
    width: 100%;
    height: 100%;
    min-height: 340px;
    object-fit: cover;
    display: block;
}

.works-spotlight-feature-copy {
    padding: 2.2rem 2.2rem 2.4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.works-spotlight-feature-text {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.95rem;
    line-height: 1.75;
    font-weight: 400;
}

.works-spotlight-feature-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1.6rem;
    height: 40px;
    padding: 0 1.35rem;
    border: 1px solid rgba(255, 255, 255, 0.55);
    background: transparent;
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
    align-self: flex-start;
}

.works-spotlight-feature-btn:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: #111111;
}

.works-spotlight-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.75rem;
    margin-top: 2.75rem;
}

.works-spotlight-card {
    background: #070707;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 1rem 1.6rem;
}

.works-spotlight-card-media {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #111111;
}

.works-spotlight-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.works-spotlight-card-meta {
    text-align: center;
    padding-top: 1rem;
}

.works-spotlight-card-artist {
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.86rem;
    font-weight: 600;
}

.works-spotlight-card-title {
    margin: 0.35rem 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.82rem;
    font-weight: 400;
}

.works-spotlight-card-details {
    margin: 0.45rem 0 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.78rem;
    line-height: 1.55;
}

.works-spotlight-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
    height: 36px;
    padding: 0 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.55);
    background: transparent;
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.works-spotlight-card-btn:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: #111111;
}

.detail-split-layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
}

.detail-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.detail-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    font-size: 0.88rem;
    line-height: 1.4;
}

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

.detail-highlight-card {
    padding: 1.75rem;
}

.detail-highlight-card h3 {
    color: var(--text-primary);
    font-size: 1.05rem;
    margin-bottom: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.detail-highlight-card p {
    color: var(--text-secondary);
    line-height: 1.75;
    font-size: 0.95rem;
    margin: 0;
    font-weight: 300;
}

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

.detail-gallery-card {
    overflow: hidden;
}

.detail-gallery-card img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.detail-gallery-card:hover img {
    transform: scale(1.04);
}

@media (max-width: 1100px) {

    .exhibition-detail-editorial-grid,
    .exhibition-detail-content,
    .detail-split-layout {
        grid-template-columns: 1fr;
    }

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

    .exhibition-installation-header {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .exhibition-installation-counter {
        justify-self: center;
    }

    .works-spotlight-feature {
        grid-template-columns: 1fr;
    }

    .works-spotlight-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .exhibition-detail-main {
        padding-top: 6.5rem;
    }

    .exhibition-detail-info-section {
        padding: 3rem 0 4rem;
    }

    .detail-cta-row,
    .exhibition-detail-showcase-meta,
    .detail-action-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .exhibition-detail-editorial-card,
    .detail-action-card,
    .detail-story-card,
    .detail-facts-card,
    .detail-panel,
    .detail-highlight-card {
        padding: 1.4rem;
    }

    .detail-highlight-grid,
    .detail-gallery-grid {
        grid-template-columns: 1fr;
    }

    .exhibition-detail-showcase {
        min-height: 72vh;
    }

    .exhibition-detail-showcase-title {
        font-size: 3rem;
    }

    .exhibition-detail-showcase-text {
        font-size: 1rem;
        margin-bottom: 1.6rem;
    }

    .detail-program-label,
    .detail-program-value,
    .detail-editorial-copy .paragraph-text {
        font-size: 0.98rem;
    }

    .detail-fact-row {
        grid-template-columns: 1fr;
        gap: 0.4rem;
    }

    .exhibition-installation-section {
        padding: 3rem 0 3.5rem;
    }

    .exhibition-installation-stage {
        padding: 1rem;
    }

    .exhibition-installation-nav {
        width: 42px;
        height: 42px;
    }

    .exhibition-installation-prev {
        left: 1.35rem;
    }

    .exhibition-installation-next {
        right: 1.35rem;
    }

    .exhibition-installation-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .exhibition-installation-caption {
        min-width: 0;
        text-align: left;
    }

    .selected-works-section {
        padding: 3.25rem 0 3.75rem;
    }

    .selected-works-carousel-section {
        padding: 3.25rem 0 0;
    }

    .selected-works-carousel-card {
        padding: 1.6rem 1.25rem 1.4rem;
    }

    .selected-works-carousel-nav {
        width: 40px;
        height: 40px;
    }

    .selected-works-carousel-prev {
        left: 1.05rem;
    }

    .selected-works-carousel-next {
        right: 1.05rem;
    }

    .selected-works-feature {
        grid-template-columns: 1fr;
    }

    .selected-works-feature-copy {
        padding: 1.6rem 1.4rem 1.8rem;
    }

    .selected-works-feature-media img {
        min-height: 240px;
    }

    .selected-works-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .works-spotlight-section {
        padding: 3.25rem 0 3.75rem;
    }

    .works-spotlight-feature-copy {
        padding: 1.6rem 1.4rem 1.8rem;
    }

    .works-spotlight-feature-media img {
        min-height: 240px;
    }

    .works-spotlight-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }
}

/* ══════════════════════════════════════════════════════════════════════════
   PREMIUM VIEW ALL ARTISTS PAGE STYLES
   ══════════════════════════════════════════════════════════════════════════ */
.view-all-artists-page {
    background-color: #000000;
    color: #ffffff;
    overflow-x: hidden;
}

/* Hero Banner */
.all-artists-hero-super {
    position: relative;
    padding: 150px 0 50px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.75) 0%, rgb(0 0 0 / 81%) 80%, #00000057 100%), url(../../assets/images/banner_1.webp) center / cover no-repeat;
    text-align: center;
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.1); */
    box-shadow: inset 0 -50px 50px rgba(0, 0, 0, 0.8);
}

.all-artists-hero-super .hero-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #aaaaaa;
    padding: 6px 18px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.03);
}

.all-artists-hero-super h1 {
    font-size: clamp(2.5rem, 5vw, 2rem);
    font-weight: 200;
    letter-spacing: -0.02rem;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.1;
}

.all-artists-hero-super p {
    color: var(--text-secondary);
    max-width: 680px;
    margin: 0 auto;
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.7;
}

/* Glassmorphism Sticky Tabs */
.artist-tabs-wrapper-premium {
    position: sticky;
    top: var(--header-height-default);
    z-index: 95;
    background-color: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0 30px;
    margin-bottom: 40px;
}

.artist-tabs-nav-premium {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.tab-btn-premium {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 32px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #888888;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.tab-btn-premium .tab-num {
    font-size: 0.75rem;
    font-weight: 700;
    opacity: 0.6;
}

.tab-btn-premium:hover {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-2px);
}

.tab-btn-premium.active {
    background-color: #ffffff;
    color: #000000;
    border-color: #ffffff;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.25);
}

.tab-btn-premium.active .tab-num {
    opacity: 1;
    color: #000000;
}

/* Content Panes Animation */
.tab-content-pane-premium {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.tab-content-pane-premium.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.tab-header-banner {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 20px;
}

.tab-header-banner h2 {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ffffff;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.tab-header-banner p {
    color: #aaaaaa;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1rem;
}

/* Elegant Minimalist Artist List Cards */
.artist-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    padding-bottom: 80px;
}

.artist-profile-card {
    display: flex;
    align-items: center;
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 10px 10px;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.artist-profile-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.artist-profile-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
    background: #161616;
}

.artist-profile-card:hover::before {
    opacity: 1;
}

.artist-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.15);
    transition: border-color 0.4s ease, transform 0.4s ease;
}

.artist-profile-card:hover .artist-avatar {
    border-color: #ffffff;
    transform: scale(1.05);
}

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

.artist-info {
    margin-left: 20px;
    flex-grow: 1;
}

.artist-info-name {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
    transition: color 0.3s ease;
}

.artist-profile-card:hover .artist-info-name {
    color: #ffffff;
}

.artist-info-location {
    font-size: 0.85rem;
    color: #888888;
    font-weight: 300;
    margin-bottom: 8px;
}

.artist-profile-action {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.artist-profile-card:hover .artist-profile-action {
    opacity: 1;
    gap: 10px;
}

.artist-profile-action i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.artist-profile-card:hover .artist-profile-action i {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .all-artists-hero-super {
        padding: 120px 0 50px;
    }

    .tab-btn-premium {
        padding: 10px 20px;
        font-size: 0.82rem;
    }

    .artist-list-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}